/* Landing page styles. Tokens are defined inline here (mirroring
   style.css) because landing.html does NOT load style.css — without
   these, every var() falls back to invalid and the entire design
   system silently disappears (buttons render as plain text, brand-red
   accents look black, section badges vanish). Earlier comments said
   "inherits from style.css" but that was a build-time assumption that
   never held for this page. */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Geist+Mono:wght@400;500;600;700;800;900&display=swap');

:root {
  color-scheme: light;

  /* YouTube-native palette: white + brand red */
  --paper:           #FFFFFF;
  --paper-2:         #F9F9F9;
  --paper-3:         #F0F0F0;
  --ink:             #0F0F0F;
  --ink-soft:        #3F3F3F;
  --ink-muted:       #606060;
  --ink-faint:       #909090;
  --accent:          #FF0033;
  --accent-soft:     #CC0000;
  --accent-bg:       #FFE9ED;

  /* Gold/amber secondary — Save% pills, achievement states */
  --gold:            #F59E0B;
  --gold-soft:       #D97706;
  --gold-bg:         #FEF3D5;

  --hairline:        rgba(15, 15, 15, 0.08);
  --hairline-strong: rgba(15, 15, 15, 0.18);
  --hairline-bold:   rgba(15, 15, 15, 0.32);

  /* Legacy aliases — keep working with existing components */
  --bg:              var(--paper);
  --surface:         var(--paper-2);
  --border:          var(--hairline);
  --text:            var(--ink);
  --muted:           var(--ink-muted);

  /* Score states reuse the brand palette */
  --green:           var(--accent);
  --amber:           var(--ink);
  --danger:          var(--ink-muted);
  --red:             var(--accent);
  --red-light:       var(--accent);

  --radius:          8px;

  --font-display: 'Geist Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-ui:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-mono:    'Geist Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

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

body {
  font-family: var(--font-ui);
  background: var(--paper);
  color: var(--ink);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Header ── */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 2rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 100;
}

.logo { display: flex; align-items: center; text-decoration: none; }
/* Fluid logo height — replaces the old 80px → 64px → 44px breakpoint jumps.
   Scales smoothly across viewports instead of snapping at 900px and 480px. */
.logo img { height: clamp(44px, 8vw, 80px); width: auto; }

.header-nav { display: flex; align-items: center; gap: 0.75rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.6rem 1.2rem;
  border-radius: 9px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: filter 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
  white-space: nowrap;
  font-family: inherit;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn-primary:hover { filter: brightness(1.08); }
.btn-outline {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--red); }
.btn-ghost { background: transparent; color: var(--muted); }
.btn-ghost:hover { color: var(--text); }
.btn-sm  { font-size: 0.8rem; padding: 0.4rem 0.85rem; }
.btn-lg  { font-size: 1.05rem; padding: 0.9rem 2rem; border-radius: 10px; }
.btn-full { width: 100%; justify-content: center; }

/* ── Container ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Section labels ── */
.section-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.section-sub {
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

/* ── Hero ── */
.hero {
  /* Fluid padding — was fixed 5.5rem on base + 3.5rem at 768px. Now scales
     smoothly: ~32px at 320px viewport, up to 88px at 1100px+. */
  padding: clamp(2rem, 8vw, 5.5rem) 2rem clamp(2rem, 6vw, 4.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 50% at 50% 25%, rgba(255, 0, 0, 0.10) 0%, transparent 70%),
    radial-gradient(80% 80% at 80% 100%, rgba(255, 90, 0, 0.06) 0%, transparent 70%);
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }

.hero-inner { max-width: 760px; margin: 0 auto; }

.hero-badge {
  display: inline-block;
  background: rgba(255, 0, 0, 0.10);
  border: 1px solid rgba(255, 0, 0, 0.35);
  color: var(--red-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  /* Wider clamp band so the title scales meaningfully on mobile. Previously
     6vw at 320px = ~19px, capped at 2.4rem floor — felt cramped. Now starts
     at 1.8rem (29px) min and grows aggressively (8vw) up to 4.5rem cap. */
  font-size: clamp(1.8rem, 8vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, var(--text) 0%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0.85rem;
}

.hero-fine { font-size: 0.78rem; color: var(--muted); opacity: 0.7; }

/* ── Demo section ── */
.demo-section {
  padding: 5rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.demo-section h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.demo-cards {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 2rem;
}

.demo-arrow { font-size: 2rem; color: var(--border); flex-shrink: 0; }

.demo-card {
  flex: 1;
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
  background: var(--bg);
}

.demo-card.demo-bad  {
  border-color: rgba(255, 68, 68, 0.35);
  background: linear-gradient(0deg, rgba(255, 68, 68, 0.05), rgba(255, 68, 68, 0.05)), var(--bg);
}
.demo-card.demo-good {
  border-color: rgba(0, 200, 81, 0.35);
  background: linear-gradient(0deg, rgba(0, 200, 81, 0.05), rgba(0, 200, 81, 0.05)), var(--bg);
}

.demo-card-header {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.demo-tag { font-size: 1.35rem; font-weight: 900; }
.demo-tag.bad  { color: var(--danger); }
.demo-tag.good { color: var(--green); }

.demo-verdict { font-size: 0.78rem; color: var(--muted); }

.demo-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.45;
}

.demo-scores {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.demo-score-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  background: rgba(255,255,255,0.03);
  border-radius: 6px;
  padding: 0.5rem 0.35rem;
}

.demo-score-label {
  font-size: 0.62rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 0.15rem;
  text-align: center;
}

.demo-score-val { font-size: 1.3rem; font-weight: 900; }
.demo-score-val.bad  { color: var(--danger); }
.demo-score-val.good { color: var(--green); }

.demo-feedback {
  font-size: 0.8rem;
  border-radius: 6px;
  padding: 0.55rem 0.75rem;
  line-height: 1.4;
}

.demo-feedback.bad  { background: rgba(255,68,68,0.08);  color: #FF8888; }
.demo-feedback.good { background: rgba(0,200,81,0.08);   color: #4ade80; }

/* Cohort hit-rate line — the empirical calibration signal shown under
   each demo verdict. Mirrors the live poster-verdict-band-context
   treatment: small, muted, font-mono for the numeric. Dark text on
   light card backgrounds (the demo cards live on the white landing
   page, not the dark predict-app palette). */
.demo-cohort-line {
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--hairline);
}
.demo-cohort-line strong {
  font-family: var(--font-mono);
  color: var(--ink);
  font-weight: 700;
}

/* Reason list under each verdict — mirrors the live diagnosis panel's
   per-feature bullets (✓ for hits / ✕ for flops). Body color matches
   the demo card's --ink (dark) for legibility on the light pink/red
   tinted card backgrounds; only the icon picks up the tier color. */
.demo-reasons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.demo-reason {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--ink);
}
.demo-reason-icon {
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
  width: 1rem;
  text-align: center;
}
.demo-reason.bad .demo-reason-icon  { color: #c92a2a; }
.demo-reason.good .demo-reason-icon { color: #1a8a3b; }

/* ── How it works ── */
.how-section {
  padding: 5rem 2rem;
  text-align: center;
}

.how-section h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 3rem;
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  /* 4-step row (Connect → Drop → See verdict → Publish) needs to wrap
     gracefully on medium viewports (900-1100px) before the 768px
     breakpoint takes over with the column-stacked variant. Without
     flex-wrap a 4th step would overflow the container on tablets. */
  flex-wrap: wrap;
  row-gap: 1.5rem;
}

.step { flex: 1; max-width: 280px; padding: 0 1.5rem; }

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,68,68,0.1);
  border: 1px solid rgba(255,68,68,0.3);
  color: #FF6B6B;
  font-size: 1.1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.step p  { font-size: 0.86rem; color: var(--muted); line-height: 1.55; }

.step-divider { font-size: 1.4rem; color: #2a2a2a; padding-top: 0.75rem; flex-shrink: 0; }

/* ── Features ── */
.features-section {
  padding: 5rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.features-section h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  /* auto-fit + minmax replaces the 4 → 2 → 1 breakpoint cascade. Cards
     reflow naturally based on available space: ~4-wide on desktop, 2 on
     tablet, 1 on phone. No magic breakpoints to maintain. */
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  text-align: left;
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  position: relative;
  transition: border-color 0.2s;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 1.25rem; right: 1.25rem;
  height: 2px;
  background: var(--card-accent, #22C58B);
  border-radius: 0 0 2px 2px;
}

.feature-card:hover { border-color: var(--card-accent, #22C58B); }

.feature-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.feature-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--card-accent, #22C58B);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--text); }
.feature-card p  { font-size: 0.83rem; color: var(--muted); line-height: 1.6; }

/* ── Pricing ── */
.pricing-section { padding: 5rem 2rem; text-align: center; }

.pricing-section h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 3rem;
}

.pricing-cards {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: left;
  position: relative;
}

.pricing-card.pricing-pro {
  border-color: rgba(255,68,68,0.4);
  background: #100818;
}

.pricing-card.pricing-creator {
  border-color: rgba(139,92,246,0.4);
  background: #100820;
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--red), #FF4444);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.22rem 0.85rem;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-badge-creator {
  background: linear-gradient(90deg, #7c3aed, #8B5CF6);
}

.pricing-feature-creator {
  color: #a78bfa !important;
  font-weight: 600;
}

.btn-creator {
  background: linear-gradient(90deg, #7c3aed, #8B5CF6);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.15s;
  white-space: nowrap;
  width: 100%;
  justify-content: center;
}
.btn-creator:hover { opacity: 0.88; }

.pricing-tier {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--muted); }

.pricing-desc { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.5rem; }

.pricing-features { list-style: none; margin-bottom: 1.75rem; }

.pricing-features li {
  font-size: 0.87rem;
  color: #ccc;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child { border-bottom: none; }

.annual-save {
  font-size: 0.72rem;
  background: rgba(0,200,81,0.15);
  color: #4ade80;
  border-radius: 4px;
  padding: 0.1rem 0.4rem;
  margin-left: 0.3rem;
  font-weight: 700;
}

/* ── Final CTA ── */
.cta-section {
  padding: 5.5rem 2rem;
  text-align: center;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 0.75rem;
}

.cta-section p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* ── Footer ── */
footer {
  text-align: center;
  padding: 1rem 2rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  opacity: 0.7;
  font-size: 0.78rem;
}
footer a { color: #666; text-decoration: none; margin: 0 0.5rem; }
footer a:hover { color: var(--muted); }

/* ── FAQ ── */
.faq-section {
  padding: 5rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.faq-section h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 2.5rem;
  text-align: center;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.35rem 0;
}

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-item h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.55rem;
  line-height: 1.4;
}

.faq-item p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ── Leaderboard Section ── */
.leaderboard-section {
  padding: 5rem 1.5rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-sub {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  margin-bottom: 2.5rem;
  text-align: center;
}
.landing-lb-grid {
  display: grid;
  /* Reflow naturally — was 3 → 2 → 1 column steps; same auto-fit pattern
     as features grid. Min 240px gives room for niche labels + score chips. */
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
}
.landing-lb-loading { color: var(--muted); text-align: center; padding: 2rem; }
.landing-lb-card {
  background: #0d0d18;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: border-color 0.15s;
}
.landing-lb-card:hover { border-color: rgba(255,255,255,0.15); }
.landing-lb-rank { font-size: 1.3rem; line-height: 1; }
.landing-lb-idea {
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.45;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.landing-lb-score-row {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-top: 0.25rem;
}
.landing-lb-emoji { font-size: 1rem; }
.landing-lb-score { font-size: 1.6rem; font-weight: 800; line-height: 1; }
.landing-lb-denom { font-size: 0.7rem; font-weight: 400; color: var(--muted); margin-left: 1px; }
.landing-lb-niche {
  font-size: 0.68rem;
  color: var(--muted);
  background: var(--border);
  border-radius: 4px;
  padding: 0.15rem 0.45rem;
  width: fit-content;
}

/* ── Responsive ──
   Logo height + hero padding + hero font-size now scale fluidly via clamp(),
   so this section is mostly cleanup overrides (flex direction, padding) for
   sections that need a hard layout switch. Features + leaderboard grids use
   auto-fit/minmax instead of breakpoint-stepped column counts so they
   reflow smoothly from 320px to 1400px. */
@media (max-width: 900px) {
  header { padding: 0.75rem 1rem; }
}

@media (max-width: 900px) {
  .pricing-cards { flex-wrap: wrap; max-width: 680px; }
  .pricing-card { min-width: calc(50% - 0.625rem); }
}

@media (max-width: 768px) {
  .demo-cards { flex-direction: column; }
  .demo-arrow { transform: rotate(90deg); }
  .steps { flex-direction: column; align-items: center; }
  .step-divider { transform: rotate(90deg); padding: 0; }
  .pricing-cards { flex-direction: column; max-width: 400px; }
  .pricing-card { min-width: unset; }
}

@media (max-width: 480px) {
  header { padding: 10px 14px; }
  .demo-section, .how-section, .features-section,
  .pricing-section, .cta-section { padding: 48px 16px; }
  .demo-scores { flex-wrap: wrap; }
  .hero h1 { letter-spacing: -0.5px; }
  .btn-lg { font-size: 15px; padding: 12px 24px; }
}

/* ============================================================================
   STUDIO PRINT OVERRIDES — landing page
   Flatten dark-mode legacy treatments to white + YouTube red.
   ========================================================================== */

/* Header */
header { background: var(--paper); border-bottom: 1px solid var(--hairline); }
/* Logo height is now defined fluidly at the top of this file via clamp().
   No need to re-override here per breakpoint — it scales automatically. */

/* Buttons — primary is solid YouTube red, no gradient */
.btn-primary {
  background: var(--accent) !important;
  color: var(--paper) !important;
  border: 1px solid var(--accent) !important;
  font-family: var(--font-ui);
  font-weight: 600;
  border-radius: 8px;
  letter-spacing: -0.005em;
}
.btn-primary:hover {
  background: var(--accent-soft) !important;
  border-color: var(--accent-soft) !important;
  filter: none;
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--hairline-strong);
  font-family: var(--font-ui);
  font-weight: 600;
  border-radius: 8px;
}
.btn-outline:hover { border-color: var(--ink); background: var(--paper-2); color: var(--ink); }
.btn-ghost { color: var(--ink-muted); font-family: var(--font-ui); font-weight: 500; }
.btn-ghost:hover { color: var(--ink); }

/* Hero — kill the dark radial gradient, kill the white-fade text effect */
.hero {
  background: var(--paper);
  border-bottom: 1px solid var(--hairline);
}
.hero::before { display: none !important; }
.hero h1 {
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  color: var(--ink) !important;
  -webkit-text-fill-color: var(--ink) !important;
  font-family: var(--font-ui);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.hero-sub { color: var(--ink-soft); font-family: var(--font-ui); font-weight: 400; }
.hero-fine { color: var(--ink-muted); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.02em; opacity: 1; }
.hero-badge {
  background: var(--accent-bg);
  border: 1px solid rgba(255, 0, 51, 0.24);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Section headings */
.section-label { color: var(--ink-muted); font-family: var(--font-ui); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.section-sub { color: var(--ink-soft); font-family: var(--font-ui); }
.demo-section h2, .how-section h2, .features-section h2, .pricing-section h2, .faq-section h2, .cta-section h2 {
  color: var(--ink);
  font-family: var(--font-ui);
  font-weight: 800;
  letter-spacing: -0.018em;
}

/* Demo cards — flat paper with hairline */
.demo-card {
  background: var(--paper-2);
  border: 1px solid var(--hairline);
}
.demo-card.demo-bad {
  background: rgba(122, 34, 34, 0.04);
  border: 1px solid rgba(122, 34, 34, 0.20);
}
.demo-card.demo-good {
  background: var(--accent-bg);
  border: 1px solid rgba(255, 0, 51, 0.20);
}
.demo-tag.bad { color: var(--ink-muted); }
.demo-tag.good { color: var(--accent); }
.demo-verdict { color: var(--ink-muted); font-family: var(--font-mono); }
.demo-title { color: var(--ink); font-family: var(--font-ui); }
.demo-feedback.bad {
  background: rgba(122, 34, 34, 0.06) !important;
  color: var(--ink) !important;
  border: 1px solid rgba(122, 34, 34, 0.16);
}
.demo-feedback.good {
  background: var(--accent-bg) !important;
  color: var(--ink) !important;
  border: 1px solid rgba(255, 0, 51, 0.20);
}
.demo-arrow { color: var(--hairline-bold); }

/* Steps */
.step-number { color: var(--accent); font-family: var(--font-display); }
.step-divider { color: var(--hairline-bold); }
.step-title { color: var(--ink); font-family: var(--font-ui); }
.step-body { color: var(--ink-soft); font-family: var(--font-ui); }

/* Feature cards */
.feature-card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  --card-accent: var(--accent);
}
.feature-card::before { background: var(--accent) !important; }
.feature-card:hover { border-color: var(--accent); }
.feature-icon { color: var(--accent) !important; }
.feature-title { color: var(--ink); font-family: var(--font-ui); }
.feature-body { color: var(--ink-soft); font-family: var(--font-ui); }

/* Pricing cards — Free neutral, Pro gold-accented, Creator red-accented.
   Two-color tier hierarchy: gold = "step up", red = "premium". */
.pricing-card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 12px;
}
.pricing-card.pricing-pro {
  background: var(--paper);
  border: 2px solid var(--gold);
}
.pricing-card.pricing-creator {
  background: var(--paper);
  border: 2px solid var(--accent);
}
.pricing-tier { color: var(--ink); font-family: var(--font-ui); font-weight: 700; }
.pricing-card.pricing-pro     .pricing-tier { color: var(--gold-soft); }
.pricing-card.pricing-creator .pricing-tier { color: var(--accent); }
.pricing-price { color: var(--ink); font-family: var(--font-display); font-feature-settings: "tnum"; font-weight: 800; }
.pricing-price span { color: var(--ink-muted); font-family: var(--font-ui); font-weight: 500; }
.pricing-desc { color: var(--ink-soft); font-family: var(--font-ui); }
.pricing-features { color: var(--ink-soft); font-family: var(--font-ui); }
.pricing-features li { color: var(--ink-soft); }
.pricing-feature-creator { color: var(--accent); font-weight: 600; }
.pricing-badge {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
/* Pro badge in gold, Creator badge in red — match the card border */
.pricing-card.pricing-pro .pricing-badge {
  background: var(--gold) !important;
  color: var(--paper) !important;
}
.pricing-badge-creator {
  background: var(--accent) !important;
  color: var(--paper) !important;
}

/* Creator CTA — flatten the purple gradient */
.btn-creator {
  background: var(--accent) !important;
  color: var(--paper) !important;
  border: 1px solid var(--accent) !important;
}
.btn-creator:hover {
  background: var(--accent-soft) !important;
  border-color: var(--accent-soft) !important;
}

/* Annual save tag — high-contrast white pill that pops against the red
   primary/creator buttons. The previous gold-on-amber chip got swallowed
   by the brand-red button background; "Save 34%" was almost invisible.
   White bg + dark gold text keeps the achievement theme and reads at a
   glance. */
.annual-save {
  background: #FFFFFF !important;
  color: #B45309 !important;
  border: 1px solid rgba(180, 83, 9, 0.35) !important;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 2px 7px !important;
  border-radius: 4px;
  margin-left: 6px;
  display: inline-block;
  vertical-align: middle;
  text-shadow: none;
  white-space: nowrap;
}

/* FAQ */
.faq-section { background: var(--paper); }
.faq-item {
  background: var(--paper-2);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  /* Horizontal padding — without it, the new full-border + border-radius
     leaves the question/answer text hugging the left and right edges of
     the rectangle. Inner padding gives the text breathing room. The
     original rule above (line 609) had padding: 1.35rem 0 which only
     covered top/bottom — fine when each item just had a bottom hairline,
     wrong now that we surround the item entirely. */
  padding: 1.35rem 1.5rem;
  margin-bottom: 0.6rem;
}
/* Cancel the legacy first-child top-border + bottom-border-bottom from the
   original list-style design — they double up against the new full border
   and create faint duplicate hairlines. */
.faq-item,
.faq-item:first-child { border-top: 1px solid var(--hairline); }
.faq-list { border-top: none; }
.faq-question { color: var(--ink); font-family: var(--font-ui); font-weight: 600; }
.faq-answer { color: var(--ink-soft) !important; font-family: var(--font-ui); }
.faq-answer p { color: var(--ink-soft) !important; }

/* CTA section */
.cta-section { background: var(--paper); }
.cta-section h2 { color: var(--ink); }

/* Leaderboard */
.landing-leaderboard, .leaderboard-grid, #landingLeaderboard {
  background: transparent;
}
.landing-lb-card {
  background: var(--paper-2) !important;
  border: 1px solid var(--hairline) !important;
  border-radius: 10px;
  color: var(--ink);
}
.landing-lb-rank { color: var(--ink-muted); font-family: var(--font-mono); }
.landing-lb-idea { color: var(--ink); font-family: var(--font-ui); }
.landing-lb-emoji { font-size: 14px; }
.landing-lb-score { font-family: var(--font-display); font-feature-settings: "tnum"; }
.landing-lb-denom { color: var(--ink-muted); font-family: var(--font-ui); }

/* Footer */
footer { background: transparent; color: var(--ink-muted); border-top: 1px solid var(--hairline); }
footer a { color: var(--ink-muted); }
footer a:hover { color: var(--ink); }

/* ============================================================================
   LAYER 2/3 — Energy pass.
   Lifts the page from "editorial" toward "modern SaaS" without changing the
   palette. Three moves:
     1. Heavier sans-serif headlines (was rendering serif via fallback; now
        Inter-Black at 800 weight reads as a tool, not an op-ed).
     2. Alternating section backgrounds (white ↔ paper-2 light gray) to give
        the page rhythm instead of one infinite white sheet.
     3. Bigger, bolder CTAs with hover lift. The .btn-primary !important rules
        already define the red — just scaling up presence.
   ========================================================================== */

/* Headlines — Inter Black, tighter tracking, bigger sizes. The serif
   appearance in earlier screenshots was a fallback because var(--font-ui)
   resolved to nothing. Now Inter is loaded and the headlines read crisp. */
.hero h1,
.demo-section h2,
.how-section h2,
.features-section h2,
.leaderboard-section h2,
.pricing-section h2,
.faq-section h2,
.cta-section h2 {
  font-family: var(--font-ui);
  font-weight: 900;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.demo-section h2,
.how-section h2,
.features-section h2,
.leaderboard-section h2,
.pricing-section h2,
.faq-section h2,
.cta-section h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.15;
}
/* In-headline accent — wrap one or two words in <em class="hl"> to draw the
   eye. Used sparingly: at most one phrase per headline. */
.hero h1 em.hl,
h2 em.hl {
  font-style: normal;
  color: var(--accent);
}

/* Alternating section backgrounds — breaks up the all-white sheet and
   gives the eye natural section boundaries. White → gray → white → gray. */
.stats-strip       { background: var(--paper-2); }
.how-section       { background: var(--paper-2); }
.leaderboard-section { background: var(--paper-2); }
.faq-section       { background: var(--paper-2); }
/* (hero, demo, features, pricing, cta stay white — already default) */

/* CTAs — make the primary action unmissable. Doubled padding height,
   stronger shadow on hover, micro-lift. */
.hero-ctas .btn-lg,
.cta-section .btn-lg {
  font-size: 1rem !important;
  padding: 14px 28px !important;
  font-weight: 700 !important;
  border-radius: 10px;
  letter-spacing: -0.005em;
}
.btn-primary {
  box-shadow: 0 1px 3px rgba(255, 0, 51, 0.18), 0 4px 14px rgba(255, 0, 51, 0.12);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(255, 0, 51, 0.24), 0 10px 24px rgba(255, 0, 51, 0.18);
}
@media (prefers-reduced-motion: reduce) {
  .btn-primary:hover { transform: none; }
}

/* Pricing tier badges — were rendering as faint text. Promote to clear pills. */
.pricing-badge {
  background: var(--accent);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-block;
}
.pricing-badge-creator {
  background: var(--ink);
  color: var(--paper);
}

/* Save % pills — already tightened earlier; this just ensures they keep
   their white-pill-on-red treatment when the parent button is the dark
   .btn-creator (uses --ink not --accent). */
.btn-creator .annual-save {
  border-color: rgba(255, 255, 255, 0.6) !important;
  color: var(--ink) !important;
}

/* Section header rule — the 3px brand-red bar above each H2 (already
   shipped earlier, this just confirms it renders cleanly with the new
   tokens loaded). No change needed; tokens were the missing piece. */

/* Center the eyebrow label + H2 across all sections so the layout reads
   consistently. Without this, the FAQ section had a left-aligned "FAQ"
   label sitting above a center-aligned "Common questions" headline —
   visually broken. Pricing already had `text-align: center` on the
   section; the rest were inheriting the body's default left alignment
   for non-headline children. Now uniform. */
.demo-section,
.how-section,
.features-section,
.leaderboard-section,
.faq-section,
.cta-section {
  text-align: center;
}
/* FAQ items themselves are still left-aligned for readability — only the
   section heading area is centered. */
.faq-list,
.faq-item,
.faq-item p,
.faq-item h3 {
  text-align: left;
}
/* Feature card body text reads left for readability — same exception. */
.features-grid,
.feature-card,
.feature-card p {
  text-align: left;
}
/* Pricing card body content stays left-justified inside its tile. */
.pricing-card { text-align: left; }
.pricing-card .pricing-price,
.pricing-card .pricing-tier,
.pricing-card .pricing-desc { text-align: left; }
/* Demo card internals also need left-alignment */
.demo-card { text-align: left; }

/* ============================================================================
   VISUAL RICHNESS PASS — landing page
   Stays inside YouTube-native palette (white + #FF0033). Adds depth via
   shadows, soft gradient hero, mock product card, stats strip, thumbnail
   imagery in demo, and an accent rule on section headers.
   ========================================================================== */

/* Soft red wash on the hero — pure white at the top, ~5% red tint at the
   bottom. Keeps brand purity but eliminates the flat-paper feel. */
.hero {
  background: linear-gradient(180deg, var(--paper) 0%, #FFF5F6 100%);
}

/* Section heading accent — 3px red rule above each H2 in main sections.
   Linear-style detail; small but registers everywhere on the page. */
.demo-section h2,
.how-section h2,
.features-section h2,
.leaderboard-section h2,
.pricing-section h2,
.faq-section h2,
.cta-section h2 {
  position: relative;
  padding-top: 1.25rem;
}
.demo-section h2::before,
.how-section h2::before,
.features-section h2::before,
.leaderboard-section h2::before,
.pricing-section h2::before,
.faq-section h2::before,
.cta-section h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

/* Card shadow + hover lift — replaces the flat-hairline feel on demo cards,
   feature cards, pricing cards, and leaderboard cards. Subtle layered shadow
   gives depth without competing with the typography. */
.demo-card,
.feature-card,
.pricing-card,
.landing-lb-card {
  box-shadow:
    0 1px 3px rgba(15, 15, 15, 0.04),
    0 8px 28px rgba(15, 15, 15, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.demo-card:hover,
.feature-card:hover,
.pricing-card:hover,
.landing-lb-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 2px 6px rgba(15, 15, 15, 0.06),
    0 16px 40px rgba(15, 15, 15, 0.08);
}
@media (prefers-reduced-motion: reduce) {
  .demo-card:hover, .feature-card:hover, .pricing-card:hover, .landing-lb-card:hover {
    transform: none;
  }
}

/* ── Hero mock card ──────────────────────────────────────────────────────────
   Right-side product visualization. CSS-only mock of a HitOrNot prediction
   result: thumbnail visualization + score chip + verdict + sub-scores.
   No external image dependency. */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
  }
  .hero-inner { text-align: left; max-width: none; }
  .hero h1, .hero-sub, .hero-fine { text-align: left; }
  .hero-ctas { justify-content: flex-start; }
  .hero-badge { margin-left: 0; }
}

.hero-mock {
  position: relative;
  perspective: 1200px;
}
.hero-mock-card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 1.25rem;
  box-shadow:
    0 4px 12px rgba(15, 15, 15, 0.05),
    0 24px 48px rgba(15, 15, 15, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.6) inset;
  transform: rotate(-1.2deg);
  max-width: 460px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .hero-mock-card { transform: rotate(-1.5deg); }
}

/* The "thumbnail" inside the mock — stylized, no external image.
   Vivid YouTube-style background + bold mock title rendered in CSS.
   Looks like a real YouTube thumbnail without using anyone's actual artwork. */
.hero-mock-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 30%, #FFD7DE 0%, transparent 60%),
    radial-gradient(ellipse at 80% 70%, #FFEAA0 0%, transparent 65%),
    linear-gradient(135deg, var(--accent) 0%, #FF6B00 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
}
.hero-mock-thumb-text {
  font-family: var(--font-display), var(--font-ui);
  font-weight: 900;
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: var(--paper);
  text-align: center;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(15, 15, 15, 0.35);
  padding: 0 1rem;
  line-height: 1.05;
}
.hero-mock-thumb-text em {
  display: block;
  font-style: normal;
  color: #FFE066;
  font-size: 1.18em;
}
/* Score chip overlaid on the thumbnail bottom-right. */
.hero-mock-score {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: var(--paper);
  color: var(--accent);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.4rem;
  padding: 6px 12px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(15, 15, 15, 0.2);
  font-feature-settings: "tnum";
  line-height: 1;
}
.hero-mock-score sup {
  font-size: 0.55em;
  color: var(--ink-muted);
  margin-left: 2px;
  vertical-align: super;
}

.hero-mock-meta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.hero-mock-title {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--ink);
  line-height: 1.35;
}
.hero-mock-verdict {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
}
.hero-mock-verdict::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.hero-mock-bars {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.4rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--hairline);
}
.hero-mock-bar {
  display: grid;
  grid-template-columns: 90px 1fr 36px;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
}
.hero-mock-bar-label { color: var(--ink-soft); }
.hero-mock-bar-track {
  height: 4px;
  background: var(--paper-3);
  border-radius: 2px;
  overflow: hidden;
}
.hero-mock-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
}
.hero-mock-bar-val {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--ink);
  font-feature-settings: "tnum";
  text-align: right;
}

/* Hero-mock verdict tag — replaces the old subscore bars (which the live
   product doesn't actually show). Mirrors the live verdict treatment:
   big HIT/MAYBE/FLOP tag + cohort hit-rate line + a couple of plain-English
   reason bullets. */
.hero-mock-verdict-tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-top: 0.5rem;
  padding: 0.3rem 0.7rem;
  background: var(--accent-bg);
  border: 1px solid rgba(255, 0, 51, 0.25);
  border-radius: 6px;
}
.hero-mock-verdict-tag span {
  color: var(--ink-muted);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}
.hero-mock-cohort {
  margin-top: 0.65rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--hairline);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--ink-muted);
}
.hero-mock-reasons {
  margin-top: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--ink);
  line-height: 1.4;
}
.hero-mock-reason {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.hero-mock-reason > span {
  color: var(--accent);
  font-weight: 800;
  flex-shrink: 0;
  width: 0.9rem;
}

/* ── Stats strip ─────────────────────────────────────────────────────────────
   Real numbers in Geist Mono brand red. Establishes credibility (data scale)
   and adds visual rhythm between hero and demo. */
.stats-strip {
  background: var(--paper);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: clamp(1.75rem, 4vw, 3rem) 1.5rem;
}
.stats-strip-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  text-align: center;
}
.stats-strip-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.stats-strip-num {
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
  font-feature-settings: "tnum";
}
.stats-strip-label {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}

/* ── Demo card thumbnails ────────────────────────────────────────────────────
   CSS-only stylized thumbnails on each demo card. Bad-side uses muted
   palette + "boring" composition; good-side uses vivid red/yellow with
   strong contrast — visually communicates the score difference at a glance. */
.demo-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-ui);
  font-weight: 700;
}
.demo-thumb-bad {
  background:
    linear-gradient(135deg, #E5E7EB 0%, #9CA3AF 100%);
  color: #4B5563;
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  letter-spacing: -0.01em;
  padding: 0 1.2rem;
  line-height: 1.2;
}
.demo-thumb-good {
  background:
    radial-gradient(ellipse at 30% 30%, #FFD7DE 0%, transparent 60%),
    radial-gradient(ellipse at 70% 70%, #FFE066 0%, transparent 65%),
    linear-gradient(135deg, var(--accent) 0%, #FF6B00 100%);
  color: var(--paper);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  letter-spacing: -0.02em;
  font-weight: 900;
  text-shadow: 0 2px 8px rgba(15, 15, 15, 0.3);
  padding: 0 1rem;
  line-height: 1.05;
}
.demo-thumb-good em {
  display: block;
  font-style: normal;
  color: #FFE066;
  font-size: 1.18em;
}
/* Score chip on each demo thumbnail (mirrors the hero mock pattern). */
.demo-thumb-score {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: var(--paper);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 4px 10px;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(15, 15, 15, 0.2);
  font-feature-settings: "tnum";
  line-height: 1;
}
.demo-thumb-score.bad  { color: #6B7280; }
.demo-thumb-score.good { color: var(--accent); }

/* Generic kill of any remaining dark color literals in the layout */
[style*="background:#0"], [style*="background: #0"],
[style*="background:#1"], [style*="background: #1"] {
  background: var(--paper) !important;
}

/* ── Beta section (landing page) ─────────────────────────────────────────────
   Inherits .pricing-section padding + headline styling; these add the
   sub-text + CTA layout that the old pricing-cards grid used to provide.
   See [[beta-graduation]] for why pricing is hidden during beta. */
.beta-section-sub {
  max-width: 640px;
  margin: 1.5rem auto 2rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink-muted, #555);
  text-align: center;
}
.beta-section-cta {
  text-align: center;
}
