/* =============================================================================
   BALLINEM
   Palette from the brand key art: turquoise on blue-black.
   One typeface (General Sans), heavy weight contrast, a lot of air.
   ========================================================================== */

:root {
  --bg:        #04090A;
  --bg-2:      #071214;
  --bg-3:      #0A181B;
  --bg-card:   #08151700;

  /* readable first — these are deliberately brighter than a typical dark theme */
  --ink:       #F3F8F8;
  --ink-dim:   rgba(243, 248, 248, .76);
  --ink-mute:  rgba(243, 248, 248, .56);
  --ink-faint: rgba(243, 248, 248, .34);

  --teal:      #12CFC9;
  --teal-hi:   #7CF5EF;
  --teal-lo:   #06817E;
  --glow:      rgba(18, 207, 201, .38);

  --line:      rgba(120, 235, 230, .14);
  --line-hi:   rgba(120, 235, 230, .30);
  --glass:     rgba(120, 235, 230, .05);
  --glass-hi:  rgba(120, 235, 230, .10);

  /* spacing scale — the fix for "text and buttons almost touch" */
  --s-1: .5rem;
  --s-2: 1rem;
  --s-3: 1.75rem;
  --s-4: 2.75rem;
  --s-5: 4rem;
  --s-6: 6rem;

  --pad:   clamp(1.25rem, 5vw, 2.5rem);
  --maxw:  1240px;
  /* Desktop wants the air; a phone just wants less scrolling. The low end of
     this clamp is what stops the page feeling endless on mobile. */
  --sec-y: clamp(4.25rem, 11vw, 13rem);
  --r:     20px;
  --r-lg:  28px;
  --nav-h: 66px;

  --e-out: cubic-bezier(.16, 1, .3, 1);
  --e-io:  cubic-bezier(.65, .05, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 28px);
}
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "General Sans", -apple-system, BlinkMacSystemFont, "SF Pro Text",
               "Segoe UI", system-ui, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: -.011em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  -webkit-tap-highlight-color: transparent;
}
body.is-locked { overflow: hidden; }
/* The intro lock is keyed off a class JS adds, never markup — with JS disabled
   the class never appears and the page can't get stuck unscrollable. */
html.intro-armed body { overflow: hidden; }

img, svg, canvas, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--teal); color: #02100F; }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 8px; }

.skip-link {
  position: fixed; top: -100px; left: 12px; z-index: 999;
  padding: .8rem 1.2rem; background: var(--teal); color: #02100F;
  border-radius: 12px; font-weight: 600;
  transition: top .2s var(--e-out);
}
.skip-link:focus { top: 12px; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.container--wide { max-width: 1460px; }
.section { position: relative; padding-block: var(--sec-y); isolation: isolate; overflow: clip; }
.section--tight { padding-block: clamp(4rem, 9vw, 7rem); }

/* ------------------------------------------------------------ typography -- */
.display {
  margin: 0;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -.038em;
  text-wrap: balance;
}
.display em {
  font-style: normal;
  background: linear-gradient(96deg, var(--teal-hi), var(--teal) 48%, var(--teal-lo));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.display--1 { font-size: clamp(3.2rem, 13vw, 8.5rem); font-weight: 600; letter-spacing: -.045em; }
.display--2 { font-size: clamp(2.3rem, 6.4vw, 4.2rem); }
.display--3 { font-size: clamp(1.6rem, 4vw, 2.3rem); letter-spacing: -.03em; }

.eyebrow {
  display: flex; align-items: center; gap: .7rem;
  margin: 0 0 var(--s-3);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--teal);
}
.eyebrow i { width: 30px; height: 1px; flex: none; background: linear-gradient(90deg, var(--teal), transparent); }

.lead {
  margin: var(--s-3) 0 0;
  font-size: clamp(1.06rem, 2.4vw, 1.3rem);
  line-height: 1.6; color: var(--ink-dim);
  max-width: 48ch; text-wrap: pretty;
}
.lead--center { margin-inline: auto; text-align: center; }
.body-dim { margin: var(--s-2) 0 0; font-size: 1rem; line-height: 1.68; color: var(--ink-mute); max-width: 50ch; }

/* every CTA gets real breathing room above it */
.cta-row { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: var(--s-4); }

.sec-head { text-align: center; margin-bottom: clamp(3.5rem, 8vw, 6rem); }
.sec-head .eyebrow { justify-content: center; }
.sec-head .eyebrow i { display: none; }
.sec-head .lead { margin-top: var(--s-3); }

.disclaimer {
  margin: var(--s-5) auto 0; max-width: 66ch; text-align: center;
  font-size: .84rem; line-height: 1.65; color: var(--ink-faint);
}

/* --------------------------------------------------------------- effects -- */
.grain {
  position: absolute; inset: 0; pointer-events: none; opacity: .4; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
}
/* Big blurred glows. `will-change: transform` promotes each to its own layer so
   the blur rasterises ONCE — without it, every scroll frame re-blurs a 600px
   box, which is exactly the kind of thing that stalls a frame. */
.orb {
  position: absolute; z-index: -1; border-radius: 50%;
  filter: blur(80px); pointer-events: none; opacity: .55;
  will-change: transform;
  transform: translateZ(0);
  contain: layout paint;
}
.orb--a { width: 48vw; height: 48vw; max-width: 560px; max-height: 560px; top: 2%;  right: -14vw; background: radial-gradient(circle, rgba(18,207,201,.30), transparent 68%); }
.orb--b { width: 54vw; height: 54vw; max-width: 600px; max-height: 600px; top: 8%;  left: -18vw;  background: radial-gradient(circle, rgba(18,207,201,.20), transparent 68%); }
.orb--c { width: 52vw; height: 52vw; max-width: 580px; max-height: 580px; bottom: -6%; right: -16vw; background: radial-gradient(circle, rgba(18,207,201,.24), transparent 68%); }

/* ------------------------------------------------------------------ intro -- */
.intro {
  position: fixed; inset: 0; z-index: 300;
  display: grid; place-items: center;
  background: var(--bg);
}
.intro__inner { position: relative; z-index: 1; display: grid; place-items: center; gap: 1.5rem; }
.intro__mark {
  display: grid; place-items: center;
  color: var(--teal);
  filter: drop-shadow(0 0 34px var(--glow));
}
.intro__mark .bagmark { font-size: 62px; }
.intro__word { font-size: .8rem; font-weight: 500; letter-spacing: .38em; color: var(--ink-faint); }
.intro__rail { width: min(220px, 46vw); height: 2px; border-radius: 2px; background: rgba(120,235,230,.16); overflow: hidden; }
.intro__bar { height: 100%; width: 100%; transform: scaleX(0); transform-origin: 0 50%; background: linear-gradient(90deg, var(--teal-lo), var(--teal-hi)); }
/* sits behind the mark and exits slower, so the wipe has two layers of depth */
.intro__curtain { position: absolute; inset: 0; z-index: 0; background: #061012; }
html.no-js .intro { display: none; }

/* --------------------------------------------------- scroll progress bar -- */
.readbar { position: fixed; top: 0; left: 0; right: 0; z-index: 95; height: 2px; pointer-events: none; }
.readbar__fill {
  height: 100%; width: 100%; transform: scaleX(0); transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--teal-lo), var(--teal) 55%, var(--teal-hi));
  box-shadow: 0 0 14px var(--glow);
}

/* --------------------------------------------------------------- buttons -- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  gap: .6rem; padding: 1.05rem 1.85rem;
  border-radius: 100px; overflow: hidden; isolation: isolate;
  font-weight: 600; font-size: 1rem; letter-spacing: -.012em;
  white-space: nowrap; cursor: pointer; transform: translateZ(0);
  transition: transform .4s var(--e-out), box-shadow .4s var(--e-out),
              background-color .3s ease, border-color .3s ease;
}
.btn__label { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: .6rem; }
.btn__ico { width: 1.1em; height: 1.1em; fill: currentColor; flex: none; }

.btn--primary {
  color: #02100F;
  background: linear-gradient(135deg, var(--teal-hi) 0%, var(--teal) 46%, #0BA9A4 100%);
  box-shadow: 0 0 0 1px rgba(255,255,255,.22) inset,
              0 1px 0 rgba(255,255,255,.5) inset,
              0 12px 38px -14px var(--glow);
}
.btn--primary .btn__glow {
  position: absolute; inset: -60%; z-index: 1; opacity: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.85), transparent 45%);
  transition: opacity .45s var(--e-out);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px rgba(255,255,255,.3) inset, 0 1px 0 rgba(255,255,255,.6) inset,
              0 24px 52px -16px rgba(18,207,201,.62);
}
.btn--primary:hover .btn__glow { opacity: .6; }
.btn:active { transform: translateY(1px) scale(.98); transition-duration: .09s; }

/* No backdrop-filter: these appear ~7 times down the page and sit on a near-black
   background, so it costs real frame time and shows nothing. Reserved for the
   two fixed bars, where the content behind actually moves. */
.btn--ghost {
  color: var(--ink); background: var(--glass); border: 1px solid var(--line-hi);
}
.btn--ghost:hover { background: var(--glass-hi); border-color: rgba(120,235,230,.5); transform: translateY(-3px); }

.btn--sm { padding: .68rem 1.2rem; font-size: .9rem; }
/* nav pill reads "Join" on narrow phones, "Join Channel" once there's room */
.btn__more { display: none; }
@media (min-width: 420px) { .btn__more { display: inline; } }
.btn--lg { padding: 1.15rem 2.1rem; font-size: 1.05rem; }
.btn--xl { padding: 1.3rem 2.5rem; font-size: 1.1rem; }
.btn--block { display: flex; width: 100%; }

.ripple__ink {
  position: absolute; z-index: 1; border-radius: 50%; background: rgba(255,255,255,.55);
  transform: translate(-50%,-50%) scale(0); pointer-events: none;
  animation: ripple .62s var(--e-out) forwards;
}
@keyframes ripple { to { transform: translate(-50%,-50%) scale(1); opacity: 0; } }

/* =========================================================== NAV ========== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 90; padding: .7rem var(--pad) 0; transition: transform .45s var(--e-out); }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  max-width: var(--maxw); margin-inline: auto;
  height: calc(var(--nav-h) - 10px);
  padding: .35rem .35rem .35rem 1.15rem;
  border: 1px solid transparent; border-radius: 100px;
  transition: background-color .45s var(--e-out), border-color .45s var(--e-out), box-shadow .45s var(--e-out);
}
.nav.is-stuck .nav__inner {
  background: rgba(7,18,20,.7); border-color: var(--line);
  -webkit-backdrop-filter: blur(22px) saturate(150%); backdrop-filter: blur(22px) saturate(150%);
  box-shadow: 0 14px 42px -20px rgba(0,0,0,.95);
}
.nav.is-hidden { transform: translateY(calc(-100% - 16px)); }

/* Bag-with-an-S mark, drawn to echo Ballinem's own milestone plaque.
   Deliberately NOT Shopify's logo — adopting another company's trademark as your
   own brand identity is a different thing entirely from photographing a plaque
   you were sent. */
/* Official Shopify bag mark. The trademark belongs to Shopify; it is used here
   at Ballinem's direction to reference the platform the stores run on. */
.bagmark { display: block; width: 1em; height: 1em; fill: currentColor; }

.brand { display: inline-flex; align-items: center; gap: .55rem; }
.brand .bagmark { font-size: 26px; color: var(--teal); }
.brand__word { font-weight: 600; font-size: 1rem; letter-spacing: .12em; }

/* brand | links | picker + CTA, and it still works when links are hidden */
.nav__inner { justify-content: flex-start; }
.brand { margin-right: auto; }
.nav__links { margin-right: auto; }

/* ------------------------------------------------------- language picker -- */
.lang { position: relative; }
@media (max-width: 559px) {
  .lang__btn { padding: .5rem .55rem; gap: .25rem; }
  .lang__btn > svg:first-child { display: none; }
}
/* brand + picker + CTA is a lot for a 360px bar — buy back some room */
@media (max-width: 419px) {
  .nav__inner { gap: .55rem; padding-left: .85rem; }
  .brand { gap: .45rem; }
  .brand__word { font-size: .84rem; letter-spacing: .07em; }
  .brand .bagmark { font-size: 22px; }
}
.lang__btn {
  display: inline-flex; align-items: center; gap: .38rem;
  padding: .5rem .7rem; border-radius: 100px;
  border: 1px solid var(--line-hi); background: var(--glass);
  font-size: .82rem; font-weight: 600; color: var(--ink-dim);
  transition: color .25s ease, background-color .25s ease, border-color .25s ease;
}
.lang__btn:hover { color: var(--ink); background: var(--glass-hi); border-color: rgba(120,235,230,.4); }
.lang__btn > svg:first-child { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.lang__caret { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 2.2; transition: transform .3s var(--e-out); }
.lang.is-open .lang__caret { transform: rotate(180deg); }
.lang__current { letter-spacing: .04em; }

.lang__menu {
  position: absolute; top: calc(100% + .5rem); right: 0; z-index: 20;
  min-width: 172px; padding: .35rem;
  border: 1px solid var(--line-hi); border-radius: 14px;
  background: rgba(7,18,20,.94);
  -webkit-backdrop-filter: blur(20px) saturate(150%); backdrop-filter: blur(20px) saturate(150%);
  box-shadow: 0 20px 50px -20px #000;
  opacity: 0; visibility: hidden; transform: translateY(-6px) scale(.97);
  transform-origin: top right;
  transition: opacity .25s var(--e-out), transform .25s var(--e-out), visibility .25s;
}
.lang.is-open .lang__menu { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.lang__opt {
  display: flex; align-items: center; gap: .6rem; width: 100%;
  padding: .55rem .7rem; border-radius: 9px; text-align: left;
  font-size: .9rem; color: var(--ink-dim);
  transition: background-color .2s ease, color .2s ease;
}
.lang__opt:hover { background: var(--glass-hi); color: var(--ink); }
.lang__opt[aria-current="true"] { color: var(--teal); }
.lang__code {
  min-width: 26px; font-size: .7rem; font-weight: 700; letter-spacing: .06em;
  color: var(--ink-faint);
}
.lang__opt[aria-current="true"] .lang__code { color: var(--teal); }

.nav__links { display: none; gap: 1.9rem; font-size: .95rem; color: var(--ink-mute); }
.nav__links a { position: relative; transition: color .25s ease; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px;
  background: var(--teal); transform: scaleX(0); transform-origin: left;
  transition: transform .38s var(--e-out);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); }

/* =========================================================== HERO ========= */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-bottom: clamp(4rem, 12vh, 7rem); overflow: clip;
}
.hero__media { position: absolute; inset: 0; z-index: -1; overflow: clip; }
.hero__lqip {
  position: absolute; inset: -4%; background-size: cover; background-position: 54% 24%;
  filter: blur(28px) saturate(120%); transform: scale(1.06) translateZ(0);
  transition: opacity .6s ease; will-change: opacity;
}
.is-loaded .hero__lqip { opacity: 0; }
.hero__img {
  position: absolute; inset: -6% 0; width: 100%; height: 112%;
  object-fit: cover; object-position: 54% 22%;
  opacity: 0; transition: opacity .9s var(--e-out);
}
.is-loaded .hero__img { opacity: 1; }
.hero__smoke {
  position: absolute; inset: -6% 0; width: 100%; height: 112%;
  mix-blend-mode: screen; opacity: 0; pointer-events: none;
  transition: opacity 1.4s ease .25s;
}
.is-loaded .hero__smoke { opacity: 1; }
.hero__grade {
  position: absolute; inset: 0; mix-blend-mode: screen; pointer-events: none;
  background:
    radial-gradient(52% 40% at 57% 33%, rgba(18,207,201,.34), transparent 64%),
    radial-gradient(85% 55% at 50% 104%, rgba(18,207,201,.18), transparent 72%),
    radial-gradient(40% 60% at 4% 55%, rgba(18,207,201,.12), transparent 70%);
}
.hero__vignette {
  position: absolute; inset: 0;
  background: radial-gradient(120% 85% at 58% 30%, transparent 30%, rgba(3,14,15,.55) 78%, rgba(4,9,10,.93) 100%);
}
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(4,9,10,.74) 0%, rgba(4,9,10,.08) 26%,
              rgba(4,9,10,.58) 62%, rgba(4,9,10,.94) 84%, var(--bg) 100%);
}
.hero__content { position: relative; z-index: 2; }
.hero__title { margin-bottom: var(--s-3); font-size: clamp(3.4rem, 14vw, 8.5rem); }
.hero__sub {
  margin: 0; max-width: 38ch;
  font-size: clamp(1.06rem, 2.6vw, 1.3rem); line-height: 1.58; color: var(--ink-dim);
  text-wrap: pretty;
}
.hero__micro {
  display: flex; align-items: center; flex-wrap: wrap; gap: .7rem;
  margin: var(--s-3) 0 0; font-size: .88rem; color: var(--ink-faint);
}
.hero__micro i { width: 3px; height: 3px; border-radius: 50%; background: currentColor; }

.scrollcue { position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%); z-index: 3; display: none; }
.scrollcue__rail { display: block; width: 24px; height: 38px; border: 1px solid var(--line-hi); border-radius: 100px; position: relative; }
.scrollcue__dot { position: absolute; top: 8px; left: 50%; width: 3px; height: 6px; margin-left: -1.5px; border-radius: 3px; background: var(--teal); animation: cue 1.9s var(--e-io) infinite; }
@keyframes cue { 0%,100%{transform:translateY(0);opacity:0} 25%{opacity:1} 75%{transform:translateY(14px);opacity:0} }

/* ==================================================== BUILT-WITH STRIP ==== */
.stack-strip {
  position: relative; z-index: 2;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18,207,201,.045), transparent);
}
.stack-strip__h {
  margin: 0 0 var(--s-3); text-align: center;
  font-size: .74rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-faint);
}
.logos {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(1.6rem, 5vw, 3.4rem);
}
/* Muted via COLOUR, never opacity — opacity belongs to the reveal animation,
   and two owners of the same property means the resting look gets clobbered. */
.logo {
  display: inline-flex; align-items: center; gap: .6rem;
  color: rgba(243, 248, 248, .48);
  font-size: 1.05rem; font-weight: 600; letter-spacing: -.02em;
  transition: color .35s var(--e-out), transform .35s var(--e-out);
}
.logo:hover { color: var(--ink); transform: translateY(-2px); }
.logo svg { width: 23px; height: 23px; flex: none; fill: currentColor; }

/* ========================================================= TICKER ========= */
.ticker {
  position: relative; z-index: 2; padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker__track { display: flex; width: max-content; will-change: transform; }
.ticker__group {
  display: flex; align-items: center; gap: 1.8rem; padding-right: 1.8rem;
  font-size: .82rem; font-weight: 500; letter-spacing: .17em; text-transform: uppercase;
  color: var(--ink-mute); white-space: nowrap;
}
.ticker__group i { color: var(--teal); font-style: normal; }

/* ========================================================== STATS ========= */
.statrow { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; }
.stat {
  padding: var(--s-3) 1.3rem; border: 1px solid var(--line); border-radius: var(--r);
  background: linear-gradient(180deg, rgba(18,207,201,.075), rgba(18,207,201,.012));
}
/* Counters rewrite textContent every frame while they run. `contain` stops that
   text change from reflowing anything outside the number itself. */
.stat__n, .roas__n, .bar__v { contain: layout style; }
.stat__n {
  display: block; font-weight: 600; font-size: clamp(1.9rem, 5.4vw, 2.8rem);
  line-height: 1; letter-spacing: -.04em; font-variant-numeric: tabular-nums;
  background: linear-gradient(140deg, var(--teal-hi), var(--teal) 55%, var(--teal-lo));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat__k { display: block; margin-top: .7rem; font-size: .84rem; color: var(--ink-mute); }

/* -------------------------------------------------- channel rebuild note -- */
.rebuild {
  margin-top: var(--s-5);
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--line); border-left: 2px solid var(--teal);
  border-radius: 14px;
  background: linear-gradient(100deg, rgba(18,207,201,.09), rgba(18,207,201,.015));
}
.rebuild__k {
  margin: 0 0 .5rem; font-size: .74rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--teal);
}
.rebuild__t { margin: 0; font-size: 1rem; line-height: 1.62; color: var(--ink-dim); max-width: 62ch; }
.rebuild__t b { color: var(--ink); font-weight: 600; }

/* ------------------------------------------------- inside the mentorship -- */
.inside { margin-top: var(--s-6); }
.inside__head { text-align: center; margin-bottom: var(--s-4); }
.inside__head .eyebrow { justify-content: center; }
.inside__head .eyebrow i { display: none; }
.flags {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .55rem;
  margin: var(--s-3) 0 0; padding: 0; list-style: none;
}
.flags li {
  padding: .5rem 1rem; border: 1px solid var(--line); border-radius: 100px;
  background: rgba(120,235,230,.04); font-size: .88rem; color: var(--ink-mute);
}
.inside__note {
  margin: var(--s-3) auto 0; max-width: 56ch; text-align: center;
  font-size: .98rem; line-height: 1.62; color: var(--ink-mute);
}

/* ==================================================== PROGRESS BARS ======= */
.bars { display: grid; gap: 1.15rem; margin: 0; padding: 0; list-style: none; }
.bar { display: grid; grid-template-columns: 1fr auto; gap: .4rem .9rem; align-items: baseline; }
.bar__k { font-size: .92rem; color: var(--ink-dim); }
.bar__v { font-weight: 600; font-size: .95rem; color: var(--teal); font-variant-numeric: tabular-nums; }
.bar__track {
  grid-column: 1 / -1; position: relative; height: 7px; border-radius: 100px;
  background: rgba(120,235,230,.11); overflow: hidden;
}
.bar__fill {
  position: absolute; inset: 0 auto 0 0; width: var(--w, 0%); border-radius: 100px;
  background: linear-gradient(90deg, var(--teal-lo), var(--teal) 60%, var(--teal-hi));
  box-shadow: 0 0 14px var(--glow);
  transform: scaleX(0); transform-origin: 0 50%;
}
.bar--muted .bar__fill { background: linear-gradient(90deg, #16484B, #1E6A6C); box-shadow: none; }
.bar--muted .bar__v { color: var(--ink-mute); }

/* ---------------------------------------------------------------- layout -- */
.split { display: grid; gap: clamp(3rem, 8vw, 5rem); }
.chips { display: flex; flex-wrap: wrap; gap: .6rem; margin: var(--s-4) 0 0; padding: 0; list-style: none; }
.chip {
  padding: .55rem 1.05rem; border: 1px solid var(--line-hi); border-radius: 100px;
  background: var(--glass); font-size: .88rem; color: var(--ink-dim);
}

.frame {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line-hi); background: var(--bg-2);
  box-shadow: 0 50px 100px -55px #000;
}
.frame img { width: 100%; }
.frame__sheen {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(125deg, rgba(124,245,239,.13) 0%, transparent 28%, transparent 72%, rgba(124,245,239,.05) 100%);
}
.frame__cap { margin-top: var(--s-2); font-size: .85rem; color: var(--ink-faint); }
.frame-wrap { margin: 0; }

/* ------------------------------------------------------------- resources -- */
.vault { list-style: none; margin: 0; padding: 0; display: block; }
.chip-row {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between;
  gap: .35rem 1rem; padding: 1.35rem .2rem;
  border-bottom: 1px solid var(--line);
  transition: padding-left .4s var(--e-out), border-color .4s ease;
}
.chip-row:first-child { border-top: 1px solid var(--line); }
.chip-row:hover { padding-left: .8rem; border-color: var(--line-hi); }
.chip-row b { font-size: 1.08rem; font-weight: 600; letter-spacing: -.02em; }
.chip-row span { font-size: .92rem; color: var(--ink-mute); }

/* ========================================================= PLAQUE ========= */
.plaque {
  position: relative; width: min(80%, 430px); margin-inline: auto;
  aspect-ratio: 1296 / 1498;
  --s-glow: .38;
}
.plaque__img { position: relative; z-index: 2; width: 100%; filter: brightness(.80) contrast(1.10) saturate(.65); }
/* This one is blurred AND scales forever. Unpromoted, that re-blurs a 500px box
   on every frame of the loop, permanently — one of the worst things you can ask
   a compositor to do. `will-change` makes it rasterise once and just transform. */
.plaque__halo {
  position: absolute; inset: -24% -20% -14%; z-index: 0; border-radius: 50%;
  background: radial-gradient(circle at 45% 48%, rgba(18,207,201,.42), rgba(18,207,201,.08) 46%, transparent 70%);
  filter: blur(30px); opacity: calc(.30 + var(--s-glow) * .70);
  animation: breath 5.5s var(--e-io) infinite;
  will-change: transform, opacity;
}
@keyframes breath { 0%,100%{transform:scale(1)} 50%{transform:scale(1.07)} }
.plaque__floor {
  position: absolute; left: 6%; right: 6%; bottom: -5%; height: 16%; z-index: 1;
  background: radial-gradient(ellipse at 50% 50%, rgba(18,207,201,.30), transparent 70%);
  filter: blur(16px); opacity: calc(.35 + var(--s-glow) * .65);
  will-change: opacity; transform: translateZ(0);
}
.plaque__s {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  -webkit-mask-image: url("../img/plaque-s-mask.webp"); mask-image: url("../img/plaque-s-mask.webp");
  -webkit-mask-size: 100% 100%; mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
}
.plaque__s--core {
  background: linear-gradient(155deg, var(--teal-hi), var(--teal) 42%, var(--teal-lo));
  mix-blend-mode: screen; opacity: calc(.30 + var(--s-glow) * .70);
}
/* These are blurred AND their opacity is driven by --s-glow on every scroll
   frame. Promoting them means the blur rasterises once and only the layer's
   alpha changes, which the compositor does for free. */
.plaque__s--bloom {
  background: var(--teal); filter: blur(26px);
  opacity: calc(.28 + var(--s-glow) * .72); transform: scale(1.02) translateZ(0);
  will-change: opacity;
}
.plaque__s--bloom2 {
  background: var(--teal-hi); filter: blur(55px);
  opacity: calc(.18 + var(--s-glow) * .55); transform: scale(1.05) translateZ(0);
  will-change: opacity;
}
.plaque__s--sweep {
  background: linear-gradient(105deg, transparent 38%, rgba(220,255,253,.85) 50%, transparent 62%);
  background-size: 260% 100%; mix-blend-mode: screen;
  opacity: calc(.35 + var(--s-glow) * .65);
  animation: sweep 4.6s var(--e-io) infinite 1s;
}
@keyframes sweep { 0%,58%,100%{background-position:190% 0} 82%{background-position:-90% 0} }
.plaque__spill {
  position: absolute; inset: 0; z-index: 2; pointer-events: none; mix-blend-mode: screen;
  background: radial-gradient(38% 30% at 44% 57%, rgba(18,207,201,.42), transparent 70%);
  opacity: calc(.25 + var(--s-glow) * .75);
}

/* ======================================================== FOUNDER ========= */
.founder {
  position: relative;
  padding: clamp(1.6rem, 4vw, 2.4rem);
  border: 1px solid var(--line-hi); border-radius: var(--r-lg);
  background:
    radial-gradient(120% 80% at 15% 0%, rgba(18,207,201,.14), transparent 60%),
    linear-gradient(180deg, rgba(18,207,201,.06), rgba(18,207,201,.014));
  box-shadow: 0 50px 100px -60px #000;
  overflow: hidden;
}
.founder::before {
  content: ""; position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,245,239,.6), transparent);
}
.founder__top { display: flex; align-items: center; gap: 1.1rem; }
.founder__av {
  position: relative; width: 78px; height: 78px; flex: none;
  border-radius: 50%; overflow: hidden;
  border: 1px solid var(--line-hi);
  box-shadow: 0 0 40px -8px var(--glow);
}
.founder__av video, .founder__av img { width: 100%; height: 100%; object-fit: cover; }
.founder__av::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: inset 0 0 22px rgba(18,207,201,.28); pointer-events: none;
}
.founder__ring {
  position: absolute; inset: -7px; border-radius: 50%;
  border: 1px solid rgba(18,207,201,.5);
  animation: ring 3.4s var(--e-io) infinite;
}
@keyframes ring {
  0%   { transform: scale(1);    opacity: .9; }
  70%  { transform: scale(1.22); opacity: 0; }
  100% { transform: scale(1.22); opacity: 0; }
}
.founder__id { min-width: 0; }
.founder__name { display: block; font-size: 1.3rem; font-weight: 600; letter-spacing: -.03em; }
.founder__tag {
  display: inline-flex; align-items: center; gap: .4rem; margin-top: .25rem;
  font-size: .95rem; color: var(--teal); font-weight: 500;
}
.founder__tag svg { width: 15px; height: 15px; fill: currentColor; }
.founder__body { margin: var(--s-3) 0 0; font-size: 1.02rem; line-height: 1.65; color: var(--ink-dim); }
.founder__meta {
  display: flex; flex-wrap: wrap; gap: .5rem; margin: var(--s-3) 0 0; padding: 0; list-style: none;
}
.founder__meta li {
  padding: .45rem .9rem; border: 1px solid var(--line); border-radius: 100px;
  font-size: .82rem; color: var(--ink-mute); background: rgba(120,235,230,.04);
}
.founder__cta { margin-top: var(--s-4); }
.founder__handle {
  margin: var(--s-2) 0 0; font-size: .84rem; color: var(--ink-faint);
  font-variant-numeric: tabular-nums;
}

/* 9:16 proof slot */
.proof { position: relative; }
/* The plaque sits in here as the resting image, so the slot never looks empty.
   Drop assets/img/proof-9x16.webp in and the cash shot takes over. */
.proof__frame {
  position: relative; aspect-ratio: 9 / 16; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line-hi);
  background:
    radial-gradient(120% 70% at 50% 40%, rgba(18,207,201,.16), transparent 62%),
    linear-gradient(180deg, #0A1B1E, #050E10);
  box-shadow: 0 50px 100px -55px #000;
}
.proof__frame::before {
  content: ""; position: absolute; inset: 12%;
  background: url("../img/plaque.webp") no-repeat center / contain;
  filter: brightness(.9) saturate(.7) drop-shadow(0 0 40px rgba(18,207,201,.35));
}
.proof.has-shot .proof__frame::before { display: none; }
.proof__frame img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; display: none; }
.proof.has-shot .proof__frame img { display: block; }

/* Telegram handles read as links, because they are */
.tg-link {
  color: var(--teal); font-weight: 600;
  text-decoration: underline; text-underline-offset: .18em;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(18,207,201,.45);
  transition: color .25s ease, text-decoration-color .25s ease;
}
.tg-link:hover { color: var(--teal-hi); text-decoration-color: var(--teal-hi); }
.proof__ph {
  position: absolute; inset: 0; display: grid; place-content: center; gap: .8rem;
  text-align: center; padding: 2rem;
}
.proof.has-shot .proof__ph { display: none; }
.proof__ph svg { width: 34px; height: 34px; margin-inline: auto; stroke: var(--teal); fill: none; stroke-width: 1.5; opacity: .8; }
.proof__ph b { font-size: .95rem; font-weight: 600; color: var(--ink-dim); }
.proof__ph span { font-size: .78rem; line-height: 1.55; color: var(--ink-faint); }
.proof__ph code { color: var(--teal); }
.proof__glow {
  position: absolute; inset: -12%; z-index: -1; border-radius: 50%;
  background: radial-gradient(circle, rgba(18,207,201,.22), transparent 66%); filter: blur(40px);
  will-change: transform; transform: translateZ(0);   /* rides the parallax */
}
.proof__cap { margin-top: var(--s-2); font-size: .82rem; color: var(--ink-faint); text-align: center; }

/* ========================================================== STORY ========= */
/* Highlight treatments, borrowed from how this stuff actually reads on IG:
   a filled box for the line that matters, a heavy rule for the two words that
   carry the whole argument. */
/* `background-color: yellow` is a UA default on <mark>. Setting only
   background-image let that yellow composite through the teal, which is where
   the unreadable lime came from. Kill the colour, use a solid fill, and flip the
   text to near-black once the fill is behind it. */
.story mark, mark {
  background-color: transparent;
  background-image: linear-gradient(180deg, var(--teal-hi), var(--teal));
  background-repeat: no-repeat;
  background-size: 0% 100%;                 /* wipes in when scrolled to */
  color: var(--ink);                        /* readable BEFORE the fill lands */
  padding: .06em .3em; margin: 0 -.06em;
  border-radius: 6px;
  box-decoration-break: clone; -webkit-box-decoration-break: clone;
  transition: background-size .75s var(--e-out), color .35s ease .28s;
}
mark.is-in { background-size: 100% 100%; color: #02100F; }

.u  { position: relative; white-space: nowrap; }
.u::after {
  content: ""; position: absolute; left: -.04em; right: -.04em; bottom: -.1em;
  height: .13em; border-radius: 3px; background: var(--teal);
  transform: scaleX(0); transform-origin: 0 50%;
  transition: transform .85s var(--e-out) .1s;
}
.u.is-in::after { transform: scaleX(1); }
.u--loss::after { background: #FF5F57; }

.anim-off .u::after { transform: scaleX(1); }
.anim-off mark { background-size: 100% 100%; color: #02100F; }

/* NB: no `max-width` in ch here. `ch` resolves against this element's own font
   size (17px), not the 112px number inside it — which is what was cropping the
   €70,000 mid-digit. */
.hook { text-align: center; margin-inline: auto; }

.hook__wrap {
  position: relative; display: inline-block;
  padding: .1em .12em;
  isolation: isolate;
}
.hook__punch { position: relative; z-index: 2; display: block; will-change: transform; }

/* `background-clip: text` paints inside the PADDING box only. With a tight
   line-height the comma's tail falls outside it and renders unfilled/clipped —
   hence the roomier line-height and the bottom padding. Transforms are on
   .hook__punch, not here: scaling a gradient-clipped text node leaves smears. */
.hook__n {
  display: block; font-weight: 600; line-height: 1.12;
  letter-spacing: -.05em; white-space: nowrap;
  font-size: clamp(2.7rem, 13vw, 7rem);
  font-variant-numeric: tabular-nums;
  padding: .04em .08em .16em;
  background-image: linear-gradient(140deg, #FFF 0%, var(--teal-hi) 42%, var(--teal) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
/* the moment it breaks */
.hook__n.is-broken {
  background-image: linear-gradient(140deg, #FFD3D0 0%, #FF6B62 38%, #C81E14 100%);
}

.hook__flash {
  position: absolute; inset: -40% -25%; z-index: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,70,58,.55), transparent 66%);
  filter: blur(30px); opacity: 0; pointer-events: none;
  will-change: opacity, transform;
}
.hook__cracks {
  position: absolute; inset: -30% -18%; z-index: 3;
  width: auto; height: auto; overflow: visible; pointer-events: none;
}
.hook__cracks path {
  fill: none; stroke: #FF5F57; stroke-width: 1.6; stroke-linecap: round;
  opacity: .85; filter: drop-shadow(0 0 6px rgba(255,95,87,.7));
}
.shard {
  position: absolute; top: 50%; left: 50%; z-index: 4;
  width: 10px; height: 10px; pointer-events: none;
  background: linear-gradient(140deg, #FF9A93, #C81E14);
  clip-path: polygon(50% 0%, 100% 72%, 12% 100%);
  will-change: transform, opacity;
}

.hook__t {
  display: block; margin-top: .5rem;
  font-size: clamp(1.4rem, 5vw, 2.5rem); font-weight: 500; letter-spacing: -.03em;
}
.hook__sub {
  margin: var(--s-3) auto 0; max-width: 46ch;
  font-size: clamp(1rem, 2.4vw, 1.15rem); line-height: 1.62; color: var(--ink-dim);
}

@media (prefers-reduced-motion: reduce) {
  .hook__cracks, .hook__flash, .shard { display: none; }
}

/* ---------------------------------------------------------- story map --- */
/* A wavy path down the timeline that draws itself as you scroll, with a node
   per chapter that lights up when you reach it. Gives the story a spine so it
   reads as a journey instead of a stack of cards. */
/* Left-hand rail at every width. Centring it meant the line ran straight
   through the centred chapters' copy. */
.storymap {
  position: absolute; top: 0; bottom: 0; left: 0;
  width: 44px; pointer-events: none; z-index: 0;
  overflow: visible;
}
.storymap svg { width: 100%; height: 100%; overflow: visible; }
.storymap__base { fill: none; stroke: rgba(120,235,230,.16); stroke-width: 2; }
.storymap__fill {
  fill: none; stroke: url(#mapGrad); stroke-width: 3; stroke-linecap: round;
  filter: drop-shadow(0 0 8px rgba(18,207,201,.55));
}
.storymap__head {
  fill: var(--teal-hi);
  filter: drop-shadow(0 0 12px var(--teal));
}

.mapnode {
  position: absolute; left: 22px; transform: translate(-50%, -50%);
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--bg-2); border: 2px solid rgba(120,235,230,.28);
  z-index: 2; pointer-events: none;
  transition: background-color .4s var(--e-out), border-color .4s var(--e-out), transform .4s var(--e-out);
}
.mapnode.is-hit {
  background: var(--teal); border-color: var(--teal-hi);
  animation: nodePop .7s var(--e-out);
}
.mapnode.is-hit::after {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid var(--teal);
  animation: nodeRing .9s var(--e-out) forwards;
}
@keyframes nodePop {
  0% { transform: translate(-50%,-50%) scale(1); }
  40% { transform: translate(-50%,-50%) scale(1.9); }
  100% { transform: translate(-50%,-50%) scale(1); }
}
@keyframes nodeRing {
  0% { transform: scale(.6); opacity: .9; }
  100% { transform: scale(2.4); opacity: 0; }
}
/* the age badge reacts when its node is reached */
.chapter__age { transition: transform .45s var(--e-out), box-shadow .45s var(--e-out); }
.chapter.is-hit .chapter__age {
  transform: scale(1.06);
  box-shadow: 0 0 26px -6px var(--glow);
}

.chapters {
  position: relative; margin: 0; padding: 0; list-style: none;
  display: grid; gap: clamp(2.75rem, 7vw, 7rem);
  margin-top: clamp(2.5rem, 7vw, 7rem);
}
.chapters > .chapter { position: relative; z-index: 1; }

/* the rail needs its own gutter so nothing sits on top of the line */
.chapters { padding-left: 52px; }
@media (max-width: 759px) {
  .chapters { padding-left: 42px; }
  .storymap { width: 36px; }
  .mapnode { left: 18px; }
}
.chapter { display: grid; gap: var(--s-3); align-items: center; }
.chapter__body { min-width: 0; }
.chapter__age {
  display: inline-flex; align-items: center; gap: .55rem;
  margin-bottom: var(--s-2);
  padding: .4rem .9rem .4rem .55rem;
  border: 1px solid var(--line-hi); border-radius: 100px;
  font-size: .8rem; font-weight: 600; color: var(--teal);
  background: rgba(18,207,201,.07);
}
.chapter__age b {
  display: grid; place-items: center; min-width: 26px; height: 26px; padding-inline: .4rem;
  border-radius: 50px; background: var(--teal); color: #02100F; font-size: .78rem; font-weight: 700;
}
/* line-height has to clear the highlight box, or a <mark> on line two collides
   with the descenders of line one ("I grew up" hitting the "class" fill). */
.chapter__h {
  margin: 0; font-size: clamp(1.5rem, 4.6vw, 2.3rem); font-weight: 600;
  line-height: 1.36; letter-spacing: -.03em; text-wrap: balance;
}
/* solo card once the proof slot removes itself */
.split--founder.is-solo { grid-template-columns: 1fr; max-width: 720px; margin-inline: auto; }
.chapter__p {
  margin: var(--s-2) 0 0; font-size: clamp(1rem, 2.2vw, 1.09rem);
  line-height: 1.68; color: var(--ink-dim); max-width: 48ch;
}
.chapter__p + .chapter__p { margin-top: .9rem; }

/* One image per chapter. If the file isn't there the whole slot is removed by
   JS rather than leaving an empty frame or a developer note on a live page. */
.chapter__media { position: relative; }
.chapter__shot {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line-hi);
  background: #061012;
  box-shadow: 0 50px 100px -55px #000;
}
.chapter__shot img { width: 100%; height: auto; display: block; }

/* ------------------------------------------------------- marbella video -- */
.vidcard {
  position: relative; display: block; width: 100%; padding: 0;
  border-radius: var(--r-lg); overflow: hidden; cursor: pointer;
  border: 1px solid var(--line-hi); background: #061012;
  box-shadow: 0 50px 100px -55px #000;
  transition: transform .45s var(--e-out);
}
.vidcard:hover { transform: translateY(-4px); }
.vidcard video { width: 100%; height: auto; display: block; }
.vidcard__hint {
  position: absolute; right: .85rem; bottom: .85rem;
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .6rem 1rem; border-radius: 100px;
  font-size: .84rem; font-weight: 600; color: #02100F;
  background: linear-gradient(135deg, var(--teal-hi), var(--teal));
  box-shadow: 0 10px 30px -10px var(--glow);
  transition: transform .35s var(--e-out);
}
.vidcard:hover .vidcard__hint { transform: scale(1.05); }
.vidcard__hint svg { width: 15px; height: 15px; fill: currentColor; }

.vidmodal {
  position: fixed; inset: 0; z-index: 210;
  display: grid; place-items: center; padding: var(--pad);
  background: rgba(2,6,7,.96);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--e-out), visibility .35s;
}
.vidmodal.is-open { opacity: 1; visibility: visible; }
.vidmodal__inner {
  position: relative; width: min(100%, 460px);
  border-radius: 22px; overflow: hidden;
  border: 1px solid var(--line-hi);
  box-shadow: 0 50px 120px -40px #000, 0 0 80px -30px var(--glow);
  transform: scale(.94); transition: transform .45s var(--e-out);
}
.vidmodal.is-open .vidmodal__inner { transform: scale(1); }
.vidmodal video { width: 100%; height: auto; display: block; }
/* one control, nothing else — no scrubber, no pause */
.vidmodal__sound {
  position: absolute; right: .9rem; bottom: .9rem;
  display: grid; place-items: center; width: 48px; height: 48px;
  border-radius: 50%; color: var(--ink);
  background: rgba(4,9,10,.72); border: 1px solid var(--line-hi);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  transition: background-color .25s, transform .25s, color .25s;
}
.vidmodal__sound:hover { transform: scale(1.08); }
.vidmodal__sound.is-on { background: var(--teal); color: #02100F; border-color: transparent; }
.vidmodal__sound svg { width: 20px; height: 20px; fill: currentColor; }
.vidmodal__sound .ico-off { display: none; }
.vidmodal__sound:not(.is-on) .ico-on { display: none; }
.vidmodal__sound:not(.is-on) .ico-off { display: block; }
.vidmodal__x {
  position: absolute; top: -3.4rem; right: 0;
  display: grid; place-items: center; width: 44px; height: 44px;
  border-radius: 50%; color: var(--ink);
  border: 1px solid var(--line-hi); background: rgba(4,9,10,.6);
  transition: transform .25s, background-color .25s;
}
.vidmodal__x:hover { transform: rotate(90deg); background: var(--glass-hi); }
.vidmodal__x svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2; fill: none; }

/* The one highlight that carries the turn in the story. Wipes, then punches
   with a glow so the eye can't skip it. */
mark.mark--pop {
  position: relative;
  transition: background-size .5s var(--e-out), color .25s ease .2s;
}
mark.mark--pop.is-in {
  animation: markPop 1.15s var(--e-out) .35s both;
}
@keyframes markPop {
  0%   { transform: scale(1);    box-shadow: 0 0 0 0 rgba(18,207,201,0); }
  22%  { transform: scale(1.075); box-shadow: 0 0 44px 6px rgba(18,207,201,.65); }
  45%  { transform: scale(.985); box-shadow: 0 0 22px 2px rgba(18,207,201,.35); }
  70%  { transform: scale(1.02);  box-shadow: 0 0 30px 3px rgba(18,207,201,.45); }
  100% { transform: scale(1);    box-shadow: 0 0 0 0 rgba(18,207,201,0); }
}

/* ------------------------------------------------------- vouch carousel -- */
.rail {
  position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.rail { cursor: grab; touch-action: pan-y; }
.rail.is-dragging { cursor: grabbing; }
.rail.is-dragging .vouch__btn { pointer-events: none; }
.rail__track {
  display: flex; align-items: stretch; gap: 1rem;
  width: max-content; will-change: transform;
  user-select: none; -webkit-user-select: none;
}
.rail__track img { -webkit-user-drag: none; user-select: none; }


/* ---------------------------------------------------------- back to top -- */
.totop {
  position: fixed; z-index: 78;
  right: var(--pad); bottom: calc(5.4rem + env(safe-area-inset-bottom));
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; padding: 0; line-height: 0;
  border-radius: 50%; color: var(--ink);
  background: rgba(8,20,22,.82); border: 1px solid var(--line-hi);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px -12px #000;
  opacity: 0; transform: translateY(14px) scale(.9); pointer-events: none;
  transition: opacity .4s var(--e-out), transform .4s var(--e-out), background-color .25s;
}
.totop.is-on { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.totop:hover { background: var(--teal); color: #02100F; border-color: transparent; }
.totop svg {
  width: 20px; height: 20px; display: block;
  stroke: currentColor; stroke-width: 2.2; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
}

/* the closing statement */
.story__close {
  margin-top: clamp(4rem, 10vw, 7rem);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  border: 1px solid var(--line-hi); border-radius: var(--r-lg);
  background:
    radial-gradient(120% 90% at 12% 0%, rgba(18,207,201,.13), transparent 62%),
    linear-gradient(180deg, rgba(18,207,201,.05), rgba(18,207,201,.012));
  max-width: 760px; margin-inline: auto; text-align: center;
}
.story__close h3 { margin: 0 0 var(--s-2); font-size: clamp(1.4rem, 4vw, 2rem); font-weight: 600; letter-spacing: -.03em; }
.story__close p { margin: 0 auto; max-width: 54ch; font-size: 1.02rem; line-height: 1.68; color: var(--ink-dim); }
.story__close p + p { margin-top: .9rem; }
.story__close .cta-row { justify-content: center; }

/* ======================================================== MODULES ========= */
.grid { display: grid; gap: 1rem; }

/* Twelve stacked cards is a lot of thumb on a phone. Below 700px the grid
   becomes a snap-scrolling shelf — same twelve, one screen. */
.grid--modules { grid-template-columns: 1fr; }
/* declared BEFORE the media query, or the base rule wins on equal specificity */
.swipe-hint {
  display: none; align-items: center; justify-content: center; gap: .5rem;
  margin-top: var(--s-3); font-size: .8rem; color: var(--ink-faint);
}
.swipe-hint svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2; fill: none; }

@media (max-width: 699px) {
  .grid--modules {
    display: flex; gap: .85rem;
    overflow-x: auto; overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-inline: calc(var(--pad) * -1);
    padding-inline: var(--pad);
    padding-bottom: .5rem;
  }
  .grid--modules::-webkit-scrollbar { display: none; }
  .grid--modules > .card {
    flex: 0 0 auto; width: 78vw; scroll-snap-align: center;
  }
  .grid--modules > .card p { font-size: .93rem; }
  .swipe-hint { display: flex; }
}
.card {
  position: relative; padding: 1.8rem 1.6rem 1.9rem;
  border: 1px solid var(--line); border-radius: var(--r);
  background: linear-gradient(180deg, rgba(18,207,201,.065), rgba(18,207,201,.014) 45%, rgba(18,207,201,.006));
  overflow: hidden; isolation: isolate;
  transition: border-color .4s var(--e-out), transform .4s var(--e-out);
}
.card::before {
  content: ""; position: absolute; top: 0; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,245,239,.5), transparent);
}
.card__num { display: block; margin-bottom: var(--s-2); font-size: .8rem; font-weight: 600; letter-spacing: .14em; color: var(--teal); }
.card h3 { margin: 0 0 .6rem; font-size: 1.2rem; font-weight: 600; letter-spacing: -.025em; }
.card p { margin: 0; font-size: .97rem; line-height: 1.62; color: var(--ink-mute); text-wrap: pretty; }
.spot::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0;
  background: radial-gradient(380px circle at var(--mx,50%) var(--my,50%), rgba(18,207,201,.16), transparent 68%);
  transition: opacity .45s var(--e-out);
}

/* =================================================== MAC WINDOW =========== */
.macwin {
  border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  background: #0C1417;
  box-shadow: 0 60px 120px -50px #000, 0 0 0 1px rgba(0,0,0,.6),
              0 2px 0 rgba(255,255,255,.06) inset;
}
.macwin__bar {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: .8rem;
  padding: .68rem .9rem;
  background: linear-gradient(180deg, #16242800, #0F1B1E);
  background-color: #131F22;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.macwin__dots { display: inline-flex; gap: .45rem; }
.macwin__dots i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.macwin__dots i:nth-child(1) { background: #FF5F57; }
.macwin__dots i:nth-child(2) { background: #FEBC2E; }
.macwin__dots i:nth-child(3) { background: #28C840; }
.macwin__title {
  text-align: center; font-size: .8rem; font-weight: 500; color: var(--ink-faint);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.macwin__spacer { width: 46px; }
.macwin__body { position: relative; background: #0A1214; }
.macwin__body img { width: 100%; display: block; }

/* ====================================================== REPORTING ========= */
.panel { margin-bottom: clamp(5rem, 11vw, 8rem); }
.panel:last-of-type { margin-bottom: 0; }
.panel__stack { position: relative; perspective: 1700px; }

.shot { margin: 0; position: relative; }
.shot__btn { display: block; width: 100%; padding: 0; cursor: zoom-in; position: relative; transition: transform .45s var(--e-out); }
.shot__btn:hover { transform: translateY(-5px); }
.shot__frame {
  position: relative; border-radius: 14px; overflow: hidden;
  background: var(--bg-3) no-repeat center / cover; transform-style: preserve-3d;
}
.shot__frame img { width: 100%; opacity: 0; transition: opacity .55s ease; }
.shot__frame.is-ready img { opacity: 1; }
.shot__sheen {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, rgba(124,245,239,.13) 0%, rgba(124,245,239,.02) 26%, transparent 52%, rgba(124,245,239,.05) 100%);
}
.shot__zoom {
  position: absolute; right: .7rem; bottom: .7rem; z-index: 3;
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .45rem .8rem; border-radius: 100px;
  font-size: .76rem; font-weight: 600;
  color: var(--ink); background: rgba(4,9,10,.9); border: 1px solid var(--line-hi);
  opacity: 0; transform: translateY(6px); transition: all .35s var(--e-out);
}
.shot__btn:hover .shot__zoom, .shot__btn:focus-visible .shot__zoom { opacity: 1; transform: translateY(0); }
.shot__zoom svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2; }
.panel--pair .shot--front { margin-top: -10%; margin-left: 12%; position: relative; z-index: 2; }
.panel--pair .shot--back { margin-right: 8%; }

.panel__note { margin-top: var(--s-5); }
.panel__note h3 { margin: 0 0 var(--s-2); font-size: clamp(1.4rem, 4vw, 1.9rem); font-weight: 600; letter-spacing: -.03em; }
.panel__note > p { margin: 0; font-size: 1.02rem; line-height: 1.65; color: var(--ink-mute); max-width: 46ch; }

.roas {
  margin: var(--s-4) 0; padding: 1.5rem 1.6rem;
  border: 1px solid var(--line-hi); border-radius: var(--r);
  background: linear-gradient(140deg, rgba(18,207,201,.14), rgba(18,207,201,.03));
  box-shadow: inset 0 1px 0 rgba(124,245,239,.2);
}
.roas__top { display: flex; align-items: baseline; gap: .7rem; flex-wrap: wrap; }
.roas__n {
  font-weight: 600; font-size: clamp(2.4rem, 8vw, 3.4rem); line-height: 1; letter-spacing: -.045em;
  background: linear-gradient(140deg, var(--teal-hi), var(--teal) 55%, var(--teal-lo));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-variant-numeric: tabular-nums;
}
.roas__k { font-size: .8rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--teal); }
.roas__sum { margin: var(--s-2) 0 0; font-size: .93rem; color: var(--ink-dim); font-variant-numeric: tabular-nums; }
.roas__def { margin: var(--s-2) 0 0; padding-top: var(--s-2); border-top: 1px solid var(--line); font-size: .9rem; line-height: 1.62; color: var(--ink-mute); }
.roas__def b { color: var(--ink); font-weight: 600; }

.funnel { margin: var(--s-4) 0 0; }
.funnel__h { margin: 0 0 var(--s-2); font-size: .76rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint); }

/* ========================================================= VOUCHES ======== */
/* The screenshots are wildly different shapes (0.53 → 2.55 aspect), so CSS
   columns beats grid here — cards keep their natural height and pack tight. */
/* Cards live in an auto-scrolling rail, so they are fixed-width flex items and
   the screenshot area is a uniform height — mixed aspect ratios would otherwise
   make the track jump as it loops. */
.vouch { flex: 0 0 auto; width: min(76vw, 320px); margin: 0; }
.vouch__inner { height: 100%; display: flex; flex-direction: column; }
.vouch__inner {
  border: 1px solid var(--line); border-radius: var(--r);
  background: linear-gradient(180deg, rgba(18,207,201,.06), rgba(18,207,201,.012));
  overflow: hidden;
  transition: border-color .4s var(--e-out), transform .4s var(--e-out);
}
.vouch__inner:hover { border-color: rgba(120,235,230,.4); }
.vouch__btn { display: block; width: 100%; padding: 0; cursor: zoom-in; position: relative; }
/* `contain`, not `cover`: these screenshots run from 0.53 to 2.55 aspect, and
   cropping a wide dashboard to a short window just showed a slice of white
   chrome. Nothing is cut now — the letterboxing is the dark card itself.
   No opacity gate either; a gate that clones don't inherit is what made half
   the cards render blank. */
.vouch__shot {
  position: relative; height: 200px; overflow: hidden; line-height: 0;
  display: grid; place-items: center;
  background: #070F12;
}
.vouch__shot img {
  width: 100%; height: 100%; object-fit: contain; object-position: center;
  transition: transform .5s var(--e-out);
}
.vouch__btn:hover .vouch__shot img { transform: scale(1.04); }

.rail__hint {
  margin: var(--s-3) auto 0; text-align: center;
  font-size: .82rem; color: var(--ink-faint);
}
.vouch__zoom {
  position: absolute; right: .55rem; bottom: .55rem; z-index: 3;
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .38rem .7rem; border-radius: 100px;
  font-size: .72rem; font-weight: 600; line-height: 1.2;
  color: var(--ink); background: rgba(4,9,10,.88); border: 1px solid var(--line-hi);
  opacity: 0; transform: translateY(6px); transition: all .35s var(--e-out);
}
.vouch__btn:hover .vouch__zoom, .vouch__btn:focus-visible .vouch__zoom { opacity: 1; transform: translateY(0); }
.vouch__zoom svg { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 2; }

.vouch__meta { padding: 1.1rem 1.15rem 1.25rem; flex: 1; }
.vouch__who {
  display: inline-flex; align-items: center; gap: .4rem; margin-bottom: .55rem;
  padding: .3rem .7rem; border-radius: 100px;
  border: 1px solid var(--line-hi); background: rgba(18,207,201,.08);
  font-size: .76rem; font-weight: 600; color: var(--teal);
}
.vouch__who i { font-style: normal; color: var(--ink-faint); font-weight: 400; }
.vouch__result {
  display: block; font-size: 1.06rem; font-weight: 600; letter-spacing: -.025em;
  line-height: 1.32; color: var(--ink);
}
.vouch__detail {
  display: block; margin-top: .45rem; font-size: .84rem; line-height: 1.5;
  color: var(--ink-mute); font-variant-numeric: tabular-nums;
}

/* ======================================================= NOT FOR ========== */
.notfor { display: grid; gap: 1rem; margin-top: var(--s-4); }
.notfor__col {
  padding: 1.6rem 1.5rem; border: 1px solid var(--line); border-radius: var(--r);
  background: linear-gradient(180deg, rgba(18,207,201,.05), rgba(18,207,201,.01));
}
.notfor__col--no { background: linear-gradient(180deg, rgba(255,95,87,.07), rgba(255,95,87,.012)); border-color: rgba(255,95,87,.2); }
.notfor__h {
  display: flex; align-items: center; gap: .6rem; margin: 0 0 var(--s-2);
  font-size: 1.05rem; font-weight: 600; letter-spacing: -.02em;
}
.notfor__h span {
  display: grid; place-items: center; width: 24px; height: 24px; flex: none;
  border-radius: 50%; font-size: .8rem; font-weight: 700; color: #02100F; background: var(--teal);
}
.notfor__col--no .notfor__h span { background: #FF5F57; color: #1A0605; }
.notfor ul { margin: 0; padding: 0; list-style: none; display: grid; gap: .8rem; }
.notfor li { display: flex; gap: .6rem; font-size: .97rem; line-height: 1.55; color: var(--ink-dim); }
.notfor li::before { content: "—"; color: var(--ink-faint); flex: none; }

/* ======================================================== LIGHTBOX ======== */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: grid; grid-template-rows: auto 1fr auto;
  background: rgba(2,6,7,.95);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--e-out), visibility .35s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem var(--pad); }
.lightbox__title { font-size: .85rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--teal); }
.lightbox__x { display: grid; place-items: center; width: 42px; height: 42px; flex: none; border: 1px solid var(--line-hi); border-radius: 50%; transition: background-color .25s, transform .25s; }
.lightbox__x:hover { background: var(--glass-hi); transform: rotate(90deg); }
.lightbox__x svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2; fill: none; }
.lightbox__stage { position: relative; display: grid; place-items: center; padding: 0 var(--pad); overflow: auto; }
.lightbox__img {
  max-width: 100%; max-height: 100%; width: auto; border-radius: 10px;
  border: 1px solid var(--line-hi); box-shadow: 0 40px 100px -40px #000;
  transform: scale(.96); opacity: 0;
  transition: transform .45s var(--e-out), opacity .45s var(--e-out);
}
.lightbox.is-open .lightbox__img { transform: scale(1); opacity: 1; }
.lightbox__cap { margin: 0; padding: 1rem var(--pad) 1.5rem; text-align: center; font-size: .9rem; color: var(--ink-dim); }
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  display: grid; place-items: center; width: 46px; height: 46px;
  border: 1px solid var(--line-hi); border-radius: 50%; background: rgba(4,9,10,.7);
  transition: background-color .25s;
}
.lightbox__nav:hover { background: var(--glass-hi); }
.lightbox__nav svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2; fill: none; }
.lightbox__nav--prev { left: .4rem; }
.lightbox__nav--next { right: .4rem; }

/* ========================================================= METHOD ========= */
.steps { display: grid; gap: 1rem; margin: 0; padding: 0; list-style: none; }
.step {
  position: relative; padding: 1.9rem 1.6rem;
  border: 1px solid var(--line); border-radius: var(--r);
  background: linear-gradient(180deg, rgba(18,207,201,.06), rgba(18,207,201,.01));
}
.step__n {
  display: grid; place-items: center; width: 40px; height: 40px; margin-bottom: var(--s-3);
  border: 1px solid var(--teal); border-radius: 50%;
  font-size: .95rem; font-weight: 600; color: var(--teal);
  box-shadow: 0 0 26px -8px var(--glow) inset;
}
.step h3 { margin: 0 0 .5rem; font-size: 1.2rem; font-weight: 600; letter-spacing: -.025em; }
.step p { margin: 0; font-size: .97rem; color: var(--ink-mute); line-height: 1.62; }

/* ====================================================== COMMUNITY ========= */
.phone { position: relative; width: min(74%, 310px); margin-inline: auto; }
.phone__glow {
  position: absolute; inset: -18%; border-radius: 50%;
  background: radial-gradient(circle, rgba(18,207,201,.34), transparent 66%);
  filter: blur(34px); animation: tgPulse 4.6s var(--e-io) infinite;
  will-change: transform, opacity;      /* blurred + looping: must be promoted */
}
@keyframes tgPulse { 0%,100%{opacity:.55;transform:scale(1)} 50%{opacity:1;transform:scale(1.06)} }
.phone__body {
  position: relative; aspect-ratio: 9/19; border-radius: 36px; overflow: hidden;
  border: 1px solid var(--line-hi); background: #08161A;
  box-shadow: 0 0 0 6px #0E1D20, 0 40px 80px -34px #000, 0 0 60px -22px var(--glow);
}
.phone__notch { position: absolute; top: 9px; left: 50%; transform: translateX(-50%); width: 34%; height: 17px; border-radius: 100px; background: #000; z-index: 4; }
.phone__shot { display: none; width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 2; }
.phone.has-shot .phone__shot { display: block; }
.phone__fallback {
  position: absolute; inset: 0; z-index: 1; display: flex; flex-direction: column; gap: .55rem;
  padding: 2.6rem .8rem 1rem; background: linear-gradient(180deg, #0C1E22, #060F11);
}
.phone.has-shot .phone__fallback { display: none; }
.tg-head { display: flex; align-items: center; gap: .55rem; padding: 0 .2rem .6rem; border-bottom: 1px solid var(--line); }
.tg-avatar { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(140deg, var(--teal-hi), var(--teal-lo)); color: #02100F; font-size: .78rem; font-weight: 700; }
.tg-meta { display: flex; flex-direction: column; line-height: 1.15; }
.tg-meta b { font-size: .8rem; }
.tg-meta i { font-size: .64rem; font-style: normal; color: var(--ink-faint); }
.tg-msg {
  display: flex; flex-direction: column; gap: .15rem; width: 86%;
  padding: .55rem .65rem; border-radius: 14px 14px 14px 4px;
  background: rgba(18,207,201,.09); border: 1px solid var(--line);
  animation: tgIn .6s var(--e-out) backwards;
}
.tg-msg:nth-child(2){animation-delay:.1s} .tg-msg:nth-child(3){animation-delay:.25s}
.tg-msg--wide { width: 94%; animation-delay: .4s; }
.tg-msg b { font-size: .72rem; font-weight: 600; }
.tg-msg span { font-size: .64rem; color: var(--ink-mute); line-height: 1.4; }
@keyframes tgIn { from { opacity: 0; transform: translateY(8px); } }
.tg-note { margin-top: auto; font-size: .56rem; line-height: 1.45; color: var(--ink-faint); text-align: center; }
.tg-note code { color: var(--teal); }
.phone__ping {
  position: absolute; z-index: 5; padding: .45rem .8rem; border-radius: 100px;
  font-size: .74rem; font-weight: 600; color: var(--ink);
  background: rgba(8,20,22,.96); border: 1px solid var(--line-hi);
  box-shadow: 0 10px 26px -12px #000; white-space: nowrap;
}
.phone__ping::before { content: ""; display: inline-block; width: 5px; height: 5px; margin-right: .45rem; border-radius: 50%; background: var(--teal); box-shadow: 0 0 8px var(--teal); }
.phone__ping--1 { top: 15%; left: -14%; animation: pingFloat 6s var(--e-io) infinite; }
.phone__ping--2 { bottom: 19%; right: -10%; animation: pingFloat 6s var(--e-io) infinite 3s; }
@keyframes pingFloat { 0%,100%{transform:translateY(0);opacity:.85} 50%{transform:translateY(-9px);opacity:1} }

/* ============================================================ FAQ ========= */
.qa { border-bottom: 1px solid var(--line); }
.qa:first-child { border-top: 1px solid var(--line); }
.qa summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1.2rem;
  padding: 1.6rem .1rem; cursor: pointer; list-style: none;
  font-size: 1.12rem; font-weight: 500; letter-spacing: -.022em;
  transition: color .3s ease;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { color: var(--teal); }
.qa summary i { position: relative; flex: none; width: 16px; height: 16px; }
.qa summary i::before, .qa summary i::after {
  content: ""; position: absolute; top: 50%; left: 0; width: 100%; height: 1.5px;
  margin-top: -.75px; background: var(--teal); border-radius: 2px;
  transition: transform .38s var(--e-out);
}
.qa summary i::after { transform: rotate(90deg); }
.qa[open] summary i::after { transform: rotate(0); }
.qa__body { overflow: hidden; padding-bottom: 1.6rem; font-size: 1rem; line-height: 1.7; color: var(--ink-mute); }
.qa__body p { margin: 0; max-width: 62ch; }

/* ====================================================== FINAL CTA ========= */
.final { position: relative; min-height: 94svh; display: grid; place-items: center; text-align: center; overflow: clip; }
.final__bg { position: absolute; inset: 0; z-index: -1; overflow: clip; }
.final__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; opacity: .26; filter: grayscale(.45) contrast(1.06); }
.final__wash {
  position: absolute; inset: 0;
  background: radial-gradient(90% 62% at 50% 52%, rgba(18,207,201,.22), transparent 62%),
              linear-gradient(180deg, var(--bg) 0%, rgba(4,9,10,.72) 32%, rgba(4,9,10,.88) 66%, var(--bg) 100%);
}
.final__inner { position: relative; z-index: 2; }
.final .eyebrow { justify-content: center; }
.final .eyebrow i { display: none; }
.final .cta-row { justify-content: center; margin-top: var(--s-5); }
.final .hero__micro { justify-content: center; margin-top: var(--s-3); letter-spacing: .08em; }

/* ========================================================= FOOTER ========= */
.footer { padding-block: var(--s-5) 8rem; border-top: 1px solid var(--line); }
.footer__inner { display: grid; gap: var(--s-3); }
.footer__legal { margin: 0; max-width: 66ch; font-size: .82rem; line-height: 1.65; color: var(--ink-faint); }
.footer__links { display: flex; flex-wrap: wrap; gap: 1.4rem; font-size: .92rem; color: var(--ink-mute); }
.footer__links a:hover { color: var(--teal); }
.footer__copy { margin: 0; font-size: .82rem; color: var(--ink-faint); }
.footer__built { display: flex; align-items: center; gap: .5rem; font-size: .82rem; color: var(--ink-faint); }
.footer__built svg { width: 16px; height: 16px; }
.footer__built svg path { stroke: var(--teal); stroke-width: 1.9; stroke-linecap: round; fill: none; }

/* ==================================================== STICKY CTA ========== */
.dockcta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  padding: .8rem var(--pad) calc(.8rem + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, transparent, rgba(4,9,10,.88) 34%, rgba(4,9,10,.98));
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  transform: translateY(130%); transition: transform .5s var(--e-out); pointer-events: none;
}
.dockcta.is-open { transform: translateY(0); pointer-events: auto; }
.dockcta__row { display: grid; grid-template-columns: 1fr auto; gap: .55rem; }
.dockcta__dm { padding-inline: 1.1rem; }

/* ================================================ REVEAL / MOTION ========= */
.has-js [data-reveal] { opacity: 0; }
.has-js [data-hero-el] { opacity: 0; }
.anim-off [data-hero-el] { opacity: 1 !important; transform: none !important; }
.has-js .display[data-split-lines] .line { overflow: hidden; padding-bottom: .06em; }
.has-js .display[data-split-lines] .line > span { display: inline-block; will-change: transform; }
.has-js .word { display: inline-block; will-change: transform, opacity; }
.has-js [data-clip] { clip-path: inset(0 0 100% 0); }

.anim-off [data-reveal],
.anim-off .display[data-split-lines] .line > span,
.anim-off .word { opacity: 1 !important; transform: none !important; }
.anim-off .bar__fill { transform: scaleX(1) !important; }
.anim-off [data-clip] { clip-path: none !important; }
.anim-off .intro { display: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .has-js [data-reveal], .has-js .word,
  .has-js .display[data-split-lines] .line > span { opacity: 1 !important; transform: none !important; }
  .has-js [data-clip] { clip-path: none !important; }
  .bar__fill { transform: scaleX(1) !important; }
  .hero__smoke { display: none; }
  .intro { display: none; }
}

/* =========================================================================
   BREAKPOINTS
   ====================================================================== */
@media (min-width: 620px) {
  .notfor { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 560px) {
  .grid--modules { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .statrow { grid-template-columns: repeat(4, 1fr); }
  .founder__av { width: 92px; height: 92px; }
  .founder__name { font-size: 1.5rem; }
}

@media (min-width: 760px) {
  /* alternating chapters — media and copy swap sides down the timeline */
  .chapter { grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 4.5rem); }
  .chapter--flip .chapter__media { order: 2; }
  .chapter--wide { grid-template-columns: 1fr; max-width: 62ch; margin-inline: auto; text-align: center; }
  .chapter--wide .chapter__p { margin-inline: auto; }

  .split { grid-template-columns: 1fr 1fr; align-items: center; }
  .split--vault { grid-template-columns: .9fr 1.1fr; align-items: start; }
  .split--faq { grid-template-columns: .8fr 1.2fr; align-items: start; }
  .split--faq .split__head { position: sticky; top: calc(var(--nav-h) + 28px); }
  .split--plaque > .plaque { order: 2; }
  .split--founder { grid-template-columns: 1.25fr .75fr; align-items: center; }
  .plaque { width: 100%; }
  .footer__inner {
    grid-template-columns: auto 1fr;
    grid-template-areas: "brand links" "built built" "legal legal" "copy copy";
    align-items: center; gap: var(--s-3) 2rem;
  }
  .footer .brand { grid-area: brand; }
  .footer__links { grid-area: links; justify-content: flex-end; }
  .footer__built { grid-area: built; }
  .footer__legal { grid-area: legal; }
  .footer__copy { grid-area: copy; }
  .lightbox__nav--prev { left: 1.4rem; }
  .lightbox__nav--next { right: 1.4rem; }
}

@media (min-width: 900px) {
  :root { --nav-h: 78px; }
  .nav__links { display: flex; }
  .scrollcue { display: block; }
  .dockcta { display: none; }
  .footer { padding-bottom: var(--s-5); }
  /* no sticky dock up here, so the button doesn't need to clear it */
  .totop { bottom: var(--pad); }
  .grid--modules { grid-template-columns: repeat(3, 1fr); }
  /* No backdrop-filter on the card grid. Twelve blurred backdrops repainting as
     they scroll is the most expensive thing on a page like this, and over a
     near-black background it buys almost nothing visually. */
  .card:hover { transform: translateY(-6px); border-color: rgba(120,235,230,.42); }
  .card:hover::after { opacity: 1; }
  .hero { padding-bottom: clamp(6rem, 15vh, 10rem); }
  .hero__sub { max-width: 44ch; }
  .hero__img { object-position: 58% 26%; }

  .panel--pair { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2.5rem,4.5vw,4rem); align-items: center; }
  .panel--flip .panel__stack { order: 2; }
  .panel__note { margin-top: 0; }
  .panel--pair .shot--front { margin-top: -18%; margin-left: 24%; }
}

@media (min-width: 1240px) {
  .hero__img { object-position: 62% 30%; }
}

@media (hover: none) {
  .card:hover, .shot__btn:hover, .btn:hover { transform: none; }
  .shot__zoom { opacity: 1; transform: none; }
}

/* ==================================================== CONSENT ============= */
/* A bar, not a wall. It never covers the page, never blocks a tap, and is only
   shown to visitors in the EU/EEA/UK - see consent.js. Everyone else is never
   interrupted at all. */
.consent {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 85;
  padding: .85rem var(--pad) calc(.85rem + env(safe-area-inset-bottom));
  display: flex; flex-wrap: wrap; align-items: center; gap: .7rem 1rem;
  background: rgba(6,14,16,.94);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border-top: 1px solid var(--line-hi);
  box-shadow: 0 -20px 50px -30px #000;
  transform: translateY(120%);
  transition: transform .55s var(--e-out);
}
.consent.is-open { transform: translateY(0); }
.consent__t {
  flex: 1 1 15rem; margin: 0;
  font-size: .82rem; line-height: 1.45; color: var(--ink-mute);
}
.consent__t a { color: var(--teal); text-decoration: underline; text-underline-offset: .16em; }
.consent__btns { display: flex; align-items: center; gap: .5rem; margin-left: auto; }
.consent__no,
.consent__yes {
  font: inherit; font-size: .82rem; font-weight: 600; cursor: pointer;
  padding: .58rem 1.05rem; border-radius: 999px; white-space: nowrap;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.consent__no {
  color: var(--ink-mute); background: transparent; border: 1px solid var(--line-hi);
}
.consent__no:hover { color: var(--ink); border-color: var(--ink-mute); }
.consent__yes {
  color: #02100F; border: 1px solid transparent;
  background: linear-gradient(180deg, var(--teal-hi), var(--teal));
}
.consent__yes:hover { filter: brightness(1.08); }

/* the sticky CTA and back-to-top must not fight the bar for the same corner */
html.consent-open .dockcta { transform: translateY(130%); }
html.consent-open .totop { bottom: calc(9.5rem + env(safe-area-inset-bottom)); }

@media (max-width: 30rem) {
  .consent { gap: .6rem; }
  .consent__t { flex-basis: 100%; font-size: .78rem; }
  .consent__btns { width: 100%; }
  .consent__no, .consent__yes { flex: 1; text-align: center; }
}

/* a way back in - consent must be withdrawable, not one-way */
.footer__cookies {
  background: none; border: 0; padding: 0; font: inherit; cursor: pointer;
  color: inherit; text-decoration: underline; text-underline-offset: .16em;
}
.footer__cookies:hover { color: var(--teal); }
