/* ============================================================
   Podcast Suite — design system v3 "ON AIR"
   Hybrid rhythm: broadcast-navy bands for drama + decision
   (hero, stats, pull quotes, pricing, final CTA), warm paper
   for reading sections. Archivo Expanded display, Inter body.
   Amber is the single action color, everywhere.
   ============================================================ */

:root {
  --paper:     #FAF7F1;   /* warm light reading bg */
  --paper-alt: #F1EBE0;   /* deeper cream */
  --navy:      #0F1E33;   /* broadcast navy (NOT black) */
  --navy-2:    #16293F;
  --navy-3:    #1E3450;   /* cards on navy */
  --cream:     #FDFBF6;   /* text on navy */
  --slate:     #B9C4D2;   /* muted text on navy */
  --amber:     #FFB020;   /* the ON AIR signal — sole action color */
  --amber-deep:#E69A0F;
  --ink:       #17202B;
  --ink-soft:  #4A5561;
  --terracotta:#C75D3C;
  --teal:      #2E6F70;
  --line:      rgba(23,32,43,.12);
  --line-dark: rgba(253,251,246,.14);
  --accent:    var(--amber);
  /* v2 compat aliases (portal + course player inline styles) */
  --bg:        var(--paper);
  --bg-alt:    var(--paper-alt);
  --gold:      var(--amber);
  --maxw:      1120px;
  --r:         10px;
  --shadow-sm: 0 2px 8px rgba(15,30,51,.06);
  --shadow-md: 0 12px 32px rgba(15,30,51,.10);
  --shadow-lg: 0 28px 64px rgba(15,30,51,.16);
}
/* Per-site detail accent (checkmarks, tags, module borders) */
.theme-hub   { --detail: var(--amber); --detail-deep: #8a6410; }
.theme-guest { --detail: var(--terracotta); --detail-deep: #A84A2D; }
.theme-host  { --detail: var(--teal); --detail-deep: #1F5253; }

*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }

/* SOP: no orphan words */
h1,h2,h3,h4 {
  font-family: 'Archivo','Inter',sans-serif;
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin: 0 0 .5em;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(2.1rem, 4.8vw, 3.4rem); }
h2 { font-size: clamp(1.65rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.3rem; }
p  { margin: 0 0 1em; color: var(--ink-soft); text-wrap: pretty; }
a  { color: var(--amber-deep); text-decoration: none; }
a:hover { text-decoration: underline; }
strong { color: inherit; font-weight: 700; }
section p strong { color: var(--ink); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow    { max-width: 780px; margin: 0 auto; padding: 0 24px; }

/* ============ DARK BANDS (drama + decision) ============ */
.hero, .stat-band, .pull, section#enroll, section.dark-band, footer {
  background: linear-gradient(175deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--cream);
}
.hero h1, .hero h2, .pull, section#enroll h2, section.dark-band h2, section.dark-band h3 { color: var(--cream); }
.hero p, .hero .lede, section#enroll > .container > p, section.dark-band p { color: var(--slate); }
.hero .muted, section#enroll .muted, section.dark-band .muted { color: var(--slate); }

/* ============ eyebrow ============ */
.eyebrow {
  display: inline-block;
  padding: 7px 15px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 24px;
  background: color-mix(in srgb, var(--detail, var(--amber)) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--detail, var(--amber)) 32%, transparent);
  color: var(--detail-deep, var(--amber-deep));
}
.hero .eyebrow, section#enroll .eyebrow, section.dark-band .eyebrow, .pull .eyebrow {
  background: rgba(255,176,32,.13);
  border-color: rgba(255,176,32,.38);
  color: var(--amber);
}

/* ============ buttons — amber = action, everywhere ============ */
.btn {
  display: inline-block;
  padding: 17px 30px;
  background: linear-gradient(180deg, var(--amber) 0%, var(--amber-deep) 100%);
  color: var(--navy) !important;
  border: none;
  border-radius: var(--r);
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 16.5px;
  letter-spacing: -0.01em;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
  box-shadow: 0 8px 22px rgba(255,176,32,.32), inset 0 1px 0 rgba(255,255,255,.35);
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.05); box-shadow: 0 14px 30px rgba(255,176,32,.42); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 20px 40px; font-size: 18px; }
.btn-sub { display:block; font-size:12.5px; font-weight:600; opacity:.8; margin-top:5px; letter-spacing:0; }
.btn-ghost {
  background: transparent;
  color: var(--ink) !important;
  border: 2px solid var(--ink);
  box-shadow: none;
}
.btn-ghost:hover { background: var(--ink); color: var(--paper) !important; }
.hero .btn-ghost, section#enroll .btn-ghost, section.dark-band .btn-ghost {
  color: var(--cream) !important;
  border-color: rgba(253,251,246,.4);
}
.hero .btn-ghost:hover, section.dark-band .btn-ghost:hover { background: rgba(253,251,246,.1); color: var(--cream) !important; }

/* ============ sections ============ */
section { padding: 88px 0; position: relative; }
section.tight { padding: 60px 0; }
section.alt   { background: var(--paper-alt); }
section#enroll.alt, section.dark-band.alt { background: linear-gradient(175deg, var(--navy) 0%, var(--navy-2) 100%); }

/* ============ hero ============ */
.hero { padding: 80px 0 68px; text-align: center; overflow: hidden; }
.hero::before {
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(900px 400px at 50% -10%, rgba(255,176,32,.14), transparent 65%),
    radial-gradient(500px 300px at 92% 40%, rgba(255,176,32,.05), transparent 70%);
  pointer-events:none;
}
.hero > .container { position: relative; }
.hero h1 {
  font-family: 'Archivo Expanded','Archivo',sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.8rem, 4.2vw, 3.1rem);
  letter-spacing: -0.01em;
  max-width: 24ch;
  margin: 0 auto .6em;
}
.hero h1 .hl { color: var(--amber); }
.hero .lede { max-width: 58ch; margin: 0 auto 2em; font-size: 1.16rem; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }

.hero-image {
  margin: 44px auto 0;
  max-width: 940px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0,0,0,.45);
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy-3), var(--navy-2));
  position: relative;
  border: 1px solid var(--line-dark);
}
.hero-image .placeholder, .feature-image .placeholder {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  text-align: center; padding: 24px;
  color: var(--slate);
}
.feature-image {
  margin: 28px auto;
  max-width: 780px;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/2;
  background: linear-gradient(135deg, var(--paper-alt), #E5DCCB);
  position: relative;
  box-shadow: var(--shadow-md);
}
.feature-image .placeholder { color: var(--ink-soft); }

/* ============ credibility strip (light context fallback) ============ */
.credibility-strip {
  display: flex; gap: 10px 34px; justify-content: center; flex-wrap: wrap; align-items: center;
  margin-top: 40px; padding-top: 26px;
  border-top: 1px solid var(--line-dark);
  font-size: 13.5px; color: var(--slate); letter-spacing: .03em;
}
.credibility-strip strong { color: var(--cream); }

/* ============ stat band ============ */
.stat-band {
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: 46px 0;
}
.stat-band .container { display: flex; justify-content: center; gap: 14px 60px; flex-wrap: wrap; text-align: center; }
.stat { min-width: 150px; }
.stat .num {
  font-family: 'Archivo Expanded','Archivo',sans-serif;
  font-size: clamp(1.9rem, 3.8vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--amber);
  line-height: 1.05;
}
.stat .lbl { font-size: 12.5px; color: var(--slate); text-transform: uppercase; letter-spacing: .09em; margin-top: 7px; }

/* ============ pain list ============ */
.pain-list { list-style: none; padding: 0; margin: 30px 0; }
.pain-list li {
  padding: 15px 18px 15px 46px;
  position: relative;
  color: var(--ink);
  font-weight: 500;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 10px;
  box-shadow: var(--shadow-sm);
}
.pain-list li::before {
  content: "✕";
  position: absolute; left: 17px; top: 15px;
  color: #b3564a; font-weight: 800;
}

/* ============ compare ============ */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin: 40px 0 8px; }
@media (max-width: 760px){ .compare { grid-template-columns: 1fr; } }
.compare .col { border-radius: 16px; padding: 30px 28px; border: 1px solid var(--line); }
.compare .old { background: #fff; }
.compare .new {
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-2) 100%);
  border: 1.5px solid rgba(255,176,32,.5);
  box-shadow: var(--shadow-lg);
}
.compare h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 16px; font-family:'Archivo',sans-serif; }
.compare .old h4 { color: #a0523f; }
.compare .new h4 { color: var(--amber); }
.compare ul { list-style: none; margin: 0; padding: 0; }
.compare li { padding: 9px 0 9px 28px; position: relative; font-size: 15.5px; border-bottom: 1px dashed var(--line); color: var(--ink-soft); }
.compare .new li { border-bottom-color: var(--line-dark); color: var(--cream); font-weight: 500; }
.compare li:last-child { border-bottom: none; }
.compare .old li::before { content: "✕"; position: absolute; left: 2px; color: #b3564a; font-weight: 700; }
.compare .new li::before { content: "✓"; position: absolute; left: 2px; color: var(--amber); font-weight: 800; }

/* ============ pull quote — full dark band ============ */
.pull {
  margin: 0; padding: 64px 24px;
  text-align: center;
  font-family: 'Archivo', sans-serif;
  font-size: clamp(1.3rem, 2.6vw, 1.75rem);
  font-weight: 700; letter-spacing: -0.02em; line-height: 1.4;
  text-wrap: balance;
}
.pull .accent { color: var(--amber); }
.pull::before { content:"“"; display:block; font-family:'Archivo Expanded',sans-serif; font-size: 56px; line-height:.6; color: rgba(255,176,32,.4); margin-bottom: 18px; }

/* ============ outcomes ============ */
.outcomes { list-style: none; padding: 0; margin: 34px 0; }
.outcomes li {
  padding: 16px 16px 16px 52px;
  position: relative;
  color: var(--ink);
  font-weight: 500;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 10px;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease;
}
.outcomes li:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.outcomes li::before {
  content: "✓";
  position: absolute; left: 18px; top: 15px;
  width: 24px; height: 24px;
  background: color-mix(in srgb, var(--detail, var(--amber)) 15%, transparent);
  color: var(--detail-deep, var(--amber-deep));
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800; font-size: 13px;
}

/* ============ module cards ============ */
.module-card {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--detail, var(--amber));
  border-radius: 12px;
  padding: 22px 26px;
  margin-top: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease;
}
.module-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.module-card .m-num {
  font-family:'Archivo',sans-serif; font-size: 12px; font-weight: 800;
  letter-spacing:.14em; text-transform: uppercase; color: var(--detail-deep, var(--amber-deep));
}
.module-card strong { display:block; font-size:17.5px; font-family:'Archivo',sans-serif; letter-spacing:-.01em; margin:4px 0 6px; color: var(--ink); }
.module-card p { margin: 0; font-size: 15px; }

/* ============ disqualify ============ */
.disqualify {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--detail, var(--amber));
  padding: 30px 34px;
  border-radius: 0 14px 14px 0;
  margin: 32px 0;
  box-shadow: var(--shadow-sm);
}
.disqualify h3 { margin-top: 0; }
.disqualify ul { margin: 0; padding-left: 20px; color: var(--ink); }
.disqualify li { margin: 10px 0; }

/* ============ pricing — white card glowing on navy ============ */
.pricing {
  background: #fff;
  border-radius: 20px;
  padding: 44px 40px;
  max-width: 540px;
  margin: 36px auto;
  text-align: center;
  box-shadow: 0 0 0 1.5px rgba(255,176,32,.6), 0 30px 80px rgba(0,0,0,.5), 0 0 120px rgba(255,176,32,.12);
  position: relative;
  color: var(--ink);
}
.pricing h2, .pricing h3 { color: var(--ink); }
.pricing p { color: var(--ink-soft); }
.tag {
  display: inline-block;
  font-size: 11px; letter-spacing: .13em; text-transform: uppercase;
  font-weight: 800; font-family:'Archivo',sans-serif; padding: 6px 13px; border-radius: 5px; margin-bottom: 14px;
}
.tag-guest { background: rgba(199,93,60,.12); color: #A84A2D; }
.tag-host  { background: rgba(46,111,112,.12); color: #1F5253; }
.tag-bundle{ background: rgba(255,176,32,.16); color: #8a6410; }
.price-anchor { font-size: 21px; color: #9aa1a9; text-decoration: line-through; font-weight: 500; }
.price-now {
  font-family: 'Archivo Expanded','Archivo',sans-serif;
  font-size: 68px; font-weight: 800;
  color: var(--navy);
  line-height: 1; margin: 6px 0 4px;
  letter-spacing: -0.02em;
}
.price-meta { font-size: 14px; color: var(--ink-soft); margin-bottom: 22px; }
.guarantee {
  display: flex; gap: 14px; align-items: flex-start; text-align: left;
  background: var(--paper-alt);
  border-radius: 12px; padding: 16px 18px; margin-top: 26px;
  font-size: 13.5px; color: var(--ink-soft);
}
.guarantee .shield { font-size: 26px; line-height: 1; }
.guarantee strong { display: block; color: var(--ink); font-size: 14px; margin-bottom: 2px; }

/* ============ countdown — on-air clock ============ */
.countdown {
  display: inline-flex; gap: 14px;
  background: rgba(253,251,246,.06);
  border: 1px solid var(--line-dark);
  padding: 14px 22px; border-radius: 12px;
  font-variant-numeric: tabular-nums; margin: 16px 0;
}
.countdown div { text-align: center; min-width: 52px; }
.countdown .num {
  font-family:'Archivo Expanded','Archivo',sans-serif;
  font-size: 26px; font-weight: 800; color: var(--amber);
  display: block; letter-spacing:-.01em;
  text-shadow: 0 0 24px rgba(255,176,32,.45);
}
.countdown .lbl { font-size: 10px; text-transform: uppercase; letter-spacing: .12em; color: var(--slate); }

/* ============ testimonials ============ */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 22px; margin-top: 40px; }
.testimonial {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 26px;
  box-shadow: var(--shadow-sm); position: relative;
}
.testimonial::before {
  content: "“";
  position: absolute; top: 6px; right: 18px;
  font-family: 'Archivo Expanded', sans-serif;
  font-size: 60px; line-height: 1;
  color: color-mix(in srgb, var(--detail, var(--amber)) 22%, transparent);
  font-weight: 800;
}
.testimonial p { font-style: italic; color: var(--ink); font-size: 15.5px; }
.testimonial .who { display: flex; gap: 12px; align-items: center; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); }
.testimonial .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: color-mix(in srgb, var(--detail, var(--amber)) 16%, transparent);
  display: grid; place-items: center;
  font-weight: 800; color: var(--detail-deep, var(--amber-deep)); font-family:'Archivo',sans-serif;
}
.testimonial .name { font-weight: 600; color: var(--ink); font-size: 14px; }
.testimonial .role { font-size: 12px; color: var(--ink-soft); }

/* ============ FAQ ============ */
.faq details { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq summary {
  cursor: pointer; font-weight: 700; font-size: 17px; color: var(--ink);
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  font-family: 'Archivo', sans-serif; letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 24px; color: var(--amber-deep); font-weight: 400; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: 12px; }

/* ============ founder ============ */
.founder { display: grid; grid-template-columns: 230px 1fr; gap: 40px; align-items: start; }
@media (max-width: 720px){ .founder { grid-template-columns: 1fr; text-align: center; } .founder img { margin: 0 auto; } }
.founder img {
  width: 230px; height: 230px; border-radius: 20px;
  object-fit: cover; background: var(--paper-alt);
  box-shadow: var(--shadow-md);
}

/* ============ product cards (hub) ============ */
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 48px; }
@media (max-width: 720px){ .product-grid { grid-template-columns: 1fr; } }
.product-card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 38px 34px;
  text-align: left; position: relative; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: var(--shadow-sm);
}
.product-card::before { content:""; position:absolute; top:0; left:0; right:0; height:5px; }
.product-card.guest::before { background: linear-gradient(90deg, var(--terracotta), var(--amber)); }
.product-card.host::before  { background: linear-gradient(90deg, var(--teal), var(--amber)); }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.product-card h3 { font-family:'Archivo',sans-serif; }

/* ============ signup ============ */
.signup-card input {
  width: 100%; padding: 15px 16px; margin-bottom: 12px;
  border: 1.5px solid var(--line); border-radius: 10px;
  font-size: 16px; font-family: inherit; background: var(--paper);
  color: var(--ink);
}
.signup-card input:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px rgba(255,176,32,.22); }
.signup-card .btn { width: 100%; }
.signup-card .fine { font-size: 12.5px; text-align: center; color: var(--ink-soft); margin-top: 12px; }
.step-indicator { display:flex; gap:8px; justify-content:center; margin-bottom:18px; }
.step-dot { width:34px; height:5px; background: var(--line); border-radius:3px; }
.step-dot.active { background: var(--amber); }

/* ============ sticky mobile CTA ============ */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: rgba(15,30,51,.97);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,176,32,.35);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  display: none;
  align-items: center; justify-content: space-between; gap: 12px;
  box-shadow: 0 -8px 24px rgba(0,0,0,.3);
  transform: translateY(110%);
  transition: transform .3s ease;
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .price { font-family:'Archivo',sans-serif; font-weight:800; color: var(--cream); font-size:15px; line-height:1.2; }
.sticky-cta .price s { color: var(--slate); font-weight:500; font-size:12px; }
.sticky-cta .btn { padding: 12px 22px; font-size: 15px; white-space: nowrap; }
@media (max-width: 820px){ .sticky-cta { display: flex; } }

/* ============ scroll reveal ============ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity:1; transform:none; transition:none; } }

/* ============ footer ============ */
footer {
  padding: 44px 0 32px;
  font-size: 14px;
  margin-top: 0;
  border-top: 1px solid var(--line-dark);
  color: var(--slate);
}
footer a { color: var(--cream); }
footer .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; }

/* ============ utility ============ */
.center { text-align: center; }
.mt-0{margin-top:0}.mt-1{margin-top:12px}.mt-2{margin-top:24px}.mt-3{margin-top:36px}
.mb-0{margin-bottom:0}
.muted { color: var(--ink-soft); }
.no-nav-pad { padding-top: 28px; }
