:root{
  --bg:#121216;
  --card:#1b1b1f;
  --muted:#bfbdb8;
  --accent:#d6caa8; /* light beige accent if needed */
  --white:#ffffff;
  --rounded:16px;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0; background:var(--bg); color:var(--muted);
  -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale;
  display:flex; align-items:center; justify-content:center; padding:30px;
}

.wrap{width:100%; max-width:900px}
.card{
  background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border:1px solid rgba(255,255,255,0.03);
  padding:48px; border-radius:var(--rounded);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.brand h1{
  margin:0; font-family: "Georgia", serif; letter-spacing:2px;
  color:var(--white); font-size:34px;
}
.tag{ margin:6px 0 18px 0; color:var(--muted); font-size:13px; }

.headline{ color:var(--white); margin-top:10px; font-size:22px}
.desc{ color:var(--muted); margin-top:10px; line-height:1.5 }

.social{ margin-top:18px }
.social a{
  display:inline-block; text-decoration:none; color:var(--accent);
  border:1px solid rgba(214,202,168,0.12); padding:8px 12px; border-radius:10px;
  font-weight:600;
}

.notify{ margin-top:22px; display:flex; gap:10px; align-items:center }
.notify input{
  flex:1; padding:12px 14px; border-radius:10px; border:1px solid rgba(255,255,255,0.04);
  background:#0f0f11; color:var(--muted); outline:none;
}
.notify button{
  padding:12px 18px; border-radius:10px; border:0; background:var(--accent); color:#111;
  font-weight:700; cursor:pointer;
}

.small{ margin-top:16px; font-size:13px; color:rgba(191,189,184,0.9)}
.small a{ color:var(--muted); text-decoration:underline; }

.footer{ color:rgba(191,189,184,0.6); font-size:13px; text-align:center; margin-top:18px }
@media (max-width:520px){
  .card{ padding:22px }
  .brand h1{ font-size:26px }
  .headline{ font-size:18px }
}
