/* ═══════════════════════════════════════════════════════
   BLISS — BURNOUT LANDING PAGE
   Palette: brand gradient — cyan #C9F6F9 + gold #FFEFBC
   Method:  solid-color orbs + opacity + blur  (NOT radial-gradient)
   ═══════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ───────────────────────────────────── */
:root {
  /* ── Base backgrounds ── */
  --bg-base:       #fefefe;
  --bg-surface:    #f8f9f8;
  --bg-elevated:   #f3f4f6;
  --bg-card:       #ffffff;

  /* ── Brand gradient orb colors (#C9F6F9 cyan + #FFEFBC gold) ── */
  --orb-yellow:    #FFEFBC;   /* brand gold — 685px, blur 190px, opacity .22 */
  --orb-gold:      #ffe5a0;   /* deeper gold  — 223px, blur 105px, opacity .10 */
  --orb-cyan-a:    #C9F6F9;   /* brand cyan — 685px, blur 190px, opacity .22 */
  --orb-cyan-b:    #b8f0f4;   /* deeper cyan — 685px, blur 190px, opacity .22 */
  --orb-peach:     #ffd7af;   /* warm amber — 220px, blur 140px, opacity .20 */

  /* ── Semantic accent colors ── */
  --accent-gold:   #c8960c;   /* readable amber on white */
  --accent-cyan:   #0891b2;   /* readable teal on white  */
  --accent-link:   #0099ff;   /* getbliss link blue      */

  /* ── CTA: near-black (Apple-style) ── */
  --cta-bg:        #111827;
  --cta-bg-hover:  #1e2a3a;
  --cta-text:      #ffffff;

  /* ── Semantic greens / reds ── */
  --green:         #16a34a;
  --green-bg:      rgba(22, 163, 74, 0.07);
  --green-border:  rgba(22, 163, 74, 0.18);
  --red:           #dc2626;
  --red-bg:        rgba(220, 38, 38, 0.06);
  --red-border:    rgba(220, 38, 38, 0.14);

  /* ── Typography ── */
  --text-primary:   #111827;
  --text-secondary: #6b7280;
  --text-tertiary:  #9ca3af;

  /* ── Borders ── */
  --border-hair:   #f2f2f2;   /* getbliss card border    */
  --border-light:  #e5e7eb;
  --border-medium: #d1d5db;

  /* ── Shadows ── */
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.05), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 24px rgba(0,0,0,0.07), 0 4px 8px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.09), 0 8px 16px rgba(0,0,0,0.05);

  /* ── Typography stacks ── */
  --font-display: 'minerva-modern', 'Helvetica Neue', Arial, sans-serif;
  --font-body:    'minerva-modern', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:    'Fragment Mono', 'SF Mono', 'Fira Code', monospace;

  /* ── Spacing ── */
  --s1:  4px;  --s2:  8px;  --s3:  12px; --s4:  16px;
  --s5:  20px; --s6:  24px; --s8:  32px; --s10: 40px;
  --s12: 48px; --s16: 64px; --s20: 80px; --s24: 96px; --s32: 128px;

  /* ── Layout ── */
  --max-w:      1160px;
  --r-sm:       8px;
  --r-md:       16px;
  --r-lg:       24px;   /* getbliss card radius */
  --r-xl:       32px;
  --r-pill:     100px;

  /* ── Motion ── */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast:     150ms;
  --t-base:     240ms;
  --t-slow:     400ms;
}

/* ─── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}
img, video, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
details { cursor: pointer; }

/* ─── LAYOUT HELPERS ──────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--s6);
}
.section { padding-block: var(--s24); position: relative; }
.br-d { display: block; }

/* ═══════════════════════════════════════════════════════
   ORB SYSTEM — exact getbliss.app method:
   solid background color + opacity on element + filter blur
   ═══════════════════════════════════════════════════════ */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}

/* Large cyan orbs — boosted opacity for visible brand gradient */
.orb--cyan-lg {
  width: 685px; height: 685px;
  background: var(--orb-cyan-a);
  opacity: 0.38;
  filter: blur(160px);
}
.orb--cyan-b {
  width: 685px; height: 685px;
  background: var(--orb-cyan-b);
  opacity: 0.35;
  filter: blur(160px);
}

/* Large yellow/gold orb */
.orb--yellow-lg {
  width: 685px; height: 685px;
  background: var(--orb-yellow);
  opacity: 0.38;
  filter: blur(160px);
}

/* Small peach orb */
.orb--peach {
  width: 220px; height: 220px;
  background: var(--orb-peach);
  opacity: 0.25;
  filter: blur(120px);
}

/* Small gold orb */
.orb--gold-sm {
  width: 280px; height: 280px;
  background: var(--orb-gold);
  opacity: 0.22;
  filter: blur(90px);
}

/* ─── Drift animation ─────────────────────────────────── */
@keyframes drift-a {
  0%   { transform: translate(0,   0) }
  50%  { transform: translate(20px,  15px) }
  100% { transform: translate(-10px, 25px) }
}
@keyframes drift-b {
  0%   { transform: translate(0,   0) }
  50%  { transform: translate(-25px, -10px) }
  100% { transform: translate(15px,  20px) }
}
.orb--animate-a { animation: drift-a 22s ease-in-out infinite alternate; }
.orb--animate-b { animation: drift-b 28s ease-in-out infinite alternate; }
.orb--animate-c { animation: drift-a 18s ease-in-out infinite alternate-reverse; }

/* ─── BADGES ──────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--r-pill);
}
.badge--gold {
  background: #FFEFBC; border: 1px solid #e8c84a;
  color: #7a5800;
}
.badge--cyan {
  background: #C9F6F9; border: 1px solid #67d8ef;
  color: #0e6f87;
}
.badge--neutral {
  background: var(--bg-surface); border: 1px solid var(--border-light);
  color: var(--text-secondary);
}

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--s2); font-weight: 700; letter-spacing: -0.01em;
  border: none; cursor: pointer; border-radius: var(--r-pill);
  transition: transform var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out),
              background var(--t-fast);
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn--primary {
  background: var(--cta-bg);
  color: var(--cta-text);
  box-shadow: var(--shadow-md);
}
.btn--primary:hover {
  background: var(--cta-bg-hover);
  box-shadow: var(--shadow-lg);
  transform: translateY(-1px);
}
.btn--primary:active {
  transform: translateY(0); box-shadow: var(--shadow-sm);
}
/* Alias */
.btn--gold { background: var(--cta-bg); color: var(--cta-text); box-shadow: var(--shadow-md); }
.btn--gold:hover { background: var(--cta-bg-hover); box-shadow: var(--shadow-lg); transform: translateY(-1px); }
.btn--gold:active { transform: translateY(0); box-shadow: var(--shadow-sm); }

.btn--sm  { font-size: 13px; padding: 8px 20px; }
.btn--md  { font-size: 14px; padding: 12px 24px; }
.btn--lg  { font-size: 15px; padding: 15px 30px; }
.btn--xl  { font-size: 16px; padding: 18px 38px; }
.btn--full { width: 100%; }

.btn-sub,
.btn-subtext {
  display: block;
  font-size: 12px; color: var(--text-tertiary);
  margin-top: var(--s3); letter-spacing: 0.02em;
}
.btn-sub--center,
.btn-subtext--center { text-align: center; }

/* ─── LINK ────────────────────────────────────────────── */
.link-accent {
  color: var(--accent-link);
  text-decoration: underline;
  text-decoration-color: rgba(0,153,255,0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color var(--t-fast);
}
.link-accent:hover { text-decoration-color: var(--accent-link); }
.link--gold { color: var(--accent-link); text-decoration: underline;
  text-decoration-color: rgba(0,153,255,0.3); text-underline-offset:3px; }
.link--gold:hover { text-decoration-color: var(--accent-link); }

/* ─── SECTION TYPOGRAPHY ──────────────────────────────── */
.label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-secondary);
  margin-bottom: var(--s4);
}
.section-label { /* alias */
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-secondary);
  margin-bottom: var(--s4);
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.2vw, 46px);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.026em;
  color: var(--text-primary); margin-bottom: var(--s5);
}
.section-subhead {
  font-size: 18px; line-height: 1.65; color: var(--text-secondary);
  max-width: 580px; margin-bottom: var(--s12);
}

/* ═══════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 64px; padding-inline: var(--s6);
  display: flex; align-items: center;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-bottom: 1px solid var(--border-hair);
  transition: background var(--t-base), box-shadow var(--t-base);
}
.nav--scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  width: 100%; max-width: var(--max-w); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo {
  display: flex; align-items: center;
  transition: opacity var(--t-fast);
}
.nav__logo:hover { opacity: 0.75; }
.nav__logo-img {
  height: 36px; width: auto; border-radius: 8px;
}

/* ═══════════════════════════════════════════════════════
   §1 HERO
   ═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: 64px; overflow: hidden;
}

/* Living mesh gradient canvas */
.hero__gradient {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-block: var(--s16);
  gap: var(--s8);
  position: relative; z-index: 1;
  max-width: 780px;
  margin-inline: auto;
}

/* Bodi — top center */
.hero__mascot {
  width: 160px; height: 160px;
  position: relative; z-index: 1;
  filter: drop-shadow(0 16px 40px rgba(150,220,240,0.35));
  animation: mascot-float 5s ease-in-out infinite;
  flex-shrink: 0;
}
.hero__mascot img {
  width: 100%; height: 100%;
  object-fit: contain;
}
@keyframes mascot-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.hero__content {
  display: flex; flex-direction: column; align-items: center;
  width: 100%;
}

.hero__eyebrow { margin-bottom: var(--s5); }

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.2vw, 62px);
  font-weight: 900; line-height: 1.06; letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: var(--s6);
  max-width: 780px;
}
.hero__headline-em {
  color: var(--accent-gold);
  font-style: italic;
}

.hero__subhead {
  font-size: clamp(16px, 1.7vw, 18px);
  line-height: 1.7; color: var(--text-secondary);
  max-width: 580px; margin-bottom: var(--s8);
}

/* Trust bar */
.hero__trust {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: var(--s3) var(--s5); margin-bottom: var(--s8);
}
.trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 500; color: var(--text-secondary);
}
.trust-item svg { flex-shrink: 0; }

/* CTA group */
.hero__cta,
.hero__cta-group { display: flex; flex-direction: column; align-items: center; }

/* Stats row — sits below CTA inside hero__content */
.hero__stats {
  width: 100%;
  max-width: 480px;
  background: rgba(255,255,255,0.80);
  border: 1px solid var(--border-hair);
  border-radius: var(--r-lg);
  padding: var(--s5) var(--s6);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  backdrop-filter: blur(12px);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: var(--s8);
}
.stat-cell {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: var(--s3) var(--s4);
  border-right: 1px solid var(--border-hair);
}
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display); font-size: 32px; font-weight: 700;
  line-height: 1; letter-spacing: -0.02em; color: var(--text-primary);
}
.stat-unit { font-size: 14px; vertical-align: super; font-weight: 600; }
.stat-lbl { font-size: 11px; color: var(--text-secondary); margin-top: 4px; font-weight: 500; }

/* Scroll cue */
.scroll-cue {
  position: absolute; bottom: var(--s8); left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  z-index: 1;
}
.scroll-cue__dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--text-tertiary);
  animation: scroll-bob 2s ease-in-out infinite;
}
@keyframes scroll-bob {
  0%,100% { transform: translateY(0); opacity:.4; }
  50%     { transform: translateY(8px); opacity:.9; }
}

/* ═══════════════════════════════════════════════════════
   §2 PROBLEM
   ═══════════════════════════════════════════════════════ */
.problem { background: var(--bg-base); border-top: 1px solid var(--border-hair); }
/* Orb positions */
.problem .orb--cyan-b  { top: -200px; right: -200px; }
.problem .orb--gold-sm { bottom: -60px; left: 5%; }

/* Bento grid */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
  margin-bottom: var(--s10);
}
.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-hair);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease-out),
              box-shadow 0.35s var(--ease-out);
}
.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.03);
}
.bento-card--cyan:hover {
  border-color: rgba(201,246,249,0.6);
  box-shadow: 0 16px 48px rgba(14,122,140,0.08), 0 2px 8px rgba(0,0,0,0.03);
}
.bento-card--gold:hover {
  border-color: rgba(255,239,188,0.7);
  box-shadow: 0 16px 48px rgba(200,150,12,0.08), 0 2px 8px rgba(0,0,0,0.03);
}

/* Wide cards span 2 of 4 columns */
.bento-card--wide { grid-column: span 2; }

/* Accent top border */
.bento-card--cyan { border-top: 2px solid rgba(201,246,249,0.7); }
.bento-card--gold { border-top: 2px solid rgba(255,239,188,0.8); }

/* Visual area */
.bento-card__visual {
  padding: var(--s6) var(--s6) var(--s3);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  position: relative;
  overflow: hidden;
}

/* Accent tinting on the visual area */
.bento-card--cyan .bento-card__visual {
  background: linear-gradient(180deg, rgba(201,246,249,0.18) 0%, transparent 100%);
}
.bento-card--gold .bento-card__visual {
  background: linear-gradient(180deg, rgba(255,239,188,0.22) 0%, transparent 100%);
}

.bento-viz {
  width: 100%;
  height: auto;
  max-height: 120px;
}

/* Content area */
.bento-card__content {
  padding: var(--s5) var(--s6) var(--s6);
  flex: 1;
}
.bento-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0 0 6px;
}
.bento-card--cyan .bento-card__title { color: #0e7a8c; }
.bento-card--gold .bento-card__title { color: #9a6e00; }
.bento-card__content p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* Responsive bento */
@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-card--wide { grid-column: span 2; }
}
@media (max-width: 540px) {
  .bento { grid-template-columns: 1fr; }
  .bento-card--wide { grid-column: span 1; }
  .bento-card__visual { min-height: 110px; }
}

.problem__reframe {
  max-width: 680px;
  background: linear-gradient(135deg, #FFEFBC 0%, #C9F6F9 100%);
  border: 1px solid #d4c85a;
  border-radius: var(--r-lg); padding: var(--s8) var(--s10);
}
.problem__reframe p {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(18px, 2.2vw, 22px); line-height: 1.55;
  letter-spacing: -0.01em; color: var(--text-secondary);
}
.problem__reframe strong { color: var(--text-primary); font-style: normal; }

/* ═══════════════════════════════════════════════════════
   §3 MECHANISM
   ═══════════════════════════════════════════════════════ */
.mechanism { border-top: 1px solid var(--border-hair); }
.mechanism .orb--yellow-lg { top: -250px; left: -250px; }
.mechanism .orb--peach     { bottom: -80px; right: 10%; }

.mechanism__compare {
  display: grid; grid-template-columns: 1fr 1px 1fr;
  border: 1.5px solid var(--border-hair); border-radius: var(--r-xl);
  overflow: hidden;
}
.mechanism__col         { padding: var(--s10); background: #fff; }
.mechanism__col--works  { background: #f0fdfc; }
.mechanism__divider     { background: var(--border-hair); }

.mechanism__col-header {
  display: flex; align-items: center; gap: var(--s3);
  margin-bottom: var(--s8); padding-bottom: var(--s6);
  border-bottom: 1px solid var(--border-hair);
}
.mechanism__col-header h3 { font-size: 18px; font-weight: 700; color: var(--text-primary); letter-spacing: -0.01em; }
.mechanism__icon {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; flex-shrink: 0;
}
.mechanism__icon--fail  { background: var(--red-bg);   color: var(--red);   }
.mechanism__icon--works { background: var(--green-bg); color: var(--green); }

.mechanism__list { display: flex; flex-direction: column; gap: var(--s5); }
.mechanism__list li {
  display: flex; align-items: flex-start; gap: var(--s4);
  font-size: 16px; line-height: 1.55; color: var(--text-secondary);
}
.mechanism__list li div  { flex: 1; }
.mechanism__list li strong { color: var(--text-primary); font-weight: 600; }
.mechanism__list li span   { color: var(--text-tertiary); }
.m-x { color: var(--red);   font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.m-c { color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
/* Aliases */
.mechanism__x     { color: var(--red);   font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.mechanism__check { color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ═══════════════════════════════════════════════════════
   §4 QUALIFICATION
   ═══════════════════════════════════════════════════════ */
.qualification {
  background: var(--bg-surface); border-top: 1px solid var(--border-hair);
}
.qualification .orb--cyan-lg  { top: -200px; right: -200px; }
.qualification .orb--gold-sm  { bottom: -80px; left: 5%; }

.qual__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s6); }
.qual__col {
  border: 1.5px solid var(--border-hair); border-radius: var(--r-xl);
  padding: var(--s8); background: #fff;
}
.qual__col--yes { border-color: rgba(22,163,74,.2); background: #f0fdf4; }
.qual__col--no  { border-color: rgba(220,38,38,.15); background: #fef2f2; }

.qual__header {
  display: flex; align-items: center; gap: var(--s3);
  margin-bottom: var(--s6); padding-bottom: var(--s5);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.qual__header h3 { font-size: 16px; font-weight: 700; color: var(--text-primary); }
.qual__icon {
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.qual__icon--yes { background: var(--green-bg); color: var(--green); border: 1px solid var(--green-border); }
.qual__icon--no  { background: var(--red-bg);   color: var(--red);   border: 1px solid var(--red-border);   }

.qual__col ul { display: flex; flex-direction: column; gap: var(--s4); }
.qual__col ul li {
  display: flex; align-items: flex-start; gap: var(--s3);
  font-size: 15px; line-height: 1.55; color: var(--text-secondary);
}
.qual__col ul li svg { flex-shrink: 0; margin-top: 2px; }

/* ═══════════════════════════════════════════════════════
   §5 METHOD
   ═══════════════════════════════════════════════════════ */
.method { border-top: 1px solid var(--border-hair); }
.method .orb--yellow-lg { top: -300px; right: -300px; }

.method__steps {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: var(--s4); align-items: start;
}
.method__step {
  background: #fff; border: 1.5px solid var(--border-hair);
  border-radius: var(--r-xl); padding: var(--s8);
  transition: all var(--t-base) var(--ease-out);
}
.method__step:hover {
  border-color: #a7d8e0;
  box-shadow: 0 8px 32px rgba(13,148,136,.08);
  transform: translateY(-3px);
}
.step__num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--cta-bg); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 17px; margin-bottom: var(--s5);
  box-shadow: 0 2px 8px rgba(17,24,39,.2);
}
.step__tag {
  font-size: 10px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent-cyan);
  margin-bottom: var(--s3);
}
.step__body h3 {
  font-size: 18px; font-weight: 700; color: var(--text-primary);
  margin-bottom: var(--s3); line-height: 1.25; letter-spacing: -0.015em;
}
.step__body p { font-size: 15px; line-height: 1.65; color: var(--text-secondary); }

.method__arrow {
  display: flex; align-items: center; justify-content: center;
  padding-top: var(--s12); flex-shrink: 0;
  color: var(--accent-cyan); opacity: .6;
}

/* ═══════════════════════════════════════════════════════
   §6 DIAGNOSTIC
   ═══════════════════════════════════════════════════════ */
.diagnostic { background: var(--bg-surface); border-top: 1px solid var(--border-hair); }
.diagnostic .orb--cyan-b   { top: -200px; left: -200px; }
.diagnostic .orb--peach    { bottom: -80px; right: 5%; }

.diagnostic__steps {
  max-width: 700px; margin-bottom: var(--s12);
  background: #fff;
  border: 1.5px solid var(--border-hair); border-radius: var(--r-xl);
  overflow: hidden;
}
.diagnostic__step {
  display: flex; align-items: flex-start; gap: var(--s6);
  padding: var(--s8); border-bottom: 1px solid var(--border-hair);
  transition: background var(--t-fast);
}
.diagnostic__step:last-child { border-bottom: none; }
.diagnostic__step:hover { background: #f8fdff; }

.diagnostic__num {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%;
  background: #C9F6F9; border: 1px solid #67d8ef;
  color: var(--accent-cyan); font-weight: 700; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.diagnostic__content h3 {
  font-size: 17px; font-weight: 700; color: var(--text-primary);
  margin-bottom: var(--s2); line-height: 1.3; letter-spacing: -0.015em;
}
.diagnostic__content p { font-size: 15px; line-height: 1.65; color: var(--text-secondary); }
.diagnostic__cta { display: flex; flex-direction: column; align-items: flex-start; }

/* ═══════════════════════════════════════════════════════
   §7 MID-PAGE CTA
   ═══════════════════════════════════════════════════════ */
.mid-cta {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #d6f8fa 0%, #fff3ca 100%);
  border-top: 1px solid var(--border-hair);
  border-bottom: 1px solid var(--border-hair);
  padding-block: var(--s20);
}
.mid-cta .orb--cyan-lg    { top: -300px; right: -200px; }
.mid-cta .orb--yellow-lg  { bottom: -300px; left: -200px; }
.mid-cta__inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.mid-cta__pre {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(20px, 2.8vw, 28px); font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--text-secondary); margin-bottom: var(--s6);
}

/* ═══════════════════════════════════════════════════════
   §7b BURNOUT COST CALCULATOR
   ═══════════════════════════════════════════════════════ */
.calc { background: var(--bg-surface); border-top: 1px solid var(--border-hair); }
.calc .orb--yellow-lg { top: -300px; left: -250px; }
.calc .orb--cyan-b    { bottom: -200px; right: -200px; }

/* ── Salary Input ── */
.calc__input-wrap {
  max-width: 480px;
  margin: var(--s12) auto var(--s16);
  text-align: center;
}
.calc__input-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: var(--s3);
}
.calc__input-row {
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: 1.5px solid var(--border-hair);
  border-radius: var(--r-lg);
  padding: var(--s4) var(--s6);
  box-shadow: var(--shadow-sm), 0 0 0 0 rgba(200,150,12,0);
  transition: border-color var(--t-fast) var(--ease-out), box-shadow var(--t-fast) var(--ease-out);
}
.calc__input-row:focus-within {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-md), 0 0 0 3px rgba(200,150,12,0.08);
}
.calc__currency {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-gold);
  margin-right: var(--s2);
  line-height: 1;
}
.calc__input {
  width: 100%;
  border: none;
  background: transparent;
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1.2;
  outline: none;
}
.calc__input::placeholder { color: var(--text-tertiary); }

.calc__presets {
  display: flex;
  justify-content: center;
  gap: var(--s2);
  margin-top: var(--s4);
}
.calc__preset {
  padding: 6px 16px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: border-color var(--t-fast) var(--ease-out), color var(--t-fast) var(--ease-out), background var(--t-fast) var(--ease-out);
}
.calc__preset:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}
.calc__preset:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 2px;
}
.calc__preset:active { transform: scale(0.96); }
.calc__preset--active {
  background: rgba(200,150,12,0.08);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

/* ── Cost Card Grid ── */
.calc__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
  margin-bottom: var(--s12);
}

.calc__card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-hair);
  border-radius: var(--r-lg);
  padding: var(--s8) var(--s6) var(--s6);
  position: relative;
  transition: border-color var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
}
.calc__card:hover {
  border-color: rgba(200,150,12,0.25);
  box-shadow: 0 8px 32px rgba(200,150,12,0.06), 0 2px 8px rgba(0,0,0,0.04);
}

.calc__card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(200,150,12,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s4);
}
.calc__card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin-bottom: var(--s2);
}
.calc__card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: var(--s5);
}
.calc__card-desc strong {
  color: var(--text-primary);
  font-weight: 600;
}
.calc__card-amount {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}
.calc__card-math {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-tertiary);
  margin-bottom: var(--s3);
}
.calc__cite {
  display: block;
  font-size: 11px;
  font-style: normal;
  color: var(--text-tertiary);
  line-height: 1.5;
  padding-top: var(--s3);
  border-top: 1px solid var(--border-hair);
}
.calc__cite em { font-style: italic; }

/* ── Total Bar ── */
.calc__total-wrap { margin-bottom: var(--s10); }
.calc__total-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--cta-bg);
  border-radius: var(--r-xl);
  padding: var(--s8) var(--s10);
  gap: var(--s8);
}
.calc__total-label {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.015em;
}
.calc__total-sub {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}
.calc__total-right {
  display: flex;
  align-items: baseline;
  gap: var(--s2);
  flex-shrink: 0;
}
.calc__total-amount {
  font-family: var(--font-mono);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  color: #ff6b6b;
  letter-spacing: -0.02em;
  line-height: 1;
}
.calc__total-per {
  font-family: var(--font-mono);
  font-size: 16px;
  color: rgba(255,255,255,0.4);
}

/* ── Life-Years Row ── */
.calc__life-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s6);
  margin-bottom: var(--s10);
}
.calc__life-card {
  background: var(--red-bg);
  border: 1px solid var(--red-border);
  border-radius: var(--r-lg);
  padding: var(--s6);
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}
.calc__life-icon {
  flex-shrink: 0;
}
.calc__life-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.calc__life-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}
.calc__life-desc strong { color: var(--text-primary); font-weight: 600; }
.calc__cite--inline {
  border-top: none;
  padding-top: 0;
  font-size: 11px;
}

/* ── 10-Year Projection ── */
.calc__projection {
  background: var(--bg-card);
  border: 1.5px solid var(--border-hair);
  border-radius: var(--r-xl);
  padding: var(--s10);
  margin-bottom: var(--s10);
  text-align: center;
}
.calc__projection-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s10);
  margin-bottom: var(--s6);
}
.calc__projection-text { text-align: left; }
.calc__projection-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: var(--s2);
}
.calc__projection-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 500px;
}
.calc__projection-num {
  font-family: var(--font-mono);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--red);
  letter-spacing: -0.03em;
  line-height: 1;
  flex-shrink: 0;
}
.calc__projection-contrast {
  font-size: 16px;
  color: var(--text-secondary);
  padding-top: var(--s6);
  border-top: 1px solid var(--border-hair);
}
.calc__projection-contrast strong {
  color: var(--green);
  font-weight: 700;
}

/* ── Sources Accordion ── */
.calc__sources {
  border: 1px solid var(--border-hair);
  border-radius: var(--r-md);
  background: var(--bg-card);
}
.calc__sources-toggle {
  display: flex;
  align-items: center;
  gap: var(--s2);
  padding: var(--s4) var(--s6);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  list-style: none;
  transition: color var(--t-fast) var(--ease-out);
}
.calc__sources-toggle::-webkit-details-marker { display: none; }
.calc__sources-toggle:hover { color: var(--text-primary); }
.calc__sources-icon {
  margin-left: auto;
  font-size: 16px;
  line-height: 1;
  transition: transform var(--t-fast) var(--ease-out);
}
.calc__sources[open] .calc__sources-icon { transform: rotate(45deg); }
.calc__sources-body {
  padding: 0 var(--s6) var(--s6);
}
.calc__sources-list {
  list-style: decimal;
  padding-left: var(--s6);
  font-size: 12px;
  line-height: 1.65;
  color: var(--text-secondary);
}
.calc__sources-list li {
  list-style: decimal;
  margin-bottom: var(--s2);
}
.calc__sources-list strong { color: var(--text-primary); font-weight: 600; }
.calc__sources-list em { font-style: italic; }

/* ── Responsive: Calculator ── */
@media (max-width: 900px) {
  .calc__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .calc__grid { grid-template-columns: 1fr; }
  .calc__total-bar {
    flex-direction: column;
    text-align: center;
    padding: var(--s6);
  }
  .calc__total-right { justify-content: center; }
  .calc__life-row { grid-template-columns: 1fr; }
  .calc__projection-inner {
    flex-direction: column;
    text-align: center;
  }
  .calc__projection-text { text-align: center; }
  .calc__projection-num { font-size: 40px; }
  .calc__input {
    font-size: 24px;
  }
  .calc__currency {
    font-size: 24px;
  }
  .calc__presets { flex-wrap: wrap; }
}

/* ═══════════════════════════════════════════════════════
   §8 VSL
   ═══════════════════════════════════════════════════════ */
.vsl { border-top: 1px solid var(--border-hair); }
.vsl .orb--gold-sm { top: -60px; right: 20%; }

.vsl__frame { max-width: 740px; }
.vsl__placeholder {
  background: var(--bg-surface);
  border: 1.5px solid var(--border-hair); border-radius: var(--r-xl);
  aspect-ratio: 16/9;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: var(--s6); cursor: pointer; position: relative; overflow: hidden;
  transition: all var(--t-base) var(--ease-out);
}
.vsl__placeholder::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(13,148,136,0.05) 0%, transparent 70%);
}
.vsl__placeholder:hover {
  border-color: #67d8ef;
  box-shadow: 0 8px 40px rgba(13,148,136,0.1);
}
.vsl__placeholder:hover .vsl__play-btn { transform: scale(1.08); box-shadow: 0 8px 32px rgba(13,148,136,.25); }

.vsl__play { display: flex; flex-direction: column; align-items: center; gap: var(--s4); position: relative; z-index: 1; }
.vsl__play-btn {
  width: 72px; height: 72px; border-radius: 50%;
  background: #fff; border: 1.5px solid #67d8ef;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(13,148,136,.15);
  transition: all var(--t-base) var(--ease-out);
}
.vsl__play span { font-size: 14px; font-weight: 600; color: var(--text-secondary); }
.vsl__meta { display: flex; gap: var(--s2); position: relative; z-index: 1; }

/* ═══════════════════════════════════════════════════════
   §9 VALUE STACK
   ═══════════════════════════════════════════════════════ */
.value-stack { background: var(--bg-surface); border-top: 1px solid var(--border-hair); }
.value-stack .orb--cyan-b   { top: -200px; right: -200px; }
.value-stack .orb--yellow-lg { bottom: -300px; left: -300px; }

.stack__table {
  border: 1.5px solid var(--border-hair); border-radius: var(--r-xl);
  overflow: hidden; background: #fff;
}
.stack__header, .stack__row, .stack__total {
  display: grid; grid-template-columns: 2fr 2fr 1fr; align-items: center;
}
.stack__header {
  background: #f8f9fa; border-bottom: 1px solid var(--border-hair);
  padding: var(--s4) var(--s6);
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-secondary);
}
.stack__row {
  padding: var(--s5) var(--s6);
  border-bottom: 1px solid var(--border-hair);
  transition: background var(--t-fast);
}
.stack__row:hover { background: #f8fdff; }
.stack__row:last-child { border-bottom: none; }
.stack__row--bonus { background: #fff3ca; }
.stack__row--bonus:hover { background: #fef9d0; }

.stack__col-component {
  font-size: 15px; color: var(--text-primary);
  display: flex; align-items: center; gap: var(--s2); flex-wrap: wrap;
}
.stack__col-component em {
  font-style: normal; font-size: 11px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--accent-gold); background: #FFEFBC;
  border: 1px solid #e8c84a; border-radius: var(--r-pill);
  padding: 2px 8px;
}
.stack__freq { font-size: 11px; color: var(--text-tertiary); }
.stack__col-outcome { font-size: 15px; color: var(--text-secondary); }
.stack__col-value { text-align: right; }
.stack__value {
  font-family: var(--font-mono); font-size: 14px;
  color: var(--text-primary); font-weight: 500;
}
.stack__total {
  padding: var(--s6); background: #f8f9fa;
  border-top: 1.5px solid var(--border-light);
}
.stack__total .stack__col-component { font-size: 16px; font-weight: 700; color: var(--text-primary); }
.stack__total-value {
  font-family: var(--font-mono); font-size: 22px;
  font-weight: 700; color: var(--text-primary); text-align: right;
}

/* ═══════════════════════════════════════════════════════
   §10 SOCIAL PROOF
   ═══════════════════════════════════════════════════════ */
.proof { border-top: 1px solid var(--border-hair); }
.proof .orb--cyan-lg  { top: -250px; right: -250px; }
.proof .orb--peach    { bottom: -100px; left: 5%; }

.proof__testimonials {
  display: grid; grid-template-columns: 1fr 1.15fr 1fr;
  gap: var(--s5); margin-bottom: var(--s16); align-items: start;
}
.testimonial {
  background: #fff; border: 1px solid var(--border-hair);
  border-radius: var(--r-xl); padding: var(--s8);
  display: flex; flex-direction: column; gap: var(--s5);
  transition: all var(--t-base) var(--ease-out);
}
.testimonial:hover {
  border-color: #b2e8ef;
  box-shadow: 0 8px 32px rgba(13,148,136,.08);
  transform: translateY(-2px);
}
.testimonial--featured {
  border-color: #a7d8e0; background: #d6f8fa;
  box-shadow: var(--shadow-md);
}
.testimonial__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #C9F6F9, #FFEFBC);
  border: 1px solid var(--border-hair);
}
.testimonial blockquote {
  font-size: 15px; line-height: 1.7; color: var(--text-secondary);
  font-style: italic; flex: 1; letter-spacing: 0.005em;
}
.testimonial__meta { display: flex; flex-direction: column; gap: 3px; }
.testimonial__meta strong { font-size: 13px; font-weight: 700; color: var(--text-primary); }
.testimonial__metric { font-size: 12px; font-weight: 700; color: var(--accent-cyan); letter-spacing: .02em; }

.proof__stats {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: var(--s4); margin-bottom: var(--s12);
  background: linear-gradient(135deg, #d6f8fa, #fff3ca);
  border: 1.5px solid #c8e8ed;
  border-radius: var(--r-xl); padding: var(--s8);
}
.proof__stat {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding-block: var(--s3); gap: var(--s2);
}
.proof__num {
  font-family: var(--font-display); font-size: 48px; font-weight: 700;
  color: var(--text-primary); line-height: 1; letter-spacing: -.025em;
}
.proof__pct { font-size: 22px; font-weight: 600; vertical-align: super; margin-left: 2px; }
.proof__label { font-size: 12px; color: var(--text-secondary); font-weight: 500; }

.proof__logos {
  display: flex; align-items: center; justify-content: center;
  gap: var(--s8); padding: var(--s5) var(--s8);
  border: 1px solid var(--border-hair); border-radius: var(--r-lg);
}
.proof__logo-item {
  font-size: 12px; color: var(--text-tertiary);
  font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════
   §11 PRICING
   ═══════════════════════════════════════════════════════ */
.pricing { background: var(--bg-surface); border-top: 1px solid var(--border-hair); }
.pricing .orb--yellow-lg { top: -250px; right: -250px; }
.pricing .orb--cyan-b    { bottom: -200px; left: -200px; }

.pricing__card {
  max-width: 540px;
  background: #fff; border: 1px solid var(--border-hair);
  border-radius: var(--r-xl); padding: var(--s10);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.pricing__anchor { text-align: center; margin-bottom: var(--s8); }
.pricing__anchor-label {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-tertiary); margin-bottom: var(--s2);
}
.pricing__anchor-value {
  font-family: var(--font-mono); font-size: 32px; color: var(--text-tertiary);
  text-decoration: line-through; text-decoration-color: rgba(0,0,0,.2);
  text-decoration-thickness: 2px;
}
.pricing__divider { height: 1px; background: var(--border-hair); margin-block: var(--s8); }
.pricing__real { text-align: center; }
.pricing__label {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-tertiary); margin-bottom: var(--s3);
}
.pricing__range {
  font-family: var(--font-display); font-size: clamp(36px, 5vw, 48px);
  font-weight: 700; color: var(--text-primary); letter-spacing: -.02em;
  margin-bottom: var(--s2); line-height: 1;
}
.pricing__payment { font-size: 14px; color: var(--text-secondary); }

.pricing__guarantee {
  display: flex; align-items: flex-start; gap: var(--s5);
  background: linear-gradient(135deg, #fff3ca, #d6f8fa);
  border: 1px solid #c8e060; border-radius: var(--r-lg); padding: var(--s6);
}
.pricing__guarantee-icon { flex-shrink: 0; margin-top: 4px; }
.pricing__guarantee-text h3 {
  font-size: 16px; font-weight: 700; color: #5a6e00; margin-bottom: var(--s2);
  letter-spacing: -0.01em;
}
.pricing__guarantee-text p { font-size: 15px; line-height: 1.65; color: var(--text-secondary); }

.pricing__corp {
  display: flex; align-items: flex-start; gap: var(--s4);
  margin-top: var(--s6); padding: var(--s4) var(--s5);
  background: var(--bg-surface); border: 1px solid var(--border-hair);
  border-radius: var(--r-md); font-size: 14px; color: var(--text-secondary);
  max-width: 540px;
}
.pricing__corp-icon { flex-shrink: 0; margin-top: 2px; }
.pricing__corp strong { color: var(--text-primary); }

/* ═══════════════════════════════════════════════════════
   §12 FAQ
   ═══════════════════════════════════════════════════════ */
.faq { border-top: 1px solid var(--border-hair); }
.faq .orb--cyan-lg   { top: -300px; right: -300px; }
.faq .orb--gold-sm   { bottom: -60px; left: 10%; }

.faq__list { max-width: 700px; display: flex; flex-direction: column; gap: var(--s3); }
.faq__item {
  background: #fff; border: 1.5px solid var(--border-hair);
  border-radius: var(--r-lg); overflow: hidden;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.faq__item[open] { border-color: #67d8ef; box-shadow: 0 4px 16px rgba(13,148,136,.07); }

.faq__q {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--s5) var(--s6);
  font-size: 16px; font-weight: 700; color: var(--text-primary);
  cursor: pointer; list-style: none; user-select: none; gap: var(--s4);
  transition: color var(--t-fast);
}
.faq__q::-webkit-details-marker, .faq__q::marker { display: none; }
.faq__q:hover { color: var(--accent-cyan); }
.faq__icon {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: var(--bg-surface); border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 300; color: var(--text-tertiary);
  transition: all var(--t-base) var(--ease-out); line-height: 1;
}
details[open] .faq__icon {
  transform: rotate(45deg);
  background: #C9F6F9; border-color: #67d8ef; color: var(--accent-cyan);
}
.faq__a {
  padding: var(--s5) var(--s6) var(--s6);
  border-top: 1px solid var(--border-hair);
  font-size: 16px; line-height: 1.72; color: var(--text-secondary);
  animation: fade-in .2s ease-out;
}
@keyframes fade-in { from { opacity:0; transform:translateY(-4px) } to { opacity:1; transform:translateY(0) } }

/* ═══════════════════════════════════════════════════════
   §13 FOUNDER
   ═══════════════════════════════════════════════════════ */
.founder { background: var(--bg-surface); border-top: 1px solid var(--border-hair); }
.founder .orb--yellow-lg { top: -300px; left: -300px; }
.founder .orb--cyan-b    { bottom: -200px; right: -200px; }

.founder__inner { display: flex; align-items: flex-start; gap: var(--s12); max-width: 720px; }
.founder__photo-wrap { flex-shrink: 0; }
.founder__photo {
  width: 140px; height: 140px; border-radius: var(--r-xl);
  background: linear-gradient(135deg, #C9F6F9 0%, #FFEFBC 100%);
  border: 2px solid var(--border-hair);
}
.founder__name {
  font-family: var(--font-display); font-size: 30px; font-weight: 700;
  color: var(--text-primary); margin-bottom: var(--s4); letter-spacing: -.025em;
}
.founder__story {
  font-size: 17px; line-height: 1.75; color: var(--text-secondary); margin-bottom: var(--s6);
}
.founder__creds { display: flex; flex-wrap: wrap; gap: var(--s2); }
.cred-tag {
  font-size: 12px; font-weight: 600; padding: 5px 12px;
  border-radius: var(--r-pill); background: #fff;
  border: 1px solid var(--border-hair); color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════════
   §14 FINAL CTA
   ═══════════════════════════════════════════════════════ */
.final-cta {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #d6f8fa 0%, #fff3ca 50%, #d6f8fa 100%);
  border-top: 1px solid var(--border-hair);
  padding-block: var(--s32); text-align: center;
}
.final-cta .orb--cyan-lg   { top: -300px; left: 50%; transform: translateX(-50%); }
.final-cta .orb--yellow-lg { bottom: -350px; right: -350px; }
.final-cta .orb--cyan-b    { bottom: -200px; left: -200px; }

.final-cta__inner { position: relative; z-index: 1; }

.final-cta__scarcity {
  display: inline-flex; align-items: center; gap: var(--s2);
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: #7a5800;
  background: #FFEFBC; border: 1px solid #e8c84a;
  border-radius: var(--r-pill); padding: 6px 16px; margin-bottom: var(--s8);
}
.final-cta__headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 62px); font-weight: 900;
  line-height: 1.06; letter-spacing: -.03em;
  color: var(--text-primary); margin-bottom: var(--s2);
}
.final-cta__sub {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 26px); font-weight: 400;
  font-style: italic; color: var(--text-secondary); margin-bottom: var(--s10);
}
.final-cta__trust {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: var(--s3) var(--s6); margin-top: var(--s8);
  font-size: 13px; color: var(--text-secondary); font-weight: 500;
}

/* ═══════════════════════════════════════════════════════
   WARM BANNER
   ═══════════════════════════════════════════════════════ */
.warm-banner {
  position: relative;
  background: linear-gradient(135deg, #FFEFBC 0%, #ffe5a0 40%, #fde68a 70%, #FFEFBC 100%);
  border-top: 1px solid rgba(180,150,0,0.15);
  padding-block: var(--s24);
  text-align: center;
  overflow: hidden;
}
.warm-banner__inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: var(--s5);
}
.warm-banner__pre {
  font-size: 13px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(100,75,0,0.7);
}
.warm-banner__headline {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.8vw, 44px);
  font-weight: 700; line-height: 1.15; letter-spacing: -.025em;
  color: #1a1200;
  max-width: 640px;
}
.btn--dark {
  background: #111827; color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  display: inline-flex; align-items: center; gap: var(--s2);
  font-weight: 700; border: none; cursor: pointer;
  border-radius: var(--r-pill);
  font-size: 15px; padding: 15px 30px;
  transition: background var(--t-fast), transform var(--t-base) var(--ease-out), box-shadow var(--t-base);
}
.btn--dark:hover {
  background: #1e2a3a;
  box-shadow: 0 6px 24px rgba(0,0,0,0.22);
  transform: translateY(-1px);
}
.warm-banner__sub {
  font-size: 13px; color: rgba(80,60,0,0.65);
  letter-spacing: .02em;
}
.warm-banner__trust {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: var(--s2) var(--s6);
  font-size: 13px; font-weight: 500; color: rgba(80,60,0,0.7);
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer { border-top: 1px solid var(--border-hair); padding-block: var(--s8); background: #fff; }
.footer__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s6); flex-wrap: wrap;
}
.footer__logo {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-size: 18px;
  font-weight: 600; color: var(--text-secondary);
}
.footer__legal { font-size: 12px; color: var(--text-tertiary); line-height: 1.5; max-width: 460px; }
.footer__links { display: flex; gap: var(--s5); }
.footer__links a { font-size: 13px; color: var(--text-tertiary); transition: color var(--t-fast); }
.footer__links a:hover { color: var(--text-secondary); }

/* ═══════════════════════════════════════════════════════
   TYPEFORM MODAL
   ═══════════════════════════════════════════════════════ */

/* ── Overlay ── */
.tf-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(248, 249, 248, 0.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity var(--t-base);
}
.tf-overlay.is-open { opacity: 1; pointer-events: all; }

/* ── Progress bar ── */
.tf-progress {
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: rgba(0, 0, 0, 0.06);
  z-index: 10;
}
.tf-progress__bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--orb-cyan-a), var(--accent-cyan));
  border-radius: 0 2px 2px 0;
  transition: width var(--t-slow) var(--ease-out);
}

/* ── Close ── */
.tf-close {
  position: absolute; top: var(--s6); right: var(--s6);
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text-tertiary);
  transition: transform var(--t-fast) var(--ease-out),
              background var(--t-fast), color var(--t-fast);
  z-index: 10;
}
.tf-close:hover {
  background: var(--border-light);
  color: var(--text-primary);
  transform: scale(1.05);
}
.tf-close:focus-visible { outline: 2px solid var(--accent-cyan); outline-offset: 2px; }
.tf-close:active { transform: scale(0.95); }

/* ── Steps container ── */
.tf-steps {
  width: 100%; max-width: 640px;
  padding: var(--s10);
  position: relative;
}

/* ── Step ── */
.tf-step { display: none; }
.tf-step.is-active {
  display: flex; align-items: flex-start; justify-content: center;
  min-height: 50vh;
  animation: tf-slide-in var(--t-slow) var(--ease-out) forwards;
}
.tf-step.is-exiting {
  display: flex;
  animation: tf-slide-out var(--t-base) var(--ease-out) forwards;
}

.tf-step__inner {
  width: 100%; display: flex; flex-direction: column;
  align-items: flex-start;
  padding-top: 10vh;
}
.tf-step__inner--success { align-items: center; text-align: center; }
.tf-cards { align-self: stretch; }

/* ── Step number ── */
.tf-step-num {
  font-family: var(--font-mono); font-size: 14px;
  color: var(--accent-cyan); margin-bottom: var(--s3);
  letter-spacing: 0.05em;
}

/* ── Typography ── */
.tf-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 38px); font-weight: 700;
  color: var(--text-primary); line-height: 1.2; letter-spacing: -0.03em;
  margin-bottom: var(--s3);
}
.tf-question {
  font-family: var(--font-display);
  font-size: clamp(24px, 4.5vw, 34px); font-weight: 700;
  color: var(--text-primary); line-height: 1.25; letter-spacing: -0.025em;
  margin-bottom: var(--s2); display: block; cursor: default;
}
.tf-sub, .tf-desc {
  font-size: 16px; color: var(--text-secondary);
  line-height: 1.7; max-width: 480px;
}
.tf-desc { margin-bottom: var(--s8); }
.tf-sub  { margin-bottom: var(--s10); }

/* ── Input ── */
.tf-input {
  width: 100%; height: 60px; padding: 0;
  background: transparent; border: none;
  border-bottom: 2px solid var(--border-light);
  color: var(--text-primary); font-family: var(--font-body);
  font-size: clamp(20px, 3vw, 26px); font-weight: 400;
  caret-color: var(--accent-cyan);
  transition: border-color var(--t-fast);
  outline: none; margin-bottom: var(--s6);
}
.tf-input::placeholder { color: var(--text-tertiary); }
.tf-input:focus { border-color: var(--accent-cyan); }
.tf-input.is-error {
  border-color: var(--red);
  animation: tf-shake 0.4s var(--ease-out);
}

/* ── Error ── */
.tf-error {
  font-size: 14px; color: var(--red);
  margin-top: calc(-1 * var(--s4)); margin-bottom: var(--s4);
  opacity: 0; transform: translateY(-4px);
  transition: opacity var(--t-fast), transform var(--t-fast) var(--ease-out);
}
.tf-error.is-visible { opacity: 1; transform: translateY(0); }

/* ── Actions row ── */
.tf-actions { display: flex; align-items: center; gap: var(--s4); flex-wrap: wrap; }

/* ── Buttons ── */
.tf-btn {
  display: inline-flex; align-items: center; gap: var(--s2);
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  border: none; cursor: pointer; border-radius: var(--r-pill);
  transition: transform var(--t-fast) var(--ease-out),
              box-shadow var(--t-fast), opacity var(--t-fast);
}
.tf-btn:focus-visible { outline: 2px solid var(--accent-cyan); outline-offset: 2px; }
.tf-btn:active { transform: scale(0.97); }

.tf-btn--start, .tf-btn--continue {
  background: var(--cta-bg); color: var(--cta-text);
  padding: 16px 32px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
  width: auto;
}
.tf-btn--start { padding: 18px 40px; font-size: 16px; }
.tf-btn--start:hover, .tf-btn--continue:hover {
  background: var(--cta-bg-hover); transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.16), 0 0 0 1px rgba(0,0,0,0.06);
}

.tf-btn--skip {
  background: transparent; color: var(--text-tertiary);
  padding: 16px 20px;
}
.tf-btn--skip:hover { color: var(--text-secondary); }

.tf-btn--done {
  background: var(--bg-surface); color: var(--text-secondary);
  padding: 14px 28px; margin-top: var(--s8);
  border: 1px solid var(--border-light);
}
.tf-btn--done:hover { background: var(--border-light); color: var(--text-primary); }

/* ── Enter hint ── */
.tf-enter-hint { font-size: 13px; color: var(--text-tertiary); }
.tf-enter-hint kbd {
  display: inline-block; padding: 2px 6px;
  border: 1px solid var(--border-light); border-radius: 4px;
  font-family: var(--font-mono); font-size: 12px;
}

/* ── Selection cards ── */
.tf-cards { display: flex; flex-direction: column; gap: var(--s3); width: 100%; }
.tf-card {
  display: flex; align-items: center; gap: var(--s4);
  width: 100%; padding: var(--s4) var(--s5);
  background: #fff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--r-md); color: var(--text-primary);
  font-size: 17px; font-family: var(--font-body);
  cursor: pointer; text-align: left;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-fast) var(--ease-out),
              border-color var(--t-fast), background var(--t-fast),
              box-shadow var(--t-fast);
}
.tf-card:hover {
  background: var(--bg-surface);
  border-color: var(--border-medium);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.tf-card:focus-visible { outline: 2px solid var(--accent-cyan); outline-offset: 2px; }
.tf-card:active { transform: translateY(0); }
.tf-card.is-selected {
  background: rgba(200, 150, 12, 0.06);
  border-color: var(--accent-gold); color: var(--text-primary);
  box-shadow: 0 0 0 2px rgba(200, 150, 12, 0.15);
}

.tf-card__key {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--border-light);
  border-radius: var(--r-sm); font-family: var(--font-mono);
  font-size: 13px; font-weight: 600; color: var(--text-tertiary);
  flex-shrink: 0;
  transition: border-color var(--t-fast), background var(--t-fast), color var(--t-fast);
}
.tf-card.is-selected .tf-card__key {
  background: var(--accent-gold); border-color: var(--accent-gold); color: #fff;
}
.tf-card__label { flex: 1; }

/* ── Success icon ── */
.tf-success-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(201, 246, 249, 0.12);
  border: 1.5px solid rgba(8, 145, 178, 0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--s6);
}

/* ── Legal ── */
.tf-legal { font-size: 13px; color: var(--text-tertiary); line-height: 1.6; }

/* ── Keyframes (transform + opacity only) ── */
@keyframes tf-slide-in {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes tf-slide-out {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-20px); }
}
@keyframes tf-shake {
  0%, 100% { transform: translateX(0); }
  20%      { transform: translateX(-6px); }
  40%      { transform: translateX(6px); }
  60%      { transform: translateX(-4px); }
  80%      { transform: translateX(4px); }
}

/* ═══════════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — TABLET ≤ 1024px
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__mascot { width: 140px; height: 140px; }
  .hero__stats  { max-width: 380px; }

  .method__steps { grid-template-columns: 1fr; gap: var(--s4); }
  .method__arrow { transform: rotate(90deg); padding: 0 var(--s4); }

  .mechanism__compare { grid-template-columns: 1fr; }
  .mechanism__divider { display: none; }
  .mechanism__col { border: 1.5px solid var(--border-hair); border-radius: var(--r-xl) !important; }
  .mechanism__col--works { background: #f0fdfc; border-color: #a7d8e0 !important; margin-top: var(--s4); }

  .proof__testimonials { grid-template-columns: 1fr; }
  .testimonial--featured { order: -1; }
  .proof__stats { grid-template-columns: repeat(2,1fr); }
  .qual__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE ≤ 640px
   ═══════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  :root { --s24: 64px; --s32: 80px; }
  .container { padding-inline: var(--s5); }
  .section { padding-block: var(--s16); }
  .br-d { display: inline; }

  .nav { height: 56px; }

  .hero__mascot { width: 120px; height: 120px; }
  .hero__stats  { grid-template-columns: repeat(3,1fr); max-width: 100%; }
  .stat-num     { font-size: 28px; }

  .hero__headline { font-size: clamp(28px, 9vw, 40px); letter-spacing: -0.025em; }
  .section-headline { font-size: clamp(24px, 7vw, 32px); letter-spacing: -0.02em; }

  .btn--lg { font-size: 15px; padding: 14px 24px; }
  .btn--xl { font-size: 16px; padding: 16px 30px; }

  .problem__reframe { padding: var(--s6); }
  .stack__header { display: none; }
  .stack__row, .stack__total { grid-template-columns: 1fr; gap: var(--s2); }
  .stack__col-value { text-align: left; }

  .proof__stats { grid-template-columns: repeat(2,1fr); padding: var(--s5); gap: var(--s3); }
  .proof__num { font-size: 36px; }
  .proof__logos { flex-wrap: wrap; gap: var(--s4); }

  .pricing__range { font-size: 36px; }
  .founder__inner { flex-direction: column; gap: var(--s6); }
  .founder__name { font-size: 24px; }

  /* Typeform modal mobile */
  .tf-steps { padding: var(--s6); }
  .tf-step__inner { padding-top: 6vh; }
  .tf-input { height: 52px; font-size: 20px; }
  .tf-close { top: var(--s4); right: var(--s4); width: 36px; height: 36px; }
  .tf-card { padding: var(--s3) var(--s4); font-size: 15px; }
  .tf-actions { flex-direction: column; align-items: flex-start; }
  .tf-enter-hint { display: none; }

  .final-cta__trust { font-size: 12px; gap: var(--s3) var(--s4); }

  /* Reduce orb sizes on mobile */
  .orb--cyan-lg, .orb--yellow-lg, .orb--cyan-b {
    width: 400px; height: 400px;
    filter: blur(120px);
  }
}

/* ═══════════════════════════════════════════════════════
   REDUCED MOTION + PRINT
   ═══════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
@media print {
  .nav, .tf-overlay { display: none !important; }
  .orb { display: none !important; }
}
