/* The Silent Status — VSL / direct-response waitlist
   Bold geometric sans, light-grey page, white content card,
   high-contrast yellow CTA. Built to convert. */

:root {
  --bg: #F1F3F5;
  --card: #FFFFFF;
  --ink: #1E2230;        /* headline near-black */
  --body: #5B6470;       /* grey copy */
  --muted: #8A93A0;
  --line: #E7E9ED;
  --bar: #14161C;        /* video sound bar */
  --cta: #FFD21E;        /* yellow */
  --cta-hover: #F4C200;
  --cta-text: #1E2230;
  --error: #C0392B;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --shadow: 0 1px 2px rgba(20, 22, 28, .04), 0 18px 50px -20px rgba(20, 22, 28, .12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }

body {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}
::selection { background: var(--cta); color: var(--cta-text); }

/* ── Top bar ────────────────────────────────────────── */
.topbar {
  background: var(--card);
  border-bottom: 1px solid var(--line);
  padding: 1.05rem clamp(1.2rem, 5vw, 2.5rem);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-size: 1.18rem;
  letter-spacing: -.01em;
  color: var(--ink);
  text-decoration: none;
}
.brand b { font-weight: 800; }
.brand span { font-weight: 500; color: var(--muted); }
.brand .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--cta);
  display: inline-block; flex: none;
  box-shadow: 0 0 0 3px rgba(255, 210, 30, .25);
}

/* ── Page / card ────────────────────────────────────── */
.page {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3rem) 1rem 2rem;
}
.card {
  width: 100%;
  max-width: 820px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.card-pad { padding: clamp(1.6rem, 5vw, 3.4rem) clamp(1.4rem, 5vw, 3.4rem); }

/* ── Headline ───────────────────────────────────────── */
.headline {
  text-align: center;
  font-weight: 800;
  font-size: clamp(1.7rem, 4.6vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: -.02em;
  max-width: 18ch;
  margin: 0 auto;
}
.subhead {
  text-align: center;
  font-weight: 500;
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  color: var(--body);
  margin: 1rem auto 0;
  max-width: 46ch;
}

/* ── Video placeholder ──────────────────────────────── */
.video {
  margin: clamp(1.6rem, 4vw, 2.4rem) 0 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 14px 40px -18px rgba(20, 22, 28, .5);
}
.video-bar {
  background: var(--bar);
  color: #E9EAEC;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  padding: .7rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
}
.video-bar svg { flex: none; opacity: .9; }
.video-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(120% 120% at 70% 20%, rgba(255, 210, 30, .10), transparent 55%),
    linear-gradient(150deg, #2B313D 0%, #1A1E27 60%, #12151C 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.play {
  width: clamp(64px, 11vw, 92px);
  height: clamp(64px, 11vw, 92px);
  border-radius: 50%;
  border: 2.5px solid rgba(255, 255, 255, .9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s var(--ease), background-color .3s var(--ease);
  background: rgba(255, 255, 255, .04);
}
.play svg { margin-left: 5px; }
.video-stage:hover .play { transform: scale(1.06); background: rgba(255, 255, 255, .12); }
.video-hint {
  position: absolute;
  bottom: 14px;
  left: 0; right: 0;
  text-align: center;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: rgba(233, 234, 236, .55);
}

/* ── CTA block ──────────────────────────────────────── */
.cta { text-align: center; margin-top: clamp(1.8rem, 4vw, 2.6rem); }
.cta-title {
  font-weight: 700;
  font-size: clamp(1.15rem, 2.6vw, 1.5rem);
  letter-spacing: -.01em;
}
.cta-title b { color: var(--ink); font-weight: 800; }
.cta-sub {
  font-weight: 500;
  font-size: .98rem;
  color: var(--body);
  margin: .55rem auto 0;
  max-width: 44ch;
}

.signup { margin: 1.6rem auto 0; max-width: 30rem; }
.signup input {
  width: 100%;
  font-family: inherit;
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--ink);
  background: #FBFBFC;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: .95rem 1.1rem;
  text-align: center;
  transition: border-color .25s var(--ease), background-color .25s var(--ease);
}
.signup input::placeholder { color: var(--muted); font-weight: 500; }
.signup input:focus {
  outline: none;
  border-color: var(--cta-hover);
  background: #fff;
}

.cta-btn {
  width: 100%;
  margin-top: .9rem;
  font-family: inherit;
  font-size: clamp(1rem, 2.4vw, 1.18rem);
  font-weight: 800;
  letter-spacing: .01em;
  color: var(--cta-text);
  background: var(--cta);
  border: 0;
  border-radius: 8px;
  padding: 1.1rem 1.3rem;
  cursor: pointer;
  box-shadow: 0 10px 24px -10px rgba(244, 194, 0, .8);
  transition: background-color .2s var(--ease), transform .12s var(--ease), box-shadow .2s var(--ease);
}
.cta-btn:hover { background: var(--cta-hover); }
.cta-btn:active { transform: translateY(1px); }
.cta-btn:disabled { opacity: .6; cursor: default; box-shadow: none; }

.note {
  font-size: .82rem;
  font-weight: 500;
  color: var(--muted);
  margin-top: .9rem;
}
.formerror {
  font-size: .9rem;
  font-weight: 600;
  color: var(--error);
  margin-top: .9rem;
  min-height: 1.1em;
}
.formerror:empty { margin-top: 0; min-height: 0; }

.trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .4em 1.4em;
  margin-top: 1.3rem;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--muted);
}
.trust span { display: inline-flex; align-items: center; gap: .4em; }
.trust svg { flex: none; }

/* ── Footer ─────────────────────────────────────────── */
.footer {
  width: 100%;
  max-width: 820px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .6rem 1rem;
  margin: 1.5rem auto 0;
  padding: 0 .4rem;
  font-size: .76rem;
  font-weight: 500;
  color: var(--muted);
}
.footer a {
  color: var(--body);
  text-decoration: none;
  transition: color .2s var(--ease);
}
.footer a:hover { color: var(--ink); }

/* ── Confirmation (thank-you) ───────────────────────── */
.confirm { text-align: center; }
.confirm .check {
  width: 70px; height: 70px;
  margin: 0 auto 1.6rem;
  border-radius: 50%;
  background: rgba(255, 210, 30, .18);
  display: flex; align-items: center; justify-content: center;
}
.confirm .eyebrow {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cta-hover);
  margin-bottom: .9rem;
}
.confirm .headline { max-width: 22ch; }
.confirm .subhead { margin-top: 1rem; }
.backlink {
  display: inline-block;
  margin-top: 1.8rem;
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--cta);
  padding-bottom: 2px;
  transition: color .2s var(--ease);
}
.backlink:hover { color: var(--body); }

/* ── Prose (privacy) ────────────────────────────────── */
.prose { max-width: 40em; }
.prose .eyebrow {
  font-size: .74rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--cta-hover); margin-bottom: 1rem;
}
.prose h1 { font-weight: 800; font-size: clamp(1.6rem, 4vw, 2.2rem); letter-spacing: -.02em; margin-bottom: 1rem; }
.prose h2 { font-weight: 700; font-size: 1.12rem; margin: 2.1rem 0 .6rem; }
.prose p { color: var(--body); font-weight: 500; margin-bottom: 1rem; }
.prose ul { color: var(--body); font-weight: 500; margin: 0 0 1rem 1.1rem; }
.prose li { margin-bottom: .4rem; }
.prose a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--cta); }
.prose .stamp { font-size: .82rem; color: var(--muted); }

/* ── Entrance ───────────────────────────────────────── */
@keyframes rise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.reveal { opacity: 0; animation: rise .8s var(--ease) forwards; animation-delay: var(--d, 0s); }

@media (prefers-reduced-motion: reduce) {
  .reveal { animation: none; opacity: 1; }
  * { transition: none !important; }
}

/* ── Mobile ─────────────────────────────────────────── */
@media (max-width: 540px) {
  .video-bar { font-size: .6rem; letter-spacing: .05em; }
  .footer { justify-content: center; text-align: center; }
}
