:root {
  --bg: #08080a;
  --fg: #f2f1ec;
  --gold: #e8b64a;
  --gold-hover: #f7d489;
  --muted: #9d9b93;
  --dim: #8a8880;
  --faint: #5c5a54;
  --footer-text: #4e4c47;
  --hairline: #1a1814;
  --chip-border: #2a2620;
  --marquee-fill: #18150f;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: 'Space Grotesk', Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-hover); }
::selection { background: var(--gold); color: var(--bg); }

.page { background: var(--bg); color: var(--fg); font-family: 'Space Grotesk', Helvetica, sans-serif; overflow-x: clip; }

.gold { color: var(--gold); }
.mono { font-family: 'IBM Plex Mono', monospace; }
.faint { font-family: 'IBM Plex Mono', monospace; font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); }

/* ---- reveal / mask animation ---- */
@keyframes up { from { opacity: 0; translate: 0 34px; } to { opacity: 1; translate: 0 0; } }
@keyframes wipeIn { from { clip-path: inset(0 0 108% 0); } to { clip-path: inset(0 0 -8% 0); } }
@keyframes sweep { to { background-position: 200% 50%; } }
[data-r].armed { opacity: 0; }
[data-r].in { animation: up .95s cubic-bezier(.16,.85,.3,1) both; }
.mask { display: inline-block; }
[data-r].in .mask { animation: wipeIn 1s cubic-bezier(.16,.85,.3,1) both; }

/* ---- progress bar ---- */
.progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: 0 50%;
  z-index: 70; will-change: transform;
}

/* ---- header ---- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  background: rgba(8,8,10,.6); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--hairline);
}
.header-inner {
  max-width: 1440px; margin: 0 auto; padding: 16px 32px;
  display: flex; align-items: center; gap: 28px;
}
.logo { display: flex; align-items: center; gap: 11px; color: var(--fg); }
.logo-mark { height: 22px; width: auto; display: block; }
.footer-mark { height: 16px; width: auto; display: block; }

.nav { display: flex; gap: 26px; margin-left: auto; font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.nav-link { color: var(--dim); transition: color .15s; }
.nav-link:hover { color: var(--fg); }

.header-tg {
  margin-left: auto; color: var(--gold); font-family: 'IBM Plex Mono', monospace;
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  border-bottom: 1px solid var(--gold); padding-bottom: 2px; transition: opacity .15s;
}
.header-tg:hover { opacity: .75; color: var(--gold); }

@media (max-width: 1000px) {
  .nav { display: none !important; }
}

@media (max-width: 700px) {
  .logo-mark { height: 18px !important; }
  .footer-mark { height: 13px !important; }
}

/* ---- hero ---- */
.hero {
  position: relative; min-height: 100svh; display: flex; flex-direction: column;
  justify-content: flex-end; overflow: hidden;
  padding: clamp(76px,9vh,104px) 32px clamp(22px,4vh,38px);
}
.hero-stage { position: absolute; top: 0; left: 0; right: 0; height: 100%; z-index: 0; pointer-events: none; }
.hero-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, transparent 40%, rgba(8,8,10,.78) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 1440px; margin: 0 auto; width: 100%; }
.hero-top {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap;
  margin-bottom: clamp(24px,3vw,40px);
}
.eyebrow { font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; }
/* each fragment wraps as a whole block, never mid-phrase */
.hero-eyebrow { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 10px; }
.hero-eyebrow > span { white-space: nowrap; }
.hero-eyebrow .sep { opacity: .55; }
.hero-h1 {
  font-size: min(clamp(54px,11.6vw,184px), 15.5vh); line-height: .85; letter-spacing: -.055em;
  font-weight: 700; margin: 0;
}
.hero-bottom {
  display: grid; grid-template-columns: 1fr auto; gap: 36px; align-items: end;
  margin-top: clamp(22px,3.4vh,48px);
}
.lead { font-size: clamp(19px,2vw,25px); line-height: 1.35; color: var(--muted); margin: 0; max-width: 20ch; letter-spacing: -.015em; }

.cta-hero {
  justify-self: start; display: inline-flex; align-items: center; gap: 14px;
  background: var(--gold); color: var(--bg); font-weight: 500; font-size: 19px;
  padding: 22px 34px; border-radius: 999px; will-change: transform;
  transition: box-shadow .25s, background .25s;
}
.cta-hero:hover { background: var(--gold-hover); box-shadow: 0 20px 55px -18px rgba(232,182,74,.8); color: var(--bg); }
.cta-hero .arrow { font-size: 22px; }

@media (max-width: 1000px) {
  .hero-bottom { grid-template-columns: 1fr !important; }
}

/* ---- marquee ---- */
.marquee-wrap {
  border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
  overflow: hidden; padding: 18px 0;
}
.marquee {
  display: flex; width: max-content; align-items: center;
  font-size: clamp(38px,6vw,76px); font-weight: 700; letter-spacing: -.04em;
  color: var(--marquee-fill); will-change: transform;
}
.mq-item { padding: 0 26px; }

/* ---- stats band ---- */
.stats { background: var(--gold); color: var(--bg); position: relative; overflow: hidden; }
.stats-word {
  position: absolute; bottom: -.16em; left: 0; white-space: nowrap;
  font-size: clamp(130px,19vw,280px); font-weight: 700; letter-spacing: -.055em; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(8,8,10,.16);
  pointer-events: none; will-change: transform;
}
.stats-grid {
  position: relative; max-width: 1440px; margin: 0 auto;
  padding: clamp(56px,6.5vw,104px) 32px; display: grid;
  grid-template-columns: repeat(3,1fr); gap: clamp(26px,4vw,56px);
}
.stat-num { font-size: clamp(60px,7vw,102px); font-weight: 700; letter-spacing: -.055em; line-height: .9; margin-bottom: 16px; }
.stat-rule { height: 1px; background: rgba(8,8,10,.24); margin-bottom: 16px; }
.stat-label { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; opacity: .62; }

@media (max-width: 760px) {
  .stats-grid { grid-template-columns: 1fr !important; }
}

/* ---- shared section heading ---- */
.h2 { font-size: clamp(32px,4.4vw,62px); font-weight: 700; letter-spacing: -.04em; margin: 0; line-height: 1; }
.feat-head { display: flex; align-items: baseline; gap: 20px; }
.faint-label { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); }

/* ---- features ---- */
.feat-section { overflow: hidden; }
.feat-grid {
  max-width: 1440px; margin: 0 auto; padding: clamp(70px,8vw,128px) 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,5vw,76px); align-items: center;
}
.feat-grid > div:first-child .feat-head { margin-bottom: clamp(28px,3.5vw,44px); }
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  border: 1px solid var(--chip-border); border-radius: 999px; padding: 15px 26px; font-size: 18px;
  transition: background .25s, color .25s, border-color .25s, translate .25s;
}
.chip:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); translate: 0 -3px; }
.feat-stage { height: min(560px,62vh); position: relative; }

@media (max-width: 1000px) {
  .feat-grid { grid-template-columns: 1fr !important; }
  .feat-stage { height: 380px !important; order: -1; }
}

/* stage sits first on phones — tighten the gap above it */
@media (max-width: 810px) {
  .feat-grid { padding-top: 42px; }
}

/* ---- section divider ---- */
.divider {
  max-width: 1440px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; gap: clamp(14px,2.4vw,26px);
}
.divider-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--chip-border) 22%, var(--chip-border) 78%, transparent);
}
.divider-marks { display: flex; align-items: center; gap: 10px; line-height: 1; }
.divider-marks i { font-style: normal; color: var(--gold); display: block; }
.divider-marks .sm { font-size: 6px; opacity: .32; }
.divider-marks .lg { font-size: 11px; animation: dvPulse 4.5s ease-in-out infinite; }
@keyframes dvPulse {
  0%, 100% { opacity: .75; text-shadow: 0 0 0 rgba(232,182,74,0); }
  50% { opacity: 1; text-shadow: 0 0 14px rgba(232,182,74,.55); }
}

/* ---- process ---- */
.process-section { border-bottom: 1px solid var(--hairline); }
.process-inner { max-width: 1440px; margin: 0 auto; padding: clamp(66px,7.5vw,116px) 32px; }
.process-inner .feat-head { margin-bottom: clamp(26px,3vw,42px); }
.steps { display: grid; }
.step {
  position: relative; display: grid; grid-template-columns: 112px 1fr 130px; gap: 24px;
  align-items: center; padding: 26px 24px 26px 0; border-top: 1px solid var(--hairline);
  overflow: hidden;
}
.step-last { border-bottom: 1px solid var(--hairline); }
.wipe {
  position: absolute; inset: 0; background: var(--gold); transform: scaleX(0); transform-origin: 0 50%;
  transition: transform .55s cubic-bezier(.16,.85,.3,1); pointer-events: none;
}
.step:hover .wipe { transform: scaleX(1); }
.step:hover .step-num, .step:hover .step-title { color: var(--bg); }
.step:hover .step-day { color: rgba(8,8,10,.55); }
.step-num { position: relative; font-size: clamp(34px,3.6vw,50px); font-weight: 700; letter-spacing: -.04em; color: var(--gold); line-height: 1; transition: color .3s ease; }
.step-title { position: relative; font-size: clamp(22px,2.6vw,34px); letter-spacing: -.025em; transition: color .3s ease; }
.step-day { position: relative; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); text-align: right; transition: color .3s ease; }

@media (max-width: 700px) {
  .step { grid-template-columns: 52px 1fr !important; }
  .step > .step-day { display: none !important; }
}

/* ---- price ---- */
.price-section {
  position: sticky; top: 0; z-index: 0; display: flex; align-items: center;
  min-height: 100svh; overflow: hidden; border-bottom: 1px solid var(--hairline);
}
.price-stage { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.price-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, transparent 30%, rgba(8,8,10,.82) 100%);
}
.price-content {
  position: relative; z-index: 2; width: 100%; max-width: 1440px; margin: 0 auto;
  padding: clamp(110px,13vw,190px) 32px; text-align: center;
}
.mono-eyebrow { margin-bottom: clamp(22px,3vw,38px); }
.price-num { font-size: clamp(84px,17vw,260px); font-weight: 700; letter-spacing: -.06em; line-height: .82; }
.price-row {
  display: flex; justify-content: center; gap: clamp(20px,4vw,52px); flex-wrap: wrap;
  margin-top: clamp(28px,4vw,50px); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--dim);
}

/* ---- final CTA ---- */
.cta-section {
  position: relative; z-index: 2; overflow: hidden; background: var(--gold); color: var(--bg);
  border-radius: 32px 32px 0 0; box-shadow: 0 -40px 90px -30px rgba(8,8,10,.85);
}
.hatch {
  position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(-45deg, rgba(8,8,10,.05) 0 2px, transparent 2px 18px);
}
.cta-grid {
  position: relative; max-width: 1440px; margin: 0 auto; padding: clamp(56px,7vw,110px) 32px;
  display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(36px,5vw,80px); align-items: end;
}
.cta-eyebrow { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; opacity: .55; margin-bottom: clamp(20px,2.6vw,34px); }
.cta-h2 { font-size: clamp(42px,7.4vw,112px); font-weight: 700; letter-spacing: -.05em; line-height: .92; margin: 0 0 22px; text-wrap: balance; }
.cta-p { font-size: clamp(17px,1.7vw,21px); line-height: 1.45; margin: 0; max-width: 34ch; opacity: .72; }
.cta-right { display: flex; flex-direction: column; gap: 18px; }
.cta-stage { height: clamp(150px,20vw,210px); position: relative; }
.cta-bottom { border-top: 2px solid var(--bg); padding-top: 26px; display: flex; flex-direction: column; gap: 18px; }
.cta-final {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: var(--bg); color: var(--fg); font-weight: 500; font-size: clamp(18px,2vw,23px);
  padding: 24px 30px; border-radius: 999px; will-change: transform;
  transition: background .25s, box-shadow .25s;
}
.cta-final:hover { background: #151210; box-shadow: 0 22px 50px -20px rgba(8,8,10,.7); color: var(--fg); }
.cta-final .arrow-lg { font-size: 26px; line-height: 1; }
.cta-meta { display: flex; justify-content: space-between; gap: 16px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; opacity: .55; }

@media (max-width: 1000px) {
  .cta-grid { grid-template-columns: 1fr !important; }
}

/* ---- footer ---- */
.footer { position: relative; z-index: 2; background: var(--bg); border-top: 1px solid var(--hairline); }
.footer-inner {
  max-width: 1440px; margin: 0 auto; padding: 26px 32px; display: flex; align-items: center;
  gap: 20px; flex-wrap: wrap; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--footer-text);
}
.footer-logo { display: flex; align-items: center; gap: 9px; }
.footer-tg { margin-left: auto; }
