/* ─── tokens ────────────────────────────────────────────── */
:root {
  --bg:        #0a0b0f;
  --surface:   #10131a;
  --surface-2: #161b26;
  --line:      #232a38;
  --line-2:    #2c3548;
  --ink:       #f4efe4;
  --ink-dim:   #a4a89b;
  --ink-mute:  #6b6e66;

  --amber:     #e4843f;
  --amber-2:   #f3a566;
  --amber-3:   #e6c98b;
  --amber-glow: rgba(228,132,63,.35);

  --radius: 14px;
  --radius-lg: 22px;

  --f-display: "Cabinet Grotesk", "General Sans", -apple-system, system-ui, sans-serif;
  --f-body:    "General Sans", -apple-system, system-ui, sans-serif;
  --f-mono:    "JetBrains Mono", ui-monospace, monospace;

  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --dur: 0.6s;

  --pad: clamp(20px, 4vw, 48px);
  --max: 1280px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-feature-settings: "ss01","ss02","cv11";
}

/* film grain overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: .04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/></svg>");
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

::selection { background: var(--amber); color: #0a0b0f; }

/* ─── typography ────────────────────────────────────────── */
.display,
.display-sm {
  font-family: var(--f-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--ink);
  margin: 0;
}
.display {
  font-size: clamp(48px, 8.4vw, 128px);
}
.display-sm {
  font-size: clamp(36px, 5.4vw, 72px);
  line-height: 1;
  letter-spacing: -0.025em;
}
.display .line { display: block; }
.display .italic {
  font-style: italic;
  font-weight: 500;
  color: var(--amber-3);
  font-family: "Cabinet Grotesk", serif;
}
.display .word {
  display: inline-block;
  transform: translateY(120%);
  opacity: 0;
  will-change: transform, opacity;
}
.display .word.in {
  transform: translateY(0);
  opacity: 1;
  transition: transform .9s var(--ease-out), opacity .6s var(--ease-out);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--amber);
}
.eyebrow.amber { color: var(--amber-3); }
.eyebrow.amber::before { background: var(--amber-3); }

/* ─── buttons ───────────────────────────────────────────── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
  isolation: isolate;
  overflow: hidden;
}
.btn-primary {
  background: var(--amber);
  color: #10131a;
  box-shadow: 0 10px 40px -8px var(--amber-glow), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.35) 50%, transparent 80%);
  transform: translateX(-100%);
  transition: transform .8s var(--ease-out);
  z-index: -1;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 48px -8px var(--amber-glow), inset 0 1px 0 rgba(255,255,255,.35);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover {
  background: var(--surface-2);
  border-color: var(--amber);
  transform: translateY(-1px);
}

.btn-sm { padding: 10px 16px; font-size: 13px; }
.btn-lg { padding: 18px 28px; font-size: 15px; }

/* ─── promo bar ─────────────────────────────────────────── */
.promo {
  background: #050609;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  height: 34px;
  display: flex;
  align-items: center;
}
.promo-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 500;
  color: var(--ink-dim);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  animation: scroll-l 32s linear infinite;
  padding-left: 40px;
}
.promo-track b { color: var(--amber); font-weight: 700; }
.promo-track span[aria-hidden] { color: var(--amber); }
@keyframes scroll-l {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── nav ───────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad);
  background: rgba(10, 11, 15, 0.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(10, 11, 15, 0.88);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.24em;
  color: var(--ink);
}
.brand svg { color: var(--amber); }
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  color: var(--ink-dim);
}
.nav-links a {
  position: relative;
  transition: color .25s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }
@media (max-width: 820px) {
  .nav-links { display: none; }
}

/* ─── hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  padding: 120px var(--pad) 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.42) saturate(.85) contrast(1.15);
  transform: scale(1.05);
  transition: transform 1.4s var(--ease-out);
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(228,132,63,.10), transparent 45%),
    linear-gradient(180deg, rgba(10,11,15,.4) 0%, rgba(10,11,15,.55) 45%, rgba(10,11,15,.98) 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(230,201,139,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230,201,139,.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  z-index: 2;
}

.rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(228,132,63,.08);
  border: 1px solid rgba(228,132,63,.28);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--amber-3);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.rating .stars { color: var(--amber); letter-spacing: 2px; font-size: 12px; }
.rating .rating-num { color: var(--ink); font-weight: 700; }
.rating .rating-sep { opacity: .5; }
.rating .rating-label { color: var(--ink-dim); text-transform: uppercase; }

.lede {
  max-width: 620px;
  margin: 32px 0 0;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  color: var(--ink-dim);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease-out) .3s, transform .8s var(--ease-out) .3s;
}
.lede.in { opacity: 1; transform: none; }

.hero-actions {
  display: flex;
  gap: 12px;
  margin: 40px 0 56px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease-out) .45s, transform .8s var(--ease-out) .45s;
}
.hero-actions.in { opacity: 1; transform: none; }

.hero-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  max-width: 520px;
  border-radius: 16px;
  background: rgba(22,27,38,.6);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease-out) .6s, transform .8s var(--ease-out) .6s;
}
.hero-proof.in { opacity: 1; transform: none; }
.proof-avatar {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid var(--amber);
  padding: 2px;
}
.proof-avatar img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.proof-quote {
  margin: 0 0 4px;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.4;
}
.proof-meta {
  margin: 0;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: var(--pad);
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--ink-mute);
  z-index: 2;
}

/* ─── logo marquee strip ────────────────────────────────── */
.logo-strip {
  padding: 60px 0 80px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
}
.strip-label {
  text-align: center;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--ink-mute);
  margin-bottom: 32px;
}
.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
  display: flex;
  gap: 64px;
  align-items: center;
  animation: scroll-l 36s linear infinite;
  width: max-content;
}
.marquee-track .logo {
  height: 26px;
  color: var(--ink-dim);
  opacity: .55;
  flex: 0 0 auto;
  transition: opacity .3s, color .3s;
}
.marquee-track .logo:hover { opacity: 1; color: var(--ink); }

/* ─── sections ──────────────────────────────────────────── */
.section-head {
  max-width: var(--max);
  margin: 0 auto 60px;
  padding: 0 var(--pad);
}
.section-head .display-sm { margin-top: 18px; max-width: 900px; }

.section-cta {
  display: flex;
  justify-content: center;
  padding: 48px var(--pad) 0;
}

/* ─── pillars ───────────────────────────────────────────── */
.pillars {
  padding: 140px 0 120px;
  position: relative;
}
.pillar-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  align-items: start;
  border-top: 1px solid rgba(244, 239, 228, 0.08);
}
@media (max-width: 900px) {
  .pillar-grid { grid-template-columns: 1fr; }
}
.pillar-card {
  position: relative;
  padding: 56px 48px 48px;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(244, 239, 228, 0.08);
  transition: transform .6s var(--ease-out), opacity .6s var(--ease);
  opacity: 0;
  transform: translateY(28px);
}
.pillar-card:last-child { border-right: none; }
.pillar-card.in { opacity: 1; transform: none; }
.pillar-card.feature {
  background: transparent;
}
.pillar-card.feature::before {
  content: '';
  position: absolute;
  left: 48px;
  top: -1px;
  width: 40px;
  height: 1px;
  background: var(--amber);
}
.pillar-card:hover { transform: translateY(-4px); }
@media (max-width: 900px) {
  .pillar-card {
    border-right: none;
    border-bottom: 1px solid rgba(244, 239, 228, 0.08);
    padding: 44px 32px;
  }
  .pillar-card:last-child { border-bottom: none; }
  .pillar-card.feature::before { left: 32px; }
}
.pillar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  border: none;
  background: transparent;
  color: rgba(244, 239, 228, 0.55);
  margin-bottom: 40px;
  transition: color .4s var(--ease);
}
.pillar-card.feature .pillar-icon {
  background: transparent;
  color: var(--amber);
  border: none;
}
.pillar-card:hover .pillar-icon { color: var(--amber); }
.pillar-icon svg {
  display: block;
  overflow: visible;
}
.pillar-num {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  color: rgba(244, 239, 228, 0.35);
  letter-spacing: 0.22em;
  margin-bottom: 12px;
}
.pillar-card.feature .pillar-num { color: var(--amber); }
.pillar-card h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #f4efe4;
  margin: 0 0 16px;
}
.pillar-card p {
  color: rgba(244, 239, 228, 0.55);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
  max-width: 34ch;
}

/* ─── curriculum marquee loop ─────────────────────────── */
.curriculum { padding: 40px 0 120px; overflow: hidden; }

.course-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  padding: 20px 0;
}
.course-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: courseScroll 60s linear infinite;
  will-change: transform;
}
.course-marquee:hover .course-track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .course-track { animation: none; }
}

.course-card {
  position: relative;
  flex-shrink: 0;
  width: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--line);
  transition: transform .5s var(--ease-out), border-color .4s var(--ease);
  cursor: pointer;
}
.course-card:hover { transform: translateY(-6px); border-color: var(--amber); }

.course-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.course-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,11,15,.9) 100%);
  pointer-events: none;
}
.course-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out), filter .6s var(--ease);
  filter: brightness(.85) saturate(.9);
}
.course-card:hover .course-img img { transform: scale(1.06); filter: brightness(1) saturate(1); }

.course-body {
  padding: 24px 26px 28px;
  position: relative;
}
.course-num {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--amber-3);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.course-body h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
}
.course-body p {
  color: var(--ink-dim);
  font-size: 14.5px;
  margin: 0;
  line-height: 1.55;
}

/* one full set = 6 cards. Loop by translating exactly one set width; JS duplicates the set for a seamless loop. */
@keyframes courseScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-1 * (360px * 6 + 28px * 6))); }
}

@media (max-width: 600px) {
  .course-card { width: 280px; }
}

/* ─── sticky stack rooms ───────────────────────────────── */
.stack { padding: 40px 0 200px; position: relative; }
.stack-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.stack-card {
  position: sticky;
  top: 90px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 460px;
  padding: 48px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  margin-bottom: 24px;
  transform-origin: top center;
  will-change: transform, opacity;
}
.stack-card:nth-child(1) { background: linear-gradient(140deg, #16202f 0%, #10131a 100%); }
.stack-card:nth-child(2) { background: linear-gradient(140deg, #1c1614 0%, #10131a 100%); border-color: rgba(228,132,63,.2); }
.stack-card:nth-child(3) { background: linear-gradient(140deg, #14201d 0%, #10131a 100%); }
.stack-card:nth-child(4) { background: linear-gradient(140deg, #1a1725 0%, #10131a 100%); }

@media (max-width: 900px) {
  .stack-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    min-height: auto;
    position: relative;
    top: 0;
  }
}

.stack-tag {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--amber-3);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.stack-body h3 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0 0 20px;
}
.stack-body > p {
  color: var(--ink-dim);
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 24px;
  max-width: 480px;
}
.tick {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.tick li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  color: var(--ink);
}
.tick li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(228,132,63,.15);
}
.tick li::after {
  content: "";
  position: absolute;
  left: 4px; top: 10px;
  width: 6px; height: 3px;
  border-left: 1.5px solid #10131a;
  border-bottom: 1.5px solid #10131a;
  transform: rotate(-45deg);
}

/* stack visuals — bespoke premium data-viz per room */
.stack-visual {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(228,132,63,0.14), transparent 55%),
    radial-gradient(120% 100% at 0% 100%, rgba(0,0,0,0.6), transparent 55%),
    linear-gradient(180deg, #0d1017, #06080d);
  border: 1px solid rgba(244,239,228,0.08);
  box-shadow:
    inset 0 1px 0 rgba(244,239,228,0.04),
    inset 0 0 100px rgba(0,0,0,0.5);
}
.viz {
  position: absolute;
  inset: 0;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.viz-glow {
  position: absolute;
  bottom: -30%;
  right: -20%;
  width: 70%;
  height: 80%;
  background: radial-gradient(circle, rgba(228,132,63,0.28), transparent 65%);
  filter: blur(30px);
  pointer-events: none;
  animation: vizPulse 8s ease-in-out infinite;
}
.viz-chip {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(244,239,228,0.7);
  background: rgba(20,24,32,0.7);
  border: 1px solid rgba(244,239,228,0.08);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  z-index: 2;
}
.viz-chip b { color: var(--amber); font-weight: 500; letter-spacing: 0.04em; }
.chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 8px rgba(228,132,63,0.7);
  animation: chipBlink 2s ease-in-out infinite;
}
.viz-grid {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  z-index: 1;
}
.viz-caption {
  position: absolute;
  bottom: 18px;
  left: 22px;
  right: 22px;
  display: flex;
  justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: rgba(244,239,228,0.35);
  z-index: 2;
}

/* per-room accent tuning */
.viz-money .viz-glow  { background: radial-gradient(circle, rgba(228,132,63,0.32), transparent 65%); }
.viz-craft .viz-glow  { background: radial-gradient(circle, rgba(228,132,63,0.28), transparent 65%); bottom: 20%; right: 20%; width: 60%; height: 60%; }
.viz-body .viz-glow   { background: radial-gradient(circle, rgba(228,132,63,0.22), transparent 65%); }
.viz-council .viz-glow{ background: radial-gradient(circle, rgba(228,132,63,0.32), transparent 65%); bottom: 30%; right: 30%; width: 45%; height: 45%; }

@keyframes vizPulse {
  0%, 100% { opacity: .7; transform: scale(1); }
  50%      { opacity: 1;  transform: scale(1.08); }
}
@keyframes chipBlink {
  0%, 100% { opacity: 1; }
  50%      { opacity: .45; }
}

@keyframes pulse {
  0%, 100% { opacity: .8; transform: scale(1); }
  50%      { opacity: 1;  transform: scale(1.05); }
}
@keyframes rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ─── testimonials ─────────────────────────────────────── */
.testimonials { padding: 40px 0 120px; }
.test-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .test-grid { grid-template-columns: 1fr; } }

.test-card {
  margin: 0;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--surface-2);
  border: 1px solid var(--line);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out), border-color .3s var(--ease);
}
.test-card.in { opacity: 1; transform: none; }
.test-card:hover { border-color: var(--line-2); }
.test-card blockquote {
  margin: 0 0 24px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink);
  position: relative;
  padding-top: 24px;
}
.test-card blockquote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--amber);
}
.test-card figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
}
.test-card figcaption img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line-2);
}
.t-name {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}
.t-role {
  display: block;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 3px;
}

/* ─── offer ────────────────────────────────────────────── */
.offer {
  max-width: 1240px;
  margin: 0 auto;
  padding: 120px 40px 40px;
}
.offer-head {
  text-align: center;
  margin-bottom: 48px;
}
.offer-head .eyebrow { display: inline-block; }
.offer-head h2 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 56px);
  letter-spacing: -0.025em;
  margin: 14px 0 14px;
  color: var(--ink);
}
.offer-head p {
  color: var(--ink-dim);
  max-width: 620px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.55;
}
.offer-card {
  padding: 60px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse at top left, rgba(228,132,63,.12), transparent 50%),
    linear-gradient(180deg, #0f1a26, #0a1017);
  border: 1px solid rgba(228,132,63,.24);
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.offer-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, rgba(228,132,63,.5), transparent 40%, rgba(228,132,63,.2));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
@media (max-width: 900px) {
  .offer { padding: 80px 20px 24px; }
  .offer-head { margin-bottom: 32px; }
  .offer-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 32px;
  }
}

.offer-left .display-sm { margin: 18px 0 20px; }
.offer-lede {
  color: var(--ink-dim);
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 28px;
  max-width: 460px;
}
.offer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.offer-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: 15px;
  color: var(--ink);
}
.offer-list li:first-child { border-top: 0; padding-top: 0; }
.offer-list b {
  color: var(--amber-3);
  font-weight: 500;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  margin-left: auto;
  padding-left: 12px;
  white-space: nowrap;
}
.check {
  flex: 0 0 auto;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--amber);
  position: relative;
  margin-top: 1px;
  box-shadow: 0 0 0 3px rgba(228,132,63,.15);
}
.check::after {
  content: "";
  position: absolute;
  left: 6px; top: 8px;
  width: 8px; height: 4px;
  border-left: 1.6px solid #10131a;
  border-bottom: 1.6px solid #10131a;
  transform: rotate(-45deg);
}

.offer-right {
  padding: 32px;
  border-radius: 18px;
  background: rgba(5,6,9,.55);
  border: 1px solid var(--line-2);
  text-align: center;
  backdrop-filter: blur(8px);
}
.price-block { margin-bottom: 24px; }
.strike {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  text-decoration: line-through;
  text-decoration-color: rgba(228,132,63,.5);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  font-family: var(--f-display);
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 10px;
}
.price .dollar {
  font-size: 32px;
  padding-top: 12px;
  color: var(--amber-3);
}
.price .amount {
  font-size: clamp(64px, 10vw, 96px);
  letter-spacing: -0.03em;
}
.price-note {
  display: block;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.offer-right .btn { width: 100%; justify-content: center; }
.pay-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.pay-note {
  width: 100%;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 8px;
}

/* ─── mentor ───────────────────────────────────────────── */
.mentor { padding: 60px 0 140px; }
.mentor-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .mentor-grid { grid-template-columns: 1fr; gap: 40px; } }

.mentor-copy .display-sm { margin: 18px 0 24px; }
.mentor-copy p {
  color: var(--ink-dim);
  font-size: 16.5px;
  line-height: 1.6;
  margin: 0 0 20px;
  max-width: 520px;
}
.mentor-facts {
  list-style: none;
  padding: 0;
  margin: 28px 0 32px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.mentor-facts li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mentor-facts span {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -0.03em;
  color: var(--amber-3);
  line-height: 1;
}
.mentor-facts em {
  font-style: normal;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.mentor-photo {
  position: relative;
}
.photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--surface-2);
  border: 1px solid var(--line);
  transform: rotate(-1.5deg);
}
.photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.9) saturate(.95);
}
.frame-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(10,11,15,.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}
.frame-tag .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 3px rgba(228,132,63,.2);
  animation: pulse 2s ease-in-out infinite;
}

/* ─── faq ──────────────────────────────────────────────── */
.faq { padding: 40px 0 100px; }
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--pad);
}
.faq-list details {
  border-top: 1px solid var(--line);
  padding: 4px 0;
}
.faq-list details:last-of-type { border-bottom: 1px solid var(--line); }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 8px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color .3s var(--ease);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--amber-3); }
.chev {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  position: relative;
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .35s var(--ease);
}
.chev::before, .chev::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 10px; height: 1.5px;
  background: var(--ink);
  transform-origin: center;
  transition: transform .35s var(--ease);
}
.chev::before { transform: translate(-50%,-50%) rotate(0deg); }
.chev::after  { transform: translate(-50%,-50%) rotate(90deg); }
details[open] .chev {
  background: var(--amber);
  border-color: var(--amber);
}
details[open] .chev::before,
details[open] .chev::after {
  background: #10131a;
}
details[open] .chev::after { transform: translate(-50%,-50%) rotate(0deg); }

.faq-body {
  padding: 0 8px 24px;
  color: var(--ink-dim);
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 680px;
}
.faq-body p { margin: 0; }

/* ─── footer ───────────────────────────────────────────── */
.footer {
  background: #050609;
  border-top: 1px solid var(--line);
  padding: 60px var(--pad) 32px;
}
.footer-top {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.foot-note {
  color: var(--ink-mute);
  font-size: 13px;
  max-width: 380px;
  margin: 0;
  text-align: right;
}
.footer-bar {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.footer-bar a { transition: color .3s var(--ease); }
.footer-bar a:hover { color: var(--amber-3); }

/* ─── reveal utility ───────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
[data-reveal].in {
  opacity: 1;
  transform: none;
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .display .word { opacity: 1; transform: none; }
  [data-reveal] { opacity: 1; transform: none; }
  .stack-card { position: relative; top: 0; }
}

/* ═══════════════════════════════════════════════════════════
   V2 CRO ADDITIONS
   Press band · Shortcut vs · Value stack · Countdown ·
   Guarantee seal · Inaction cost · Offer testimonial ·
   Not-for grid · Extended FAQ · Sticky mobile CTA
═══════════════════════════════════════════════════════════ */

/* press band — sits above members marquee */
.press-label {
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 239, 228, 0.42);
  margin: 0 auto 32px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .8s ease, transform .8s ease;
}
.press-label.in { opacity: 1; transform: none; }

.press-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1s ease;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%);
}
.press-marquee.in { opacity: 1; }

.press-track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  animation: press-scroll 60s linear infinite;
  will-change: transform;
}
.press-marquee:hover .press-track { animation-play-state: paused; }

@keyframes press-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.press-logo {
  color: rgba(244, 239, 228, 0.55);
  transition: color .3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.press-logo:hover { color: rgba(244, 239, 228, 0.9); }
.press-logo.forbes { font-family: 'Cabinet Grotesk', serif; font-weight: 900; font-size: 26px; letter-spacing: -0.02em; }
.press-logo.fc { font-family: 'Cabinet Grotesk', sans-serif; font-weight: 800; font-size: 16px; letter-spacing: 0.02em; text-transform: uppercase; }
.press-logo.entr { font-family: 'Cabinet Grotesk', serif; font-weight: 700; font-style: italic; font-size: 22px; letter-spacing: -0.01em; }
.press-logo.bi { font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 13px; letter-spacing: 0.22em; }
.press-logo.mens { font-family: 'Cabinet Grotesk', sans-serif; font-weight: 900; font-size: 14px; letter-spacing: 0.28em; }
.press-logo.tc { font-family: 'Cabinet Grotesk', sans-serif; font-weight: 800; font-size: 16px; letter-spacing: 0.02em; text-transform: uppercase; }
.press-logo.inc { font-family: 'Cabinet Grotesk', serif; font-weight: 900; font-style: italic; font-size: 26px; letter-spacing: -0.02em; }

@media (max-width: 720px) {
  .press-track { gap: 44px; animation-duration: 45s; }
  .press-logo.forbes, .press-logo.inc { font-size: 20px; }
  .press-logo.entr { font-size: 16px; }
  .press-logo.fc, .press-logo.tc { font-size: 12px; }
  .press-logo.bi, .press-logo.mens { font-size: 10px; letter-spacing: 0.18em; }
}

@media (prefers-reduced-motion: reduce) {
  .press-track { animation: none; }
}

/* shortcut / vs section */
.shortcut {
  max-width: 1240px;
  margin: 0 auto;
  padding: 120px 40px 40px;
}
.vs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.vs-col {
  background: #10131a;
  border: 1px solid rgba(244, 239, 228, 0.08);
  border-radius: 22px;
  padding: 40px 36px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.vs-col.in { opacity: 1; transform: none; }
.vs-col.vs-with {
  background: linear-gradient(180deg, rgba(228, 132, 63, 0.08) 0%, #10131a 60%);
  border-color: rgba(228, 132, 63, 0.28);
  box-shadow: 0 0 60px rgba(228, 132, 63, 0.06) inset;
}
.vs-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 239, 228, 0.5);
  padding: 6px 12px;
  border: 1px solid rgba(244, 239, 228, 0.15);
  border-radius: 999px;
  margin-bottom: 24px;
}
.vs-tag.amber {
  color: #e4843f;
  border-color: rgba(228, 132, 63, 0.35);
  background: rgba(228, 132, 63, 0.08);
}
.vs-col h3 {
  font-family: 'Cabinet Grotesk', serif;
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: #f4efe4;
  margin: 0 0 20px;
  line-height: 1.05;
}
.vs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.vs-list li {
  font-family: 'General Sans', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(244, 239, 228, 0.75);
  padding-left: 28px;
  position: relative;
}
.vs-list li b { color: #f4efe4; font-weight: 700; }
.vs-list.bad li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(244, 239, 228, 0.06);
  border: 1px solid rgba(244, 239, 228, 0.15);
}
.vs-list.bad li::after {
  content: '';
  position: absolute;
  left: 4px; top: 12px;
  width: 6px; height: 2px;
  background: rgba(244, 239, 228, 0.35);
  border-radius: 2px;
}
.vs-list.good li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(228, 132, 63, 0.15);
  border: 1px solid rgba(228, 132, 63, 0.45);
}
.vs-list.good li::after {
  content: '';
  position: absolute;
  left: 3px; top: 10px;
  width: 4px; height: 7px;
  border: solid #e4843f;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}
@media (max-width: 820px) {
  .shortcut { padding: 80px 20px 20px; }
  .vs-grid { grid-template-columns: 1fr; }
  .vs-col { padding: 32px 24px; }
  .vs-col h3 { font-size: 26px; }
}

/* offer — value stack total */
.stack-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(244, 239, 228, 0.03);
  border: 1px dashed rgba(244, 239, 228, 0.12);
  border-radius: 12px;
  margin-bottom: 14px;
}
.stack-total span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 239, 228, 0.55);
}
.total-strike {
  font-family: 'Cabinet Grotesk', serif;
  font-size: 20px;
  font-weight: 800;
  color: rgba(244, 239, 228, 0.5);
  text-decoration: line-through;
  text-decoration-color: rgba(228, 132, 63, 0.55);
  text-decoration-thickness: 2px;
}
.day-price {
  display: block;
  margin-top: 10px;
  font-family: 'General Sans', sans-serif;
  font-size: 13px;
  color: rgba(244, 239, 228, 0.6);
}
.day-price b { color: #e4843f; font-weight: 600; }

/* countdown */
.countdown {
  margin-top: 20px;
  padding: 18px 20px;
  background: linear-gradient(180deg, rgba(228, 132, 63, 0.09), rgba(228, 132, 63, 0.03));
  border: 1px solid rgba(228, 132, 63, 0.28);
  border-radius: 16px;
}
.cd-label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(228, 132, 63, 0.9);
  margin-bottom: 12px;
  text-align: center;
}
.cd-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.cd-cell {
  text-align: center;
  padding: 10px 6px;
  background: rgba(10, 11, 15, 0.4);
  border: 1px solid rgba(228, 132, 63, 0.15);
  border-radius: 10px;
}
.cd-cell b {
  display: block;
  font-family: 'Cabinet Grotesk', serif;
  font-size: 26px;
  font-weight: 800;
  color: #f4efe4;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.cd-cell em {
  display: block;
  margin-top: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-style: normal;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 239, 228, 0.5);
}

/* micro-trust row under CTA */
.micro-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 239, 228, 0.5);
}

/* guarantee seal */
.guarantee {
  margin-top: 24px;
  padding: 20px 20px;
  background: rgba(244, 239, 228, 0.02);
  border: 1px solid rgba(244, 239, 228, 0.08);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  align-items: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .8s ease, transform .8s ease;
}
.guarantee.in { opacity: 1; transform: none; }
.guarantee .seal {
  color: #e4843f;
  animation: sealSpin 40s linear infinite;
}
@keyframes sealSpin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .guarantee .seal { animation: none; }
}
.g-copy b {
  display: block;
  font-family: 'Cabinet Grotesk', serif;
  font-size: 16px;
  font-weight: 800;
  color: #f4efe4;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.g-copy p {
  font-family: 'General Sans', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(244, 239, 228, 0.65);
  margin: 0;
}

/* inaction cost */
.inaction {
  margin-top: 16px;
  padding: 18px 20px;
  background: rgba(10, 11, 15, 0.5);
  border-left: 3px solid rgba(228, 132, 63, 0.5);
  border-radius: 4px 12px 12px 4px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .8s ease, transform .8s ease;
}
.inaction.in { opacity: 1; transform: none; }
.in-label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 239, 228, 0.5);
  margin-bottom: 4px;
}
.in-num {
  display: block;
  font-family: 'Cabinet Grotesk', serif;
  font-size: 34px;
  font-weight: 800;
  color: #e4843f;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.in-sub {
  display: block;
  font-family: 'General Sans', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(244, 239, 228, 0.65);
}

/* offer testimonial */
.offer-testimonial {
  margin: 16px 0 0;
  padding: 18px 20px;
  background: linear-gradient(180deg, rgba(244, 239, 228, 0.04), rgba(244, 239, 228, 0.01));
  border: 1px solid rgba(244, 239, 228, 0.08);
  border-radius: 14px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .8s ease, transform .8s ease;
}
.offer-testimonial.in { opacity: 1; transform: none; }
.offer-testimonial blockquote {
  margin: 0 0 10px;
  font-family: 'Cabinet Grotesk', serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.45;
  color: #f4efe4;
}
.offer-testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'General Sans', sans-serif;
  font-size: 12px;
  color: rgba(244, 239, 228, 0.55);
}
.offer-testimonial figcaption img {
  width: 32px; height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(228, 132, 63, 0.35);
}
.offer-testimonial figcaption b { color: #f4efe4; font-weight: 600; }

/* ───── fit section (dedicated "not for everyone") ───── */
.fit {
  padding: 140px 0 120px;
  position: relative;
}
.fit::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(1160px, calc(100% - 2 * var(--pad)));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 239, 228, 0.10) 20%, rgba(244, 239, 228, 0.10) 80%, transparent);
}
.fit-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--pad);
}
.fit-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 96px;
}
.fit-head .eyebrow { margin-bottom: 28px; }
.fit-head h2 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 500;
  font-size: clamp(40px, 5.2vw, 68px);
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: #f4efe4;
  margin: 0 0 24px;
}
.fit-head h2 em {
  font-style: italic;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 500;
  color: var(--amber);
}
.fit-sub {
  font-family: 'General Sans', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(244, 239, 228, 0.55);
  max-width: 560px;
  margin: 0 auto;
}
.fit-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  max-width: 1040px;
  margin: 0 auto;
  align-items: start;
}
.fit-col {
  padding: 0 64px;
}
.fit-col:first-child { padding-left: 0; }
.fit-col:last-child { padding-right: 0; }
.fit-divider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(180deg, transparent, rgba(244, 239, 228, 0.10) 15%, rgba(244, 239, 228, 0.10) 85%, transparent);
  min-height: 320px;
}
.fit-label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 239, 228, 0.40);
  margin-bottom: 40px;
}
.fit-label-yes { color: var(--amber); }
.fit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.fit-list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  font-family: 'General Sans', sans-serif;
  font-size: 17px;
  line-height: 1.5;
  color: rgba(244, 239, 228, 0.85);
  letter-spacing: -0.005em;
}
.fit-list svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--amber);
}
.fit-list-no li { color: rgba(244, 239, 228, 0.45); }
.fit-list-no svg { color: rgba(244, 239, 228, 0.30); }
.fit-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 96px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.fit-foot-line {
  flex: 1;
  height: 1px;
  background: rgba(244, 239, 228, 0.10);
}
.fit-foot p {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  color: rgba(244, 239, 228, 0.55);
  margin: 0;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
@media (max-width: 860px) {
  .fit { padding: 96px 0 88px; }
  .fit-head { margin-bottom: 64px; }
  .fit-head h2 { font-size: clamp(32px, 8vw, 44px); }
  .fit-grid { grid-template-columns: 1fr; gap: 48px; }
  .fit-col { padding: 0; }
  .fit-divider { display: none; }
  .fit-list { gap: 20px; }
  .fit-list li { font-size: 16px; }
  .fit-foot { margin-top: 64px; gap: 16px; }
  .fit-foot p { font-size: 14px; white-space: normal; text-align: center; }
}

/* sticky mobile CTA bar */
.sticky-cta {
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px 10px 18px;
  background: rgba(10, 11, 15, 0.92);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(244, 239, 228, 0.12);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  transform: translateY(120%);
  transition: transform .4s cubic-bezier(.22,.61,.36,1);
}
.sticky-cta.show { transform: translateY(0); }
.sc-price { display: flex; align-items: baseline; gap: 8px; }
.sc-price b {
  font-family: 'Cabinet Grotesk', serif;
  font-weight: 800;
  font-size: 22px;
  color: #f4efe4;
  letter-spacing: -0.01em;
}
.sc-strike {
  font-family: 'General Sans', sans-serif;
  font-size: 13px;
  color: rgba(244, 239, 228, 0.4);
  text-decoration: line-through;
}
.sticky-cta .btn-primary {
  padding: 10px 16px;
  font-size: 14px;
}
@media (max-width: 720px) {
  .sticky-cta { display: flex; }
}

/* ─── offer bundle mockup (all-black premium placeholder) ─── */
.bundle-mock {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  margin-bottom: 44px;
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(228,132,63,0.10), transparent 55%),
    radial-gradient(120% 100% at 0% 100%, rgba(0,0,0,0.6), transparent 55%),
    linear-gradient(180deg, #0d1017, #05070b);
  border: 1px solid rgba(244,239,228,0.08);
  box-shadow:
    inset 0 1px 0 rgba(244,239,228,0.04),
    inset 0 0 120px rgba(0,0,0,0.55),
    0 30px 80px rgba(0,0,0,0.45);
}
.bundle-glow {
  position: absolute;
  bottom: -30%;
  right: -20%;
  width: 70%;
  height: 90%;
  background: radial-gradient(circle, rgba(228,132,63,0.22), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
  animation: vizPulse 9s ease-in-out infinite;
}
.bundle-chip {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(244,239,228,0.7);
  background: rgba(20,24,32,0.7);
  border: 1px solid rgba(244,239,228,0.08);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  z-index: 5;
}
.bundle-chip b { color: var(--amber); font-weight: 500; letter-spacing: 0.04em; }

/* laptop */
.mock-laptop {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-2deg);
  width: 72%;
  z-index: 2;
}
.laptop-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  background: #000;
  border-radius: 10px 10px 3px 3px;
  border: 1px solid rgba(244,239,228,0.14);
  border-bottom: 0;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(244,239,228,0.06),
    inset 0 0 60px rgba(0,0,0,0.9);
  padding: 14px 16px 12px;
}
.screen-bar {
  display: flex;
  gap: 5px;
  margin-bottom: 14px;
}
.screen-bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(244,239,228,0.14);
}
.screen-bar span:first-child { background: rgba(228,132,63,0.5); }
.screen-grid {
  position: absolute;
  inset: 40px 16px 20px;
  background-image:
    linear-gradient(rgba(244,239,228,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,239,228,0.04) 1px, transparent 1px);
  background-size: 32px 24px;
  mask-image: linear-gradient(180deg, #000, transparent 80%);
}
.screen-lines {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 4px;
  z-index: 2;
}
.screen-lines span {
  height: 6px;
  background: rgba(244,239,228,0.09);
  border-radius: 3px;
}
.screen-lines span:nth-child(2) { background: rgba(244,239,228,0.14); }
.screen-amber {
  position: absolute;
  right: 18%;
  bottom: 22%;
  width: 42%;
  height: 22%;
  background: linear-gradient(135deg, rgba(228,132,63,0.4), rgba(228,132,63,0.08));
  border: 1px solid rgba(228,132,63,0.35);
  border-radius: 6px;
  box-shadow: 0 0 30px rgba(228,132,63,0.25);
}
.laptop-base {
  position: relative;
  width: 108%;
  height: 8px;
  margin-left: -4%;
  background: linear-gradient(180deg, #1a1e26, #0a0c11);
  border-radius: 2px 2px 8px 8px;
  border: 1px solid rgba(244,239,228,0.12);
  border-top: 0;
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
}
.laptop-base::before {
  content: "";
  position: absolute;
  top: 0;
  left: 42%;
  width: 16%;
  height: 3px;
  background: rgba(244,239,228,0.06);
  border-radius: 0 0 6px 6px;
}

/* phone */
.mock-phone {
  position: absolute;
  right: 8%;
  bottom: 10%;
  width: 17%;
  aspect-ratio: 9/19;
  background: #000;
  border-radius: 16px;
  border: 1.5px solid rgba(244,239,228,0.18);
  overflow: hidden;
  transform: rotate(8deg);
  z-index: 4;
  box-shadow:
    inset 0 1px 0 rgba(244,239,228,0.08),
    inset 0 0 30px rgba(0,0,0,0.9),
    -8px 16px 30px rgba(0,0,0,0.5);
  padding: 8px 6px;
}
.phone-notch {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 8px;
  background: #000;
  border-radius: 0 0 6px 6px;
  border: 1px solid rgba(244,239,228,0.14);
  border-top: 0;
}
.phone-screen {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.phone-tile {
  border-radius: 4px;
  background: rgba(244,239,228,0.06);
  border: 1px solid rgba(244,239,228,0.05);
}
.phone-tile-1 { height: 28%; }
.phone-tile-1 { min-height: 40px; background: linear-gradient(135deg, rgba(228,132,63,0.3), rgba(228,132,63,0.05)); border-color: rgba(228,132,63,0.25); }
.phone-tile-2 { min-height: 24px; }
.phone-tile-3 { min-height: 20px; background: rgba(244,239,228,0.04); }

/* card / booklet */
.mock-card {
  position: absolute;
  left: 6%;
  bottom: 12%;
  width: 26%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #0e1218, #05070b);
  border-radius: 6px;
  border: 1px solid rgba(244,239,228,0.10);
  transform: rotate(-6deg);
  z-index: 3;
  padding: 12px 14px;
  box-shadow:
    inset 0 1px 0 rgba(244,239,228,0.05),
    12px 12px 24px rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card-header {
  display: flex;
  align-items: center;
  gap: 6px;
}
.card-mark {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--amber);
  background: rgba(228,132,63,0.15);
}
.card-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 7px;
  letter-spacing: 0.22em;
  color: rgba(244,239,228,0.55);
}
.card-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.card-lines span {
  height: 3px;
  background: rgba(244,239,228,0.10);
  border-radius: 2px;
}
.card-lines span:first-child { background: var(--amber); opacity: 0.7; height: 4px; }

@media (max-width: 720px) {
  .bundle-mock { aspect-ratio: 4/3; margin-bottom: 32px; }
  .mock-laptop { width: 78%; }
  .mock-phone { width: 20%; }
  .mock-card { width: 30%; }
}

/* ─── receipts — airy editorial slider under offer ─── */
.receipts {
  padding: 140px 0 160px;
  position: relative;
}
.testi-slider {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.testi-slider-head {
  text-align: center;
  margin-bottom: 80px;
}
.testi-slider-head .eyebrow {
  display: inline-block;
}
.testi-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 56px);
  letter-spacing: -0.025em;
  margin: 14px 0 0;
  color: var(--ink);
}

.testi-viewport {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  overflow: visible;
}
.testi-track {
  position: relative;
  min-height: 260px;
}
.testi-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0 20px;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  opacity: 0;
  transform: translateX(30px);
  pointer-events: none;
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.testi-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.testi-slide.is-prev {
  opacity: 0;
  transform: translateX(-30px);
}

.testi-mark {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 72px;
  line-height: 0.6;
  color: var(--amber);
  opacity: 0.55;
  display: block;
  height: 36px;
  margin: 0 auto 20px;
  text-align: center;
}
.testi-slide blockquote {
  margin: 0 auto 48px;
  max-width: 720px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: -0.015em;
  line-height: 1.35;
  color: var(--ink);
  text-align: center;
}
.testi-slide figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
}
.testi-slide figcaption img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(244,239,228,0.14);
}
.testi-slide figcaption div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testi-slide .t-name {
  font-weight: 600;
  color: var(--ink);
  font-size: 14.5px;
}
.testi-slide .t-role {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.testi-stars {
  margin-left: auto;
  color: var(--amber);
  letter-spacing: 3px;
  font-size: 14px;
  opacity: .9;
}

/* nav arrows */
.testi-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(20,24,32,0.8);
  border: 1px solid rgba(244,239,228,0.12);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
  backdrop-filter: blur(8px);
  z-index: 3;
}
.testi-nav:hover {
  background: rgba(228,132,63,0.15);
  border-color: var(--amber);
  transform: translateY(-50%) scale(1.06);
}
.testi-prev { left: -80px; }
.testi-next { right: -80px; }
.testi-nav {
  background: transparent;
  border-color: rgba(244,239,228,0.10);
}

/* dots */
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 56px;
}
.testi-dot {
  width: 24px;
  height: 3px;
  border-radius: 2px;
  border: 0;
  background: rgba(244,239,228,0.14);
  cursor: pointer;
  padding: 0;
  transition: background .4s var(--ease), width .4s var(--ease);
}
.testi-dot:hover { background: rgba(244,239,228,0.28); }
.testi-dot.is-active {
  background: var(--amber);
  width: 42px;
}

@media (max-width: 900px) {
  .receipts { padding: 90px 0 100px; }
  .testi-slider-head { margin-bottom: 56px; }
  .testi-slide { padding: 0 8px; }
  .testi-track { min-height: 340px; }
  .testi-prev { left: -8px; width: 38px; height: 38px; }
  .testi-next { right: -8px; width: 38px; height: 38px; }
  .testi-viewport { padding: 0 4px; }
  .testi-slide figcaption { gap: 12px; }
  .testi-stars { margin-left: 0; width: 100%; text-align: center; }
  .testi-dots { margin-top: 40px; }
}
