/* Mineral Rights 101 — modern premium, centered, mobile-first */

:root {
  --bg: #ffffff;
  --bg-soft: #f7f8fa;
  --bg-elev: #fbfcfd;
  --ink: #0a0c12;
  --ink-2: #404657;
  --ink-3: #6b7385;
  --ink-4: #9aa1b1;
  --rule: #e8eaef;
  --rule-strong: #d8dbe3;

  --accent: #2c5fdb;
  --accent-2: #1e40af;
  --accent-tint: #eaf0fe;
  --accent-tint-2: #dbe5fd;
  --accent-ink: #ffffff;

  --good: #047857;

  --sans: "Geist", "Söhne", ui-sans-serif, -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "Geist Mono", "JetBrains Mono", ui-monospace, monospace;

  --max: 720px;
  --watch-max: 960px;

  --shadow-sm: 0 1px 2px rgba(10, 12, 18, 0.04), 0 1px 1px rgba(10, 12, 18, 0.02);
  --shadow-md: 0 2px 4px rgba(10, 12, 18, 0.04), 0 8px 24px -8px rgba(10, 12, 18, 0.1);
  --shadow-lg: 0 4px 12px -2px rgba(10, 12, 18, 0.08), 0 24px 48px -16px rgba(10, 12, 18, 0.18);
  --shadow-blue: 0 4px 12px -2px rgba(44, 95, 219, 0.25), 0 1px 2px rgba(44, 95, 219, 0.15);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01" 1, "cv11" 1;
  letter-spacing: -0.011em;
  text-rendering: optimizeLegibility;
}

.page { position: relative; min-height: 100vh; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 44px 20px 0;
  text-align: center;
}

/* ── Typography ────────────────────────────────────────────────────── */

.display {
  font-weight: 600;
  font-size: clamp(30px, 8.4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.034em;
  margin: 22px auto 18px;
  max-width: 18ch;
  text-wrap: balance;
  color: var(--ink);
}
.display em {
  font-style: normal;
  color: var(--accent);
  font-weight: 600;
}
.display-line { display: block; }
.display-line + .display-line { margin-top: 2px; }

.h2 {
  font-weight: 600;
  font-size: clamp(24px, 5.4vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.028em;
  margin: 8px auto 18px;
  text-wrap: balance;
  color: var(--ink);
  max-width: 22ch;
}
.h2 em { font-style: normal; color: var(--accent); font-weight: 600; }
.h2-final { color: var(--bg); max-width: 24ch; }
.h2-final em { color: #9fbcff; }
.h2-host { margin-top: 4px; max-width: none; }

.eyebrow {
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  margin-bottom: 14px;
  font-weight: 500;
  display: inline-block;
}
.eyebrow-light { color: rgba(255,255,255,0.6); }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink-2);
  border: 1px solid var(--rule);
  background: var(--bg-soft);
  padding: 7px 12px 7px 10px;
  border-radius: 100px;
  max-width: 100%;
}
.kicker span:last-child {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.kicker-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-tint);
  flex-shrink: 0;
}

.lede {
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 540px;
  margin: 0 auto 28px;
  text-wrap: pretty;
  letter-spacing: -0.012em;
}

/* ── Runtime badge ────────────────────────────────────────────────── */

.runtime-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-tint);
  color: var(--ink);
  border: 1px solid var(--accent-tint-2);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 13.5px;
  letter-spacing: -0.008em;
  margin-bottom: 22px;
  max-width: 100%;
  text-wrap: pretty;
}
.runtime-badge strong { color: var(--accent-2); font-weight: 600; }
.runtime-badge svg { color: var(--accent); flex-shrink: 0; }

/* ── Hero ──────────────────────────────────────────────────────────── */

.hero { padding: 8px 0 12px; }

/* ── Hero v3 — single column, poster on top of form ───────────────── */

.hero-v3 { padding: 0 0 16px; }

.hero-v3 .display {
  font-size: clamp(32px, 7.4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.034em;
  margin: 14px auto 14px;
  max-width: 18ch;
}

.hero-v3 .hero-meta-top {
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 12.5px;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.hero-v3 .hero-form-card {
  background: var(--ink);
  color: #fff;
  border-radius: 18px;
  padding: 0;
  text-align: center;
  border: 1px solid var(--ink);
  box-shadow:
    0 4px 14px -2px rgba(10, 12, 18, 0.18),
    0 24px 60px -20px rgba(10, 12, 18, 0.25);
  position: relative;
  overflow: hidden;
  scroll-margin-top: 80px;
  max-width: 540px;
  margin: 0 auto 24px;
}
.hero-v3 .hero-form-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 60%, rgba(44, 95, 219, 0.32), transparent 55%),
    radial-gradient(circle at 90% 100%, rgba(44, 95, 219, 0.18), transparent 55%);
  pointer-events: none;
}
.hero-v3 .hero-form-card > * { position: relative; z-index: 1; }

.hero-v3 .hero-poster {
  margin: 0;
  border-radius: 18px 18px 0 0;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  aspect-ratio: 1200 / 630;
  cursor: default;
  box-shadow: none;
}
.hero-v3 .hero-poster:hover { transform: none; box-shadow: none; }
.hero-v3 .poster-art-img {
  object-fit: cover;
  background: #0a0c12;
  border-radius: 18px 18px 0 0;
}

.hfc-body {
  padding: 24px 20px 22px;
}

.hfc-eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #ffcb47;
  font-weight: 500;
  margin-bottom: 8px;
}
.hfc-h {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.024em;
  color: #fff;
  margin: 0 0 8px;
  text-wrap: balance;
}
.hfc-h em { font-style: normal; color: #6ea3ff; font-weight: 600; }
.hfc-sub {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  margin: 0 0 18px;
  letter-spacing: -0.005em;
}
.hfc-disclaimer {
  font-size: 10.5px;
  color: rgba(255,255,255,0.45);
  margin-top: 12px;
  line-height: 1.5;
  letter-spacing: -0.003em;
  text-wrap: pretty;
}

@media (min-width: 640px) {
  .hero-v3 .hero-form-card { max-width: 560px; }
  .hfc-body { padding: 28px 28px 24px; }
  .hfc-h { font-size: 28px; }
  .hfc-sub { font-size: 14.5px; margin-bottom: 20px; }
}

@media (min-width: 1000px) {
  .hero-v3 .hero-form-card { max-width: 600px; }
  .hfc-body { padding: 32px 32px 28px; }
  .hfc-h { font-size: 30px; }
}

/* ── Opt-in modal (scroll/exit-intent popup) ───────────────────────── */

.optin-modal-scrim {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(10, 12, 18, 0.62);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  animation: scrim-in .2s ease;
}
@media (min-width: 640px) {
  .optin-modal-scrim {
    align-items: center;
    padding: 24px;
  }
}

.optin-modal {
  background:
    radial-gradient(120% 80% at 50% 0%, #14306a 0%, #0a0c12 70%),
    var(--ink);
  color: #fff;
  border-radius: 20px 20px 0 0;
  padding: 28px 22px 24px;
  width: 100%;
  max-width: 480px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 -8px 40px -8px rgba(0,0,0,0.45);
  border-top: 1px solid rgba(255,255,255,0.06);
  animation: modal-up .35s cubic-bezier(.2,.8,.2,1);
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 640px) {
  .optin-modal {
    border-radius: 20px;
    padding: 36px 32px 28px;
    box-shadow: 0 30px 80px -20px rgba(0,0,0,0.55);
    animation: modal-pop .3s cubic-bezier(.2,.8,.2,1);
  }
}
@keyframes modal-up {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes modal-pop {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.optin-modal-x {
  position: absolute;
  top: 12px; right: 12px;
  width: 32px; height: 32px;
  border: 0;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  border-radius: 8px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.optin-modal-x:hover { background: rgba(255,255,255,0.16); color: #fff; }

.optin-modal-eyebrow {
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #ffcb47;
  font-weight: 500;
  margin-bottom: 10px;
}
.optin-modal-h {
  text-align: center;
  font-weight: 600;
  font-size: clamp(22px, 5vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.026em;
  margin: 0 0 8px;
  text-wrap: balance;
}
.optin-modal-h em { font-style: normal; color: #6ea3ff; }
.optin-modal-sub {
  text-align: center;
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  margin: 0 0 18px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.005em;
}
.optin-modal-disclaimer {
  text-align: center;
  font-size: 10.5px;
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
  letter-spacing: -0.003em;
}
.optin-modal .optin { max-width: 100%; }

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  color: var(--ink-2);
  font-size: 13px;
  letter-spacing: -0.005em;
}
.meta-row { display: inline-flex; align-items: center; gap: 6px; }
.meta-row strong { color: var(--ink); font-weight: 600; }
.meta-dot {
  width: 3px; height: 3px;
  background: var(--ink-4); border-radius: 50%;
}

/* Hero poster */
.hero-poster {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  margin: 0 auto 32px;
  cursor: pointer;
  background: var(--ink);
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-md);
  transition: transform .25s ease, box-shadow .25s ease;
  max-width: 100%;
}
.hero-poster:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.poster-art-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.poster-art {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 50% 0%, #1e2b4f 0%, #0a0c12 70%, #050609 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.poster-monogram {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(80px, 22vw, 180px);
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  letter-spacing: -0.05em;
  user-select: none;
}
.poster-stripes {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(44, 95, 219, 0.05) 0 1px, transparent 1px 16px);
  pointer-events: none;
}
.poster-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,0.55) 100%);
}
.poster-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 3px;
  box-shadow:
    0 0 0 6px rgba(255,255,255,0.18),
    0 0 0 1px rgba(255,255,255,0.2) inset,
    0 10px 30px -6px rgba(0, 0, 0, 0.5);
  transition: transform .2s ease, background .2s ease;
}
.hero-poster:hover .poster-play { transform: translate(-50%, -50%) scale(1.08); background: #4477e8; }
.poster-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.9);
  gap: 8px;
}
.poster-lock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 6px 10px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
  letter-spacing: -0.005em;
  color: rgba(255, 255, 255, 0.85);
  min-width: 0;
}
.poster-lock span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.poster-runtime {
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 4px 9px;
  border-radius: 6px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-top: 1px solid var(--rule);
  padding-top: 20px;
  margin: 0 auto;
  max-width: 440px;
}
.proof-avatars { display: flex; flex-shrink: 0; }
.avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-right: -8px;
}
.avatar.a0 { background: linear-gradient(135deg, #4477e8, #1e3a8a); }
.avatar.a1 { background: linear-gradient(135deg, #5e6ad2, #2e3287); }
.avatar.a2 { background: linear-gradient(135deg, #6a8ad6, #2a4a7f); }
.avatar.a3 { background: linear-gradient(135deg, #82a3e5, #345296); }
.avatar.a4 { background: linear-gradient(135deg, #94a3b8, #475569); }
.proof-text {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.35;
  text-align: left;
  letter-spacing: -0.005em;
}
.proof-text strong { color: var(--ink); font-weight: 600; }
.stars {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 1px;
}

/* ── Buttons ───────────────────────────────────────────────────────── */

.btn-primary {
  appearance: none;
  border: 0;
  cursor: pointer;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: -0.01em;
  padding: 11px 18px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: transform .12s ease, background .16s ease, box-shadow .16s ease;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.12) inset,
    0 0 0 1px rgba(0,0,0,0.04),
    var(--shadow-blue);
}
.btn-primary:hover {
  transform: translateY(-1px);
  background: #3568dd;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.12) inset,
    0 0 0 1px rgba(0,0,0,0.04),
    0 8px 22px -4px rgba(44, 95, 219, 0.4);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled { opacity: 0.7; cursor: wait; }

.btn-big {
  font-size: 15.5px;
  font-weight: 500;
  padding: 15px 24px;
  border-radius: 12px;
  min-height: 48px; /* mobile tap target */
}
.btn-full { width: 100%; }
.btn-sm { padding: 8px 14px; font-size: 13px; border-radius: 8px; }

.link-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--ink-3);
  font-family: var(--sans);
  font-size: 13px;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 6px;
}
.link-btn:hover { color: var(--ink); background: var(--bg-soft); }

/* ── Sections ──────────────────────────────────────────────────────── */

.section { padding: 56px 0; }
.section-tight { padding: 48px 0; }

.divider {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  height: 1px;
}
.divider span {
  display: block;
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  position: relative;
}
.divider span::before, .divider span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--rule-strong), transparent);
}
.divider span::before { right: calc(100% + 10px); }
.divider span::after { left: calc(100% + 10px); }

/* ── Problem checklist ────────────────────────────────────────────── */

.checklist {
  list-style: none;
  padding: 0;
  margin: 0 auto 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
  text-align: left;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
  color: var(--ink-2);
  letter-spacing: -0.008em;
  line-height: 1.5;
}
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  flex-shrink: 0;
  border-radius: 7px;
  background: var(--accent-tint);
  color: var(--accent);
  margin-top: 2px;
}

.callout {
  font-size: 17px;
  line-height: 1.45;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.018em;
  background: var(--bg-soft);
  border: 1px solid var(--rule);
  padding: 18px 22px;
  margin: 28px auto 0;
  border-radius: 14px;
  max-width: 520px;
  text-wrap: pretty;
  text-align: center;
  position: relative;
}
.callout em { font-style: normal; color: var(--accent); font-weight: 600; }
.callout strong { font-weight: 600; }

/* ── Secrets ───────────────────────────────────────────────────────── */

.secrets {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px auto;
  max-width: 560px;
}
.secret {
  padding: 24px 22px;
  border: 1px solid var(--rule);
  border-radius: 16px;
  background: var(--bg-elev);
  text-align: center;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.secret:hover {
  border-color: var(--rule-strong);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.secret-n {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2px;
}
.secret-n-label {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  font-weight: 500;
  margin-bottom: 2px;
}
.secret-n span {
  display: block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 44px;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
}
.secret-title {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.18;
  letter-spacing: -0.022em;
  margin: 4px 0 4px;
  color: var(--ink);
  max-width: 22ch;
  text-wrap: balance;
}
.secret-hook {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-2);
  letter-spacing: -0.008em;
  max-width: 38ch;
  text-wrap: pretty;
}
.secret-hook em { font-style: normal; color: var(--ink); font-weight: 600; }

.secrets-bonus {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  background: var(--accent-tint);
  border: 1px solid var(--accent-tint-2);
  border-radius: 14px;
  padding: 16px 20px;
  font-size: 14.5px;
  color: var(--ink-2);
  letter-spacing: -0.008em;
  margin: 6px auto 0;
  max-width: 560px;
  text-align: center;
}
.secrets-bonus strong { color: var(--ink); font-weight: 600; }
.bonus-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  white-space: nowrap;
  font-weight: 500;
}

/* ── Host ──────────────────────────────────────────────────────────── */

.section-host { text-align: center; }
.host-photo {
  position: relative;
  width: 160px;
  aspect-ratio: 4/5;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(160deg, #e8ecf3, #c8d0de);
  border: 1px solid var(--rule);
  margin: 14px auto 24px;
}
.host-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}
.host-photo-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.ph-monogram {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 52px;
  color: rgba(10, 12, 18, 0.18);
  letter-spacing: -0.04em;
  line-height: 1;
}
.ph-caption {
  font-family: var(--mono);
  font-size: 9.5px;
  text-transform: lowercase;
  letter-spacing: 0.14em;
  color: rgba(10, 12, 18, 0.4);
}
.host-stamp {
  position: absolute;
  right: -8px;
  bottom: -8px;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px -4px rgba(44, 95, 219, 0.4), 0 0 0 3px var(--bg);
}
.stamp-num {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.03em;
}
.stamp-lbl {
  font-family: var(--mono);
  font-size: 7.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.2;
  margin-top: 2px;
  font-weight: 500;
  opacity: 0.85;
}

.host-role {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin: -8px 0 18px;
  font-weight: 500;
}
.host-lede {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 auto 22px;
  max-width: 560px;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}
.host-lede strong { color: var(--ink); font-weight: 600; }
.cred-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-2);
  letter-spacing: -0.005em;
  max-width: 440px;
  position: relative;
}
.cred-list li {
  padding: 8px 14px;
  background: var(--bg-soft);
  border: 1px solid var(--rule);
  border-radius: 100px;
  line-height: 1.35;
}

.host-press {
  border-top: 1px solid var(--rule);
  padding-top: 20px;
  margin-top: 6px;
}
.press-label {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}
.press-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: -0.01em;
}

/* ── Quote ─────────────────────────────────────────────────────────── */

.section-quote { padding: 64px 0; text-align: center; }
.quote {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(20px, 4.6vw, 26px);
  line-height: 1.38;
  color: var(--ink);
  margin: 0 auto 18px;
  max-width: 620px;
  text-wrap: balance;
  position: relative;
  letter-spacing: -0.022em;
}
.quote strong { color: var(--accent); font-weight: 600; }
.quote em { font-style: normal; color: var(--ink); font-weight: 600; }
.quote-mark {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 48px;
  color: var(--accent);
  display: block;
  line-height: 0.6;
  margin-bottom: 14px;
}
.quote-attr { font-size: 13.5px; letter-spacing: -0.005em; }
.qa-name { font-weight: 600; color: var(--ink); }
.qa-role { color: var(--ink-3); }

.quote-disclaimer {
  font-size: 11.5px;
  color: var(--ink-3);
  max-width: 480px;
  margin: 18px auto 0;
  line-height: 1.5;
  letter-spacing: -0.003em;
  font-style: italic;
}

/* ── Disclaimers ──────────────────────────────────────────────────── */

.final-disclaimer {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  margin-top: 16px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.003em;
}

.watch-disclaimer {
  font-size: 11.5px;
  color: var(--ink-3);
  line-height: 1.55;
  margin-top: 18px;
  letter-spacing: -0.003em;
  padding: 12px 14px;
  border-top: 1px solid var(--rule);
  text-align: left;
}

/* ── Important Disclosures ───────────────────────────────────────── */

.disclosures {
  max-width: var(--max);
  margin: 16px auto 0;
  padding: 0 20px;
}
.disc-details {
  border: 1px solid var(--rule);
  border-radius: 14px;
  background: var(--bg-soft);
  overflow: hidden;
  transition: border-color .15s ease;
}
.disc-details[open] { border-color: var(--rule-strong); }
.disc-summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  cursor: pointer;
  user-select: none;
  color: var(--ink-2);
  font-size: 13px;
  letter-spacing: -0.005em;
  transition: background .12s ease;
}
.disc-summary::-webkit-details-marker { display: none; }
.disc-summary:hover { background: rgba(10, 12, 18, 0.025); }
.disc-summary-label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-2);
  font-weight: 500;
}
.disc-chev {
  color: var(--ink-3);
  transition: transform .2s ease;
  flex-shrink: 0;
}
.disc-details[open] .disc-chev { transform: rotate(180deg); }
.disc-body {
  padding: 4px 18px 18px;
  border-top: 1px solid var(--rule);
  text-align: left;
}
.disc-body p {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 14px 0 0;
  letter-spacing: -0.003em;
}
.disc-body p:first-child { margin-top: 14px; }
.disc-body strong { color: var(--ink); font-weight: 600; }
.disc-body em { font-style: italic; color: var(--ink); }

@media (min-width: 640px) {
  .disclosures { padding: 0 28px; }
  .disc-summary { padding: 16px 22px; font-size: 14px; }
  .disc-body { padding: 4px 22px 22px; }
  .disc-body p { font-size: 13px; }
  .quote-disclaimer { font-size: 12px; }
  .final-disclaimer { font-size: 12px; }
  .watch-disclaimer { font-size: 12px; }
}

/* ── Final form section ───────────────────────────────────────────── */

.section-final { padding: 40px 0 24px; }
.final-card {
  background:
    radial-gradient(120% 80% at 50% 0%, #14306a 0%, #0a0c12 70%),
    var(--ink);
  color: var(--bg);
  border-radius: 20px;
  padding: 40px 22px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--ink);
  box-shadow: var(--shadow-lg);
}
.final-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(44, 95, 219, 0.4), transparent 50%),
    radial-gradient(circle at 85% 100%, rgba(44, 95, 219, 0.25), transparent 50%);
  pointer-events: none;
}
.final-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 24px);
  pointer-events: none;
}
.final-card > * { position: relative; z-index: 1; }

.final-sub {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  max-width: 460px;
  margin: 0 auto 24px;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}

/* ── Opt-in form ──────────────────────────────────────────────────── */

.optin {
  display: flex;
  flex-direction: column;
  gap: 11px;
  max-width: 380px;
  margin: 0 auto;
  text-align: left;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field > span {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  font-weight: 500;
}
.field input {
  appearance: none;
  border: 1px solid var(--rule-strong);
  background: var(--bg);
  border-radius: 10px;
  padding: 13px 14px;
  font-family: var(--sans);
  font-size: 16px; /* keep 16+ to avoid iOS zoom */
  letter-spacing: -0.01em;
  color: var(--ink);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
  min-height: 48px;
  width: 100%;
}
.field input::placeholder { color: var(--ink-4); }
.field input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-tint);
}
.form-err {
  font-size: 13px;
  color: #b91c1c;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 9px 11px;
  letter-spacing: -0.005em;
  text-align: center;
}
.optin-fine {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--ink-3);
  justify-content: center;
  margin-top: 4px;
  letter-spacing: -0.005em;
}

/* dark-on-dark variant (inside final-card) */
.optin-dark .field > span { color: rgba(255,255,255,0.55); }
.optin-dark .field input {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--bg);
}
.optin-dark .field input::placeholder { color: rgba(255, 255, 255, 0.3); }
.optin-dark .field input:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(44, 95, 219, 0.3);
}
.optin-dark .optin-fine { color: rgba(255, 255, 255, 0.5); }
.optin-dark .form-err {
  color: #fecaca;
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.3);
}

/* ── Footer ────────────────────────────────────────────────────────── */

.foot {
  max-width: var(--max);
  margin: 32px auto 0;
  padding: 28px 20px 36px;
  border-top: 1px solid var(--rule);
  text-align: center;
}
.foot-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 18px;
}
.foot-mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.022em;
}
.mark-glyph { color: var(--accent); font-size: 16px; }
.foot-links {
  display: flex;
  gap: 18px;
  font-size: 13px;
  justify-content: center;
}
.foot-links a {
  color: var(--ink-3);
  text-decoration: none;
  letter-spacing: -0.005em;
}
.foot-links a:hover { color: var(--ink); }
.foot-fine {
  font-size: 11.5px;
  color: var(--ink-3);
  line-height: 1.55;
  margin: 0 auto;
  max-width: 600px;
  letter-spacing: -0.003em;
  text-align: center;
}

/* ── Sticky bar ───────────────────────────────────────────────────── */

.sticky-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
  transform: translateY(-100%);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.sticky-bar.is-visible { transform: translateY(0); }
.sticky-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.sticky-left {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  font-size: 13px;
}
.sticky-label {
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  white-space: nowrap;
  font-weight: 500;
}
.sticky-sep { color: var(--ink-4); }
.sticky-title {
  color: var(--ink);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.01em;
  min-width: 0;
}
.dot-live {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-tint);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px var(--accent-tint); }
  50% { box-shadow: 0 0 0 5px rgba(44, 95, 219, 0.06); }
}

/* ── Watch page ───────────────────────────────────────────────────── */

.watch-page {
  max-width: var(--watch-max);
  margin: 0 auto;
  padding: 20px 18px 60px;
  text-align: center;
  animation: fadeIn .35s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.watch-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 28px;
  text-align: left;
}
.watch-mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.022em;
}
.watch-greet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-2);
}
.watch-greet-name { color: var(--ink); font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 140px; }

.watch-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.watch-eyebrow .eyebrow { margin: 0; }
.watch-access {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--good);
  background: rgba(4, 120, 87, 0.08);
  border: 1px solid rgba(4, 120, 87, 0.22);
  padding: 4px 9px;
  border-radius: 100px;
  font-weight: 500;
}

.watch-title {
  font-weight: 600;
  font-size: clamp(28px, 7.2vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.034em;
  margin: 0 auto 12px;
  max-width: 16ch;
  text-wrap: balance;
  color: var(--ink);
}
.watch-title em { font-style: normal; color: var(--accent); font-weight: 600; }
.watch-sub {
  font-size: 15.5px;
  color: var(--ink-2);
  max-width: 560px;
  margin: 0 auto 24px;
  line-height: 1.5;
  letter-spacing: -0.012em;
  text-wrap: pretty;
}

.video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-md);
  margin: 0 auto 28px;
  max-width: 100%;
}
.video-wrap iframe,
.video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
  object-fit: contain;
}

.watch-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 22px;
}
.action-card {
  appearance: none;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  text-decoration: none;
  color: var(--ink);
  cursor: pointer;
  font-family: inherit;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.action-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.action-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--accent-tint);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.action-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 3px;
  letter-spacing: -0.012em;
}
.action-sub {
  font-size: 12.5px;
  color: var(--ink-3);
  line-height: 1.3;
  letter-spacing: -0.005em;
}

.watch-tip {
  font-size: 13.5px;
  color: var(--ink-2);
  background: var(--accent-tint);
  border: 1px solid var(--accent-tint-2);
  border-radius: 10px;
  padding: 12px 14px;
  letter-spacing: -0.005em;
  text-align: left;
}
.watch-tip strong { color: var(--accent-2); font-weight: 600; }
.email-tag {
  font-family: var(--mono);
  font-size: 12px;
  background: var(--bg);
  border: 1px solid var(--accent-tint-2);
  padding: 1px 7px;
  border-radius: 5px;
  color: var(--ink);
}

/* ── Bold tone variant ────────────────────────────────────────────── */

body[data-tone="bold"] .display { font-size: clamp(32px, 9.6vw, 64px); letter-spacing: -0.04em; }
body[data-tone="bold"] .display em {
  background: var(--accent-tint);
  padding: 0 8px;
  margin: 0 -2px;
  border-radius: 6px;
  color: var(--accent-2);
}
body[data-tone="bold"] .btn-big {
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 13.5px;
  font-weight: 600;
}
body[data-tone="bold"] .kicker {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}
body[data-tone="bold"] .kicker-dot {
  background: var(--accent-ink);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

/* ── Multistep qualifier ──────────────────────────────────────────── */

.optin-progress {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin: 0 auto 18px;
}
.progress-pip {
  width: 24px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.12);
  transition: background .25s ease;
}
.progress-pip.is-on { background: var(--accent); }
.progress-pip.is-active { background: #6ea3ff; box-shadow: 0 0 8px rgba(110,163,255,0.6); }

.optin:not(.optin-dark) .progress-pip { background: var(--rule); }
.optin:not(.optin-dark) .progress-pip.is-on { background: var(--accent); }

.qualify-head {
  text-align: center;
  margin-bottom: 16px;
}
.qualify-eyebrow {
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
  font-weight: 500;
}
.qualify-title {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.022em;
  color: #fff;
  margin-bottom: 6px;
  text-wrap: balance;
}
.qualify-sub {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
  letter-spacing: -0.005em;
}
.qualify-head-final .qualify-title { font-size: 20px; }

/* Light variant (when form sits on white) */
.optin:not(.optin-dark) .qualify-eyebrow { color: var(--ink-3); }
.optin:not(.optin-dark) .qualify-title { color: var(--ink); }
.optin:not(.optin-dark) .qualify-sub { color: var(--ink-2); }

.qualify-options {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 8px;
  opacity: 1;
}

.qualify-opt {
  appearance: none;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  width: 100%;
  padding: 13px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  cursor: pointer;
  color: #fff;
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.35;
  letter-spacing: -0.008em;
  transition: background .15s ease, border-color .15s ease, transform .12s ease;
  min-height: 52px;
}
.qualify-opt:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.26);
  transform: translateY(-1px);
}
.qualify-opt.is-selected {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 4px 12px -4px rgba(44, 95, 219, 0.5);
}
.qualify-opt.is-priority {
  border-color: rgba(255, 203, 71, 0.45);
  background: rgba(255, 203, 71, 0.06);
}
.qualify-opt.is-priority.is-selected {
  background: var(--accent);
  border-color: var(--accent);
}

/* Light variant for options */
.optin:not(.optin-dark) .qualify-opt {
  background: var(--bg);
  border-color: var(--rule-strong);
  color: var(--ink);
}
.optin:not(.optin-dark) .qualify-opt:hover {
  background: var(--bg-soft);
  border-color: var(--accent);
}
.optin:not(.optin-dark) .qualify-opt.is-selected {
  background: var(--accent-tint);
  border-color: var(--accent);
  color: var(--ink);
  box-shadow: none;
}

.qualify-opt-box {
  width: 20px; height: 20px;
  border-radius: 6px;
  border: 1.5px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background .15s ease, border-color .15s ease;
}
.qualify-opt.is-selected .qualify-opt-box {
  background: #fff;
  border-color: #fff;
  color: var(--accent);
}
.optin:not(.optin-dark) .qualify-opt-box {
  border-color: var(--rule-strong);
  background: #fff;
  color: var(--accent);
}

.qualify-opt-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.qualify-opt-label {
  font-weight: 500;
}
.qualify-opt-note {
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffcb47;
  font-weight: 500;
}
.qualify-opt.is-selected .qualify-opt-note { color: rgba(255,255,255,0.85); }
.optin:not(.optin-dark) .qualify-opt-note { color: var(--accent); }

.qualify-back {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.55);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: -0.005em;
  cursor: pointer;
  padding: 8px 10px;
  margin: 6px auto 0;
  border-radius: 6px;
  align-self: center;
}
.qualify-back:hover {
  color: #fff;
  background: rgba(255,255,255,0.06);
}
.optin:not(.optin-dark) .qualify-back { color: var(--ink-3); }
.optin:not(.optin-dark) .qualify-back:hover { color: var(--ink); background: var(--bg-soft); }

/* Two-up name row */
.optin-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 360px) {
  .optin-grid-2 { grid-template-columns: 1fr; }
}

.optin-qualify { opacity: 1; }

/* Slightly more width for the qualifier */
.optin { max-width: 460px; }
@media (min-width: 640px) {
  .optin { max-width: 480px; }
}

.avatar-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 200;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 4px rgba(255,255,255,0.85),
    0 4px 14px -2px rgba(44, 95, 219, 0.5),
    0 12px 32px -8px rgba(10, 12, 18, 0.3);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
  animation: fab-in .45s cubic-bezier(.2,.8,.2,1) .8s both;
}
@keyframes fab-in {
  0% { opacity: 0; transform: scale(.3) translateY(20px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.avatar-fab:hover { background: #3568dd; transform: translateY(-2px) scale(1.04); }
.avatar-fab:active { transform: translateY(0) scale(0.98); }
.avatar-fab.is-open { opacity: 0; pointer-events: none; transform: scale(.6); }

.avatar-fab-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.35;
  animation: fab-ring 2.4s ease-out infinite;
}
@keyframes fab-ring {
  0% { transform: scale(0.85); opacity: 0.5; }
  100% { transform: scale(1.55); opacity: 0; }
}

.avatar-tip {
  position: fixed;
  right: 90px;
  bottom: 30px;
  z-index: 199;
  background: var(--ink);
  color: #fff;
  padding: 9px 14px 9px 14px;
  border-radius: 100px;
  font-size: 13px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 8px 24px -6px rgba(10, 12, 18, 0.4);
  animation: tip-in .35s cubic-bezier(.2,.8,.2,1);
  max-width: calc(100vw - 110px);
  white-space: nowrap;
}
.avatar-tip::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: var(--ink);
  border-radius: 2px;
}
@keyframes tip-in {
  from { opacity: 0; transform: translateX(8px); }
  to   { opacity: 1; transform: translateX(0); }
}
.avatar-tip-x {
  appearance: none;
  border: 0;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  width: 20px; height: 20px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 2px;
}
.avatar-tip-x:hover { background: rgba(255,255,255,0.2); color: #fff; }

.avatar-scrim {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10, 12, 18, 0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 16px;
  animation: scrim-in .25s ease;
}
@keyframes scrim-in { from { opacity: 0; } to { opacity: 1; } }

.avatar-panel {
  background: var(--bg);
  border-radius: 18px;
  width: 100%;
  max-width: 520px;
  max-height: calc(100vh - 32px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.55), 0 0 0 1px var(--rule);
  animation: panel-in .3s cubic-bezier(.2,.8,.2,1);
}
@keyframes panel-in {
  from { opacity: 0; transform: translateY(20px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.avatar-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--rule);
  background: var(--bg-soft);
  flex-shrink: 0;
}
.avatar-panel-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.avatar-panel-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--good);
  box-shadow: 0 0 0 3px rgba(4,120,87,0.16);
  animation: dot-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(4,120,87,0.16); }
  50% { box-shadow: 0 0 0 6px rgba(4,120,87,0.04); }
}
.avatar-panel-name {
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.018em;
  color: var(--ink);
}
.avatar-panel-sub {
  font-size: 11.5px;
  color: var(--ink-3);
  letter-spacing: -0.005em;
  margin-top: 1px;
}
.avatar-panel-x {
  appearance: none;
  border: 0;
  background: rgba(0,0,0,0.04);
  color: var(--ink-2);
  width: 30px; height: 30px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.avatar-panel-x:hover { background: rgba(0,0,0,0.08); color: var(--ink); }

.avatar-frame-wrap {
  background: #000;
  flex: 1 1 auto;
  min-height: 280px;
  position: relative;
  aspect-ratio: 16 / 9;
}
.avatar-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.avatar-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: linear-gradient(to right, var(--accent-tint), var(--bg-soft));
  border-top: 1px solid var(--accent-tint-2);
  flex-shrink: 0;
}
.avatar-cta-text {
  flex: 1;
  min-width: 0;
}
.avatar-cta-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 2px;
}
.avatar-cta-sub {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: -0.012em;
}
.avatar-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: -0.008em;
  padding: 9px 14px;
  border-radius: 9px;
  text-decoration: none;
  flex-shrink: 0;
  transition: background .15s ease, transform .12s ease, box-shadow .15s ease;
  box-shadow: 0 2px 8px -2px rgba(44, 95, 219, 0.45);
}
.avatar-cta-btn:hover {
  background: #3568dd;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px -2px rgba(44, 95, 219, 0.5);
}

@media (max-width: 460px) {
  .avatar-cta-row { flex-direction: column; align-items: stretch; gap: 8px; padding: 12px 14px; }
  .avatar-cta-btn { justify-content: center; padding: 11px 14px; }
}

.avatar-panel-foot {
  padding: 12px 16px;
  border-top: 1px solid var(--rule);
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--ink-3);
  background: var(--bg-soft);
  letter-spacing: -0.003em;
  flex-shrink: 0;
}
.avatar-panel-foot strong { color: var(--ink-2); font-weight: 600; }

@media (min-width: 640px) {
  .avatar-scrim {
    align-items: flex-end;
    padding: 24px;
  }
  .avatar-panel { max-width: 460px; }
  .avatar-frame-wrap { min-height: 260px; }
}

@media (max-width: 460px) {
  .avatar-fab { width: 54px; height: 54px; right: 14px; bottom: 14px; }
  .avatar-tip { right: 76px; bottom: 24px; font-size: 12.5px; padding: 8px 12px; }
}

@media (min-width: 640px) {
  body { font-size: 17px; }
  .wrap { padding: 64px 28px 0; }
  .section { padding: 72px 0; }
  .section-tight { padding: 60px 0; }
  .section-final { padding: 56px 0 28px; }

  .display { line-height: 1.04; letter-spacing: -0.034em; }
  .h2 { letter-spacing: -0.03em; }

  .lede { font-size: 19px; max-width: 620px; }

  .runtime-badge { font-size: 14px; padding: 9px 16px; }

  .hero-cta { gap: 16px; margin-bottom: 36px; }
  .hero-meta { font-size: 13.5px; gap: 10px 14px; }

  .poster-play { width: 76px; height: 76px; padding-left: 4px; }
  .poster-overlay { padding: 18px; }
  .poster-lock { padding: 7px 12px; font-size: 12px; }
  .poster-runtime { padding: 5px 10px; font-size: 11.5px; }

  .hero-proof { padding-top: 24px; }
  .avatar { width: 30px; height: 30px; }

  .checklist { gap: 14px; max-width: 580px; }
  .checklist li { font-size: 17px; }

  .callout { font-size: 19px; padding: 22px 26px; max-width: 600px; }

  .secrets { gap: 16px; max-width: 640px; }
  .secret { padding: 30px 28px; }
  .secret-title { font-size: 22px; }
  .secret-hook { font-size: 15.5px; max-width: 44ch; }
  .secret-n span { font-size: 52px; }

  .host-photo { width: 200px; }
  .host-stamp { width: 72px; height: 72px; }
  .stamp-num { font-size: 30px; }
  .host-lede { font-size: 16.5px; }
  .cred-list { font-size: 14.5px; max-width: 500px; }

  .quote { font-size: clamp(22px, 3vw, 28px); }
  .quote-mark { font-size: 56px; }

  .final-card { padding: 52px 36px 40px; border-radius: 22px; }
  .final-sub { font-size: 16px; max-width: 520px; }
  .optin { max-width: 420px; }

  .foot-row { flex-direction: row; justify-content: space-between; }
  .foot { padding: 32px 28px 40px; }

  .watch-page { padding: 28px 28px 80px; }
  .watch-header { margin-bottom: 36px; padding-bottom: 22px; }
  .watch-mark { font-size: 17px; }
  .watch-greet { font-size: 13.5px; }
  .watch-greet-name { max-width: none; }
  .watch-sub { font-size: 17px; }
  .video-wrap { border-radius: 16px; }
  .watch-actions { grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 28px; }
}

@media (min-width: 900px) {
  .wrap { padding: 80px 28px 0; max-width: 780px; }
  .section { padding: 88px 0; }
  .display { font-size: 60px; }
  .h2 { font-size: 36px; }
  .divider span::before, .divider span::after { width: 220px; }
}
