/* ============================================================
   Podcast Suite — shared design system
   Warm off-white base, Fraunces headlines, Inter body.
   Per-site accent set via --accent on <html> or <body>.
   ============================================================ */

:root {
  --bg:        #FBF7F0;   /* warm off-white */
  --bg-alt:    #F4EDDF;   /* warmer cream */
  --ink:       #1A1A1A;   /* near-black for body */
  --ink-soft:  #4A4A4A;
  --navy:      #1D3557;   /* hub primary */
  --gold:      #C8A951;   /* hub accent */
  --terracotta:#C75D3C;   /* guest accent */
  --teal:      #2E6F70;   /* host accent */
  --line:      rgba(26,26,26,.12);
  --accent:    var(--navy); /* default; overridden per site */
  --accent-ink:#fff;
  --maxw:      1120px;
  --r:         8px;
}

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

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 .5em;
  color: var(--ink);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.3rem; }
p  { margin: 0 0 1em; color: var(--ink-soft); }
a  { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* Eyebrow tag */
.eyebrow {
  display: inline-block;
  padding: 6px 12px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 28px;
  background: var(--accent);
  color: var(--accent-ink) !important;
  border: none;
  border-radius: var(--r);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.06); box-shadow: 0 8px 20px rgba(0,0,0,.12); }
.btn-lg { padding: 20px 36px; font-size: 18px; }
.btn-ghost {
  background: transparent;
  color: var(--accent) !important;
  border: 2px solid var(--accent);
  box-shadow: none;
}
.btn-ghost:hover { background: var(--accent); color: var(--accent-ink) !important; }

/* Sections */
section { padding: 80px 0; }
section.tight { padding: 56px 0; }
section.alt   { background: var(--bg-alt); }

/* Hero */
.hero {
  padding: 72px 0 56px;
  text-align: center;
}
.hero h1 { max-width: 22ch; margin: 0 auto .6em; }
.hero .lede {
  max-width: 56ch;
  margin: 0 auto 2em;
  font-size: 1.15rem;
  color: var(--ink-soft);
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.credibility-strip {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: .04em;
}
.credibility-strip strong { color: var(--ink); font-weight: 700; }

/* Product cards (hub) */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}
@media (max-width: 720px) { .product-grid { grid-template-columns: 1fr; } }
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px 32px;
  text-align: left;
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,.08); }
.product-card .tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.tag-guest { background: rgba(199,93,60,.12); color: var(--terracotta); }
.tag-host  { background: rgba(46,111,112,.12); color: var(--teal); }
.tag-bundle{ background: rgba(200,169,81,.16); color: #8a6f1f; }

/* Outcomes list */
.outcomes {
  list-style: none;
  padding: 0;
  margin: 32px 0;
}
.outcomes li {
  padding: 14px 0 14px 36px;
  border-bottom: 1px solid var(--line);
  position: relative;
  color: var(--ink);
  font-weight: 500;
}
.outcomes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 14px;
  color: var(--accent);
  font-weight: 900;
  font-size: 18px;
}

/* "Not for you" disqualification */
.disqualify {
  background: var(--bg-alt);
  border-left: 4px solid var(--accent);
  padding: 28px 32px;
  border-radius: 0 12px 12px 0;
  margin: 32px 0;
}
.disqualify h3 { margin-top: 0; }

/* Pricing */
.pricing {
  background: #fff;
  border: 2px solid var(--accent);
  border-radius: 16px;
  padding: 40px;
  max-width: 520px;
  margin: 32px auto;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,.06);
}
.price-anchor {
  font-size: 22px;
  color: var(--ink-soft);
  text-decoration: line-through;
  font-weight: 500;
}
.price-now {
  font-family: 'Fraunces', serif;
  font-size: 64px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin: 8px 0 4px;
}
.price-meta { font-size: 14px; color: var(--ink-soft); margin-bottom: 20px; }

/* Countdown */
.countdown {
  display: inline-flex;
  gap: 12px;
  background: var(--bg-alt);
  padding: 12px 20px;
  border-radius: 8px;
  font-variant-numeric: tabular-nums;
  margin: 16px 0;
}
.countdown div { text-align: center; min-width: 48px; }
.countdown .num { font-size: 22px; font-weight: 700; color: var(--accent); display: block; }
.countdown .lbl { font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); }

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
}
.testimonial p { font-style: italic; color: var(--ink); font-size: 16px; }
.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: var(--bg-alt); display: grid; place-items: center;
  font-weight: 700; color: var(--accent);
}
.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: 600;
  font-size: 17px;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq summary::after {
  content: "+";
  font-size: 22px;
  color: var(--accent);
  font-weight: 400;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin-top: 12px; }

/* Founder block */
.founder {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  align-items: start;
}
@media (max-width: 720px) {
  .founder { grid-template-columns: 1fr; text-align: center; }
  .founder img { margin: 0 auto; }
}
.founder img {
  width: 220px; height: 220px; border-radius: 50%;
  object-fit: cover; background: var(--bg-alt);
}

/* 2-step form */
.signup-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px;
  max-width: 480px;
  margin: 32px auto;
  box-shadow: 0 12px 40px rgba(0,0,0,.06);
}
.signup-card h3 { margin-top: 0; text-align: center; }
.signup-card .step-indicator {
  display: flex; gap: 8px; justify-content: center; margin-bottom: 20px;
}
.signup-card .step-dot {
  width: 28px; height: 4px; background: var(--line); border-radius: 2px;
}
.signup-card .step-dot.active { background: var(--accent); }
.signup-card input {
  width: 100%; padding: 14px 16px; margin-bottom: 12px;
  border: 1.5px solid var(--line); border-radius: 8px;
  font-size: 16px; font-family: inherit;
  background: var(--bg);
}
.signup-card input:focus { outline: none; border-color: var(--accent); }
.signup-card .btn { width: 100%; }
.signup-card .fine { font-size: 12px; text-align: center; color: var(--ink-soft); margin-top: 12px; }

/* Footer */
footer {
  background: var(--ink);
  color: #999;
  padding: 48px 0 32px;
  font-size: 14px;
  margin-top: 80px;
}
footer a { color: #ccc; }
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: 24px; }

/* Accent themes per site */
.theme-hub   { --accent: var(--navy); }
.theme-guest { --accent: var(--terracotta); }
.theme-host  { --accent: var(--teal); }
