/* ══════════════════════════════════════
   ROOT
══════════════════════════════════════ */
:root {
  --blue:     #4aa9c7;
  --blue-dk:  #3a8fb0;
  --blue-xlt: #dff0f8;
  --blue-pale:#f0f8fc;
  --ink:      #0d3347;
  --ink-mid:  #2a6880;
  --ink-faint:rgba(13,51,71,0.50);
  --ink-rule: rgba(74,169,199,0.14);
  --w80:      rgba(255,255,255,0.80);
  --w55:      rgba(255,255,255,0.55);
  --w18:      rgba(255,255,255,0.18);
  --w08:      rgba(255,255,255,0.10);
  --white:    #ffffff;
  --gold:     #f5c242;
  --gold-g:   rgba(245,194,66,0.38);
  --f-head:   'Bebas Neue', sans-serif;
  --f-body:   'Nunito', sans-serif;
  --radius:   10px;
  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --gutter:   clamp(20px, 6vw, 80px);
}

/* ══ RESET ══════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body {
  font-family: var(--f-body);
  background: var(--blue-pale);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: 44px;
}
body.sale-ended { padding-top: 0; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ══ CONTAINER ══════════════════════════ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ══ REVEAL ═════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══ SECTIONS ═══════════════════════════ */
.section { padding: clamp(80px, 11vw, 140px) 0; }
.section-a    { background: var(--blue-xlt); }
.section-b    { background: var(--blue-pale); }
.section-blue { background: var(--blue); }

/* ══ SHARED TYPOGRAPHY ══════════════════ */
.label {
  display: block;
  font-family: var(--f-body);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 14px;
}

.heading {
  font-family: var(--f-head);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 1.0;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 20px;
}

.heading-xl {
  font-family: var(--f-head);
  font-size: clamp(3.6rem, 8vw, 8rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin-bottom: 28px;
}

.text-accent { color: var(--ink); }

.body-copy {
  font-size: clamp(1.05rem, 1.25vw, 1.19rem);
  font-weight: 600;
  line-height: 1.6;
  color: var(--ink-mid);
  text-transform: none;
  letter-spacing: normal;
  max-width: 62ch;
}
.body-wide { max-width: 62ch; }

/* headings/body on blue sections */
.section-blue .heading,
.section-blue .heading-xl { color: var(--white); }
.section-blue .body-copy  { color: var(--white); }
.section-blue .label      { color: var(--w55); }

/* ══ BUTTONS ════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--f-body);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-gold {
  background: var(--gold);
  color: #0d3347;
  box-shadow: 0 6px 24px var(--gold-g);
}
.btn-gold:hover { box-shadow: 0 10px 36px rgba(245,194,66,0.52); }
.btn-lg { font-size: 0.9rem; padding: 17px 38px; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 24px var(--gold-g); }
  50%       { box-shadow: 0 14px 44px rgba(245,194,66,0.62); }
}
.btn-pulse { animation: pulse 2.5s ease-in-out infinite; }

/* ══ HERO ═══════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(60px,8vh,100px) var(--gutter) clamp(60px,8vh,80px);
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(255,255,255,0.10) 0%, transparent 65%);
  pointer-events: none;
}
.hero-top    { margin-bottom: 28px; }
.eyebrow {
  font-family: var(--f-body);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--w80);
}
.video-frame {
  width: clamp(260px, 46vw, 580px);
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.14);
}
.video-frame video { width:100%; height:100%; object-fit:cover; display:block; }
.hero-bottom { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.hero-heading {
  font-family: var(--f-head);
  font-size: clamp(3rem, 8vw, 9rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  color: var(--white);
}
.hero-sub {
  font-family: var(--f-body);
  font-size: clamp(0.88rem, 1.4vw, 1.05rem);
  font-weight: 700;
  line-height: 1.65;
  color: var(--w80);
  max-width: 440px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero-stat {
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--w80);
  border: 1px solid var(--w18);
  border-radius: 50px;
  padding: 8px 20px;
}
.scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scroll-line {
  width: 1px;
  height: 30px;
  background: var(--w55);
  transform-origin: top;
  animation: drop 2s ease-in-out infinite;
}
@keyframes drop {
  0%   { transform: scaleY(0); opacity: 0; }
  30%  { opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ══ STATS ══════════════════════════════ */
.stats-section { padding-bottom: 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--w08);
  border: 1px solid var(--w08);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 48px;
}
.stat {
  background: rgba(255,255,255,0.09);
  padding: clamp(28px,4vw,52px) 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.stat-num {
  font-family: var(--f-head);
  font-size: clamp(2.8rem,5vw,5rem);
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.02em;
}
.stat-label {
  font-family: var(--f-body);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--w55);
}
.marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  padding: 28px 0 0;
}
.marquee-track { display: flex; width: max-content; will-change: transform; }
.marquee-text {
  font-family: var(--f-head);
  font-size: clamp(4vw,6vw,6rem);
  color: var(--w18);
  white-space: nowrap;
  letter-spacing: 0.04em;
  line-height: 1.2;
  user-select: none;
  padding: 6px 0;
}

/* ══ CREDIBILITY ════════════════════════ */
.cred-layout-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,96px);
  align-items: start;
}
.col-body .body-copy { margin-bottom: 28px; }
.badge-row { display: flex; flex-wrap: wrap; gap: 8px; }
.badge {
  font-family: var(--f-body);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-dk);
  border: 1px solid var(--ink-rule);
  border-radius: 100px;
  padding: 6px 14px;
  background: rgba(74,169,199,0.08);
}

/* ══ PROBLEM ════════════════════════════ */
.problem-split .body-copy + .body-copy,
.feature-content .body-copy + .body-copy { margin-top: 14px; }
.problem-split {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(32px,5vw,72px);
  align-items: center;
}
.problem-photo {
  width: 100%;
  border-radius: var(--radius);
  display: block;
  box-shadow: 0 12px 48px rgba(74,169,199,0.18);
  object-fit: cover;
  aspect-ratio: 4/5;
}

/* ══ DELIVERABLES ════════════════════════ */
.deliverables-section { padding-bottom: clamp(48px,8vw,100px); }
.deliverables-label   { color: var(--w55) !important; }
.deliverables-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(32px,5vw,64px);
  align-items: center;
}
.deliverables-text { display: flex; flex-direction: column; gap: 10px; }
.deliverables-img {
  width: 100%;
  max-width: 460px;
  border-radius: var(--radius);
  display: block;
  box-shadow: 0 16px 60px rgba(0,0,0,0.22);
}

/* ══ PIPELINE ═══════════════════════════ */
.pipeline-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px,4vw,64px);
  align-items: center;
  margin-bottom: 20px;
}
.pipeline-text { display: flex; flex-direction: column; gap: 16px; }
.pipeline-hero-frame {
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 70px rgba(74,169,199,0.15);
}
.pipeline-hero-frame video { width:100%;height:100%;object-fit:cover;display:block; }
.pipeline-shots {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
  margin-top: 10px;
}
.pipeline-shots img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

/* ══ ARCHIVE ════════════════════════════ */
.archive-section {
  background: linear-gradient(160deg, #b6fffe 0%, #edf9ff 35%, #fce8fc 70%, #f9b8f8 100%);
}
.archive-layout {
  display: grid;
  grid-template-columns: 380px 1fr;   /* fixed img column eliminates dead air */
  gap: clamp(32px,5vw,72px);
  align-items: center;
}
.archive-app-img { display: flex; align-items: center; justify-content: center; }
.archive-app-img img { width:100%; max-width:340px; border-radius:var(--radius); display:block; }

/* ══ KITS ═══════════════════════════════ */
.kits-layout {
  display: grid;
  grid-template-columns: 1fr 340px;   /* fixed column stops portrait img towering */
  gap: clamp(40px,6vw,80px);
  align-items: center;
}
.kit-reviews-col { display: flex; align-items: center; justify-content: center; }
.kit-reviews-img {
  width: auto;
  max-width: 100%;
  max-height: 480px;                  /* caps portrait screenshot height */
  border-radius: var(--radius);
  display: block;
  box-shadow: 0 8px 36px rgba(74,169,199,0.12);
}

/* ══ MENTORSHIP ═════════════════════════ */
.mentorship-reviews {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 10px;
  margin-top: 40px;
  align-items: start;
}
.mentorship-reviews img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
  object-fit: contain;
  box-shadow: 0 4px 20px rgba(74,169,199,0.10);
}

/* ══ FEATURES ═══════════════════════════ */
.feature-content       { max-width: 640px; }
.feature-content .heading { margin-bottom: 16px; }
.feature-section       { border-top: 1px solid var(--ink-rule); }
.feature-with-photo {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: clamp(28px,4vw,64px);
  align-items: center;
}
.feature-with-photo-flip { grid-template-columns: 280px 1fr; }
.feature-aside img {
  width: 100%;
  border-radius: var(--radius);
  display: block;
  object-fit: cover;
  aspect-ratio: 3/4;
  box-shadow: 0 8px 36px rgba(74,169,199,0.14);
}

/* ══ STEPS ══════════════════════════════ */
.steps-header { margin-bottom: clamp(32px,5vw,56px); }
.steps-list { display: flex; flex-direction: column; border-top: 1px solid var(--ink-rule); }
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--ink-rule);
  align-items: start;
}
.step-n {
  font-family: var(--f-head);
  font-size: 2rem;
  color: #e02020;
  line-height: 1;
  padding-top: 2px;
}
.step-title {
  font-family: var(--f-head);
  font-size: clamp(1.2rem,2.5vw,1.8rem);
  letter-spacing: 0.03em;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.1;
}
.step-copy {
  font-family: var(--f-body);
  font-size: clamp(1.05rem, 1.25vw, 1.19rem);
  font-weight: 600;
  line-height: 1.6;
  color: var(--ink-mid);
  text-transform: none;
  letter-spacing: normal;
  max-width: 62ch;
}

/* ══ REVIEWS ════════════════════════════ */
.reviews-section { padding-bottom: clamp(48px,8vw,100px); }
.reviews-header   { margin-bottom: 32px; }
.section-blue .heading { color: var(--white); }
.reviews-img {
  width: 100%;
  max-width: 620px;
  border-radius: var(--radius);
  display: block;
  margin: 0 auto;
  box-shadow: 0 16px 60px rgba(74,169,199,0.14);
}

/* ══ FIT ════════════════════════════════ */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px,6vw,80px);
  margin-top: 48px;
}
.fit-col .label { margin-bottom: 20px; }
.fit-list { display: flex; flex-direction: column; gap: 12px; }
.fit-list li {
  font-family: var(--f-body);
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  font-weight: 700;
  letter-spacing: normal;
  text-transform: none;
  color: var(--ink-mid);
  padding-left: 20px;
  position: relative;
  line-height: 1.55;
}
.fit-yes li::before { content: '+'; position: absolute; left: 0; color: #28a745; font-weight: 900; }
.fit-no  li::before { content: '✕'; position: absolute; left: 0; color: #e02020; font-weight: 900; }

/* ══ PRESS ══════════════════════════════ */
.press-section { padding: clamp(80px,11vw,140px) 0; }
.press-inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
  background: #ffffff;
  border-radius: var(--radius);
  padding: clamp(20px,2.5vw,36px);
  box-shadow: 0 12px 64px rgba(74,169,199,0.14);
}
.press-img { width:100%; height:auto; display:block; object-fit:contain; border-radius:4px; }

/* ══ PRICING ════════════════════════════ */
.pricing-section {
  padding-top: clamp(80px,12vw,160px);
  padding-bottom: clamp(80px,12vw,160px);
}
.pricing-split {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: clamp(36px,5vw,72px);
  align-items: start;
}
.pricing-inner  { max-width: 100%; }
.pricing-photo  { position: sticky; top: 80px; }
.pricing-profile-img {
  width: 100%;
  border-radius: var(--radius);
  display: block;
  box-shadow: 0 12px 48px rgba(0,0,0,0.22);
  object-fit: cover;
  aspect-ratio: 1;
}
.price-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  margin: 16px 0 36px;
}
.price-amount {
  font-family: var(--f-head);
  font-size: clamp(5rem,14vw,12rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
}
.price-tag {
  font-family: var(--f-head);
  font-size: clamp(1.4rem,3vw,2.6rem);
  line-height: 1.1;
  letter-spacing: 0.04em;
  color: var(--w80);
}
.forever { color: var(--gold); font-weight: 900; font-style: normal; }
.pricing-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-list li {
  font-family: var(--f-body);
  font-size: clamp(1.05rem, 1.25vw, 1.19rem);
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
  color: var(--w80);
  padding-left: 18px;
  position: relative;
  line-height: 1.55;
}
.pricing-list li::before { content: '·'; position: absolute; left: 0; color: var(--gold); font-weight: 900; }
.price-note {
  font-family: var(--f-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--w55);
  margin-bottom: 28px;
  font-style: italic;
}
.pricing-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.cta-dm {
  font-family: var(--f-body);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--w55);
}
.dm-handle { color: var(--white); }

/* ══ FAQ ════════════════════════════════ */
.faq-list { max-width: 760px; margin-top: clamp(8px, 1.5vw, 20px); }
.faq-list .expander:last-child { border-bottom: 1px solid var(--ink-rule); }

/* ══ FOOTER ═════════════════════════════ */
.site-footer {
  background: var(--blue-dk);
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center;
}
.footer-credit {
  display: block;
  font-family: var(--f-body);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--w55);
  padding: 22px var(--gutter);
}

/* ══ MID-TABLET — 769–900px ═════════════
   Asymmetric grids get too tight at this
   range before the 768px collapse fires.
════════════════════════════════════════ */
@media (max-width: 900px) {
  .problem-split  { grid-template-columns: 1fr 240px; gap: 28px; }
  .kits-layout    { grid-template-columns: 1fr 280px; }
}

/* ══ EXPANDERS ══════════════════════════ */
.expander {
  width: 100%;
  margin-top: 20px;
  border-top: 1px solid var(--ink-rule);
}
.expander summary {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  padding: 14px 0;
  user-select: none;
  gap: 8px;
}
.expander summary::-webkit-details-marker { display: none; }
.expander summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink-mid);
  margin-left: auto;
  line-height: 1;
  transition: transform 0.2s ease;
}
.expander[open] summary::after { content: '−'; }
.expander-body {
  font-family: var(--f-body);
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink-mid);
  text-transform: none;
  letter-spacing: normal;
  max-width: 60ch;
  padding-bottom: 18px;
}

/* ══ VALUE BREAKDOWN ════════════════════ */
.value-section { background: var(--ink); }
.value-section .heading { color: var(--white); }
.value-section .label   { color: var(--w55); }

.value-intro { margin-bottom: clamp(36px, 5vw, 60px); }
.value-intro-line {
  font-family: var(--f-body);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  font-weight: 700;
  line-height: 1.6;
  color: var(--w55);
  max-width: 54ch;
  font-style: italic;
  margin-top: 6px;
}

/* Cards grid */
.value-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(10px, 1.2vw, 16px);
  margin-bottom: clamp(48px, 7vw, 80px);
}
.vcard {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: clamp(22px, 2.8vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vcard-special {
  border-color: rgba(245,194,66,0.30);
  background: rgba(245,194,66,0.05);
}
.vcard-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 2px;
}
.vcard-num {
  font-family: var(--f-body);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.20em;
  color: var(--w55);
  padding-top: 3px;
}
.vcard-val {
  font-family: var(--f-head);
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  letter-spacing: 0.04em;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}
.vcard-badge {
  font-family: var(--f-body);
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--ink);
  padding: 4px 11px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}
.vcard-title {
  font-family: var(--f-head);
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1.05;
}
.vcard-body {
  font-family: var(--f-body);
  font-size: clamp(0.82rem, 0.95vw, 0.94rem);
  font-weight: 600;
  line-height: 1.65;
  color: var(--w80);
  flex: 1;
}

/* Total block */
.value-total-block {
  text-align: center;
  padding: clamp(48px, 6vw, 80px) 0 clamp(32px, 4vw, 52px);
  border-top: 1px solid rgba(255,255,255,0.10);
}
.value-add-label {
  font-family: var(--f-body);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--w55);
  margin-bottom: 10px;
}
.vb-total-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.stat-num.vb-total {
  font-size: clamp(3rem, 7vw, 6.5rem);
  color: var(--white);
}
.vb-total-unit {
  font-family: var(--f-head);
  font-size: clamp(1.2rem, 2.5vw, 2.2rem);
  letter-spacing: 0.04em;
  color: var(--w55);
}
.value-tagline {
  font-family: var(--f-body);
  font-size: clamp(0.88rem, 1.2vw, 1.05rem);
  font-weight: 700;
  color: var(--w80);
  font-style: italic;
  margin: 0 auto 10px;
  max-width: 52ch;
}
.value-comp {
  font-family: var(--f-body);
  font-size: clamp(0.80rem, 1vw, 0.94rem);
  font-weight: 600;
  color: var(--w55);
  margin: 0 auto clamp(36px, 5.5vw, 64px);
  max-width: 52ch;
}
/* No-fake-math closing statement (replaces invented total) */
.value-nofake {
  font-family: var(--f-body);
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  font-weight: 700;
  line-height: 1.7;
  color: var(--w80);
  max-width: 60ch;
  margin: 0 auto clamp(36px, 5.5vw, 64px);
}
/* bare index eyebrow on value cards (price tags removed) */
.vcard > .vcard-num { margin-bottom: 4px; }
/* secondary reassurance under the primary CTA */
.pricing-reassure {
  font-family: var(--f-body);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  font-weight: 700;
  line-height: 1.55;
  color: var(--w80);
  max-width: 48ch;
}

/* Price reveal card */
.value-reveal {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 52px) clamp(24px, 4.5vw, 56px);
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  flex-wrap: wrap;
}
.value-reveal-price {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.val-was {
  font-family: var(--f-head);
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--w55);
}
.val-was s { text-decoration-color: rgba(255,255,255,0.38); }
.val-now {
  font-family: var(--f-head);
  font-size: clamp(4.5rem, 10vw, 9rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--gold);
  text-shadow: 0 0 56px rgba(245,194,66,0.30);
}
.value-reveal-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.value-reveal-copy {
  font-family: var(--f-head);
  font-size: clamp(1.4rem, 2.8vw, 2.4rem);
  letter-spacing: 0.05em;
  color: var(--w80);
  line-height: 1.05;
}

/* ══ MOBILE ═════════════════════════════ */
@media (max-width: 768px) {
  :root { --gutter: 18px; }
  .hero-heading             { font-size: clamp(2.8rem,14vw,5rem); }
  .hero-sub                 { font-size: 0.88rem; }
  .hero-stat                { font-size: 0.62rem; padding: 6px 14px; }
  .video-frame              { width: 92vw; }
  .cred-layout-2            { grid-template-columns: 1fr; gap: 24px; }
  .problem-split            { grid-template-columns: 1fr; }
  .problem-photo-wrap       { display: none; }
  .deliverables-layout      { grid-template-columns: 1fr; }
  .deliverables-img         { max-width: 100%; }
  .pipeline-top             { grid-template-columns: 1fr; gap: 24px; }
  .pipeline-text            { gap: 12px; }
  .pipeline-hero-frame      { width: 100%; }
  .pipeline-shots           { grid-template-columns: 1fr 1fr; gap: 8px; }
  .pipeline-shots img       { aspect-ratio: 3/4; }
  .pipeline-shots img:last-child { grid-column: span 2; aspect-ratio: 16/9; }
  .archive-layout           { grid-template-columns: 1fr; gap: 24px; }
  .archive-app-img          { order: 2; }        /* image below text on mobile */
  .archive-app-img img      { max-width: 260px; }
  .kits-layout              { grid-template-columns: 1fr; gap: 24px; }
  .kit-reviews-col          { justify-content: center; }
  .kit-reviews-img          { max-height: 360px; }  /* smaller cap at 390px */
  .mentorship-reviews       { grid-template-columns: 1fr 1fr; gap: 8px; }
  .feature-with-photo,
  .feature-with-photo-flip  { grid-template-columns: 1fr; }
  .feature-with-photo-flip .feature-aside { order: 2; }
  .feature-aside            { display: none; }
  .stats-grid               { grid-template-columns: 1fr 1fr; }
  .step                     { grid-template-columns: 40px 1fr; gap: 16px; }
  .step-n                   { font-size: 1.6rem; }
  .fit-grid                 { grid-template-columns: 1fr; gap: 36px; }
  .press-inner              { max-width: 100%; }
  .pricing-split            { grid-template-columns: 1fr; }
  .pricing-photo            { display: none; }
  .price-row                { flex-direction: column; gap: 8px; }
  .price-amount             { font-size: clamp(4rem,18vw,7rem); }
  .heading                  { font-size: clamp(2rem,8vw,3.2rem); }
  .heading-xl               { font-size: clamp(2.8rem,11vw,5rem); }
  .section                  { padding: clamp(52px,8vw,80px) 0; }
  .reviews-img              { max-width: 100%; }
  .pricing-cta .btn         { font-size: 0.75rem; padding: 13px 20px; }
  .price-amount-now { font-size: clamp(4rem, 18vw, 7rem); }
  .price-amount-was { font-size: clamp(1.8rem, 8vw, 3rem); }
  .footer-price-now { font-size: clamp(4.5rem, 16vw, 7rem); }
  .footer-price-was { font-size: clamp(1.6rem, 6vw, 2.8rem); }
  .sale-bar-timer   { display: none; }
  /* Value breakdown */
  .value-cards      { grid-template-columns: 1fr; }
  .value-reveal     { flex-direction: column; align-items: flex-start; gap: 20px; }
  .val-now          { font-size: clamp(4rem, 17vw, 6.5rem); }
  .val-was          { font-size: clamp(1.6rem, 7vw, 2.8rem); }
  .stat-num.vb-total { font-size: clamp(2.5rem, 10vw, 4rem); }
  .vb-total-unit    { font-size: clamp(1rem, 4vw, 1.6rem); }
}

/* ══ SCROLL ANCHORS ═════════════════════ */
#pricing { scroll-margin-top: 52px; }

/* ══ SALE BAR ═══════════════════════════ */
#saleBar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--ink);
  border-bottom: 1px solid rgba(245,194,66,0.20);
  height: 44px;
}
.sale-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2.5vw, 28px);
  height: 100%;
  padding: 0 var(--gutter);
  flex-wrap: nowrap;
}
.sale-bar-label {
  font-family: var(--f-body);
  font-size: 0.60rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--w80);
  white-space: nowrap;
}
.sale-bar-sep { color: var(--w55); }
.sale-bar-price {
  font-family: var(--f-head);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--white);
  white-space: nowrap;
}
.sale-bar-price s    { color: var(--w55); font-size: 0.88rem; }
.sale-bar-price strong { color: var(--gold); }
.sale-bar-arrow      { color: var(--w55); }
.sale-bar-timer {
  font-family: var(--f-body);
  font-size: 0.60rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--w55);
  white-space: nowrap;
}
.sale-bar-timer .sale-countdown { color: var(--gold); font-weight: 800; }
.sale-bar-cta {
  font-family: var(--f-body);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--ink);
  padding: 5px 13px;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.18s;
}
.sale-bar-cta:hover { opacity: 0.82; }
.sale-bar-cta:focus-visible { outline: 2px solid var(--white); outline-offset: 2px; }

/* Founding window banner additions */
.founding-price { color: var(--gold); font-weight: 800; }
.founding-bar-note {
  font-family: var(--f-body);
  font-size: 0.60rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--w55);
  white-space: nowrap;
}
@media (max-width: 980px) { .founding-bar-note { display: none; } }

/* ══ SALE PRICE DISPLAY ═════════════════ */
.price-sale-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.sale-badge {
  font-family: var(--f-body);
  font-size: 0.60rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--ink);
  padding: 5px 14px;
  border-radius: 100px;
  display: inline-block;
}
.price-pair {
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
}
.price-amount-was {
  font-family: var(--f-head);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--w55);
}
.price-amount-was s { text-decoration-color: rgba(255,255,255,0.38); }
.price-amount-now {
  font-family: var(--f-head);
  font-size: clamp(5rem, 14vw, 12rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--gold);
  text-shadow: 0 0 64px rgba(245,194,66,0.30);
}

/* ══ STAT WAS (struck-through old price) ══ */
.stat-was {
  font-family: var(--f-head);
  font-size: clamp(0.9rem, 1.4vw, 1.35rem);
  letter-spacing: 0.06em;
  color: var(--w55);
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,0.45);
  line-height: 1;
  margin-bottom: -6px;
}

/* ══ FOOTER SALE ════════════════════════ */
.footer-sale {
  padding: clamp(56px, 9vw, 96px) var(--gutter) clamp(40px, 6vw, 60px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer-sale-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: clamp(14px, 3vw, 28px);
  flex-wrap: wrap;
}
.footer-price-was {
  font-family: var(--f-head);
  font-size: clamp(2rem, 5.5vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--w55);
}
.footer-price-was s { text-decoration-color: rgba(255,255,255,0.35); }
.footer-price-now {
  font-family: var(--f-head);
  font-size: clamp(6rem, 14vw, 10rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--gold);
  text-shadow: 0 0 80px rgba(245,194,66,0.45), 0 0 160px rgba(245,194,66,0.20);
}
.footer-sale-tag {
  font-family: var(--f-head);
  font-size: clamp(1.2rem, 2.8vw, 2rem);
  letter-spacing: 0.06em;
  color: var(--w80);
}
.footer-sale-urgency {
  font-family: var(--f-body);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--w55);
}
.footer-sale-urgency .sale-countdown { color: var(--gold); font-weight: 800; }
.sale-sep { opacity: 0.4; }
.footer-dm {
  font-family: var(--f-body);
  font-size: clamp(0.82rem, 1vw, 0.94rem);
  font-weight: 600;
  line-height: 1.65;
  color: var(--w80);
  max-width: 52ch;
  margin: 6px auto 0;
}
.footer-signoff {
  font-family: var(--f-head);
  font-size: clamp(1.2rem, 2.4vw, 1.9rem);
  letter-spacing: 0.05em;
  color: var(--w80);
  margin-top: 10px;
}

/* ══ REDUCED MOTION ═════════════════════
   Freeze entrances, marquee, pulse and the
   scroll hint. Counters/marquee/video are
   also frozen in app.js. Everything shows
   in its final state, no motion.
════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .reveal      { opacity: 1 !important; transform: none !important; transition: none !important; }
  .scroll-line { animation: none !important; opacity: 0.5; }
  .btn-pulse   { animation: none !important; }
  html         { scroll-behavior: auto !important; }
}
