/* =========================================================
   LUKE DE JONGE — MASTERS PERFORMANCE
   Design tokens
   ========================================================= */
:root {
  /* Palette — warm near-black, warm white, antique gold */
  --ink:        #0B0B0E;
  --ink-2:      #111114;
  --surface:    #16161A;
  --surface-2:  #1D1D22;
  --line:       rgba(255, 255, 255, 0.09);
  --line-strong:rgba(255, 255, 255, 0.16);

  --paper:      #F6F4EF;   /* warm white */
  --paper-dim:  #B9B7B1;   /* muted text */
  --paper-faint:#76757A;   /* faint labels */

  --gold:       #C9A227;
  --gold-light: #E7CB72;
  --gold-deep:  #9A7716;
  --gold-grad:  linear-gradient(135deg, #E7CB72 0%, #C9A227 45%, #9A7716 100%);
  --gold-sheen: linear-gradient(180deg, #F0DC97 0%, #CDA62C 50%, #A07C19 100%);

  /* Type */
  --display: "Archivo", "Arial Narrow", system-ui, sans-serif;
  --body:    "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  /* Scale */
  --container: 1180px;
  --gutter: clamp(20px, 5vw, 48px);
  --section-y: clamp(72px, 11vw, 160px);
  --radius: 14px;
  --radius-lg: 22px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* =========================================================
   Reset / base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  font-family: var(--body);
  background: var(--ink);
  color: var(--paper);
  line-height: 1.6;
  font-size: clamp(16px, 1.1vw, 18px);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

::selection { background: var(--gold); color: var(--ink); }

/* Background atmosphere — subtle gold glow, very restrained */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(900px 600px at 78% -8%, rgba(201,162,39,0.10), transparent 60%),
    radial-gradient(700px 700px at -10% 18%, rgba(201,162,39,0.045), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

/* =========================================================
   Layout primitives
   ========================================================= */
.wrap {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  position: relative;
  z-index: 1;
}

.section { padding-block: var(--section-y); position: relative; z-index: 1; }
.section--tight { padding-block: clamp(56px, 8vw, 110px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

h1, h2, h3 { font-family: var(--display); font-weight: 800; line-height: 1.02; letter-spacing: -0.02em; }

.h-display {
  font-size: clamp(2.6rem, 7vw, 5.3rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.h-section {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  letter-spacing: -0.025em;
}
.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--paper-dim);
  max-width: 60ch;
  line-height: 1.55;
}
.gold-text {
  background: var(--gold-sheen);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-head { max-width: 760px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .lede { margin-inline: auto; }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  --pad-y: 16px; --pad-x: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 100px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }

.btn--gold {
  background: var(--gold-sheen);
  color: #1A1407;
  box-shadow: 0 8px 24px rgba(201,162,39,0.28), inset 0 1px 0 rgba(255,255,255,0.35);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(201,162,39,0.42), inset 0 1px 0 rgba(255,255,255,0.45); }

.btn--ghost {
  background: transparent;
  color: var(--paper);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }

.btn--solid {
  background: var(--paper);
  color: var(--ink);
}
.btn--solid:hover { transform: translateY(-2px); background: #fff; }

.btn--block { width: 100%; }
.btn--lg { --pad-y: 19px; --pad-x: 36px; font-size: 1.05rem; }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* =========================================================
   Header / nav
   ========================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(11,11,14,0.78);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.brand .mark {
  width: 34px; height: 34px;
  flex: none;
}
.brand .brand-name { font-size: 1.04rem; line-height: 1; }
.brand .brand-sub {
  display: block;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 4px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  padding: 0;
}
.nav-links a {
  font-size: 0.95rem;
  color: var(--paper-dim);
  transition: color .2s var(--ease);
}
.nav-links a:hover { color: var(--paper); }
.nav-cta { display: inline-flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 18px; height: 2px;
  background: var(--paper);
  transform: translate(-50%, -50%);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle span::before { transform: translate(-50%, -7px); }
.nav-toggle span::after  { transform: translate(-50%, 7px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translate(-50%, 0) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translate(-50%, 0) rotate(-45deg); }

/* =========================================================
   Offers-first hero
   ========================================================= */
.offers-hero { padding-top: 124px; padding-bottom: clamp(56px, 8vw, 96px); position: relative; }
.offers-hero-head { max-width: 880px; margin-bottom: clamp(34px, 5vw, 56px); }
.offers-hero-head h1 { margin-bottom: 22px; font-size: clamp(2.2rem, 5.4vw, 4rem); }
.offers-hero-head .lede { max-width: 64ch; }
.offers-hint {
  margin-top: 28px;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.92rem; color: var(--paper-dim);
}
.offers-hint b { color: var(--gold-light); font-weight: 700; }
.offers-hero .offers-grid { margin-top: 0; }

/* Split (text + chart) used by "why athletes struggle" */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
}
.split .lede { margin-bottom: 28px; }
.struggle-pivot { margin: 26px 0 28px; }
.struggle-pivot .small { font-family: var(--display); font-weight: 700; color: var(--paper-faint); font-size: 1.05rem; }
.struggle-pivot .big { font-family: var(--display); font-weight: 800; font-size: clamp(1.6rem, 3.4vw, 2.5rem); letter-spacing: -0.025em; margin-top: 4px; }

/* Signature chart */
.hero-viz {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--surface) 0%, var(--ink-2) 100%);
  padding: 26px 26px 22px;
  box-shadow: 0 40px 90px -50px rgba(0,0,0,0.9);
}
.hero-viz .viz-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper-faint);
  margin-bottom: 14px;
}
.hero-viz svg { width: 100%; height: auto; }
.viz-legend {
  display: flex;
  gap: 22px;
  margin-top: 16px;
  font-size: 0.82rem;
  flex-wrap: wrap;
}
.viz-legend .key { display: inline-flex; align-items: center; gap: 8px; color: var(--paper-dim); }
.viz-legend .swatch { width: 16px; height: 3px; border-radius: 2px; }
.viz-legend .swatch--gold { background: var(--gold); }
.viz-legend .swatch--dim { background: var(--paper-faint); }

/* draw animation */
.viz-line { fill: none; stroke-linecap: round; }
.viz-line--decline { stroke: #56555B; stroke-width: 2.5; stroke-dasharray: 4 6; }
.viz-line--rise {
  stroke: url(#goldStroke);
  stroke-width: 4;
  stroke-dasharray: 620;
  stroke-dashoffset: 620;
  animation: draw 2s var(--ease) 0.3s forwards;
  filter: drop-shadow(0 4px 14px rgba(201,162,39,0.4));
}
@keyframes draw { to { stroke-dashoffset: 0; } }
.viz-dot { opacity: 0; animation: pop .5s var(--ease) 2.1s forwards; }
@keyframes pop { from { opacity: 0; transform: scale(0); } to { opacity: 1; transform: scale(1); } }

/* =========================================================
   Logo strip / micro-proof
   ========================================================= */
.proof-strip {
  border-block: 1px solid var(--line);
  padding-block: 26px;
}
.proof-strip .wrap { display: flex; align-items: center; justify-content: center; gap: clamp(20px,4vw,56px); flex-wrap: wrap; }
.proof-strip p { font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--paper-faint); }
.proof-strip .tags { display: flex; gap: clamp(16px,3vw,40px); flex-wrap: wrap; }
.proof-strip .tags span { font-family: var(--display); font-weight: 700; color: var(--paper-dim); font-size: 0.95rem; letter-spacing: 0.02em; }

/* =========================================================
   Problem
   ========================================================= */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 52px;
}
.pain {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  background: linear-gradient(180deg, var(--surface) 0%, transparent 130%);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.pain:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.pain .pain-ico {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 11px;
  border: 1px solid var(--line-strong);
  color: var(--gold-light);
  margin-bottom: 18px;
}
.pain h3 { font-size: 1.12rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 8px; }
.pain p { color: var(--paper-dim); font-size: 0.96rem; }

.pivot {
  margin-top: 56px;
  text-align: center;
  padding: clamp(40px, 6vw, 72px) var(--gutter);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: radial-gradient(120% 140% at 50% 0%, rgba(201,162,39,0.10), transparent 60%), var(--ink-2);
}
.pivot .small { font-family: var(--display); font-weight: 700; color: var(--paper-faint); font-size: 1.1rem; letter-spacing: -0.01em; }
.pivot .big {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.025em;
  margin-block: 6px 28px;
}

/* =========================================================
   Solution (flagship)
   ========================================================= */
.solution { background: linear-gradient(180deg, transparent, rgba(255,255,255,0.012)); }
.flagship {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(28px, 4vw, 56px);
  margin-top: 54px;
  border: 1px solid var(--gold-deep);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(140% 100% at 100% 0%, rgba(201,162,39,0.12), transparent 55%),
    var(--ink-2);
  position: relative;
}
.flagship-body { padding: clamp(32px, 4vw, 52px); }
.flagship-body h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 6px; }
.flagship-body .tag { color: var(--paper-dim); margin-bottom: 26px; }
.feature-list { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 26px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.96rem; color: var(--paper); }
.feature-list .tick {
  flex: none; width: 22px; height: 22px; margin-top: 1px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--gold-sheen);
  color: var(--ink);
}
.feature-list .tick svg { width: 12px; height: 12px; }

.flagship-aside {
  background: linear-gradient(180deg, var(--surface) 0%, var(--ink) 100%);
  border-left: 1px solid var(--line);
  padding: clamp(32px, 4vw, 48px) clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.badge-pop {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-sheen);
  color: #1A1407;
  font-family: var(--display); font-weight: 800;
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 100px;
  margin-bottom: 22px;
}
.price-block { display: flex; align-items: flex-end; gap: 6px; margin-bottom: 6px; }
.price-block .amount { font-family: var(--display); font-weight: 800; font-size: clamp(3rem, 6vw, 4.2rem); line-height: 0.9; letter-spacing: -0.03em; }
.price-block .per { color: var(--paper-dim); font-weight: 600; padding-bottom: 8px; }
.price-note { color: var(--paper-faint); font-size: 0.88rem; margin-bottom: 26px; }
.flagship-aside .btn { margin-bottom: 14px; }
.assurance { display: flex; align-items: center; gap: 9px; font-size: 0.85rem; color: var(--paper-dim); }
.assurance svg { color: var(--gold-light); flex: none; }

/* =========================================================
   Value stack
   ========================================================= */
.value-wrap {
  margin-top: 52px;
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: clamp(24px, 3vw, 44px);
  align-items: start;
}
.value-table {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink-2);
}
.value-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
}
.value-row:last-child { border-bottom: none; }
.value-row .vr-ico { color: var(--gold-light); width: 22px; height: 22px; flex: none; }
.value-row .vr-name b { font-weight: 700; font-family: var(--display); font-size: 1.02rem; display: block; }
.value-row .vr-name span { font-size: 0.86rem; color: var(--paper-dim); }
.value-row .vr-val { font-family: var(--display); font-weight: 700; color: var(--paper-dim); white-space: nowrap; }
.value-total {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  padding: 22px 24px;
  background: rgba(201,162,39,0.07);
  border-top: 1px solid var(--gold-deep);
}
.value-total .vt-label { font-family: var(--display); font-weight: 700; letter-spacing: 0.02em; }
.value-total .vt-val { font-family: var(--display); font-weight: 800; font-size: 1.4rem; }
.value-total .vt-val s { color: var(--paper-faint); font-weight: 600; font-size: 1rem; margin-right: 8px; }

.value-aside {
  border: 1px solid var(--gold-deep);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 38px);
  background: radial-gradient(130% 100% at 0% 0%, rgba(201,162,39,0.14), transparent 55%), var(--ink-2);
  position: sticky;
  top: 96px;
}
.value-aside h3 { font-size: 1.5rem; margin-bottom: 10px; }
.value-aside p { color: var(--paper-dim); font-size: 0.96rem; margin-bottom: 22px; }
.value-aside .you-pay { display: flex; align-items: baseline; gap: 8px; margin-bottom: 22px; }
.value-aside .you-pay b { font-family: var(--display); font-weight: 800; font-size: 2.6rem; letter-spacing: -0.02em; }
.value-aside .you-pay span { color: var(--paper-dim); }

/* =========================================================
   Social proof
   ========================================================= */
.proof-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
  margin-top: 50px;
  margin-bottom: 46px;
}
.proof-stat {
  text-align: center;
  padding: 30px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink-2);
}
.proof-stat b { display: block; font-family: var(--display); font-weight: 800; font-size: clamp(2rem, 4vw, 2.8rem); letter-spacing: -0.02em; }
.proof-stat span { font-size: 0.88rem; color: var(--paper-faint); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.testi {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 30px 26px;
  background: linear-gradient(180deg, var(--surface), var(--ink-2));
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testi .quote-mark { font-family: var(--display); color: var(--gold); font-size: 3rem; line-height: 0.5; height: 22px; }
.testi p { color: var(--paper); font-size: 1.02rem; line-height: 1.55; }
.testi .athlete { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.avatar-slot {
  width: 50px; height: 50px; flex: none;
  border-radius: 50%;
  border: 1px dashed var(--gold-deep);
  display: grid; place-items: center;
  color: var(--gold-deep);
  font-family: var(--display); font-weight: 800;
  background: rgba(201,162,39,0.06);
}
.testi .athlete b { font-family: var(--display); display: block; font-size: 0.98rem; }
.testi .athlete span { font-size: 0.84rem; color: var(--paper-faint); }

/* photo placeholder strip */
.transformation-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 22px;
}
.photo-slot {
  aspect-ratio: 4 / 5;
  border: 1px dashed var(--gold-deep);
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(45deg, rgba(201,162,39,0.04) 0 12px, transparent 12px 24px),
    var(--ink-2);
  display: grid; place-items: center;
  text-align: center;
  padding: 20px;
  color: var(--paper-faint);
}
.photo-slot .ps-ico { color: var(--gold-deep); margin-bottom: 12px; }
.photo-slot b { display: block; font-family: var(--display); color: var(--paper-dim); font-size: 0.92rem; margin-bottom: 4px; }
.photo-slot span { font-size: 0.78rem; }

/* =========================================================
   Offers
   ========================================================= */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 54px;
  align-items: stretch;
}
.offer {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  background: var(--ink-2);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.offer:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.offer--featured {
  border-color: var(--gold);
  background: radial-gradient(130% 90% at 50% 0%, rgba(201,162,39,0.16), transparent 55%), var(--ink-2);
  box-shadow: 0 30px 80px -50px rgba(201,162,39,0.6);
  transform: translateY(-10px);
}
.offer--featured:hover { transform: translateY(-14px); }
.offer-flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold-sheen); color: #1A1407;
  font-family: var(--display); font-weight: 800;
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 100px; white-space: nowrap;
}
.offer h3 { font-size: 1.45rem; margin-bottom: 4px; }
.offer .offer-for { color: var(--paper-dim); font-size: 0.92rem; min-height: 44px; margin-bottom: 18px; }
.offer .offer-price { display: flex; align-items: flex-end; gap: 6px; margin-bottom: 22px; }
.offer .offer-price b { font-family: var(--display); font-weight: 800; font-size: 2.6rem; line-height: 0.9; letter-spacing: -0.02em; }
.offer .offer-price--text { align-items: center; }
.offer .offer-price--text b { font-size: 1.7rem; letter-spacing: -0.01em; }
.offer .offer-price span { color: var(--paper-dim); padding-bottom: 6px; font-size: 0.92rem; }
.offer .offer-list { list-style: none; padding: 0; margin-bottom: 28px; display: grid; gap: 10px; }
.offer .offer-list li { display: flex; gap: 10px; font-size: 0.92rem; color: var(--paper-dim); }
.offer .offer-list .tick { color: var(--gold-light); flex: none; }
.offer .btn { margin-top: auto; }

/* =========================================================
   Why Luke
   ========================================================= */
.why-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
  margin-top: 20px;
}
.why-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  border: 1px dashed var(--gold-deep);
  background:
    repeating-linear-gradient(45deg, rgba(201,162,39,0.04) 0 14px, transparent 14px 28px),
    linear-gradient(180deg, var(--surface), var(--ink-2));
  display: grid; place-items: center; text-align: center;
  padding: 30px; color: var(--paper-faint);
}
.why-photo .ps-ico { color: var(--gold-deep); margin-bottom: 14px; }
.why-photo b { display: block; font-family: var(--display); color: var(--paper-dim); margin-bottom: 6px; }
.why-photo span { font-size: 0.82rem; }
.why-body .lede { margin-bottom: 24px; }
.why-points { list-style: none; padding: 0; display: grid; gap: 16px; margin-bottom: 30px; }
.why-points li { display: flex; gap: 14px; }
.why-points .wp-ico {
  flex: none; width: 40px; height: 40px; border-radius: 11px;
  border: 1px solid var(--line-strong); display: grid; place-items: center; color: var(--gold-light);
}
.why-points b { font-family: var(--display); display: block; font-size: 1.02rem; margin-bottom: 2px; }
.why-points span { color: var(--paper-dim); font-size: 0.94rem; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-list { margin-top: 46px; max-width: 860px; margin-inline: auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 4px;
  background: transparent; border: none; color: var(--paper);
  text-align: left;
  font-family: var(--display); font-weight: 700; font-size: clamp(1.05rem, 2vw, 1.3rem);
  letter-spacing: -0.01em;
}
.faq-q:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 4px; border-radius: 6px; }
.faq-q .pm { flex: none; width: 28px; height: 28px; position: relative; }
.faq-q .pm::before, .faq-q .pm::after {
  content: ""; position: absolute; left: 50%; top: 50%; background: var(--gold-light);
  transform: translate(-50%,-50%); transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.faq-q .pm::before { width: 14px; height: 2px; }
.faq-q .pm::after  { width: 2px; height: 14px; }
.faq-item.is-open .pm::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a-inner { padding: 0 4px 26px; color: var(--paper-dim); max-width: 70ch; font-size: 1rem; }

/* =========================================================
   Final CTA
   ========================================================= */
.final {
  text-align: center;
  border-radius: var(--radius-lg);
  margin-bottom: var(--section-y);
  padding: clamp(56px, 9vw, 120px) var(--gutter);
  background:
    radial-gradient(120% 130% at 50% 0%, rgba(201,162,39,0.18), transparent 60%),
    linear-gradient(180deg, var(--ink-2), var(--ink));
  border: 1px solid var(--gold-deep);
  position: relative;
  overflow: hidden;
}
.final h2 { max-width: 16ch; margin-inline: auto; margin-bottom: 18px; }
.final .lede { margin-inline: auto; margin-bottom: 38px; }
.final .cta-row { justify-content: center; }
.final-note { margin-top: 26px; color: var(--paper-faint); font-size: 0.9rem; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 56px 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(2, 1fr);
  gap: 40px;
}
.footer-grid p { color: var(--paper-dim); font-size: 0.94rem; max-width: 38ch; margin-top: 16px; }
.footer-col h4 { font-family: var(--display); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--paper-faint); margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 11px; }
.footer-col a { color: var(--paper-dim); font-size: 0.94rem; transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  margin-top: 48px; padding-top: 26px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: var(--paper-faint); font-size: 0.85rem;
}

/* =========================================================
   Reveal animation
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1000px) {
  .split { grid-template-columns: 1fr; }
  .hero-viz { margin-top: 8px; }
  .flagship { grid-template-columns: 1fr; }
  .flagship-aside { border-left: none; border-top: 1px solid var(--line); }
  .value-wrap { grid-template-columns: 1fr; }
  .value-aside { position: static; }
  .why-grid { grid-template-columns: 1fr; }
  .why-photo { max-width: 420px; }
  .offers-grid { grid-template-columns: 1fr; gap: 26px; }
  .offer--featured { transform: none; order: -1; }
  .offer--featured:hover { transform: translateY(-4px); }
}
@media (max-width: 760px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .nav-cta { gap: 0; }
  .mobile-menu {
    position: fixed; inset: 74px 0 auto 0;
    background: rgba(11,11,14,0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: 22px var(--gutter) 30px;
    display: grid; gap: 6px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .3s var(--ease), opacity .3s var(--ease);
    z-index: 49;
  }
  .mobile-menu.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .mobile-menu a { padding: 14px 4px; border-bottom: 1px solid var(--line); font-family: var(--display); font-weight: 700; font-size: 1.1rem; }
  .mobile-menu .btn { margin-top: 16px; }
  .feature-list { grid-template-columns: 1fr; }
}
.mobile-menu { display: none; }
@media (max-width: 760px) { .mobile-menu { display: grid; } }

/* hidden by default on desktop even when present */
@media (min-width: 761px) { .mobile-menu { display: none !important; } }

/* =========================================================
   Real testimonial avatars, About photo, competition gallery
   ========================================================= */
.testi .avatar-img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line-strong); flex: none; }

.why-photo.has-img { border: none; padding: 0; background: none; overflow: hidden; }
.why-photo.has-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; border-radius: var(--radius-lg); }

.gallery-cap { margin: 44px 0 16px; color: var(--paper-faint); font-size: 0.9rem; letter-spacing: 0.02em; text-align: center; }
.luke-gallery { column-count: 3; column-gap: 16px; }
.luke-gallery img { width: 100%; display: block; margin-bottom: 16px; break-inside: avoid; border-radius: var(--radius); border: 1px solid var(--line); transition: transform .4s var(--ease); }
.luke-gallery img:hover { transform: scale(1.02); }
@media (max-width: 760px) { .luke-gallery { column-count: 2; column-gap: 10px; } .luke-gallery img { margin-bottom: 10px; } }

/* PDF card: "also in the Accelerator" note */
.offer-note {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--paper-dim);
  background: rgba(201, 162, 39, 0.07);
  border: 1px solid var(--gold-deep);
  border-radius: 11px;
  padding: 11px 13px;
}
.offer-note b { color: var(--gold-light); font-weight: 700; }
.offer-note svg { flex: none; color: var(--gold-light); margin-top: 1px; }
/* keep the note + button grouped at the bottom of the PDF card */
.offer--pdf .offer-note { margin-top: auto; }
.offer--pdf .btn { margin-top: 14px; }
