/* ALAMOvoice marketing site — shared styles */
:root {
  --navy: #0b1a2f;
  --navy-deep: #050d1a;
  --navy-card: #0f1d35;
  --gold: #d4af37;
  --gold-bright: #e8d48b;
  --gold-dim: #a88a2a;
  --gold-faint: rgba(212,175,55,0.12);
  --text: #e9e6dc;
  --text-bright: #ffffff;
  --muted: #8e9bb0;
  --border: #1d2d44;
  --border-bright: #2d4264;
  --bg-input: #0a1424;
  --success: #00b464;
  --warning: #d99a2a;
  --error: #dc3232;
  --max: 1080px;
  /* Type system (swapped off Inter 2026-06-02 — "doesn't look vibe-coded").
     Change these two lines to re-skin the whole site's typography. */
  --font-display: 'Clash Display', 'General Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'General Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-wordmark: 'Cinzel', serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--navy-deep);
  background: radial-gradient(ellipse at top, var(--navy) 0%, var(--navy-deep) 70%);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5,13,26,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  font-family: var(--font-wordmark);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 5px;
  color: var(--gold);
  text-decoration: none;
}
.nav-brand .dot {
  color: var(--text);
  opacity: 0.4;
  margin: 0 6px;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--navy-deep) !important;
  padding: 9px 18px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.2s;
}
.nav-cta:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
}
@media (max-width: 720px) {
  .nav-inner { padding: 14px 16px; }
  .nav-brand { font-size: 14px; letter-spacing: 3px; }
  .nav-links { gap: 14px; }
  /* Hide ALL nav links on mobile incl. the CTA — it was overflowing the header.
     The hero has its own primary "Try Coach Free" button. */
  .nav-links a { display: none; }
}

/* ===== Layout helpers ===== */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-tight { padding: 48px 0; }
.center { text-align: center; }

/* ===== Typography =====
   Headings/display = Clash Display, body = General Sans (off Inter 2026-06-02).
   Cinzel survives only as the ALAMO·VOICE wordmark (.nav-brand / .foot-brand). */
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; color: var(--text-bright); line-height: 1.12; }
h1 { font-size: 52px; letter-spacing: -0.02em; margin: 0 0 24px; }
h2 { font-size: 36px; letter-spacing: -0.015em; margin: 0 0 18px; }
h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; margin: 0 0 12px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
  display: block;
}
/* Centered section eyebrows get flanking gold hairlines — house craft motif */
.center .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.center .eyebrow::before,
.center .eyebrow::after {
  content: '';
  width: 34px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim));
}
.center .eyebrow::after {
  background: linear-gradient(to left, transparent, var(--gold-dim));
}
.lede { font-size: 18px; line-height: 1.7; color: var(--muted); }
@media (max-width: 720px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  .lede { font-size: 16px; }
  .section { padding: 56px 0; }
}

/* ===== Hero ===== */
.hero {
  padding: 88px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: -50% -10% auto -10%;
  height: 120%;
  background: radial-gradient(ellipse at center, var(--gold-faint) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }
.hero h1 { max-width: 820px; margin: 0 auto 24px; }
.hero .sub {
  font-size: 19px;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 4px 14px rgba(212,175,55,0.3);
}
.btn-primary:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,175,55,0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--text-bright);
  border: 1px solid var(--border-bright);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Card grid ===== */
.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover {
  border-color: var(--border-bright);
  transform: translateY(-2px);
}
.card h3 { font-size: 20px; margin: 0 0 10px; color: var(--gold); }
.card p { color: var(--muted); margin: 0; font-size: 15px; line-height: 1.6; }

/* ===== Steps ===== */
.steps {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  counter-reset: step;
}
.step {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  position: relative;
  counter-increment: step;
}
.step::before {
  content: counter(step);
  position: absolute;
  top: -18px;
  left: 24px;
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--navy-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
}
.step h3 { color: var(--text-bright); font-size: 18px; margin-top: 8px; }
.step p { color: var(--muted); font-size: 15px; }

/* ===== Voice character cards ===== */
.voice-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.voice-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
}
.voice-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.voice-card .name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold);
  font-size: 20px;
  letter-spacing: -0.01em;
}
.voice-card .reg {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  flex-grow: 1;
}
.voice-card .play-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-bright);
  background: var(--gold-faint);
  border: 1px solid var(--gold-dim);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  margin-top: 8px;
  transition: all 0.2s;
}
.voice-card .play-btn:hover { background: rgba(212,175,55,0.22); border-color: var(--gold); }
.voice-card .play-btn .triangle {
  width: 0; height: 0;
  border-left: 7px solid var(--gold);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

/* ===== Talking-avatar voice cards ===== */
.voice-card.has-avatar { padding: 0; overflow: hidden; position: relative; }
.voice-card.has-avatar:hover {
  border-color: var(--gold);
  box-shadow: 0 16px 46px -18px rgba(212,175,55,0.5), 0 0 0 1px rgba(212,175,55,0.25);
}
/* Reveal-on-scroll stagger — JS adds .reveal (no-JS keeps cards visible).
   Opacity-only so it never conflicts with the :hover lift transform. */
@media (prefers-reduced-motion: no-preference) {
  .voice-grid.reveal .voice-card { opacity: 0; transition: opacity 0.6s ease; }
  .voice-grid.reveal .voice-card.in { opacity: 1; }
}
.vc-avatar {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: #0a1424;
  overflow: hidden;
}
.vc-avatar video,
.vc-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}
.voice-card.has-avatar:hover .vc-avatar video,
.voice-card.has-avatar:hover .vc-avatar img { transform: scale(1.03); }
.vc-avatar::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(5,13,26,0) 38%, rgba(5,13,26,0.55) 72%, rgba(5,13,26,0.95) 100%);
  pointer-events: none;
  z-index: 1;
}
/* Cast number — top-left film-credit tick */
.vc-num {
  position: absolute; top: 12px; left: 14px; z-index: 2;
  font-family: var(--font-display); font-weight: 700;
  font-size: 13px; letter-spacing: 1.5px;
  color: var(--gold); opacity: 0.9;
  text-shadow: 0 1px 8px rgba(0,0,0,0.75);
  pointer-events: none;
}
/* Lower-third chyron — name + archetype role over the portrait */
.vc-chyron {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 16px 72px 14px 16px;
  display: flex; flex-direction: column; gap: 3px;
  pointer-events: none;
}
.vc-chyron .vc-name {
  font-family: var(--font-display);
  color: var(--text-bright);
  font-size: 22px; font-weight: 800; line-height: 1.05; letter-spacing: -0.01em;
  text-shadow: 0 2px 14px rgba(0,0,0,0.7);
}
.vc-chyron .vc-role {
  font-size: 10.5px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold-bright);
  text-shadow: 0 1px 10px rgba(0,0,0,0.8);
}
.vc-play {
  position: absolute;
  bottom: 12px; right: 12px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(5,13,26,0.62);
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 2;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  transition: background 0.2s, transform 0.2s;
}
.vc-play:hover { background: var(--gold); transform: scale(1.08); }
.vc-play .triangle {
  width: 0; height: 0;
  border-left: 11px solid var(--gold);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  margin-left: 3px;
}
.vc-play:hover .triangle { border-left-color: #0a1424; }
.vc-play .pause-bars { display: none; gap: 3px; }
.vc-play .pause-bars span { width: 4px; height: 15px; background: var(--gold); border-radius: 1px; }
.vc-play:hover .pause-bars span { background: #0a1424; }
.voice-card.playing .vc-play .triangle { display: none; }
.voice-card.playing .vc-play .pause-bars { display: flex; }
.vc-body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 7px; }
/* Noir "voice-only" card — intentional, not a placeholder TODO */
.vc-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; text-align: center; padding: 16px 16px 64px;
  background:
    radial-gradient(ellipse at 50% 36%, rgba(212,175,55,0.16), rgba(10,20,36,0) 60%),
    linear-gradient(165deg, #16263f 0%, #0b1626 52%, #060e1c 100%);
}
.vc-placeholder .ph-ring {
  width: 92px; height: 92px; border-radius: 50%;
  border: 1.5px solid var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 7px rgba(212,175,55,0.05), inset 0 0 26px rgba(212,175,55,0.1);
}
.vc-placeholder .ph-mono {
  font-family: var(--font-display); font-weight: 800; font-size: 42px; color: var(--gold); opacity: 0.95; line-height: 1;
}
.vc-placeholder .ph-note {
  font-size: 10px; letter-spacing: 3px; color: var(--muted); text-transform: uppercase;
}

/* ===== Feature checklist ===== */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text);
  font-size: 15px;
  line-height: 1.5;
}
.checklist li::before {
  content: '';
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23d4af37'><path d='M10 0a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm5.16 7.74-6 7a1 1 0 0 1-1.45.07L4.3 11.45a1 1 0 0 1 1.4-1.42l2.62 2.59 5.32-6.21a1 1 0 0 1 1.52 1.32Z'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 2px;
}

/* ===== Pricing ===== */
.price-card {
  background: linear-gradient(180deg, var(--navy-card) 0%, var(--navy) 100%);
  border: 1px solid var(--gold);
  border-radius: 16px;
  padding: 40px 32px;
  max-width: 460px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 10px 40px rgba(212,175,55,0.15);
}
.price-card .price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 56px;
  color: var(--gold);
  margin: 12px 0 4px;
  letter-spacing: -0.02em;
}
.price-card .price .per { font-size: 18px; color: var(--muted); letter-spacing: 0.5px; }
.price-card .trial-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  text-align: left;
}
.price-card ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.price-card ul li:last-child { border-bottom: 0; }
.price-card ul li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex: 0 0 18px;
}

/* ===== Pricing table (pricing page) ===== */
.tiers {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.tier {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 24px;
}
.tier.featured {
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(212,175,55,0.12);
}
.tier h3 { color: var(--gold); margin: 0 0 8px; font-size: 22px; }
.tier .tier-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 38px;
  letter-spacing: -0.02em;
  color: var(--text-bright);
  margin: 12px 0;
}
.tier .tier-price small {
  font-size: 14px;
  color: var(--muted);
  font-family: var(--font-display);
  font-weight: 400;
}
.tier ul { list-style: none; padding: 0; margin: 20px 0; }
.tier ul li {
  padding: 8px 0;
  color: var(--text);
  font-size: 14px;
  display: flex;
  gap: 8px;
}
.tier ul li::before { content: '✓'; color: var(--gold); }

/* ===== Audio player ===== */
.audio-demo {
  background: var(--navy-card);
  border: 1px solid var(--gold-dim);
  border-radius: 12px;
  padding: 18px 22px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.audio-demo:hover { border-color: var(--gold); }
.audio-demo .play-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.audio-demo .play-circle::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 12px solid var(--navy-deep);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  margin-left: 3px;
}
.audio-demo .play-circle.playing::after {
  border: 0;
  width: 10px;
  height: 12px;
  border-left: 3px solid var(--navy-deep);
  border-right: 3px solid var(--navy-deep);
  margin-left: 0;
}
.audio-demo .meta {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.audio-demo .meta .title {
  color: var(--text-bright);
  font-weight: 600;
  font-size: 14px;
}
.audio-demo .meta .sub {
  color: var(--muted);
  font-size: 12px;
}

/* ===== Footer ===== */
footer {
  border-top: 1px solid var(--border);
  margin-top: 60px;
  padding: 48px 24px 32px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}
footer .foot-row {
  max-width: var(--max);
  margin: 0 auto;
}
footer p { margin: 8px 0; }
footer a { color: var(--muted); text-decoration: none; margin: 0 10px; transition: color 0.2s; }
footer a:hover { color: var(--gold); }
footer .legal { font-size: 12px; color: #6b7a91; margin-top: 14px; }
footer .tagline { font-family: var(--font-display); font-weight: 600; color: var(--gold); letter-spacing: 0.04em; margin-top: 18px; font-size: 13px; }
footer .foot-brand {
  font-family: var(--font-wordmark);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 5px;
  color: var(--gold);
  text-decoration: none;
  display: block;
  margin: 0 0 22px;
  transition: color 0.2s;
}
footer .foot-brand:hover { color: var(--gold-bright); }
footer .foot-brand .dot { color: var(--text); opacity: 0.4; margin: 0 4px; }
footer .foot-rule {
  width: 64px;
  height: 1px;
  margin: 0 auto 22px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}

/* ===== Prose pages (terms/privacy/about) ===== */
.prose {
  max-width: 720px;
  margin: 0 auto;
  color: var(--text);
}
.prose h1 { font-size: 38px; margin-bottom: 8px; }
.prose h2 { font-size: 22px; color: var(--gold); margin-top: 40px; }
.prose h3 { font-size: 17px; color: var(--text-bright); margin-top: 24px; }
.prose p { color: var(--text); margin: 14px 0; }
.prose ul { color: var(--text); padding-left: 22px; }
.prose ul li { margin: 6px 0; }
.prose .draft-banner {
  background: rgba(217,154,42,0.12);
  border: 1px solid var(--warning);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 24px 0 32px;
  color: var(--warning);
  font-size: 14px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.prose .meta {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ───── full-page background video (Grok ALAMOvoice brand loop) ───── */
/* ═══════════ HERO PANEL (Professor-style 100vh full-bleed video) ═══════════ */
html { background: #050d1a; }
body { background: #050d1a; }
.hero-panel {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  isolation: isolate;
}
.hero-stack {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  pointer-events: none;
  will-change: opacity;
}
.hero-video.active { opacity: 1; }
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, rgba(5,13,26,0.10) 0%, rgba(5,13,26,0.42) 78%, rgba(5,13,26,0.66) 100%),
    linear-gradient(to bottom, rgba(5,13,26,0.34) 0%, transparent 26%, transparent 60%, rgba(5,13,26,0.62) 100%);
}
/* Nav floats over the hero video */
.nav-on-hero {
  position: relative !important;
  z-index: 20;
  background: transparent !important;
  border-bottom: 0 !important;
  backdrop-filter: none !important;
}
.nav-on-hero .nav-brand {
  font-size: 20px;
  letter-spacing: 4px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}
.nav-on-hero .nav-links a:not(.nav-cta) {
  color: var(--pearl, #f5f0e8);
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
  font-weight: 500;
}
/* Centered hero content */
.hero-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px 80px;
  max-width: 980px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.45em;
  color: rgba(245,240,232,0.7);
  font-weight: 500;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
  margin-bottom: 28px;
}
.hero-display {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 1.06;
  letter-spacing: 0.03em;
  color: #fff;
  text-shadow: 0 10px 50px rgba(0,0,0,0.9);
  margin: 0 0 20px;
}
.hero-display .gold {
  color: var(--gold, #d4af37);
  text-shadow: 0 10px 50px rgba(0,0,0,0.9), 0 0 30px rgba(212,175,55,0.25);
}
.hero-rule {
  width: 140px;
  height: 1px;
  margin: 6px auto 26px;
  background: linear-gradient(to right, transparent, var(--gold, #d4af37), transparent);
}
.hero-sub {
  font-family: 'Cinzel', serif;
  font-weight: 400;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  letter-spacing: 0.14em;
  line-height: 1.65;
  color: rgba(245,240,232,0.92);
  text-shadow: 0 4px 24px rgba(0,0,0,0.85);
  margin: 0 0 34px;
  max-width: 740px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-btn {
  display: inline-block;
  padding: 16px 38px;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.32em;
  color: #f5f0e8;
  text-decoration: none;
  border: 2px solid rgba(212,175,55,0.5);
  background: rgba(5,13,26,0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  cursor: pointer;
}
.hero-btn:hover {
  border-color: var(--gold, #d4af37);
  background: var(--gold, #d4af37);
  color: #050d1a;
  transform: translateY(-2px);
}
.hero-btn-primary {
  border-color: var(--gold, #d4af37);
  background: rgba(212,175,55,0.18);
}
.hero-btn-primary:hover { background: var(--gold, #d4af37); }
.hero-footnote {
  margin-top: 28px;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.42em;
  color: rgba(212,175,55,0.6);
  text-shadow: 0 2px 12px rgba(0,0,0,0.85);
}
/* ── Hero live line (the product demoing itself) ── */
.hero-live {
  margin: 24px 0 0;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: rgba(245,240,232,0.85);
  text-shadow: 0 2px 12px rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.hero-live a {
  color: var(--gold, #d4af37);
  text-decoration: none;
  border-bottom: 1px solid rgba(212,175,55,0.4);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.hero-live a:hover { color: var(--gold-bright, #e8d48b); border-color: var(--gold-bright, #e8d48b); }
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success, #00b464);
  box-shadow: 0 0 0 0 rgba(0,180,100,0.55);
  flex: 0 0 8px;
  animation: livePulse 2s infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(0,180,100,0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(0,180,100,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,180,100,0); }
}
/* ── Hero proof strip (restores the density Ryan wants up top) ── */
.hero-proof {
  margin: 30px auto 0;
  max-width: 960px;
  padding-top: 24px;
  border-top: 1px solid rgba(212,175,55,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 20px;
}
.hero-proof > span:not(.sep) {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(245,240,232,0.78);
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}
.hero-proof strong { color: var(--gold, #d4af37); font-weight: 700; }
.hero-proof .sep { width: 1px; height: 24px; background: rgba(212,175,55,0.28); }
@media (max-width: 720px) {
  .hero-proof { gap: 8px 16px; padding-top: 18px; }
  .hero-proof .sep { display: none; }
}
.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: rgba(245,240,232,0.5);
  font-size: 22px;
  animation: scrollNudge 2.4s ease-in-out infinite;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}
@keyframes scrollNudge {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.45; }
  50%      { transform: translateX(-50%) translateY(8px); opacity: 0.85; }
}
@media (max-width: 720px) {
  .hero-panel { min-height: 560px; }
  .hero-display { letter-spacing: 0.03em; }
  .nav-on-hero .nav-links a { display: none; }
}

/* ───── two-product split (For Business / For You) ───── */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 880px) {
  .split-grid { grid-template-columns: 1fr; gap: 24px; }
}
.product-card {
  background: rgba(11,11,18,0.72);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 22px;
  padding: 36px 32px 32px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .2s, border-color .2s;
}
.product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(201,168,76,0.45);
}
.product-card .card-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold, #C9A84C);
  font-weight: 700;
  margin-bottom: 12px;
}
.product-card .card-h {
  font-size: 28px;
  line-height: 1.18;
  margin: 0 0 12px;
  letter-spacing: 0.5px;
}
.product-card .card-lede {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text, #f5f1e8);
  opacity: 0.85;
  margin: 0 0 4px;
}
.product-card .card-bullets {
  list-style: none;
  padding: 0;
  margin: 18px 0 24px;
}
.product-card .card-bullets li {
  font-size: 14px;
  padding: 6px 0 6px 22px;
  position: relative;
  color: var(--text, #f5f1e8);
  opacity: 0.88;
}
.product-card .card-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--gold, #C9A84C);
  font-weight: 700;
}
.product-card .card-price {
  margin: 10px 0 4px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.product-card .card-price .num {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--gold, #d4af37);
}
.product-card .card-price .per {
  font-size: 14px;
  color: var(--muted, #9a9489);
}
.product-card .card-sub-price {
  font-size: 12px;
  color: var(--muted, #9a9489);
  margin: 0 0 18px;
}
.product-card .btn-primary {
  font-size: 15px;
  padding: 14px 20px;
}

/* ═══════ Coach App section ═══════ */
.coach-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 880px) {
  .coach-grid { grid-template-columns: 1fr; gap: 32px; }
}
.coach-art img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.55);
  display: block;
}
.coach-bullets-clean {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.coach-bullets-clean li {
  padding: 8px 0 8px 26px;
  position: relative;
  font-size: 15px;
  color: var(--text);
  opacity: 0.9;
}
.coach-bullets-clean li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--gold);
  font-weight: 700;
}

/* ═══════ Proof — "Customer 01" framed testimonial (film-credit numeral + hero live-dot callback) ═══════ */
.proof-card {
  max-width: 600px;
  margin: 36px auto 0;
  text-align: left;
  background: linear-gradient(180deg, var(--navy-card) 0%, rgba(11,26,47,0.35) 100%);
  border: 1px solid var(--border);
  border-left: 2px solid var(--gold);
  border-radius: 14px;
  padding: 26px 32px 28px;
  box-shadow: 0 20px 60px -28px rgba(0,0,0,0.7);
}
.proof-tick {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.proof-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--success);
  font-weight: 600;
}
.proof-no {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}
.proof-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--text-bright);
  margin: 0 0 4px;
}
.proof-meta {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
}
.proof-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  opacity: 0.9;
  margin: 0;
}

/* ═══════ FORCE hero text overlay — absolute over video stack ═══════ */
.hero-panel { position: relative !important; }
.hero-panel .hero-stack { z-index: 1 !important; }
.hero-panel .hero-vignette { z-index: 2 !important; }
.hero-panel .nav-on-hero {
  position: absolute !important;
  top: 0; left: 0; right: 0;
  z-index: 100 !important;
  background: transparent !important;
  border: 0 !important;
}
.hero-panel .hero-content {
  position: absolute !important;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 50 !important;
  width: 100%;
  max-width: 980px;
  padding: 0 24px;
  text-align: center;
  display: block;
  flex: none;
}
.hero-panel .scroll-cue { z-index: 60 !important; }
.hero-panel .hero-display {
  color: #fff !important;
  display: block;
  visibility: visible !important;
  opacity: 1 !important;
}
.hero-panel .hero-eyebrow,
.hero-panel .hero-sub,
.hero-panel .hero-footnote {
  display: block;
  visibility: visible !important;
  opacity: 1 !important;
  color: rgba(245,240,232,0.95);
}

/* ═══════ Coach pitch cleanup — plain truth beats bad chroma ═══════ */
.hero-panel {
  min-height: 700px;
}
.hero-panel .hero-vignette {
  background:
    radial-gradient(ellipse at center, rgba(5,13,26,0.08) 0%, rgba(5,13,26,0.48) 74%, rgba(5,13,26,0.72) 100%),
    linear-gradient(to bottom, rgba(5,13,26,0.42) 0%, transparent 24%, rgba(5,13,26,0.08) 54%, rgba(5,13,26,0.72) 100%);
}
.hero-panel .hero-content {
  max-width: 1080px;
  padding: 72px 28px 0;
}
.hero-panel .hero-eyebrow {
  margin-bottom: 18px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.78);
}
.hero-panel .hero-display {
  max-width: 900px;
  margin: 0 auto 18px;
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1.03;
  letter-spacing: -0.015em;
  text-transform: none;
  font-weight: 700;
  text-wrap: balance;
}
.hero-panel .hero-display .gold {
  display: inline-block;
  color: var(--gold-bright, #e8d48b);
}
.hero-panel .hero-sub {
  max-width: 820px;
  margin: 0 auto 30px;
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0;
  color: rgba(245,240,232,0.92);
}
.hero-panel .hero-btn {
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-panel .hero-live {
  font-family: var(--font-body);
  letter-spacing: 0.05em;
}
.hero-panel .hero-proof {
  max-width: 920px;
  margin-top: 28px;
}
.hero-panel .hero-proof > span:not(.sep) {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0;
  color: rgba(245,240,232,0.82);
}
@media (max-width: 880px) {
  .hero-panel {
    min-height: 720px;
  }
  .hero-panel .hero-content {
    top: 52%;
    padding: 66px 22px 0;
  }
  .hero-panel .hero-display {
    font-size: 46px;
  }
  .hero-panel .hero-sub {
    font-size: 18px;
  }
}
@media (max-width: 520px) {
  .hero-panel {
    min-height: 760px;
  }
  .hero-panel .hero-content {
    top: 54%;
    padding: 74px 18px 0;
  }
  .hero-panel .hero-eyebrow {
    font-size: 10px;
    letter-spacing: 0.14em;
  }
  .hero-panel .hero-display {
    font-size: 36px;
  }
  .hero-panel .hero-sub {
    font-size: 16px;
  }
  .hero-panel .hero-ctas {
    gap: 10px;
  }
  .hero-panel .hero-btn {
    width: 100%;
    max-width: 320px;
    padding: 14px 18px;
  }
  .hero-panel .hero-proof {
    padding-bottom: 84px;
  }
}

/* ═══════ Floating "Now Playing" show popup (bottom-left) ═══════
   Autoplays muted on load (browsers block sound-on autoplay until the
   visitor interacts), then unmutes itself on the first user gesture.
   Sits opposite the bottom-right chat widget so they never collide. */
.show-pip {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 9999;
  width: 320px;
  max-width: calc(100vw - 40px);
  border-radius: 14px;
  overflow: hidden;
  background: #050d1a;
  border: 1px solid rgba(212,175,55,0.5);
  box-shadow:
    0 24px 60px -18px rgba(0,0,0,0.85),
    0 0 0 1px rgba(212,175,55,0.15),
    0 0 40px -12px rgba(212,175,55,0.3);
  animation: pipIn 0.6s cubic-bezier(0.2,0.8,0.2,1) both;
}
@keyframes pipIn {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.show-pip-video { display: block; width: 100%; height: auto; background: #050d1a; }
.show-pip-tag {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px 12px 9px;
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-bright);
  background: linear-gradient(to top, rgba(5,13,26,0.92), transparent);
  pointer-events: none;
}
.show-pip-tag .dot { color: var(--success); animation: livePulse 2s infinite; }
.show-pip-close,
.show-pip-mute {
  position: absolute;
  top: 8px;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(245,240,232,0.25);
  background: rgba(5,13,26,0.7);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: #f5f0e8;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; padding: 0; z-index: 2;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.show-pip-close { right: 8px; font-size: 19px; line-height: 1; }
.show-pip-mute  { right: 44px; }
.show-pip-close:hover,
.show-pip-mute:hover { background: var(--gold); color: #050d1a; border-color: var(--gold); transform: scale(1.08); }
.show-pip-mute svg { width: 15px; height: 15px; display: block; fill: currentColor; }
.show-pip-mute .ic-muted { display: none; }
.show-pip.muted .ic-on { display: none; }
.show-pip.muted .ic-muted { display: block; }
@media (max-width: 600px) {
  .show-pip { width: 188px; left: 12px; bottom: 12px; }
  .show-pip-tag { font-size: 9px; padding: 16px 10px 7px; }
}
@media (prefers-reduced-motion: reduce) { .show-pip { animation: none; } }

/* ═══════ Talking-head lip-sync (sprite swap, ported from buddy-app CoachFace) ═══════
   head.png + 3 mouth PNGs stacked; JS flaps the mouth opacity while the voice
   clip plays (Beavis-style swap every 130ms — deliberately crude, matches the app). */
.vc-face { position: absolute; inset: 0; z-index: 0; }
.vc-face img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}
.vc-face .vc-mouth { opacity: 0; }            /* closed mouth carries inline opacity:1 as the resting shape */

/* ── Hero headline: lead with a big COACH wordmark, tagline beneath (2026-06-02) ── */
.hero-panel .hero-coach {
  display: block;
  font-family: var(--font-wordmark), 'Cinzel', serif;
  font-weight: 700;
  font-size: clamp(3.6rem, 15vw, 10.5rem);
  line-height: 0.9;
  letter-spacing: 0.07em;
  color: #fff;
  text-shadow: 0 14px 64px rgba(0,0,0,0.95);
  margin: 0;
}
.hero-panel .hero-tag {
  display: block;
  font-family: var(--font-display), 'Clash Display', sans-serif;
  font-weight: 600;
  font-size: clamp(1.25rem, 3.2vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: 0.004em;
  color: #fff;
  margin-top: 16px;
  text-shadow: 0 6px 30px rgba(0,0,0,0.88);
}
.hero-panel .hero-tag .gold { white-space: nowrap; }
@media (max-width: 520px) {
  .hero-panel .hero-coach { letter-spacing: 0.04em; }
  .hero-panel .hero-tag .gold { white-space: normal; }
}

/* ── Hero legibility scrim + supporting kicker line (2026-06-02) ── */
.hero-panel .hero-content::before {
  content: "";
  position: absolute;
  inset: -28% -32%;
  z-index: -1;
  /* Soft radial glow that fades FULLY to transparent well inside the box edges,
     so there's no visible rectangle — just a dark halo behind the text. */
  background: radial-gradient(ellipse 62% 54% at 50% 42%,
    rgba(4,9,18,0.74) 0%,
    rgba(4,9,18,0.46) 32%,
    rgba(4,9,18,0.16) 52%,
    rgba(4,9,18,0) 66%);
  pointer-events: none;
}
.hero-panel .hero-sub {
  color: #f7f2ec !important;
  text-shadow: 0 3px 22px rgba(0,0,0,0.96), 0 1px 3px rgba(0,0,0,0.9) !important;
}
.hero-kicker {
  font-family: var(--font-display), 'Clash Display', sans-serif;
  font-weight: 600;
  font-size: clamp(1.05rem, 2.2vw, 1.55rem);
  line-height: 1.3;
  letter-spacing: 0.004em;
  color: var(--gold, #e6c071);
  text-shadow: 0 4px 24px rgba(0,0,0,0.92);
  margin: 16px auto 0;
  max-width: 780px;
}
