/* DLA offer page mock — structured after the seo.stream layout */

@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,500&family=Caveat:wght@600;700&family=Roboto+Mono:wght@400;500&display=swap');

:root {
  --ink: #0a0c10;
  --ink-2: #12151c;
  --ink-3: #1a1f29;
  --line: #262c38;
  --text: #d9dee7;
  --dim: #8d97a8;
  --white: #fff;

  /* ACID = value, proof, money. Never a button. */
  --acid: #c6f24e;
  --acid-dim: #9ec13a;

  /* FLAME = action. ONLY ever used on a CTA. Nothing else. */
  --cta: #ff5324;
  --cta-hi: #ff7a4f;
  --cta-deep: #d93c12;

  --warn: #ff6b4a;
  --ok: #4ade80;
  --wrap: 1120px;

  /* fluid type scale */
  --fs-body: clamp(15.5px, 1.15vw, 17px);
  --fs-lede: clamp(17px, 1.45vw, 20px);
  --fs-card: clamp(14.5px, 1.05vw, 15.5px);
  --fs-small: clamp(13px, 0.95vw, 14px);
  --fs-label: clamp(10.5px, 0.8vw, 12px);
  --fs-h3: clamp(18px, 1.55vw, 22px);

  /* depth */
  --sh-card: 0 1px 2px rgba(0,0,0,.4), 0 8px 24px rgba(0,0,0,.34);
  --sh-lift: 0 2px 4px rgba(0,0,0,.4), 0 18px 44px rgba(0,0,0,.46);
  --sh-cta: 0 6px 18px rgba(255,83,36,.34), 0 14px 40px rgba(255,83,36,.2);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--text);
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: var(--fs-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* handwriting: personal asides only, never a heading or a claim */
.aside-note {
  font-family: 'Caveat', cursive;
  font-size: clamp(19px, 1.7vw, 24px);
  color: var(--acid);
  line-height: 1.35;
  transform: rotate(-0.6deg);
  display: inline-block;
}
.aside-note.plain { color: var(--dim); }
.aside-note.aside-two {
  text-align: center;
  line-height: 1.15;
  transform: rotate(-0.4deg);
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }

section {
  padding: 96px 0;
  border-top: 1px solid var(--line);
  position: relative;
}
section:first-of-type { border-top: 0; }

/* alternating section tone: the page reads as chapters, not one long scroll */
section:nth-of-type(even) {
  background:
    linear-gradient(180deg, rgba(198,242,78,.022) 0%, rgba(198,242,78,0) 62%),
    #0c0f14;
}
section:nth-of-type(odd) {
  background:
    radial-gradient(120% 60% at 50% 0%, rgba(255,255,255,.018) 0%, transparent 70%),
    var(--ink);
}

/* ---- type ---- */
h1, h2, h3, h4 { font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; color: var(--white); }
h1 { font-size: clamp(38px, 6vw, 68px); font-weight: 900; }
h2 { font-size: clamp(30px, 4vw, 46px); margin-bottom: 20px; }
h3 { font-size: var(--fs-h3); margin-bottom: 10px; }

.eyebrow {
  font-family: 'Roboto Mono', monospace;
  font-size: var(--fs-label);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--acid);
  margin-bottom: 18px;
  display: block;
}

.lede { font-size: var(--fs-lede); color: var(--dim); max-width: 720px; }
.dim { color: var(--dim); }
.hl { color: var(--acid); }
.h2-sub {
  font-size: clamp(18px, 2.2vw, 23px);
  color: var(--white);
  font-weight: 700;
  margin: -4px 0 26px;
  padding-left: 16px;
  border-left: 3px solid var(--acid);
  line-height: 1.35;
}
@media (max-width: 640px) {
  .h2-sub { padding-left: 12px; font-size: 17px; margin-bottom: 20px; }
}
.mark {
  color: var(--acid);
  position: relative;
  white-space: nowrap;
}
.mark::after {
  content: '';
  position: absolute;
  left: -2px; right: -2px; bottom: 0.06em;
  height: 0.11em;
  background: var(--acid);
  opacity: 0.55;
  border-radius: 2px;
}
.strike { text-decoration: line-through; opacity: 0.45; }

/* ---- header ---- */
header {
  position: sticky;
  position: -webkit-sticky;
  top: 0; z-index: 50;
  background: rgba(10,12,16,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.hbar {
  display: flex; align-items: center; justify-content: space-between;
  height: 62px; gap: 16px;
}
.hbar .logo { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.logo { font-weight: 900; letter-spacing: -0.03em; color: var(--white); font-size: 19px; }
.logo span { color: var(--acid); }
.logo em {
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0;
  color: var(--dim);
  margin-left: 10px;
  white-space: nowrap;
}
@media (max-width: 620px) {
  .logo em { display: none; }
}
.hnote { font-family: 'Roboto Mono', monospace; font-size: 12px; color: var(--dim); }

/* compact CTA in the sticky nav (specificity must beat .btn, which is defined later) */
header .hbar a.btn-nav {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 7px 12px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  animation: none;
  box-shadow: 0 2px 8px rgba(255,83,36,.26);
}
header .hbar a.btn-nav:hover { transform: none; filter: brightness(1.1); }
header .hbar a.btn-nav::after { display: none; }
@media (max-width: 560px) {
  header .hbar a.btn-nav { font-size: 9.5px; padding: 7px 11px; letter-spacing: 0.02em; }
}

/* phones: stack the brand so nothing truncates, and keep the bar sticky */
@media (max-width: 620px) {
  .hbar { height: auto; min-height: 58px; padding: 9px 0; gap: 10px; }
  .hbar .logo {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
    font-size: 14px;
    line-height: 1.25;
    letter-spacing: -0.02em;
  }
  .logo span { display: block; }
  .logo em { display: none; }
  header .hbar a.btn-nav { font-size: 10px; padding: 9px 12px; }
}
@media (max-width: 380px) {
  .hbar .logo { font-size: 13px; }
  header .hbar a.btn-nav { font-size: 9px; padding: 8px 10px; }
}
/* taller stacked header on phones needs a bigger anchor offset */
@media (max-width: 620px) {
  .offer-lead { scroll-margin-top: 104px; }
  section { scroll-margin-top: 96px; }
}

/* ---- buttons ---- */
.btn {
  position: relative;
  display: inline-block;
  background: linear-gradient(180deg, var(--cta-hi), var(--cta) 55%, var(--cta-deep));
  color: #fff;
  font-weight: 800;
  font-size: clamp(16px, 1.2vw, 17px);
  padding: 17px 34px;
  border-radius: 8px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  overflow: hidden;
  box-shadow: var(--sh-cta);
  animation: ctapulse 2.9s ease-in-out infinite;
  transition: transform 0.12s ease, filter 0.12s ease;
}
.btn:hover { filter: brightness(1.08); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* sheen sweep */
.btn::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: -60%;
  width: 45%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.38), transparent);
  transform: skewX(-18deg);
  animation: ctashine 4.6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ctapulse {
  0%, 100% { box-shadow: 0 6px 18px rgba(255,83,36,.30), 0 14px 40px rgba(255,83,36,.16); }
  50%      { box-shadow: 0 6px 22px rgba(255,83,36,.52), 0 18px 54px rgba(255,83,36,.30); }
}
@keyframes ctashine {
  0%, 62% { left: -60%; }
  92%, 100% { left: 125%; }
}
@media (prefers-reduced-motion: reduce) {
  .btn, .btn::after { animation: none; }
}

.btn-lg { font-size: clamp(17px, 1.35vw, 19px); padding: 21px 44px; }
.btn-ghost {
  background: transparent; color: var(--white);
  border: 1px solid var(--line); font-weight: 600;
  box-shadow: none; animation: none;
}
.btn-ghost::after { display: none; }
.btn-ghost:hover { background: var(--ink-3); }
.micro { font-size: var(--fs-small); color: var(--dim); margin-top: 12px; }

/* ---- floating section rail ---- */
.rail {
  position: fixed;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
}
.rail ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.rail a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 5px 10px 5px 6px;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background .18s ease, border-color .18s ease;
}
.rail .rdot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #3b4250;
  flex-shrink: 0;
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}
.rail .rlab {
  font-family: 'Roboto Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6f7889;
  white-space: nowrap;
  transition: color .2s ease;
}
.rail a:hover { background: rgba(18,21,28,.92); border-color: var(--line); }
.rail a:hover .rdot { background: var(--acid); transform: scale(1.25); }
.rail a:hover .rlab { color: var(--white); }
.rail a.cur .rdot {
  background: var(--acid);
  box-shadow: 0 0 0 3px rgba(198,242,78,.16);
}
.rail a.cur .rlab { color: var(--white); }

/* narrow desktops: collapse to dots, labels on hover */
@media (max-width: 1430px) {
  .rail .rlab {
    max-width: 0; overflow: hidden; opacity: 0;
    transform: translateX(-4px);
    transition: max-width .28s ease, opacity .22s ease, transform .28s ease, color .2s ease;
  }
  .rail:hover a { background: rgba(18,21,28,.92); border-color: var(--line); }
  .rail:hover .rlab { max-width: 190px; opacity: 1; transform: none; }
}
@media (max-width: 1080px) { .rail { display: none; } }
@media (prefers-reduced-motion: reduce) {
  .rail, .rail .rlab, .rail .rdot { transition: none; }
}

/* ---- hero ---- */
.hero { padding: 60px 0 84px; }
.hero h1 { margin-bottom: 22px; }

/* top band: 2/3 copy, 1/3 figure */
.hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 56px;
  align-items: end;
}
.hero-copy { padding-bottom: 12px; }
.hero-copy .lede { max-width: none; }

.figure-zone {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.figure-zone::before {
  content: '';
  position: absolute;
  bottom: -40px; left: 50%;
  transform: translateX(-50%);
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(198,242,78,0.15) 0%, rgba(198,242,78,0.04) 44%, transparent 68%);
  pointer-events: none;
}
.figure-zone::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 300px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--acid-dim), transparent);
}
.herc {
  position: relative;
  display: block;
  width: 100%;
  max-width: 330px;
  height: auto;
  filter: drop-shadow(0 22px 44px rgba(0,0,0,0.6));
}

/* full-width video + CTA below the band */
.hero-stage { margin-top: 52px; }
.hero-stage .video {
  aspect-ratio: 16/9;
  border-radius: 14px;
  max-height: 620px;
}
.hero-stage .play {
  width: 92px; height: 92px;
  box-shadow: 0 12px 40px rgba(198,242,78,0.28);
  transition: transform 0.14s ease;
}
.hero-stage .video:hover .play { transform: scale(1.06); }
.hero-stage .play::after {
  border-left: 28px solid #fff;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  margin-left: 7px;
}
.hero-stage .video-cap { bottom: 18px; left: 20px; font-size: 12px; }

.hero-cta { text-align: center; margin-top: 34px; }
.btn-xl {
  font-size: 22px;
  padding: 25px 66px;
  border-radius: 8px;
  letter-spacing: -0.01em;
}
.hero-cta .micro { font-size: 15px; margin-top: 14px; }

.video {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  overflow: hidden;
}
.play {
  width: 68px; height: 68px; border-radius: 50%;
  background: linear-gradient(180deg, var(--cta-hi), var(--cta) 60%, var(--cta-deep));
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 26px rgba(255,83,36,.42);
  animation: ctapulse 2.9s ease-in-out infinite;
}
.play::after {
  content: ''; width: 0; height: 0;
  border-left: 20px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 5px;
}
.video-cap {
  position: absolute; bottom: 14px; left: 14px;
  font-family: 'Roboto Mono', monospace; font-size: 11px;
  color: var(--dim); letter-spacing: 0.1em;
}

/* ---- counter strip ---- */
.strip {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px 30px;
  display: flex; align-items: center;
  gap: 56px; flex-wrap: wrap;
  margin-top: 34px;
  box-shadow: var(--sh-card);
}
.hero-strip {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
  align-items: stretch;
}
.hero-strip > div {
  padding: 24px 26px;
  border-left: 1px solid var(--line);
  min-width: 0;
}
.hero-strip > div:first-child { border-left: 0; }
.hero-strip .strip-l { margin-bottom: 9px; }
.hero-strip .strip-v {
  font-size: 25px;
  line-height: 1.15;
  white-space: nowrap;
}
.hero-strip .strip-v small {
  display: block;
  font-size: 13.5px;
  line-height: 1.3;
  margin-top: 5px;
  white-space: normal;
}
.strip-l { font-family: 'Roboto Mono', monospace; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dim); }
.strip-v { font-size: 28px; font-weight: 900; color: var(--white); }
.strip-v small { font-size: 15px; font-weight: 500; color: var(--dim); }

/* ---- two paths ---- */
.paths { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 44px; }
/* title + programme badge share one row */
.path-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 40px;
  margin-bottom: 20px;
}
.path-card .path-head h3 {
  margin-bottom: 0;
  line-height: 1.15;
  display: flex;
  align-items: center;
}
.path-card .path-head .badge {
  margin-bottom: 0;
  flex: none;
  align-self: center;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

/* main-benefit card, nested inside each path card */
.mb-card {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-left: 3px solid var(--acid);
  border-radius: 10px;
  padding: 17px 20px;
  margin-bottom: 22px;
}
.mb-card.b { border-left-color: var(--white); }
.mb-lab {
  display: block;
  font-family: 'Roboto Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 6px;
}
.mb-ben {
  display: block;
  font-size: clamp(18px, 1.8vw, 21px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
@media (max-width: 560px) {
  .path-head { flex-wrap: wrap; gap: 10px; }
  .mb-card { padding: 13px 16px; }
  .mb-ben { font-size: 18px; }
}

.path-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 34px;
  position: relative;
  box-shadow: var(--sh-card);
}
.path-card.b { border-color: var(--acid-dim); }
.path-card .badge {
  font-family: 'Roboto Mono', monospace; font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #0a0c10; background: var(--acid);
  padding: 5px 11px; border-radius: 4px; display: inline-block;
  margin-bottom: 18px; font-weight: 700;
}
.path-card.b .badge { background: var(--white); }
.path-card h3 { font-size: 26px; margin-bottom: 12px; }
.path-card .oneline { font-size: 17px; color: var(--text); margin-bottom: 22px; }
.path-card ul { list-style: none; }
.path-card li {
  padding: 11px 0 11px 26px; position: relative;
  font-size: var(--fs-card); color: var(--dim);
  border-bottom: 1px solid var(--line);
}
.path-card li:last-child { border-bottom: 0; }
.path-card li::before {
  content: '';
  position: absolute; left: 0; top: 1.05em;
  width: 15px; height: 15px;
  background-repeat: no-repeat; background-size: 15px 15px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c6f24e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E");
}
.path-card li strong { color: var(--white); }
.path-foot {
  margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line);
  font-size: 14.5px; color: var(--dim);
}
.path-foot strong { color: var(--white); }

.path-proof {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.path-proof img {
  display: block; width: 100%; height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.path-cap {
  font-family: 'Roboto Mono', monospace;
  font-size: var(--fs-label);
  letter-spacing: 0.08em;
  color: var(--dim);
  margin-top: 11px;
  line-height: 1.5;
}

.both {
  margin-top: 22px; padding: 30px 34px;
  background: var(--ink-3); border: 1px solid var(--line);
  border-left: 3px solid var(--acid);
  border-radius: 0 10px 10px 0;
}
.both h3 { font-size: 20px; margin-bottom: 10px; }
.both p { font-size: 16px; color: var(--text); margin: 0; }

/* ---- track header ---- */
.track-head {
  display: flex; align-items: center; gap: 14px;
  margin: 56px 0 8px; flex-wrap: wrap;
}
.track-head .pill {
  font-family: 'Roboto Mono', monospace; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #0a0c10; background: var(--acid);
  padding: 5px 12px; border-radius: 4px; font-weight: 700;
}
.track-head .pill.alt { background: var(--white); }
.track-head h3 { font-size: 25px; margin: 0; }
.track-sub { font-size: 16.5px; color: var(--dim); margin-bottom: 8px; max-width: 760px; }

/* ---- honesty callout ---- */
.honest {
  margin-top: 24px; padding: 28px 30px;
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: 10px;
}
.honest .h-label {
  font-family: 'Roboto Mono', monospace; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--acid); margin-bottom: 12px; display: block;
}
.honest p { font-size: 16px; color: var(--text); margin: 0 0 12px; }
.honest p:last-child { margin-bottom: 0; }

/* ---- story ---- */
.story { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 44px; }
.chapter {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px;
  box-shadow: var(--sh-card);
}
.chapter .tag {
  font-family: 'Roboto Mono', monospace; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--acid); margin-bottom: 14px; display: block;
}
.chapter p { font-size: var(--fs-card); margin-bottom: 12px; }
.chapter p:last-child { margin-bottom: 0; }

/* ---- stack list ---- */
.stack { display: grid; gap: 16px; margin-top: 40px; }
.item {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 26px 28px;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 22px;
  align-items: start;
  box-shadow: var(--sh-card);
}
.num {
  font-family: 'Roboto Mono', monospace;
  font-size: 13px; font-weight: 500;
  color: var(--acid);
  border: 1px solid var(--line);
  border-radius: 6px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
}
.item h3 { font-size: 19px; margin-bottom: 6px; }
.item p { font-size: var(--fs-card); color: var(--dim); margin: 0; }
.price-tag {
  font-family: 'Roboto Mono', monospace;
  font-size: 14px; color: var(--white);
  background: var(--ink-3);
  border: 1px solid var(--line);
  padding: 6px 12px; border-radius: 5px;
  white-space: nowrap;
}
.price-tag.verify { color: var(--acid); border-color: var(--acid-dim); }

/* inclusion badge + supporting value line */
.inc-tag { text-align: right; white-space: nowrap; }
.inc-tag .badge-inc {
  display: inline-block;
  font-family: 'Roboto Mono', monospace;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 700;
  color: #0a0c10; background: var(--acid);
  padding: 5px 12px; border-radius: 4px;
}
.inc-tag .badge-worth {
  display: block;
  font-family: 'Roboto Mono', monospace;
  font-size: 12px; color: var(--dim);
  margin-top: 8px;
}
@media (max-width: 900px) {
  .inc-tag { text-align: left; }
}

/* ---- machines / software ---- */
.machines { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.machine {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 26px;
  box-shadow: var(--sh-card);
}
.machine .logo-slot {
  height: 52px;
  display: flex; align-items: center;
  margin-bottom: 20px;
}
.machine .logo-slot img {
  max-height: 40px;
  max-width: 180px;
  width: auto; height: auto;
  object-fit: contain; object-position: left center;
}
/* wordmark fallback when a product has no logo file */
.machine .wordmark {
  font-size: 21px; font-weight: 900; color: var(--white);
  letter-spacing: -0.02em;
}
.machine .plain {
  font-size: var(--fs-card); color: var(--acid);
  font-weight: 600; margin-bottom: 10px;
  line-height: 1.4;
}
.machine p { font-size: var(--fs-card); color: var(--dim); }
.machine .stage {
  display: inline-block;
  font-family: 'Roboto Mono', monospace; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white); background: var(--ink-3);
  border: 1px solid var(--line); padding: 4px 10px; border-radius: 4px;
}
.machine-foot {
  margin-top: 20px; padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
}
.machine-val { text-align: right; }
.machine-val .m-inc {
  font-family: 'Roboto Mono', monospace; font-size: 10.5px;
  letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700;
  color: #0a0c10; background: var(--acid);
  padding: 4px 9px; border-radius: 3px; display: inline-block;
}
.machine-val .m-worth {
  display: block; font-family: 'Roboto Mono', monospace;
  font-size: 11.5px; color: var(--dim); margin-top: 7px;
}
.machine-val .m-worth.excl { color: var(--acid-dim); }

/* ---- the math ---- */
.math {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 40px;
  margin-top: 40px;
  box-shadow: var(--sh-card);
}
.math-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0; border-bottom: 1px solid var(--line);
  font-size: 16px;
}
.math-row:last-of-type { border-bottom: 0; }
.math-row .lbl { color: var(--text); }
.math-row .val { font-family: 'Roboto Mono', monospace; color: var(--white); font-weight: 500; }

/* value column: inclusion leads, price supports */
.math-row .inc-val { text-align: right; white-space: nowrap; }
.math-row .inc-val .inc-word {
  color: var(--acid); font-weight: 700; font-size: 15.5px;
}
.math-row .inc-val .worth {
  display: block;
  font-family: 'Roboto Mono', monospace;
  font-size: 12.5px; color: var(--dim);
  margin-top: 3px; font-weight: 400;
}
.math-row .inc-val .worth.excl-note { color: var(--acid-dim); }
.math-total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 22px; padding-top: 22px; border-top: 2px solid var(--acid);
}
.math-total .lbl { font-size: 19px; font-weight: 800; color: var(--white); }
.math-total .val { font-family: 'Roboto Mono', monospace; font-size: 30px; font-weight: 700; color: var(--acid); }

.math-row .excl { color: var(--acid); font-family: 'Roboto Mono', monospace; font-size: 13.5px; }
.math-row .inc { color: var(--dim); font-family: 'Roboto Mono', monospace; font-size: 13.5px; }

/* offer lead-in, sits at the end of the math section */
.offer-lead {
  margin-top: 46px;
  padding-top: 40px;
  text-align: center;
  scroll-margin-top: 86px;
}
.offer-lead .eyebrow { margin-bottom: 14px; }
.offer-lead .lede { margin: 0 auto; }

.offer-body {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.offer-body .checklist { text-align: left; }

/* the math, now sitting AFTER the offer as justification */
.math-after {
  margin-top: 56px;
  padding-top: 46px;
}
.math-after .eyebrow { text-align: center; }
.math-after h2 { text-align: center; }
.math-after .lede { margin: 0 auto 0; text-align: center; }

/* value summary rows */
.valrow {
  display: grid; grid-template-columns: 1fr auto;
  gap: 24px; align-items: baseline;
  padding: 26px 0; border-bottom: 1px solid var(--line);
}
.valrow:last-of-type { border-bottom: 0; }
.valrow .v-name { font-size: 20px; font-weight: 800; color: var(--white); }
.valrow .v-desc { font-size: 15.5px; color: var(--dim); margin-top: 6px; }
.valrow .v-num {
  font-family: 'Roboto Mono', monospace; font-size: 27px;
  font-weight: 700; color: var(--white); white-space: nowrap;
}
.valtotal {
  display: grid; grid-template-columns: 1fr auto;
  gap: 24px; align-items: baseline;
  margin-top: 6px; padding-top: 26px;
  border-top: 2px solid var(--acid);
}
.valtotal .v-name { font-size: 22px; font-weight: 900; color: var(--white); }
.valtotal .v-num {
  font-family: 'Roboto Mono', monospace; font-size: 40px;
  font-weight: 800; color: var(--acid); white-space: nowrap; line-height: 1;
}

/* the headline price panel */
.finalprice {
  background: linear-gradient(180deg, rgba(198,242,78,0.07) 0%, rgba(198,242,78,0.02) 100%), var(--ink-2);
  border: 1px solid var(--acid-dim);
  border-radius: 14px;
  padding: 40px 44px;
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0,0,0,.4), 0 20px 50px rgba(0,0,0,.5);
}
.finalprice .fp-label {
  font-family: 'Roboto Mono', monospace; font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--acid); margin-bottom: 12px;
}
.finalprice .fp-num {
  font-size: clamp(52px, 7vw, 76px); font-weight: 900; color: var(--white);
  line-height: 1; letter-spacing: -0.04em;
}
.finalprice .fp-num sup { font-size: 0.42em; vertical-align: super; font-weight: 700; }
.finalprice .fp-sub { font-size: 16px; color: var(--dim); margin-top: 12px; }
.fp-renew {
  border-left: 1px solid var(--line);
  padding-left: 34px;
  max-width: 330px;
}
.fp-renew .r-label {
  font-family: 'Roboto Mono', monospace; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--dim); margin-bottom: 8px;
}
.fp-renew .r-num { font-size: 30px; font-weight: 800; color: var(--white); line-height: 1; }
.fp-renew p { font-size: 14.5px; color: var(--dim); margin-top: 10px; }

@media (max-width: 820px) {
  .finalprice { grid-template-columns: 1fr; padding: 30px; gap: 26px; }
  .fp-renew { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; padding-top: 24px; max-width: none; }
}

.verdict {
  margin-top: 32px; padding: 26px 28px;
  background: var(--ink-3); border-left: 3px solid var(--acid);
  border-radius: 0 8px 8px 0;
  font-size: 19px; color: var(--white); font-weight: 600; line-height: 1.5;
}

/* ---- weeks ---- */
.weeks { display: grid; gap: 14px; margin-top: 40px; }
.week {
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: 10px; padding: 24px 28px;
  display: grid; grid-template-columns: 92px 1fr; gap: 24px; align-items: start;
  box-shadow: var(--sh-card);
}
.week .wk {
  font-family: 'Roboto Mono', monospace; font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--acid);
  padding-top: 4px;
}
.week h3 { font-size: 18px; margin-bottom: 6px; }
.week p { font-size: var(--fs-card); color: var(--dim); margin: 0; }

/* ---- proof ---- */
.proof { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 40px; }
.quote {
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: 10px; padding: 28px;
  box-shadow: var(--sh-card);
}
.quote .proves {
  font-family: 'Roboto Mono', monospace; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #0a0c10; background: var(--acid);
  padding: 4px 10px; border-radius: 4px;
  display: inline-block; margin-bottom: 16px; font-weight: 700;
}
.quote .who { font-weight: 800; color: var(--white); font-size: 17px; }
.quote .role { font-size: 13.5px; color: var(--dim); margin-bottom: 14px; }
.quote .said { font-size: 17px; color: var(--acid); font-weight: 700; margin-bottom: 12px; line-height: 1.4; }
.quote p { font-size: var(--fs-card); color: var(--dim); margin: 0; }

/* ---- screenshot inside a quote card ---- */
.quote-shot {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.quote-shot img {
  display: block; width: 100%; height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.shot-cap {
  font-family: 'Roboto Mono', monospace;
  font-size: var(--fs-label);
  letter-spacing: 0.08em;
  color: var(--dim);
  margin-top: 12px !important;
  line-height: 1.5;
}

/* ---- proof cards: claim + real screenshot in one card ---- */
.proofset { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }
.pcard {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--sh-card);
  transition: transform .16s ease, box-shadow .16s ease;
  display: flex; flex-direction: column;
}
.pcard:hover { transform: translateY(-3px); box-shadow: var(--sh-lift); }
.pcard-head { padding: 26px 28px 20px; }
.pcard .proves {
  font-family: 'Roboto Mono', monospace; font-size: var(--fs-label);
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #0a0c10; background: var(--acid);
  padding: 4px 10px; border-radius: 4px;
  display: inline-block; margin-bottom: 16px; font-weight: 700;
}
.pcard .said {
  font-size: clamp(18px, 1.6vw, 21px); font-weight: 800; color: var(--acid);
  line-height: 1.3; margin-bottom: 8px;
}
.pcard .who { font-weight: 800; color: var(--white); font-size: var(--fs-card); }
.pcard .role { font-size: var(--fs-small); color: var(--dim); margin-top: 2px; }
.pcard p { font-size: var(--fs-card); color: var(--dim); margin: 12px 0 0; }
.pcard-shot {
  margin-top: auto;
  border-top: 1px solid var(--line);
  background: #0e1117;
  padding: 16px;
}
.pcard-shot img {
  display: block; width: 100%; height: auto;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,.5);
}
.testi-note {
  font-family: 'Roboto Mono', monospace;
  font-size: var(--fs-label);
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--dim); margin-top: 26px; text-align: center;
}
@media (max-width: 860px) { .proofset { grid-template-columns: 1fr; } }

/* ---- skool community block ---- */
.comm-box {
  display: grid;
  grid-template-columns: 272px 1fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(180deg, rgba(198,242,78,.04), rgba(198,242,78,0) 70%), var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 40px;
  margin-top: 40px;
  box-shadow: var(--sh-card);
}
.comm-img {
  display: block; width: 100%; height: auto;
  border-radius: 10px;
  box-shadow: var(--sh-lift);
}
.comm-body h3 { margin-bottom: 12px; }
.comm-body > p { color: var(--dim); font-size: var(--fs-card); margin-bottom: 18px; }
.comm-body ul { list-style: none; }
.comm-body li {
  position: relative; padding: 11px 0 11px 28px;
  border-bottom: 1px solid var(--line);
  font-size: var(--fs-card); color: var(--dim);
}
.comm-body li:last-child { border-bottom: 0; }
.comm-body li strong { color: var(--white); }
.comm-body li::before {
  content: '';
  position: absolute; left: 0; top: 1em;
  width: 16px; height: 16px;
  background-repeat: no-repeat; background-size: 16px 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c6f24e' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}
@media (max-width: 860px) {
  .testi-grid { column-count: 1; }
  .comm-box { grid-template-columns: 1fr; padding: 26px; gap: 26px; }
  .comm-img { max-width: 240px; margin: 0 auto; }
}

/* ---- fit ---- */
.fit { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.fit-col {
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: 10px; padding: 30px;
  box-shadow: var(--sh-card);
}
.fit-col h3 { margin-bottom: 20px; }
.fit-col ul { list-style: none; }
.fit-col li {
  padding: 12px 0 12px 30px; position: relative;
  border-bottom: 1px solid var(--line); font-size: var(--fs-card);
}
.fit-col li:last-child { border-bottom: 0; }
.yes li::before, .no li::before {
  content: '';
  position: absolute; left: 0; top: 1.05em;
  width: 17px; height: 17px;
  background-repeat: no-repeat;
  background-size: 17px 17px;
}
.yes li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234ade80' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}
.no li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff6b4a' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 6 6 18M6 6l12 12'/%3E%3C/svg%3E");
}

/* ---- scenarios ---- */
.scenarios { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 40px; }
.scen {
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: 10px; padding: 28px;
  box-shadow: var(--sh-card);
}
.scen .if { font-family: 'Roboto Mono', monospace; font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dim); }
.scen .who { font-size: 19px; font-weight: 800; color: var(--white); margin: 6px 0 18px; }
.scen .eq { color: var(--acid); font-family: 'Roboto Mono', monospace; font-size: 18px; margin-bottom: 10px; }
.scen .win { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.scen p { font-size: var(--fs-card); color: var(--dim); margin: 0; }

/* ---- price ---- */
.pricebox {
  background: var(--ink-2); border: 1px solid var(--acid-dim);
  border-radius: 14px; padding: 48px; text-align: center;
  margin-top: 40px;
  box-shadow: 0 2px 4px rgba(0,0,0,.4), 0 20px 50px rgba(0,0,0,.5);
}
.pricebox .lifetime {
  font-family: 'Roboto Mono', monospace; font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--acid);
  margin-bottom: 20px;
}
.bignum { font-size: clamp(60px, 10vw, 96px); font-weight: 900; color: var(--white); line-height: 1; letter-spacing: -0.04em; }
.bignum sup { font-size: 0.4em; vertical-align: super; font-weight: 700; }
.bignum .per {
  font-size: 0.24em;
  font-weight: 700;
  color: var(--dim);
  letter-spacing: 0.02em;
  margin-left: 0.06em;
  vertical-align: baseline;
}
.once { font-size: 19px; color: var(--dim); margin-top: 10px; }
.after {
  margin-top: 30px; padding-top: 30px; border-top: 1px solid var(--line);
  font-size: 16px; color: var(--dim); max-width: 620px; margin-left: auto; margin-right: auto;
}
.after strong { color: var(--white); }
.gbox {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: center;
  text-align: left;
  background: linear-gradient(180deg, rgba(198,242,78,.05), rgba(198,242,78,0) 70%), var(--ink-3);
  border: 1px solid var(--acid-dim);
  border-radius: 12px;
  padding: 22px 24px;
  box-shadow: var(--sh-card);
}
.gbox .gseal {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(198,242,78,.10);
  border: 1px solid var(--acid-dim);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.gbox .gseal svg { width: 26px; height: 26px; }
.gbox h4 {
  font-size: 17px; color: var(--white); margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.gbox p { font-size: var(--fs-card); color: var(--dim); margin: 0; }
@media (max-width: 560px) {
  .gbox { grid-template-columns: 1fr; gap: 12px; padding: 20px; }
}

.guarantee {
  display: inline-block; margin-top: 26px;
  background: var(--ink-3); border: 1px solid var(--line);
  border-radius: 8px; padding: 14px 22px; font-size: 15px;
}

/* ---- value testimonial beside the CTA ---- */
.cta-proof {
  width: 100%;
  max-width: 720px;
  margin: 30px auto 0;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px;
  box-shadow: var(--sh-card);
}
.cta-proof img { display: block; width: 100%; height: auto; border-radius: 6px; }

/* ---- checklist: each item its own card ---- */
.checklist {
  list-style: none;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.checklist li {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: stretch;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 9px;
  overflow: hidden;
  font-size: var(--fs-card);
  box-shadow: var(--sh-card);
  transition: transform .14s ease, border-color .14s ease;
}
.checklist li:hover { transform: translateY(-2px); border-color: var(--acid-dim); }
.checklist li::before {
  content: '';
  background-color: #0b0e13;
  background-image:
    linear-gradient(160deg, rgba(198,242,78,.10), rgba(198,242,78,0) 70%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c6f24e' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat;
  background-size: cover, 17px 17px;
  background-position: center, center;
  border-right: 1px solid var(--line);
}
.checklist li span.ci {
  padding: 13px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  min-width: 0;
}
.checklist li .cn {
  color: var(--white);
  font-weight: 700;
  font-size: var(--fs-card);
  line-height: 1.3;
}
.checklist li .cd {
  color: var(--dim);
  font-size: var(--fs-small);
  line-height: 1.4;
}
.checklist li strong { color: var(--white); }

/* ---- stats ---- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.stat {
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: 10px; padding: 30px;
  box-shadow: var(--sh-card);
}
.stat .big { font-size: 46px; font-weight: 900; color: var(--acid); line-height: 1; letter-spacing: -0.03em; }
.stat p { font-size: var(--fs-card); color: var(--dim); margin: 14px 0 0; }
.stat .src { font-family: 'Roboto Mono', monospace; font-size: 11px; color: #5c6577; margin-top: 14px; display: block; }
.read {
  margin-top: 24px; padding: 26px 28px;
  background: var(--ink-3); border-left: 3px solid var(--acid);
  border-radius: 0 8px 8px 0;
}
.read strong { color: var(--white); display: block; margin-bottom: 8px; font-size: 17px; }
.read p { color: var(--text); font-size: 16px; margin: 0; }
.read p + p { margin-top: 14px; }

/* ---- hot takes ---- */
.takes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 40px; }
.take {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--sh-card);
}
.take .said {
  font-size: 21px; font-weight: 800; color: var(--acid);
  line-height: 1.3; margin-bottom: 8px;
}
.take .versus {
  font-family: 'Roboto Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #ff8a6b;
  background: rgba(255,107,74,.10);
  border: 1px solid rgba(255,107,74,.28);
  padding: 3px 7px;
  border-radius: 3px;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}
.take .versus-claim {
  font-size: 13.5px;
  color: #7f8798;
  min-width: 0;
  opacity: .95;
}
.take .versus-row {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.take p { font-size: var(--fs-card); color: var(--dim); margin: 0; }
.take p strong { color: var(--white); }
.shot {
  margin-top: 18px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: var(--ink-3);
  padding: 22px 18px;
  text-align: center;
}
.shot .s-label {
  font-family: 'Roboto Mono', monospace; font-size: 10.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--acid-dim); display: block; margin-bottom: 6px;
}
.shot .s-desc { font-size: 13px; color: var(--dim); }

.takes-close {
  margin-top: 30px;
  padding: 30px 34px;
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-left: 3px solid var(--acid);
  border-radius: 0 10px 10px 0;
}
.takes-close p { font-size: 19px; color: var(--text); margin: 0; line-height: 1.5; }
.takes-close p strong { color: var(--white); }
.takes-close p + p { margin-top: 12px; }
@media (max-width: 900px) {
  .takes { grid-template-columns: 1fr; }
  .take { padding: 24px; }
}

/* ---- diy ---- */
.diy { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 40px; }
.diy-card {
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: 10px; padding: 28px;
  box-shadow: var(--sh-card);
}
.diy-card .label {
  font-family: 'Roboto Mono', monospace; font-size: 12px;
  letter-spacing: 0.14em; color: var(--warn); margin-bottom: 12px; display: block;
}
.diy-card p { font-size: var(--fs-card); color: var(--dim); margin: 0; }

/* ---- faq ---- */
.faq { margin-top: 40px; }
details {
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: 10px; margin-bottom: 12px; overflow: hidden;
}
summary {
  padding: 22px 28px; cursor: pointer; font-weight: 700;
  color: var(--white); font-size: clamp(15.5px, 1.25vw, 17px); list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  background-repeat: no-repeat; background-size: 18px 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c6f24e' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  transition: transform 0.2s ease;
}
details[open] summary::after { transform: rotate(180deg); }
details p { padding: 0 28px 24px; color: var(--dim); font-size: var(--fs-card); margin: 0; }
details p + p { padding-top: 14px; }

/* ---- final ---- */
.final { text-align: center; padding: 110px 0; }
.final h2 { font-size: clamp(32px, 5vw, 52px); margin-bottom: 24px; }
.final .lede { margin: 0 auto 36px; }
.ps {
  margin-top: 46px; padding-top: 30px; border-top: 1px solid var(--line);
  font-size: 16px; color: var(--dim); max-width: 680px; margin-left: auto; margin-right: auto;
  text-align: left;
}
.ps strong { color: var(--white); }

footer { padding: 40px 0; border-top: 1px solid var(--line); text-align: center; }
footer p { font-size: 13.5px; color: #5c6577; }

/* ---- mock banner ---- */
.mockbar {
  background: var(--warn); color: #1a0a05;
  text-align: center; padding: 9px 16px;
  font-size: 13px; font-weight: 700;
}

/* ---- responsive ---- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-copy { padding-bottom: 0; }
  .herc { max-width: 260px; margin: 0 auto; }
  .figure-zone::before { width: 320px; height: 320px; bottom: -24px; }
  .figure-zone::after { width: 220px; }
  .hero-stage { margin-top: 34px; }
  .hero-stage .play { width: 66px; height: 66px; }
  .hero-stage .play::after {
    border-left: 20px solid #0a0c10;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
  }
  .btn-xl { font-size: 18px; padding: 20px 34px; width: 100%; }
  .strip { gap: 28px; }
  .hero-strip { grid-template-columns: repeat(2, 1fr); }
  .hero-strip > div:nth-child(3) { border-left: 0; }
  .hero-strip > div:nth-child(n+3) { border-top: 1px solid var(--line); }
}

@media (max-width: 560px) {
  .hero-strip { grid-template-columns: 1fr; }
  .hero-strip > div { border-left: 0; }
  .hero-strip > div + div { border-top: 1px solid var(--line); }
}

@media (max-width: 900px) {
  .hero-grid, .story, .machines, .proof, .fit, .scenarios, .stats, .diy, .paths { grid-template-columns: 1fr; }
  .path-card, .both { padding: 26px; }
  .checklist { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
  .item { grid-template-columns: 1fr; gap: 12px; }
  .week { grid-template-columns: 1fr; gap: 8px; }
  section { padding: 68px 0; }
  .math, .pricebox { padding: 28px; }
}

/* phones: one checklist card per row (must come last to beat the 900px rule) */
@media (max-width: 640px) {
  .checklist { grid-template-columns: 1fr !important; }
  .checklist li { grid-template-columns: 42px 1fr; }
  .comm-box, .finalprice { padding: 24px; }
}

/* small phones: nothing may exceed the viewport */
@media (max-width: 400px) {
  .wrap, .narrow { padding: 0 16px; }
  .item { padding: 20px 18px; gap: 14px; }
  .item .num { width: 34px; height: 34px; font-size: 12px; }
  .machine, .take, .quote, .pcard-head, .week, .scen, .fit-col, .diy-card,
  .path-card, .math, .pricebox, .comm-box, .finalprice { padding: 22px 18px; }
  .checklist li { grid-template-columns: 38px 1fr; }
  .checklist li span.ci { padding: 12px 13px; }
  .strip > div { padding: 18px 16px; }
  h1 { font-size: clamp(30px, 8.5vw, 38px); }
  .bignum { font-size: clamp(46px, 15vw, 60px); }
  .btn-xl { padding: 18px 20px; font-size: 16px; }
  .aside-note { font-size: 17px; }
}

/* ---- image lightbox ---- */
.zoomable { cursor: zoom-in; transition: filter .16s ease, transform .16s ease; }
.zoomable:hover { filter: brightness(1.06); }

.lb {
  position: fixed; inset: 0; z-index: 200;
  display: none;
  align-items: center; justify-content: center;
  padding: 40px 24px;
  background: rgba(4,6,9,.92);
  backdrop-filter: blur(6px);
  cursor: zoom-out;
  opacity: 0;
  transition: opacity .18s ease;
}
.lb.open { display: flex; opacity: 1; }
.lb img {
  max-width: min(1400px, 96vw);
  max-height: 90vh;
  width: auto; height: auto;
  border-radius: 10px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 90px rgba(0,0,0,.7);
  transform: scale(.985);
  transition: transform .18s ease;
}
.lb.open img { transform: scale(1); }
.lb-x {
  position: absolute; top: 18px; right: 22px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(18,21,28,.9);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 22px; line-height: 1;
  cursor: pointer;
}
.lb-x:hover { background: var(--ink-3); color: #fff; }
.lb-cap {
  position: absolute; bottom: 16px; left: 0; right: 0;
  text-align: center;
  font-family: 'Roboto Mono', monospace;
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--dim);
  padding: 0 24px;
}
@media (max-width: 640px) {
  .lb { padding: 20px 12px; }
  .lb img { max-width: 96vw; max-height: 82vh; }
}
@media (prefers-reduced-motion: reduce) {
  .lb, .lb img, .zoomable { transition: none; }
}

/* hard stop: no element may force sideways scroll */
img, table, pre { max-width: 100%; }
body { overflow-x: hidden; }

/* grid children default to min-content width, which is what pushes wide cards
   past a narrow viewport. Let every card track shrink instead. */
.item, .item > div,
.machine, .take, .quote, .pcard, .week, .week > div,
.scen, .fit-col, .diy-card, .path-card,
.checklist li, .checklist li span.ci,
.comm-box, .comm-body,
.strip > div,
.valrow, .valrow > div,
.finalprice, .finalprice > div {
  min-width: 0;
}
.item p, .machine p, .take p, .quote p, .week p, .checklist li .cd,
.checklist li .cn, .comm-body li {
  overflow-wrap: anywhere;
}
@media (max-width: 400px) {
  .item { grid-template-columns: 1fr; }
  .item .inc-tag { text-align: left; }
}

/* ---- "See the offer below" cue at the foot of the value-math block ---- */
.see-offer{
  display:flex; align-items:center; justify-content:center; gap:10px;
  width:max-content; margin:34px auto 0; padding:13px 26px;
  border:1px solid #39421f; border-radius:999px; background:#171b12;
  color:var(--acid); font-size:14.5px; font-weight:700;
  letter-spacing:.04em; text-transform:uppercase; text-decoration:none;
  transition:background .18s ease, border-color .18s ease, transform .18s ease;
}
.see-offer:hover{ background:#1e2318; border-color:var(--acid); transform:translateY(-1px); }
.see-offer svg{
  width:19px; height:19px; flex:none;
  fill:none; stroke:var(--acid); stroke-width:2.6;
  stroke-linecap:round; stroke-linejoin:round;
  animation:seeOfferNudge 1.9s ease-in-out infinite;
}
@keyframes seeOfferNudge{
  0%,100%{ transform:translateY(0); }
  50%    { transform:translateY(4px); }
}
@media (prefers-reduced-motion:reduce){ .see-offer svg{ animation:none; } }
@media (max-width:640px){
  .see-offer{ font-size:13px; padding:12px 20px; margin-top:26px; }
}

/* Livtar proof repeated under the hero CTA (duplicate of the offer-side one). */
.hero-proof { margin-top: 26px; }
@media (max-width: 640px){ .hero-proof { margin-top: 20px; } }

/* ================================================================
   Mobile above-the-fold density (<=640px).
   Before: eyebrow 50 + h1 109 + lede 245 + portrait 386 pushed the
   hero CTA to y=1013 on a 844px screen — no CTA visible without a
   scroll. Tightens type, trims the lede, and shrinks the portrait so
   the button and proof land inside the first screen.
   ================================================================ */
@media (max-width: 640px){
  .hero { padding: 26px 0 44px; }

  /* eyebrow: 0.18em tracking wrapped it onto 3 lines */
  .hero .eyebrow{
    font-size: 10.5px; letter-spacing: .10em; line-height: 1.45;
    margin-bottom: 12px; opacity: .92;
  }

  .hero h1{ font-size: 33px; line-height: 1.1; margin-bottom: 14px; letter-spacing: -.01em; }

  .hero .lede{ font-size: 15.5px; line-height: 1.5; }

  /* portrait was the single biggest block of dead height */
  .hero-grid{ gap: 16px; }
  .herc{ max-width: 168px; }
  .figure-zone::before{ width: 190px; height: 190px; bottom: -14px; }
  .figure-zone::after{ width: 140px; }

  .hero-stage{ margin-top: 18px; }
  .hero-cta .btn-xl{ width: 100%; padding: 16px 20px; font-size: 15px; }
  .hero-proof{ margin-top: 14px; }
}

/* Very small phones: drop the portrait entirely — the CTA matters more. */
@media (max-width: 400px){
  .hero .figure-zone{ display: none; }
  .hero h1{ font-size: 31px; }
}

/* Mobile: swap the full-body cut-out for a circular head crop (herc-face.png).
   Full portrait was 386px of hero height; the avatar keeps the human face
   above the fold at a fraction of the cost. */
@media (max-width: 640px){
  .hero .figure-zone{ display: block; }
  .hero .figure-zone::before,
  .hero .figure-zone::after{ display: none; }
  .hero .herc{
    max-width: 132px;
    margin: 0 auto;
    border-radius: 50%;
    filter: drop-shadow(0 10px 22px rgba(0,0,0,.55));
  }
  .hero-grid{ gap: 14px; }
}
@media (max-width: 400px){
  .hero .figure-zone{ display: block; }
  .hero .herc{ max-width: 116px; }
}

/* ---- hero guarantee + social-proof line (under the primary CTA) ---- */
.hero-guar{
  margin: 14px 0 0; font-size: 14px; color: var(--dim);
  letter-spacing: .01em;
}
.hero-guar b{ color: #fff; font-weight: 700; }

.hero-social{
  display: inline-flex; align-items: center; gap: 11px;
  margin: 12px 0 0; padding: 6px 10px 6px 6px;
  background: none; border: 1px solid transparent; border-radius: 999px;
  color: var(--dim); font: inherit; font-size: 14px; cursor: pointer;
  transition: background .16s ease, border-color .16s ease;
}
.hero-social:hover{ background: var(--ink-2); border-color: var(--line); }
.hero-social .hs-txt b{ color: var(--acid); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.hero-social .faces{ display: inline-flex; }
.hero-social .faces i{
  width: 27px; height: 27px; margin-right: -9px; border-radius: 50%;
  background: linear-gradient(160deg,#3a4428,#232a18);
  border: 2px solid var(--ink); color: var(--acid);
  font: 700 9.5px/25px 'Roboto Mono', monospace; font-style: normal;
  text-align: center; letter-spacing: -.02em;
}
.hero-social .faces i:last-child{ background: var(--acid); color: #12140f; }

/* ---- testimonials modal ---- */
.tmodal{
  position: fixed; inset: 0; z-index: 120; display: flex;
  align-items: center; justify-content: center; padding: 26px 16px;
  background: rgba(6,8,5,.82); backdrop-filter: blur(3px);
}
.tmodal[hidden]{ display: none; }
.tm-panel{
  width: 100%; max-width: 1080px; max-height: 88vh; display: flex; flex-direction: column;
  background: var(--ink); border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
}
.tm-head{
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  padding: 22px 24px 16px; border-bottom: 1px solid var(--line); flex: none;
}
.tm-head h2{ margin: 6px 0 0; font-size: 25px; line-height: 1.15; }
.tm-x{
  flex: none; width: 38px; height: 38px; border-radius: 9px; cursor: pointer;
  background: var(--ink-2); border: 1px solid var(--line); color: #fff; font-size: 24px; line-height: 1;
}
.tm-x:hover{ border-color: var(--acid); color: var(--acid); }
.tm-body{
  overflow-y: auto; padding: 20px 24px 26px;
  columns: 3; column-gap: 18px;
}
.tq{
  break-inside: avoid; margin: 0 0 18px; padding: 16px 17px;
  background: var(--ink-2); border: 1px solid var(--line); border-radius: 10px;
}
.tq blockquote{
  margin: 0; font-size: 14.5px; line-height: 1.55; color: #d7dcc9;
}
.tq figcaption{ display: flex; align-items: center; gap: 9px; margin-top: 12px; }
.tq-av{
  width: 26px; height: 26px; border-radius: 50%; flex: none;
  background: linear-gradient(160deg,#3a4428,#232a18); color: var(--acid);
  font: 700 9.5px/26px 'Roboto Mono', monospace; text-align: center;
}
.tq-n{ font-size: 12.5px; color: var(--dim); font-weight: 600; }

@media (max-width: 900px){ .tm-body{ columns: 2; } }
@media (max-width: 640px){
  .tm-body{ columns: 1; padding: 16px 15px 22px; }
  .tm-panel{ max-height: 92vh; }
  .tm-head{ padding: 18px 16px 14px; }
  .tm-head h2{ font-size: 21px; }
  .hero-guar{ font-size: 12.5px; margin-top: 12px; }
  .hero-social{ font-size: 12.5px; gap: 8px; margin-top: 10px; }
  .hero-social .faces i{ width: 23px; height: 23px; font-size: 8.5px; line-height: 21px; margin-right: -8px; }
}

/* ================================================================
   Hero layout v2 — centered lead, proof + portrait balanced below.
   Copy runs full width and centered; the Livtar screenshot and the
   portrait sit side by side under the CTA so the block reads as one
   balanced unit instead of a lopsided two-column hero.
   ================================================================ */
.hero-lead{ max-width: 900px; margin: 0 auto; text-align: center; }
.hero-lead .hero-copy{ padding-bottom: 0; }
.hero-lead .lede{ margin-left: auto; margin-right: auto; max-width: 660px; }
.hero-lead h1{ margin-bottom: 18px; }

.hero .hero-stage{ text-align: center; }
.hero .hero-cta{ display: flex; flex-direction: column; align-items: center; }
.hero .hero-social{ align-self: center; }

.hero-below{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 200px;
  align-items: start;          /* tops of quote + portrait on one line */
  gap: 34px;
  max-width: 1072px;           /* match the stats strip width below */
  margin: 30px auto 0;
}
.hero-below .hero-proof{ margin: 0; margin-right: auto; }   /* flush left */
.hero-below .figure-zone{ display: flex; justify-content: center; align-items: flex-start; }
.hero-below .herc{ max-width: 200px; margin: 0; filter: drop-shadow(0 18px 34px rgba(0,0,0,.55)); }
.hero-below .figure-zone{ align-items: flex-start; }
/* portrait sits flush on the stats strip below it */
.hero .hero-strip{ margin-top: 0; }

@media (max-width: 900px){
  .hero-below{ grid-template-columns: minmax(0,1fr) 170px; gap: 20px; }
  .hero-below .herc{ max-width: 170px; }
}

/* Mobile: portrait returns to the circular face crop, centered above the quote. */
@media (max-width: 640px){
  .hero-below{
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 18px;
  }
  .hero-below .figure-zone{ order: -1; }
  .hero-below .herc{ max-width: 118px; border-radius: 50%; }
  .hero-lead{ text-align: center; }
}

/* ---- back to top ---- */
.totop{
  position: fixed; right: 22px; bottom: 96px; z-index: 70;
  width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
  background: var(--ink-2); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(0,0,0,.5);
  transition: border-color .16s ease, background .16s ease, transform .16s ease;
}
.totop[hidden]{ display: none; }
.totop svg{ width: 21px; height: 21px; fill: none; stroke: var(--acid); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.totop:hover{ border-color: var(--acid); background: #1e2318; transform: translateY(-2px); }
@media (max-width: 640px){
  .totop{ right: 14px; bottom: 148px; width: 42px; height: 42px; }
  .totop svg{ width: 19px; height: 19px; }
}

/* ================= mobile sweep fixes (2026-08-23) ================= */
@media (max-width: 640px){

  /* 1. Header CTA was a 176x28 tap target — under the 44px guideline. */
  header .btn-nav{
    padding: 10px 14px; font-size: 12px; min-height: 40px;
    display: inline-flex; align-items: center;
  }

  /* 2. Rail labels were 10.5px. The rail is display:none on mobile, so this
        only matters if it is ever re-enabled — bump for legibility. */
  .rail .rlab{ font-size: 12.5px; }

  /* 3. The countdown bar was 145px tall (17% of the screen) and forced 132px
        of body padding. Put the clock and the CTA on one row so it costs
        about half that, and keep the headline above it. */
  .cdbar{ padding: 9px 12px 10px; gap: 8px; }
  .cdbar .cdtext{ width: 100%; font-size: 11.5px; line-height: 1.3; }
  .cdbar .cdclock{ gap: 5px; }
  .cdbar .cdseg{ min-width: 40px; padding: 3px 5px; }
  .cdbar .cdseg .n{ font-size: 15px; }
  .cdbar .cdseg .l{ font-size: 7.5px; letter-spacing: .10em; margin-top: 2px; }
  .cdbar .btn{ padding: 9px 14px; font-size: 12.5px; min-height: 40px; }
  body{ padding-bottom: 104px; }

  /* 4. Minimise button was 26x26 — widen the hit area without resizing the icon. */
  .cd-collapse{ width: 34px; height: 34px; top: 3px; right: 4px; }
}

/* Legibility floor: some component labels rendered at 10.5–11px on mobile. */
@media (max-width: 640px){
  .eyebrow{ font-size: 11.5px; }
  .strip-l{ font-size: 11.5px; }
  .pcard-role, .path-tag, .inc-tag .badge-inc, .inc-tag .badge-worth,
  .machine-foot .stage, .m-inc, .m-worth, .cd, .v-desc{ font-size: 12.5px; }
  .item h3, .path h3{ font-size: 15px; }
}

/* Remaining sub-12px text found in the 2026-08-23 mobile sweep. */
@media (max-width: 640px){
  header .btn-nav{ font-size: 12px; }
  .hero .eyebrow{ font-size: 11.5px; }
  .badge{ font-size: 12px; }
  .path-cap{ font-size: 12px; line-height: 1.45; }
}

/* ---- hero laurel award quotes (under the stats strip) ---------------- */
.laurels{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
  max-width: 1072px; margin: 34px auto 0;
}
.lcard{ margin: 0; text-align: center; padding: 0 6px; }
.lcard-top{
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin-bottom: 11px;
}
.lcard .lw{ width: 40px; height: 40px; flex: none; }
.lcard .lw-b ellipse{ fill: #d8b45c; }
.lcard-top .lw:last-child{ transform: scaleX(-1); }
.lcard-t{
  font-family: 'Roboto Mono', monospace;
  font-size: 12.5px; letter-spacing: .10em; text-transform: uppercase;
  color: #e2c375; font-weight: 700; line-height: 1.25; max-width: 190px;
}
.lcard blockquote{
  margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--dim);
}
.lcard blockquote::before{ content: '\201C'; }
.lcard blockquote::after{ content: '\201D'; }
.lcard figcaption{
  margin-top: 9px; font-size: 12.5px; font-weight: 700; color: #8b937c;
  letter-spacing: .02em;
}
@media (max-width: 900px){
  .laurels{ grid-template-columns: 1fr; gap: 24px; max-width: 520px; }
}
@media (max-width: 640px){
  .laurels{ margin-top: 26px; gap: 22px; }
  .lcard .lw{ width: 34px; height: 34px; }
  .lcard-t{ font-size: 11.5px; max-width: 165px; }
  .lcard blockquote{ font-size: 14px; }
}

.lcard .lw{ width: 40px; height: 40px; }

.lcard .lw-s{ fill:none; stroke:#d8b45c; stroke-width:2.2; stroke-linecap:round; opacity:.85; }

/* Hero: hold the headline and lede to two lines each on desktop. */
@media (min-width: 981px){
  .hero-lead{ max-width: 1072px; }
  .hero-lead h1{ font-size: 50px; line-height: 1.10; max-width: 1180px; margin-left: auto; margin-right: auto; letter-spacing: -.015em; }
  .hero-lead .lede{ max-width: 880px; font-size: 19px; }
}

/* Laurel quotes when they sit inside the hero CTA column. */
.hero-laurels{ margin: 52px auto 4px; max-width: 1072px; width: 100%; gap: 30px; }
.hero-laurels .lcard blockquote{ font-size: 13.8px; line-height: 1.5; }
.hero-laurels .lcard-t{ font-size: 12px; }
.hero-laurels .lw{ width: 36px; height: 36px; }
.hero-cta .hero-social{ margin-top: 14px; }
@media (max-width: 900px){
  .hero-laurels{ grid-template-columns: 1fr; max-width: 520px; gap: 20px; }
}
@media (max-width: 640px){
  .hero-laurels{ margin-top: 38px; gap: 18px; }
  .hero-laurels .lcard blockquote{ font-size: 13.5px; }
}

/* Award titles must never wrap — the 190px cap sat exactly at the text
   width, so any font-rendering difference broke them onto two lines. */
.lcard-t{ max-width: none; white-space: nowrap; }
.lcard-top{ gap: 4px; flex-wrap: nowrap; }
@media (max-width: 640px){
  .lcard-t{ white-space: nowrap; font-size: 11px; }
  .hero-laurels .lcard-t{ font-size: 11px; }
}

/* The hero H1 is long; give it room before it wraps to three lines. */
@media (min-width: 981px){ .hero-lead{ max-width: 1220px; } }

/* The hero H1 needs to break the 1072px wrap to sit on two lines. */
@media (min-width: 1240px){
  .hero .wrap{ max-width: 1340px; }
  .hero-lead h1{ font-size: 48px; max-width: 1280px; }
}
@media (min-width: 981px) and (max-width: 1239px){
  .hero-lead h1{ font-size: 44px; }
}
