*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #faf8f6;
  --bg-card: #ffffff;
  --ink: #0b0b12;
  --ink-soft: #3a3d4a;
  --ink-muted: #6b7080;
  --blue: #1400ff;
  --blue-deep: #0a00b8;
  --blue-tint: rgba(20, 0, 255, 0.06);
  --blush: #e9a8a0;
  --blush-tint: #f7e7e4;
  --line: #ece7e2;
  --night: #06060c;
  --ok: #1a8a42;
  --radius: 16px;
  --radius-sm: 11px;
  --shadow: 0 10px 40px rgba(11, 11, 18, 0.09);
  --shadow-sm: 0 2px 10px rgba(11, 11, 18, 0.05);
  --wrap: 780px;
  --wrap-wide: 1080px;
}

:root { color-scheme: light only; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: 'League Spartan', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--ink-soft);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.serif { font-family: 'Instrument Serif', Georgia, serif; font-style: italic; font-weight: 400; letter-spacing: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 1.5rem; }
.wrap.wide { max-width: var(--wrap-wide); }

/* ── Logo lockup ── */
.logo-lockup { display: inline-flex; align-items: center; gap: 0.55rem; text-decoration: none; }
.logo-lockup svg { width: 34px; height: 34px; display: block; flex-shrink: 0; }
.logo-word { font-weight: 700; font-size: 1.2rem; letter-spacing: -0.03em; color: var(--ink); }
.topbar { padding: 1.4rem 0; }

/* ════════ CINEMATIC HERO ════════ */
.hero-vsl {
  position: relative; min-height: 94vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; overflow: hidden;
  background: var(--night); color: #fff; text-align: center; padding: 3rem 1.25rem 3.5rem;
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-aurora { position: absolute; inset: -20%; z-index: 0; filter: blur(60px) saturate(1.3); opacity: .9; }
.hero-aurora::before, .hero-aurora::after {
  content: ''; position: absolute; border-radius: 50%;
}
.hero-aurora::before {
  width: 60vw; height: 60vw; left: -5vw; top: -10vw;
  background: radial-gradient(circle, rgba(20,0,255,.85), rgba(20,0,255,0) 62%);
  animation: drift1 22s ease-in-out infinite alternate;
}
.hero-aurora::after {
  width: 55vw; height: 55vw; right: -8vw; bottom: -12vw;
  background: radial-gradient(circle, rgba(233,168,160,.6), rgba(233,168,160,0) 60%);
  animation: drift2 26s ease-in-out infinite alternate;
}
@keyframes drift1 { from { transform: translate(0,0) scale(1); } to { transform: translate(14vw, 10vh) scale(1.25); } }
@keyframes drift2 { from { transform: translate(0,0) scale(1.1); } to { transform: translate(-12vw, -8vh) scale(.9); } }
.hero-tint {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(120% 90% at 50% 30%, rgba(6,6,12,.35), rgba(6,6,12,.8) 75%),
              linear-gradient(180deg, rgba(6,6,12,.5) 0%, rgba(6,6,12,.35) 40%, rgba(6,6,12,.85) 100%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; max-width: 640px; margin: 0 auto; }

.hero-logo { display: flex; justify-content: center; align-items: center; gap: .55rem; margin-bottom: 1.75rem; }
.hero-logo svg { width: 32px; height: 32px; }
.hero-logo .logo-word { color: #fff; font-size: 1.15rem; }

.hero-eyebrow {
  display: inline-block; font-size: 0.76rem; font-weight: 600; letter-spacing: 0.09em;
  text-transform: uppercase; color: #cfd2ff; border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.05); padding: 0.42rem 0.95rem; border-radius: 100px; margin-bottom: 1.5rem;
}
.hero-vsl h1 {
  font-size: clamp(1.8rem, 7vw, 3.3rem); line-height: 1.06; color: #fff;
  font-weight: 700; letter-spacing: -0.03em; margin-bottom: 1.1rem;
  overflow-wrap: break-word; text-wrap: balance;
}
.hero-vsl h1 .serif { color: #b9b0ff; }
.hero-sub { font-size: clamp(1rem, 3.2vw, 1.22rem); color: rgba(255,255,255,.82); max-width: 33rem; margin: 0 auto 2rem; line-height: 1.5; overflow-wrap: break-word; }

/* Glass signup card */
.gate-card {
  background: rgba(16,16,28,.5); backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border: 1px solid rgba(255,255,255,.14); border-radius: 20px;
  padding: 1.75rem 1.6rem; max-width: 27rem; margin: 0 auto;
  box-shadow: 0 30px 80px rgba(0,0,0,.5); text-align: left;
}
.gate-card .gate-head { text-align: center; margin-bottom: 1.25rem; }
.gate-card .gate-head .play { width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); display: grid; place-items: center; margin: 0 auto .8rem; font-size: 1.3rem; color: #fff; }
.gate-card h3 { color: #fff; font-size: 1.2rem; font-weight: 700; letter-spacing: -.01em; margin-bottom: .3rem; }
.gate-card .gate-head p { color: rgba(255,255,255,.68); font-size: .92rem; }
.gate-card label { display: block; font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,.85); margin: 0 0 0.35rem; }
.gate-card input {
  width: 100%; padding: 0.85rem 1rem; font-size: 1rem; font-family: inherit;
  background: rgba(255,255,255,.07); border: 1.5px solid rgba(255,255,255,.18);
  border-radius: var(--radius-sm); color: #fff; margin-bottom: 0.9rem; transition: border-color .15s, background .15s;
}
.gate-card input::placeholder { color: rgba(255,255,255,.45); }
.gate-card input:focus { outline: none; border-color: #8f80ff; background: rgba(255,255,255,.12); }
.gate-card .microtrust { color: rgba(255,255,255,.6); }
.gate-card .form-err { color: #ff9a9a; }

.btn {
  display: inline-block; width: 100%; text-align: center; cursor: pointer; border: none;
  background: linear-gradient(135deg, #2a17ff, #1400ff); color: #fff; font-family: inherit;
  font-weight: 700; font-size: 1.06rem; padding: 1rem 1.25rem; border-radius: var(--radius-sm);
  transition: transform .05s, box-shadow .15s, filter .15s; box-shadow: 0 8px 24px rgba(20,0,255,.35);
}
.btn:hover { filter: brightness(1.08); box-shadow: 0 10px 30px rgba(20,0,255,.5); }
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: 0.65; cursor: default; }
.microtrust { text-align: center; font-size: 0.82rem; color: var(--ink-muted); margin-top: 0.85rem; }
.form-err { color: #d92b2b; font-size: 0.85rem; margin-top: 0.4rem; min-height: 1.2em; }

/* Big unlocked player */
.player-big { display: none; width: 100%; max-width: 940px; margin: 0 auto; position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,.6); background: #000; }
.player-big iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.player-big .vsl-player { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; color: #fff; background: linear-gradient(135deg, #0a1a5c, #1400ff); padding: 1.5rem; }
.player-big .vsl-player .ptri { width: 66px; height: 66px; border-radius: 50%; background: rgba(255,255,255,.16); display: grid; place-items: center; margin: 0 auto .7rem; font-size: 1.5rem; }
.hero-vsl.unlocked .gate-card { display: none; }
.hero-vsl.unlocked .player-big { display: block; }
.unlock-note { display: none; margin: 1.1rem auto 0; max-width: 30rem; color: rgba(255,255,255,.75); font-size: 0.95rem; }
.hero-vsl.unlocked .unlock-note { display: block; }
.unlock-note a { color: #b9b0ff; font-weight: 600; }

/* ════════ BODY SECTIONS ════════ */
section.block { padding: 3.25rem 0; }
.block + .block { border-top: 1px solid var(--line); }
h2 { font-size: clamp(1.65rem, 4.5vw, 2.3rem); line-height: 1.12; color: var(--ink); font-weight: 700; letter-spacing: -0.025em; margin-bottom: 1.1rem; }
h2 .serif { color: var(--blue); }
.lead { font-size: 1.12rem; color: var(--ink-soft); margin-bottom: 1rem; }
.reveal-quote {
  border-left: 3px solid var(--blush); background: var(--blush-tint);
  padding: 1.1rem 1.35rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 1.15rem; color: var(--ink); margin: 1.4rem 0; line-height: 1.5;
}
.reveal-quote strong { font-weight: 700; }
.admission { font-size: 1.05rem; color: var(--ink-muted); font-style: italic; margin-top: 1rem; }

.inside { list-style: none; display: grid; gap: 0.85rem; margin-top: 1.4rem; }
.inside li { display: flex; gap: 0.8rem; align-items: flex-start; background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1rem 1.15rem; box-shadow: var(--shadow-sm); }
.inside .tick { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--blue-tint); color: var(--blue); display: grid; place-items: center; font-size: 0.8rem; font-weight: 700; margin-top: 1px; }
.inside li span.txt { color: var(--ink); font-size: 1rem; }

.who { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-sm); }
.who h2 { margin-bottom: 0.5rem; }

.cta-band { text-align: center; }

footer { padding: 3rem 0 3.5rem; text-align: center; color: var(--ink-muted); font-size: 0.85rem; border-top: 1px solid var(--line); }
footer .logo-lockup { margin: 0 auto; }
footer .logo-lockup svg { width: 30px; height: 30px; }

@media (min-width: 720px) {
  .inside { grid-template-columns: 1fr 1fr; }
  section.block { padding: 4rem 0; }
}

/* ════════ DELIVERY / THANKS PAGE ════════ */
.eyebrow { display: inline-block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue); background: var(--blue-tint); padding: 0.4rem 0.85rem; border-radius: 100px; margin-bottom: 1.25rem; }
.subhead { font-size: clamp(1.05rem, 3.5vw, 1.2rem); color: var(--ink-soft); max-width: 34rem; margin: 0 auto 1.75rem; }
.deliver-hero { text-align: center; padding: 2rem 0 1.5rem; }
.deliver-hero .check { width: 52px; height: 52px; border-radius: 50%; background: var(--ok); color: #fff; display: grid; place-items: center; margin: 0 auto 1rem; font-size: 1.5rem; }
.deliver-hero h1 { font-size: clamp(1.8rem,6vw,2.4rem); color: var(--ink); font-weight: 700; letter-spacing: -.03em; line-height: 1.1; }
.deliver-hero h1 .serif { color: var(--blue); }
.video-frame { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #000; margin: 1.5rem 0; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-placeholder { position: absolute; inset: 0; display: grid; place-items: center; background: linear-gradient(135deg, #0a1a5c, #1400ff); color: #fff; text-align: center; padding: 1.5rem; }

.checklist { display: grid; gap: 0.7rem; margin: 1.25rem 0; }
.check-item { display: flex; gap: 0.85rem; align-items: flex-start; background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1rem 1.1rem; box-shadow: var(--shadow-sm); cursor: pointer; transition: border-color .15s, background .15s; }
.check-item:hover { border-color: var(--blue); }
.check-item input { flex-shrink: 0; width: 22px; height: 22px; margin-top: 2px; accent-color: var(--blue); cursor: pointer; }
.check-item .body { flex: 1; }
.check-item .body strong { display: block; color: var(--ink); font-size: 1rem; margin-bottom: 0.15rem; }
.check-item .body small { color: var(--ink-muted); font-size: 0.88rem; line-height: 1.5; }
.check-item.done { background: var(--blue-tint); }
.check-item.done .body strong { text-decoration: line-through; color: var(--ink-muted); }
.progress-wrap { background: var(--bg-card); border: 1px solid var(--line); border-radius: 100px; height: 12px; overflow: hidden; margin: 0.5rem 0 0.35rem; }
.progress-bar { height: 100%; width: 0; background: var(--blue); border-radius: 100px; transition: width .3s; }
.progress-label { font-size: 0.82rem; color: var(--ink-muted); text-align: center; }
.tip { background: var(--blush-tint); border: 1px solid #f0cfc9; border-radius: var(--radius-sm); padding: 0.9rem 1.1rem; font-size: 0.92rem; color: var(--ink); margin: 1rem 0; }
.tip strong { color: #b0453a; }
.upsell { background: var(--ink); color: #fff; border-radius: var(--radius); padding: 1.85rem 1.6rem; text-align: center; box-shadow: var(--shadow); margin: 2rem 0; }
.upsell h2 { color: #fff; }
.upsell h2 .serif { color: #b9b0ff; }
.upsell p { color: #c9cbd6; margin-bottom: 1.25rem; font-size: 1.02rem; }
.upsell .btn { max-width: 22rem; margin: 0 auto; }
.print-btn { background: none; border: 1.5px solid var(--line); color: var(--ink-soft); font-family: inherit; font-weight: 600; font-size: 0.9rem; padding: 0.6rem 1.1rem; border-radius: var(--radius-sm); cursor: pointer; }
.print-btn:hover { border-color: var(--blue); color: var(--blue); }

@media print {
  .no-print { display: none !important; }
  body { background: #fff; }
  .check-item { break-inside: avoid; box-shadow: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-aurora::before, .hero-aurora::after { animation: none; }
}
