
:root{
  --bg: #0b0f13;
  --card: #11161b;
  --text: #eaeaea;
  --muted: #9aa4af;
  --accent: #d4b48c;
}
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background: radial-gradient(1200px 800px at 70% 10%, rgba(212,180,140,0.12), transparent 60%), var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, sans-serif;
  display: grid;
  place-items: center;
  padding: 24px;
}
.container {
  width: 100%;
  max-width: 720px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 28px;
}
.header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.header img { width: 56px; height: 56px; border-radius: 14px; }
.brand { display: flex; flex-direction: column; gap: 4px; }
.brand .name { font-weight: 700; font-size: 1.4rem; }
.brand .tagline { color: var(--muted); font-size: 0.98rem; }
.hero { margin: 20px 0 8px; }
.hero h1 { margin: 0 0 10px; font-size: 2rem; }
.hero p { margin: 0; color: var(--muted); }
.card { margin-top: 18px; background: var(--card); border-radius: 16px; padding: 18px; }
.signup { display: grid; grid-template-columns: 1fr auto; gap: 10px; margin-top: 10px; }
input[type="email"]{ background: #0e1419; color: var(--text); border-radius: 12px; padding: 14px 16px; border: 1px solid rgba(255,255,255,0.12); }
button{ background: var(--accent); color: #1b1207; padding: 14px 18px; font-weight: 700; border-radius: 12px; cursor: pointer; border: none; }
button:hover { opacity: 0.95; }
.small { color: var(--muted); font-size: 0.9rem; }
.socials { display: flex; gap: 12px; margin-top: 14px; }
.socials a { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 10px; background: #0e1419; }
.footer { margin-top: 18px; display: flex; justify-content: space-between; gap: 16px; color: var(--muted); font-size: 0.9rem; flex-wrap: wrap; }
.footer a { color: var(--muted); text-decoration: none; }
.footer a:hover { text-decoration: underline; }
/* Hide honeypot from sighted users (kept readable for bots) */
.sr-only {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
