/* =====================================================================
   OXIMO — main.css
   Design language: Cera Pro · monochrome by conviction · warm paper
   Colour lives only in photography, never in the interface.
   ===================================================================== */

/* ---------- Fonts ---------- */
@font-face {
  font-family: 'Cera Pro';
  src: url('../fonts/Cera-Pro-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cera Pro';
  src: url('../fonts/Cera-Pro-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cera Pro';
  src: url('../fonts/Cera-Pro-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --onyx:       #0B0B0C;
  --graphite:   #2E2E30;
  --ink-2:      #3A3A3E;
  --ink-3:      #6E6E72;
  --faded:      #9B9A96;
  --paper:      #F7F5F1;
  --paper-2:    #EFEDE7;
  --mist:       #EEEDEA;
  --white:      #FFFFFF;

  --line:       rgba(11,11,12,0.09);
  --line-2:     rgba(11,11,12,0.16);
  --line-dark:  rgba(255,255,255,0.14);
  --line-dark-2:rgba(255,255,255,0.24);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-pill: 999px;

  --sh-flat:   0 1px 2px rgba(11,11,12,0.05);
  --sh-raised: 0 6px 26px rgba(11,11,12,0.09);
  --sh-float:  0 26px 70px rgba(11,11,12,0.16);

  --ease:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-io: cubic-bezier(0.66, 0, 0.34, 1);

  --maxw: 1660px;
  --pad-x: clamp(20px, 5vw, 76px);
  --header-h: 7rem;

  --sect-y: clamp(80px, 11vw, 172px);
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--header-h);
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--onyx);
  font-family: 'Cera Pro', system-ui, -apple-system, Segoe UI, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-feature-settings: 'locl' 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
h1, h2, h3, h4, p, figure, blockquote, ol, ul { margin: 0; }
ol, ul { padding: 0; list-style: none; }
::selection { background: var(--onyx); color: #fff; }

:focus-visible {
  outline: 2px solid var(--onyx);
  outline-offset: 3px;
  border-radius: 3px;
}

.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 1000;
  background: var(--onyx); color: #fff; padding: 10px 16px;
  border-radius: var(--r-sm); transform: translateY(-160%);
  transition: transform .3s var(--ease); font-size: .85rem; font-weight: 500;
}
.skip-link:focus { transform: none; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.section { padding-block: var(--sect-y); }

/* ---------- Typography primitives ---------- */
.eyebrow {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--faded);
  margin: 0;
}
.eyebrow--light { color: rgba(255,255,255,0.62); }

.section-title {
  font-size: clamp(2.2rem, 5.4vw, 4.5rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0;
}
.section-title--light { color: #fff; }

.section-head { margin-bottom: clamp(44px, 6vw, 88px); }
.section-head__row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
  margin-top: 26px;
}
.section-head__row--split { align-items: end; }
.section-lead {
  font-size: clamp(1.02rem, 1.35vw, 1.28rem);
  line-height: 1.62;
  color: var(--ink-2);
  max-width: 52ch;
}
.section-lead--light { color: rgba(255,255,255,0.72); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--onyx);
  --btn-fg: #fff;
  --btn-bd: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .005em;
  line-height: 1;
  padding: 1.05em 1.7em;
  border-radius: var(--r-pill);
  border: 1px solid var(--btn-bd);
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  position: relative;
  transition: transform .5s var(--ease), background-color .35s var(--ease),
              color .35s var(--ease), border-color .35s var(--ease), box-shadow .5s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--lg { padding: 1.2em 2em; font-size: 1rem; }
.btn--sm { padding: .7em 1.15em; font-size: .82rem; }
.btn--block { width: 100%; }

.btn--solid { --btn-bg: var(--onyx); --btn-fg: #fff; }
.btn--solid:hover { --btn-bg: #26262a; box-shadow: var(--sh-raised); }

.btn--solid-invert { --btn-bg: #fff; --btn-fg: var(--onyx); }
.btn--solid-invert:hover { --btn-bg: var(--paper); box-shadow: 0 12px 40px rgba(0,0,0,.28); }

.btn--ghost { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,0.45); }
.btn--ghost:hover { --btn-bg: rgba(255,255,255,0.10); --btn-bd: #fff; }

.btn--outline { --btn-bg: transparent; --btn-fg: var(--onyx); --btn-bd: var(--line-2); }
.btn--outline:hover { --btn-bd: var(--onyx); }

.btn--outline-light { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,0.3); }
.btn--outline-light:hover { --btn-bg: #fff; --btn-fg: var(--onyx); }

.btn--ghost-dark { --btn-bg: transparent; --btn-fg: var(--onyx); --btn-bd: var(--line-2); }
.btn--ghost-dark:hover { --btn-bg: var(--onyx); --btn-fg:#fff; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-size: .95rem; font-weight: 500; color: var(--onyx);
  padding-bottom: 4px; white-space: nowrap;
}
.link-arrow span { transition: transform .4s var(--ease); display: inline-block; }
.link-arrow:hover span { transform: translateX(5px); }

/* =====================================================================
   HEADER
   ===================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 300;
  height: var(--header-h);
  display: flex;
  align-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.01);
  -webkit-backdrop-filter: blur(0.3125rem);
  backdrop-filter: blur(0.3125rem);
  border-bottom: 0.0625rem solid hsla(0, 0%, 100%, 0.1);
  transition: background-color .5s var(--ease), color .5s var(--ease),
              box-shadow .5s var(--ease), backdrop-filter .5s var(--ease),
              border-color .5s var(--ease);
}
.site-header__inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; flex: none; }
.brand__logo {
  height: 68px; width: auto; object-fit: contain;
  filter: invert(1) brightness(2);
  transition: filter .5s var(--ease);
}

/* solid (scrolled past hero) state — white glass, palette only */
.site-header.is-solid {
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: saturate(1.35) blur(18px);
  backdrop-filter: saturate(1.35) blur(18px);
  border-bottom: 1px solid var(--line);
  color: var(--onyx);
}
.site-header.is-solid .brand__logo { filter: none; }

/* over the open mobile menu the header must read dark on light */
.site-header.menu-open { color: var(--onyx); }
.site-header.menu-open .brand__logo { filter: none; }

/* nav */
.nav { flex: 1; display: flex; justify-content: center; }
.nav__list { display: flex; align-items: center; gap: 8px; }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: .4em;
  font-size: 1.05rem; font-weight: 500; color: currentColor;
  padding: .6em .95em; border: none; background: none; cursor: pointer;
  border-radius: var(--r-sm);
  opacity: .82; transition: opacity .3s var(--ease);
}
.nav__link:hover, .nav__link.is-current { opacity: 1; }
.nav__link.is-current { position: relative; }
.nav__chev { width: 11px; height: 7px; opacity: .7; transition: transform .35s var(--ease); }
.nav__item--menu:hover .nav__chev,
.nav__toggle[aria-expanded="true"] .nav__chev { transform: rotate(180deg); }

/* dropdown */
.nav__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 246px;
  background: rgba(255,255,255,0.86);
  -webkit-backdrop-filter: saturate(1.4) blur(20px);
  backdrop-filter: saturate(1.4) blur(20px);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-float);
  padding: 8px;
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .32s var(--ease), transform .32s var(--ease), visibility .32s;
}
.nav__item--menu:hover .nav__menu,
.nav__item--menu:focus-within .nav__menu,
.nav__menu.is-open {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__menu a {
  color: var(--ink-2);
  font-size: .9rem; font-weight: 500;
  padding: .7em .85em; border-radius: var(--r-sm);
  transition: background-color .25s var(--ease), color .25s var(--ease);
}
.nav__menu a:hover { background: var(--mist); color: var(--onyx); }

.site-header__actions { display: flex; align-items: center; gap: 16px; flex: none; }
.header-cta { font-size: 1.05rem; padding: 0.82em 1.65em; }
.header-account {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: var(--r-pill);
  color: currentColor; opacity: .82;
  transition: opacity .3s var(--ease), background-color .3s var(--ease);
}
.header-account svg { width: 23px; height: 23px; }
.header-account:hover { opacity: 1; background: rgba(128,128,128,0.14); }

/* hamburger */
.hamburger {
  display: none;
  width: 44px; height: 44px;
  border: none; background: none; cursor: pointer;
  position: relative;
  color: currentColor;
}
.hamburger span {
  position: absolute; left: 11px; right: 11px; height: 1.6px;
  background: currentColor; border-radius: 2px;
  transition: transform .4s var(--ease), opacity .3s var(--ease);
}
.hamburger span:nth-child(1) { top: 18px; }
.hamburger span:nth-child(2) { bottom: 18px; }
.hamburger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { transform: translateY(-6px) rotate(-45deg); }

/* =====================================================================
   MOBILE MENU
   ===================================================================== */
.mobile-menu {
  position: fixed; inset: 0; z-index: 290;
  background: var(--paper);
  padding: calc(var(--header-h) + 24px) var(--pad-x) 40px;
  overflow-y: auto;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .4s var(--ease), transform .5s var(--ease), visibility .4s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu__inner { display: flex; flex-direction: column; max-width: 520px; }
.mobile-menu__link {
  font-size: 1.7rem; font-weight: 500; letter-spacing: -0.02em;
  padding: .5em 0; border-bottom: 1px solid var(--line); color: var(--onyx);
}
.mobile-menu__group { padding: 1em 0 .4em; border-bottom: 1px solid var(--line); }
.mobile-menu__label {
  display: block; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--faded); margin-bottom: .5em;
}
.mobile-menu__sub {
  display: block; font-size: 1.12rem; font-weight: 500; color: var(--ink-2);
  padding: .38em 0;
}
.mobile-menu__actions { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  margin-top: calc(var(--header-h) * -1);
  padding-top: var(--header-h);
  overflow: hidden;
  color: #fff;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__video {
  width: 100%; height: 100%;
  object-fit: cover;
  will-change: transform;
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(11,11,12,0.62) 0%, rgba(11,11,12,0) 24%),
    linear-gradient(to top, rgba(11,11,12,0.80) 0%, rgba(11,11,12,0.18) 44%, rgba(11,11,12,0) 68%),
    linear-gradient(to right, rgba(11,11,12,0.5) 0%, rgba(11,11,12,0) 62%);
}
.hero__inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--maxw);
  margin-inline: auto;
  padding: 0 var(--pad-x) clamp(64px, 10vh, 128px);
}
.hero__content { max-width: min(1140px, 100%); }
.hero__eyebrow {
  font-size: .74rem; font-weight: 500; letter-spacing: .24em; text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  margin-bottom: 26px;
}
.hero__title {
  font-size: clamp(2.35rem, 7.4vw, 5.8rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.038em;
  margin-bottom: 30px;
}
.hero__title .line { display: block; overflow: hidden; padding-bottom: .04em; }
.hero__sub {
  font-size: clamp(1.05rem, 1.5vw, 1.32rem);
  line-height: 1.55;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  max-width: 54ch;
  margin-bottom: 40px;
  text-shadow: 0 1px 24px rgba(0,0,0,0.28);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__scroll {
  position: absolute; z-index: 2; right: var(--pad-x); bottom: clamp(40px, 6vh, 68px);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  color: rgba(255,255,255,0.75);
}
.hero__scroll-text {
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero__scroll-line { width: 1px; height: 54px; background: rgba(255,255,255,0.3); position: relative; overflow: hidden; }
.hero__scroll-line span {
  position: absolute; top: -50%; left: 0; width: 100%; height: 50%;
  background: #fff;
  animation: scrollcue 2.4s var(--ease-io) infinite;
}
@keyframes scrollcue {
  0% { transform: translateY(-100%); }
  60%, 100% { transform: translateY(300%); }
}
.hero__sentinel { position: absolute; bottom: 0; height: 1px; width: 1px; }

/* Hero load animation */
.js .hero .anim {
  opacity: 0;
  transform: translateY(26px);
}
.js .hero__title .anim { transform: translateY(105%); }
.hero.is-ready .anim {
  opacity: 1;
  transform: none;
  transition: opacity 1.1s var(--ease), transform 1.15s var(--ease);
}
.hero.is-ready .anim[data-anim="1"] { transition-delay: .10s; }
.hero.is-ready .anim[data-anim="2"] { transition-delay: .22s; }
.hero.is-ready .anim[data-anim="3"] { transition-delay: .32s; }
.hero.is-ready .anim[data-anim="4"] { transition-delay: .42s; }
.hero.is-ready .anim[data-anim="5"] { transition-delay: .58s; }
.hero.is-ready .anim[data-anim="6"] { transition-delay: .70s; }
.hero.is-ready .anim[data-anim="7"] { transition-delay: .95s; }

/* =====================================================================
   REVEAL (scroll)
   ===================================================================== */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .95s var(--ease), transform .95s var(--ease);
  will-change: opacity, transform;
}
.js [data-reveal].is-in { opacity: 1; transform: none; }

/* =====================================================================
   OPPORTUNITY
   ===================================================================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 1.6vw, 22px);
}
.feature {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(28px, 2.4vw, 42px);
  min-height: clamp(300px, 26vw, 400px);
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: transform .55s var(--ease), box-shadow .55s var(--ease), border-color .55s var(--ease);
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--sh-raised); border-color: var(--line-2); }
.feature__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.feature__tag {
  font-size: .68rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-3);
  border: 1px solid var(--line-2);
  border-radius: var(--r-pill);
  padding: .5em .95em;
}
.feature__index { font-size: .8rem; font-weight: 500; color: var(--faded); letter-spacing: .05em; }
.feature__icon { margin-top: clamp(26px, 2.4vw, 38px); }
.feature__text { margin-top: auto; padding-top: clamp(26px, 2.4vw, 36px); }
.feature__title {
  font-size: clamp(1.24rem, 1.7vw, 1.6rem);
  font-weight: 700; letter-spacing: -0.02em; line-height: 1.05;
  margin: 0 0 12px;
}
.feature__body { font-size: .96rem; line-height: 1.55; color: var(--ink-3); }
.opportunity__cta { margin-top: clamp(44px, 5vw, 72px); }

/* ---- animated looping feature icons ---- */
.fic {
  width: 66px; height: 66px; display: block; overflow: visible;
  stroke: var(--onyx); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.fic .fic-track { stroke: rgba(11,11,12,0.20); }
.feature:hover .fic { stroke: var(--onyx); }

/* 1 · value — glint travelling around the coin */
.fic-glint { stroke-dasharray: 12 95; stroke-dashoffset: 0; animation: fic-glint 3.4s linear infinite; }
@keyframes fic-glint { to { stroke-dashoffset: -107; } }

/* 2 · finance — installment bars breathing in a wave */
.fic-bar { transform-box: fill-box; transform-origin: center bottom; animation: fic-bar 2.7s ease-in-out infinite; }
.fic--finance rect:nth-of-type(1) { animation-delay: 0s; }
.fic--finance rect:nth-of-type(2) { animation-delay: .2s; }
.fic--finance rect:nth-of-type(3) { animation-delay: .4s; }
@keyframes fic-bar { 0%, 100% { transform: scaleY(.55); } 50% { transform: scaleY(1); } }

/* 3 · growth — static trend + arrow, with a dot climbing the line on loop */
.fic-climb {
  fill: var(--onyx); stroke: none;
  offset-path: path('M18 37 27 29 34 33 43 18');
  offset-rotate: 0deg; offset-anchor: center;
  animation: fic-climb 2.7s cubic-bezier(.5,0,.3,1) infinite;
}
@keyframes fic-climb {
  0%   { offset-distance: 0%;   opacity: 0; }
  12%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}

/* 4 · realization — cycle arrows rotating continuously */
.fic-rot { transform-box: fill-box; transform-origin: center; animation: fic-rot 8s linear infinite; }
@keyframes fic-rot { to { transform: rotate(360deg); } }

/* =====================================================================
   PROOF / DALIA — the value-gap signature
   ===================================================================== */
.proof { background: var(--paper-2); }
.gap {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--r-xl);
  padding: clamp(32px, 4.5vw, 68px) clamp(28px, 5vw, 80px) clamp(36px, 4.5vw, 60px);
  box-shadow: var(--sh-flat);
}
.gap__ends {
  display: flex; justify-content: space-between; gap: 24px;
  margin-bottom: clamp(28px, 3vw, 40px);
}
.gap__end { min-width: 0; }
.gap__end--right { text-align: right; margin-left: auto; }
.gap__cap {
  display: block;
  max-width: 22ch;
  font-size: .78rem; font-weight: 500; letter-spacing: .04em;
  color: var(--ink-3); line-height: 1.35; margin-bottom: 14px;
}
.gap__end--right .gap__cap { margin-left: auto; }
.gap__num {
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  font-weight: 700; letter-spacing: -0.035em; line-height: 0.9;
  color: var(--onyx);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.gap__num em { font-style: normal; font-size: .34em; font-weight: 500; color: var(--faded); letter-spacing: 0; }

.gap__track {
  position: relative;
  height: 2px;
  background: var(--line-2);
  margin: 0 6px clamp(46px, 5vw, 64px);
}
.gap__fill {
  position: absolute; left: 0; top: 0; height: 100%;
  width: 0;
  background: var(--onyx);
  transition: width 1.5s var(--ease);
}
.is-in .gap__fill, .gap.is-in .gap__fill { width: 100%; }
.gap__node {
  position: absolute; top: 50%; width: 13px; height: 13px; border-radius: 50%;
  background: var(--onyx); transform: translate(-50%, -50%);
  box-shadow: 0 0 0 5px var(--white);
}
.gap__node--a { left: 0; }
.gap__node--b { left: 100%; background: var(--onyx); }
.gap__delta {
  position: absolute; left: 50%; top: calc(100% + 18px);
  transform: translateX(-50%);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 700; letter-spacing: -0.02em; color: var(--onyx);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.gap__delta::before {
  content: ""; position: absolute; left: 50%; top: -18px; height: 12px; width: 1px;
  background: var(--line-2); transform: translateX(-50%);
}
.gap__footnote {
  text-align: center;
  font-size: clamp(.95rem, 1.15vw, 1.1rem);
  color: var(--ink-3); line-height: 1.6;
  max-width: 46ch; margin-inline: auto;
}
.gap__foot-strong { display: block; font-weight: 700; color: var(--onyx); letter-spacing: .02em;
  text-transform: uppercase; font-size: .74rem; letter-spacing: .16em; margin-bottom: 6px; }
.gap__footnote strong { color: var(--onyx); font-weight: 700; }

/* =====================================================================
   MILESTONE / OX RESIDENCE
   ===================================================================== */
.milestone {
  position: relative;
  min-height: clamp(520px, 82vh, 820px);
  display: flex; align-items: center;
  overflow: hidden;
  color: #fff;
}
.milestone__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.milestone__img { width: 100%; height: 120%; object-fit: cover; will-change: transform; }
.milestone__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(11,11,12,0.82) 0%, rgba(11,11,12,0.4) 42%, rgba(11,11,12,0.05) 72%),
    linear-gradient(to top, rgba(11,11,12,0.5) 0%, rgba(11,11,12,0) 50%);
}
.milestone__inner { position: relative; z-index: 2; width: 100%; }
.milestone__content { max-width: 60ch; }
.milestone__title {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  font-weight: 700; line-height: 0.96; letter-spacing: -0.035em;
  margin: 22px 0 22px;
}
.milestone__lead {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem); line-height: 1.55;
  color: rgba(255,255,255,0.85); max-width: 44ch; margin-bottom: 36px;
}

/* =====================================================================
   PROCESS (dark)
   ===================================================================== */
.process { background: var(--onyx); color: #fff; }
.steps-wrap { position: relative; padding-top: 54px; }
.steps__track, .steps__progress {
  position: absolute; top: 26px; height: 2px; left: 0; width: 0;
  border-radius: 2px; pointer-events: none;
}
.steps__track { background: rgba(255,255,255,0.15); }
.steps__progress { background: #fff; box-shadow: 0 0 14px rgba(255,255,255,0.55); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 48px);
}
.step { position: relative; }
.step__dot {
  position: absolute; top: -33px; left: 0;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--onyx); border: 2px solid rgba(255,255,255,0.32);
  transition: background-color .45s var(--ease), border-color .45s var(--ease),
              box-shadow .55s var(--ease), transform .55s var(--ease);
}
.step.lit .step__dot {
  background: #fff; border-color: #fff; transform: scale(1.18);
  box-shadow: 0 0 0 5px rgba(255,255,255,0.08), 0 0 18px rgba(255,255,255,0.5);
}
.step__num {
  display: block;
  font-size: clamp(2.4rem, 3.4vw, 3.4rem);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1;
  color: rgba(255,255,255,0.22);
  margin-bottom: 22px;
  transition: color .55s var(--ease);
}
.step.lit .step__num { color: #fff; }
.step__title {
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  font-weight: 500; letter-spacing: -0.015em; color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
  transition: color .55s var(--ease);
}
.step.lit .step__title { color: #fff; }
.step__body { font-size: .96rem; line-height: 1.6; color: rgba(255,255,255,0.6); }
.process__cta { margin-top: clamp(48px, 5vw, 76px); }

/* guide band (inside process, dark) */
.guide {
  margin-top: clamp(56px, 7vw, 100px);
  border-top: 1px solid var(--line-dark);
  padding-top: clamp(40px, 4vw, 64px);
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
}
.guide__eyebrow {
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 14px;
}
.guide__title {
  font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.05; color: #fff; max-width: 20ch;
}

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.vtests {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.2vw, 34px);
}
.vtest { display: flex; flex-direction: column; }
.vtest__poster {
  position: relative; aspect-ratio: 4 / 5; overflow: hidden;
  border-radius: var(--r-lg);
  background: radial-gradient(120% 90% at 30% 15%, #34343a 0%, #1a1a1d 46%, #0B0B0C 100%);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform .55s var(--ease), box-shadow .55s var(--ease);
}
.vtest__poster:hover, .vtest__poster:focus-visible { transform: translateY(-6px); box-shadow: var(--sh-float); }
.vtest__mono {
  font-size: 13rem; font-weight: 700; line-height: 1; letter-spacing: -0.05em;
  color: rgba(255,255,255,0.055); user-select: none;
  transition: transform 1s var(--ease);
}
.vtest__poster:hover .vtest__mono { transform: scale(1.06); }
.vtest__badge {
  position: absolute; top: 16px; left: 16px;
  display: inline-flex; align-items: center; gap: .55em;
  font-size: .64rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  color: #fff; background: rgba(255,255,255,0.12);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2); border-radius: var(--r-pill);
  padding: .5em .9em .5em .8em;
}
.vtest__badge::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: #fff;
  animation: vtest-rec 1.8s ease-in-out infinite;
}
@keyframes vtest-rec { 0%, 100% { opacity: 1; } 50% { opacity: .25; } }
.vtest__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 76px; height: 76px; border-radius: 50%;
  background: rgba(255,255,255,0.14);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.45); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background-color .4s var(--ease), color .4s var(--ease), transform .5s var(--ease);
}
.vtest__play svg { width: 26px; height: 26px; margin-left: 3px; }
.vtest__play::after {
  content: ""; position: absolute; inset: -1px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.5);
  animation: vtest-pulse 2.8s ease-out infinite;
}
@keyframes vtest-pulse { 0% { transform: scale(1); opacity: .55; } 100% { transform: scale(1.55); opacity: 0; } }
.vtest__poster:hover .vtest__play, .vtest__poster:focus-visible .vtest__play {
  background: #fff; color: var(--onyx); transform: translate(-50%, -50%) scale(1.08);
}
.vtest__id {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: clamp(20px, 2vw, 30px);
  background: linear-gradient(to top, rgba(11,11,12,0.9) 0%, rgba(11,11,12,0.35) 55%, rgba(11,11,12,0) 100%);
  display: flex; flex-direction: column; gap: 3px;
}
.vtest__name { color: #fff; font-weight: 700; font-size: 1.06rem; letter-spacing: -0.01em; }
.vtest__role { color: rgba(255,255,255,0.62); font-size: .82rem; }
.vtest__quote {
  margin-top: 26px;
  font-size: clamp(1.02rem, 1.2vw, 1.2rem); line-height: 1.55; font-weight: 500;
  color: var(--ink-2);
}

/* =====================================================================
   OXCLUB
   ===================================================================== */
.oxclub2 { background: var(--onyx); color: #fff; }
.oxclub2__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.4vw, 44px); align-items: stretch;
}
.oxclub2__figure {
  position: relative; margin: 0; overflow: hidden;
  border-radius: var(--r-lg); min-height: clamp(360px, 44vw, 560px);
}
.oxclub2__figure img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.oxclub2__figure::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,11,12,0.78) 0%, rgba(11,11,12,0.1) 46%, rgba(11,11,12,0) 70%);
}
.oxclub2__figcap {
  position: absolute; left: 0; bottom: 0; z-index: 1;
  padding: clamp(24px, 2.4vw, 44px); display: flex; flex-direction: column; gap: 5px;
}
.oxclub2__figlabel { font-size: clamp(1.8rem, 2.6vw, 2.6rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1; }
.oxclub2__figsub { color: rgba(255,255,255,0.72); font-size: .92rem; }

.oxclub2__benefits { display: flex; flex-direction: column; gap: clamp(14px, 1.4vw, 20px); }
.oxbenefit {
  flex: 1; display: flex; gap: clamp(16px, 1.6vw, 26px);
  padding: clamp(22px, 2vw, 36px);
  border: 1px solid var(--line-dark); border-radius: var(--r-lg);
  background: rgba(255,255,255,0.02);
  transition: background-color .5s var(--ease), border-color .5s var(--ease), transform .5s var(--ease);
}
.oxbenefit:hover { background: rgba(255,255,255,0.05); border-color: var(--line-dark-2); transform: translateY(-3px); }
.oxbenefit__no {
  flex: none; font-size: 1rem; font-weight: 500; letter-spacing: .04em;
  color: rgba(255,255,255,0.42); padding-top: .28em; min-width: 1.4em;
}
.oxbenefit--soon { border-style: dashed; }
.oxbenefit--soon .oxbenefit__no { font-size: 1.5rem; line-height: 1; padding-top: 0; }
.oxbenefit__title {
  font-size: clamp(1.14rem, 1.5vw, 1.42rem); font-weight: 500; letter-spacing: -0.015em;
  color: #fff; margin-bottom: 10px;
}
.oxbenefit--soon .oxbenefit__title { color: rgba(255,255,255,0.72); }
.oxbenefit__body { font-size: .95rem; line-height: 1.6; color: rgba(255,255,255,0.6); }

.oxclub2__foot {
  margin-top: clamp(40px, 4vw, 68px); padding-top: clamp(36px, 3vw, 54px);
  border-top: 1px solid var(--line-dark);
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.oxclub2__tagline {
  font-size: clamp(1.4rem, 2.6vw, 2.35rem); font-weight: 500; letter-spacing: -0.02em;
  line-height: 1.25; color: rgba(255,255,255,0.42); max-width: 30ch;
}
.rotator { position: relative; display: block; color: #fff; min-height: 2.5em; margin-top: .15em; }
.rotator__item {
  position: absolute; left: 0; top: 0;
  opacity: 0; transform: translateY(0.45em);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.rotator__item.is-active { opacity: 1; transform: none; }

/* =====================================================================
   NEWS
   ===================================================================== */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 1.8vw, 26px); }
.post {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .55s var(--ease), box-shadow .55s var(--ease);
}
.post:hover { transform: translateY(-6px); box-shadow: var(--sh-raised); }
.post__media { aspect-ratio: 3 / 2; overflow: hidden; background: var(--mist); }
.post__img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.02);
  transition: transform 1s var(--ease), filter .7s var(--ease);
}
.post:hover .post__img { transform: scale(1.05); filter: grayscale(0.35); }
.post__body { padding: clamp(22px, 2vw, 30px); display: flex; flex-direction: column; flex: 1; }
.post__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.post__tags span {
  font-size: .68rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-3); background: var(--mist); border-radius: var(--r-pill); padding: .45em .85em;
}
.post__title {
  font-size: clamp(1.18rem, 1.5vw, 1.44rem); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.12; margin-bottom: 14px;
}
.post__excerpt { font-size: .93rem; line-height: 1.55; color: var(--ink-3); margin-bottom: 24px; flex: 1; }
.post__date { font-size: .8rem; color: var(--faded); letter-spacing: .02em; }

/* =====================================================================
   FAQ
   ===================================================================== */
.faq { position: relative; background: var(--paper-2); overflow: hidden; }
.faq__media {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: min(40%, 640px);
  border-radius: 0 var(--r-xl) var(--r-xl) 0;
  overflow: hidden;
}
.faq__media img { width: 100%; height: 100%; object-fit: cover; }
.faq__inner { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad-x); }
.faq__content { width: min(770px, 56%); margin-left: auto; padding-block: var(--sect-y); }
.faq__head { margin-bottom: clamp(34px, 4vw, 58px); }
.faq__head .section-title { margin-top: 24px; }
.faq__all { margin-top: clamp(28px, 3vw, 46px); }
.accordion { border-top: 1px solid var(--line-2); }
.acc { border-bottom: 1px solid var(--line-2); }
.acc__q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  text-align: left; padding: clamp(22px, 2.4vw, 34px) 4px;
  font-size: clamp(1.1rem, 1.7vw, 1.5rem); font-weight: 500; letter-spacing: -0.015em;
  color: var(--onyx);
}
.acc__q:hover { color: var(--graphite); }
.acc__icon { position: relative; flex: none; width: 20px; height: 20px; }
.acc__icon::before, .acc__icon::after {
  content: ""; position: absolute; top: 50%; left: 50%; background: var(--onyx);
  transition: transform .45s var(--ease), opacity .45s var(--ease);
}
.acc__icon::before { width: 16px; height: 1.6px; transform: translate(-50%, -50%); }
.acc__icon::after  { width: 1.6px; height: 16px; transform: translate(-50%, -50%); }
.acc.is-open .acc__icon::after { transform: translate(-50%, -50%) scaleY(0); opacity: 0; }
.acc__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .5s var(--ease); }
.acc.is-open .acc__a { grid-template-rows: 1fr; }
.acc__a-inner { overflow: hidden; }
.acc.is-open .acc__a-inner { padding-bottom: clamp(22px, 2.4vw, 32px); }
.acc__a p {
  font-size: clamp(1rem, 1.2vw, 1.12rem); line-height: 1.65; color: var(--ink-2);
  max-width: 70ch; padding-right: 44px;
}
.acc__a a { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--line-2); }
.acc__a a:hover { text-decoration-color: var(--onyx); }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer {
  background: var(--onyx);
  color: #fff;
  padding-block: clamp(64px, 8vw, 128px) 40px;
}
.footer__cta {
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  padding-bottom: clamp(56px, 7vw, 104px);
  margin-bottom: clamp(56px, 7vw, 96px);
  border-bottom: 1px solid var(--line-dark);
}
.footer__cta-title {
  font-size: clamp(2rem, 4.6vw, 4.2rem); font-weight: 700;
  line-height: 0.98; letter-spacing: -0.035em; max-width: 18ch;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.3fr;
  gap: clamp(32px, 4vw, 64px);
  margin-bottom: clamp(56px, 7vw, 100px);
}
.footer__logo { height: 34px; width: auto; filter: invert(1) brightness(2); margin-bottom: 26px; }
.footer__about { font-size: .95rem; line-height: 1.65; color: rgba(255,255,255,0.58); max-width: 42ch; margin-bottom: 28px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: var(--r-pill);
  border: 1px solid var(--line-dark-2); color: rgba(255,255,255,0.75);
  transition: background-color .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.footer__social a:hover { background: #fff; color: var(--onyx); border-color: #fff; transform: translateY(-2px); }
.footer__col { display: flex; flex-direction: column; }
.footer__heading {
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 22px;
}
.footer__col a { font-size: .98rem; color: rgba(255,255,255,0.78); padding: .42em 0; width: fit-content;
  transition: color .3s var(--ease); }
.footer__col a:hover { color: #fff; }
.footer__news { font-size: .95rem; line-height: 1.6; color: rgba(255,255,255,0.58); margin-bottom: 24px; }
.footer__col--news .btn { margin-top: auto; }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  padding-top: 32px; border-top: 1px solid var(--line-dark);
}
.footer__copy { font-size: .82rem; color: rgba(255,255,255,0.45); }
.footer__legal { display: flex; flex-wrap: wrap; gap: 24px; }
.footer__legal a { font-size: .82rem; color: rgba(255,255,255,0.5); transition: color .3s var(--ease); }
.footer__legal a:hover { color: #fff; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1180px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 960px) {
  :root { --header-h: 5rem; }
  .brand__logo { height: 46px; }
  .nav, .header-cta { display: none; }
  .hamburger { display: block; }
  .section-head__row { grid-template-columns: 1fr; gap: 18px; }
  .steps-wrap { padding-top: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
  .steps__track, .steps__progress, .step__dot { display: none; }
  .vtests { grid-template-columns: repeat(2, 1fr); }
  .oxclub2__grid { grid-template-columns: 1fr; }
  .faq__media { position: relative; width: 100%; height: clamp(240px, 42vw, 360px); border-radius: 0; }
  .faq__content { width: 100%; }
  .posts { grid-template-columns: 1fr; max-width: 560px; }
  .guide { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 620px) {
  .feature-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .vtests { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__cta { flex-direction: column; align-items: flex-start; }
  .hero__scroll { display: none; }
  .gap__num { font-size: clamp(2.2rem, 12vw, 3rem); }
  .gap__end { max-width: 12ch; }
  .btn { width: 100%; }
  .hero__actions .btn, .milestone .btn, .oxclub .btn { width: auto; }
  .hero__actions { width: 100%; }
  .hero__actions .btn { flex: 1 1 auto; }
}

/* =====================================================================
   REDUCED MOTION
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .js [data-reveal], .js .hero .anim { opacity: 1 !important; transform: none !important; }
  .gap__fill { width: 100% !important; }
  .steps__line { transform: scaleX(1) !important; }
  .hero__video { display: none; }
  .hero__media { background: #16161a; }
  .fic-glint, .fic-climb { display: none; }
  .fic-bar { transform: scaleY(1) !important; }
}
