/* =========================================================
   IMB 8848 · IMBATIBLE
   ========================================================= */
:root {
  --bg: #08090a;
  --bg-2: #0e1012;
  --bg-3: #15181b;
  --line: rgba(255, 255, 255, .09);
  --line-2: rgba(255, 255, 255, .16);
  --ink: #f3f3ee;
  --muted: #9ea3a8;
  --mint: #c8f7d8;
  --sky: #9dbdff;
  --plum: #6e3a62;
  --grad: linear-gradient(95deg, var(--mint) 0%, var(--sky) 100%);
  --display: "Anton", "Impact", "Arial Narrow", sans-serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --gutter: clamp(16px, 4vw, 48px);
  --max: 1280px;
  --radius: 18px;
  --ease: cubic-bezier(.2, .7, .1, 1);
  --nav-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 16px/1.6 var(--body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
h1, h2, h3, h4, p, ul, ol, dl, dd, figure, blockquote { margin: 0; padding: 0; }
ul, ol { list-style: none; }
::selection { background: var(--mint); color: #000; }
:focus-visible { outline: 2px solid var(--mint); outline-offset: 3px; border-radius: 6px; }

.ic { width: 1.15em; height: 1.15em; flex: none; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.skip { position: absolute; left: -999px; top: 8px; z-index: 999; background: var(--mint); color: #000; padding: 8px 14px; border-radius: 8px; }
.skip:focus { left: 8px; }

/* ---------- Type ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font: 600 12px/1 var(--body); letter-spacing: .22em; text-transform: uppercase; color: var(--mint);
  margin-bottom: 18px;
}
.kicker::before { content: ""; width: 26px; height: 1px; background: currentColor; }
.h2 {
  font: 400 clamp(40px, 6.4vw, 88px)/.95 var(--display);
  text-transform: uppercase; letter-spacing: .005em;
  text-wrap: balance;
}
.h2--sm { font-size: clamp(28px, 3.6vw, 48px); line-height: 1.05; }
.h3 { font: 400 clamp(24px, 2.6vw, 32px)/1.05 var(--display); text-transform: uppercase; letter-spacing: .01em; }
.lead { font-size: clamp(17px, 1.5vw, 20px); line-height: 1.6; color: #d9dcd9; }
.muted { color: var(--muted); }
.grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.link { color: var(--mint); display: inline-flex; align-items: center; gap: 6px; border-bottom: 1px solid rgba(200, 247, 216, .35); transition: border-color .2s; }
.link:hover { border-color: var(--mint); }
b { font-weight: 600; color: var(--ink); }

/* ---------- Buttons ---------- */
.btn {
  --h: 48px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: var(--h); padding: 0 22px; border-radius: 999px;
  font: 600 15px/1 var(--body); letter-spacing: .01em; white-space: nowrap;
  transition: transform .35s var(--ease), background .25s, box-shadow .35s, color .25s, border-color .25s;
  will-change: transform;
}
.btn .ic { transition: transform .35s var(--ease); }
.btn:hover .ic { transform: translateX(4px); }
.btn:active { transform: scale(.97); }
.btn--sm { --h: 40px; padding: 0 18px; font-size: 14px; }
.btn--lg { --h: 56px; padding: 0 28px; font-size: 16px; }
.btn--block { width: 100%; }
.btn--primary { background: var(--grad); color: #07130c; box-shadow: 0 10px 30px -10px rgba(157, 189, 255, .55); }
.btn--primary:hover { box-shadow: 0 16px 44px -10px rgba(200, 247, 216, .7); transform: translateY(-2px); }
.btn--ghost { border: 1px solid var(--line-2); color: var(--ink); background: rgba(255, 255, 255, .04); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.btn--ghost:hover { border-color: var(--ink); background: rgba(255, 255, 255, .1); }
.btn--dark { background: var(--bg-3); border: 1px solid var(--line); }
.btn--dark:hover { border-color: var(--mint); color: var(--mint); }
.btn--dark:hover .ic { transform: none; }
.round { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; transition: background .2s, border-color .2s, color .2s; }
.round:hover { background: var(--ink); color: #000; border-color: var(--ink); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 50; height: var(--nav-h);
  transition: transform .45s var(--ease), background .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.is-solid { background: rgba(8, 9, 10, .72); backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%); border-color: var(--line); }
.nav.is-hidden { transform: translateY(-100%); }
.nav__inner { height: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); display: flex; align-items: center; gap: 24px; }
.nav__logo img { height: 38px; width: auto; }
.nav__links { display: flex; gap: 28px; margin-left: auto; }
.nav__links a { font-size: 14px; font-weight: 500; color: #c9ccc9; position: relative; padding: 6px 0; transition: color .2s; }
.nav__links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--grad); transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease); }
.nav__links a:hover, .nav__links a.is-active { color: #fff; }
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav__burger { display: none; width: 44px; height: 44px; margin-left: auto; position: relative; z-index: 60; }
.nav__burger span { position: absolute; left: 11px; right: 11px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .4s var(--ease), top .4s var(--ease); }
.nav__burger span:nth-child(1) { top: 17px; }
.nav__burger span:nth-child(2) { top: 25px; }
.menu-open .nav__burger span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.menu-open .nav__burger span:nth-child(2) { top: 21px; transform: rotate(-45deg); }

.menu {
  position: fixed; inset: 0; z-index: 45; background: var(--bg);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: calc(var(--nav-h) + 24px) var(--gutter) calc(24px + env(safe-area-inset-bottom));
  clip-path: circle(0 at calc(100% - 38px) 34px);
  transition: clip-path .7s var(--ease);
  visibility: hidden;
}
.menu-open .menu { clip-path: circle(150% at calc(100% - 38px) 34px); visibility: visible; }
.menu-open { overflow: hidden; }
.menu__links { display: flex; flex-direction: column; }
.menu__links a {
  font: 400 clamp(40px, 11vw, 64px)/1.08 var(--display); text-transform: uppercase;
  display: flex; align-items: baseline; gap: 14px; padding: 6px 0; border-bottom: 1px solid var(--line);
  opacity: 0; transform: translateY(20px); transition: opacity .5s, transform .6s var(--ease);
}
.menu__links a span { font: 500 12px var(--body); color: var(--mint); letter-spacing: .1em; }
.menu-open .menu__links a { opacity: 1; transform: none; }
.menu-open .menu__links a:nth-child(1) { transition-delay: .15s; }
.menu-open .menu__links a:nth-child(2) { transition-delay: .2s; }
.menu-open .menu__links a:nth-child(3) { transition-delay: .25s; }
.menu-open .menu__links a:nth-child(4) { transition-delay: .3s; }
.menu-open .menu__links a:nth-child(5) { transition-delay: .35s; }
.menu-open .menu__links a:nth-child(6) { transition-delay: .4s; }
.menu__foot { display: grid; gap: 18px; }
.menu__social { display: flex; justify-content: center; gap: 24px; color: var(--muted); font-size: 14px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: calc(var(--nav-h) + 32px) 0 clamp(28px, 5vw, 56px);
  overflow: hidden; isolation: isolate;
}
.hero__media { position: absolute; inset: -6% 0 0; z-index: -3; }
.hero__media picture { display: block; height: 100%; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 30% 50%; animation: kenburns 22s var(--ease) both; }
@keyframes kenburns { from { transform: scale(1.18); filter: brightness(.6); } to { transform: scale(1.04); filter: brightness(1); } }
.hero__shade {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(120% 70% at 80% 10%, transparent 0%, rgba(8, 9, 10, .35) 60%),
    linear-gradient(180deg, rgba(8, 9, 10, .55) 0%, rgba(8, 9, 10, .1) 30%, rgba(8, 9, 10, .55) 62%, var(--bg) 100%),
    linear-gradient(90deg, rgba(8, 9, 10, .75) 0%, transparent 65%);
}
.grain {
  position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .09; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero__content { position: relative; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: #dfe3df; padding: 8px 14px; border: 1px solid var(--line-2); border-radius: 999px; background: rgba(8, 9, 10, .35); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 0 rgba(200, 247, 216, .7); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(200, 247, 216, 0); } 100% { box-shadow: 0 0 0 0 rgba(200, 247, 216, 0); } }
.hero__title { margin: clamp(14px, 2.5vh, 26px) 0 clamp(10px, 2vh, 18px); }
.hero__logo { width: min(560px, 80vw, 62vh); height: auto; filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .5)); margin-left: -1.5%; }
.hero__tag { display: block; margin-top: 10px; font: 400 clamp(34px, 5.6vw, 76px)/.95 var(--display); text-transform: uppercase; letter-spacing: .005em; }
.hero__tag em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__lead { max-width: 560px; font-size: clamp(16px, 1.35vw, 19px); color: #d6d9d6; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 10px 28px; margin: clamp(16px, 3vh, 26px) 0 clamp(18px, 3.4vh, 30px); font-size: 15px; color: #cfd2cf; }
.hero__meta li { display: flex; align-items: center; gap: 9px; }
.hero__meta .ic { color: var(--mint); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero__in { opacity: 0; transform: translateY(28px); animation: heroIn 1.1s var(--ease) forwards; animation-delay: calc(var(--d, 0s) + .15s); }
@keyframes heroIn { to { opacity: 1; transform: none; } }

.countdown {
  position: absolute; right: var(--gutter); bottom: clamp(28px, 5vw, 56px);
  padding: 18px 20px; border-radius: var(--radius);
  background: rgba(10, 12, 14, .55); border: 1px solid var(--line-2);
  backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%);
}
@media (min-width: 1100px) { .countdown { right: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter))); } }
.countdown__label { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.countdown__grid { display: grid; grid-template-columns: repeat(4, minmax(58px, 1fr)); gap: 6px; }
.countdown__grid div { text-align: center; }
.countdown__grid span { display: block; font: 400 clamp(34px, 3.4vw, 46px)/1 var(--display); font-variant-numeric: tabular-nums; }
.countdown__grid small { font-size: 11px; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; }
.countdown__grid div + div { border-left: 1px solid var(--line); }

.hero__scroll { position: absolute; left: 50%; bottom: 18px; width: 22px; height: 36px; border: 1.5px solid var(--line-2); border-radius: 12px; transform: translateX(-50%); display: none; }
.hero__scroll span { position: absolute; left: 50%; top: 7px; width: 3px; height: 7px; margin-left: -1.5px; background: var(--ink); border-radius: 2px; animation: wheel 1.8s infinite; }
@keyframes wheel { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(12px); } }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; border-block: 1px solid var(--line); background: var(--bg-2); padding: 18px 0; }
.marquee__track { display: flex; width: max-content; gap: 34px; align-items: center; animation: marquee 38s linear infinite; }
.marquee span { font: 400 clamp(22px, 2.6vw, 34px)/1 var(--display); text-transform: uppercase; white-space: nowrap; }
.marquee span:nth-of-type(even) { -webkit-text-stroke: 1px rgba(243, 243, 238, .6); color: transparent; }
.marquee i { font-style: normal; color: var(--mint); font-size: 18px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: clamp(80px, 12vw, 160px) 0; position: relative; }
.section__head { margin-bottom: clamp(40px, 6vw, 72px); max-width: 860px; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .kicker::before { display: none; }

/* Reto */
.reto__grid { display: grid; gap: clamp(40px, 6vw, 88px); grid-template-columns: 1fr; align-items: center; }
.reto__text > * + * { margin-top: 22px; }
.reto__text p:not(.kicker):not(.lead) { color: #c3c7c4; }
.reto__media { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; }
.reto__media img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 50%; }
.reto__media figcaption { position: absolute; left: 16px; bottom: 16px; display: flex; gap: 8px; align-items: center; font-size: 13px; padding: 8px 12px; border-radius: 999px; background: rgba(8, 9, 10, .65); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.reto__media figcaption .ic { color: var(--mint); }

.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-top: 36px !important; }
.stats > div { background: var(--bg); padding: 22px 20px; }
.stats dt { white-space: nowrap; font: 400 clamp(38px, 4.2vw, 56px)/1 var(--display); font-variant-numeric: tabular-nums; }
.stats dt small { font: 500 14px var(--body); color: var(--muted); margin-left: 6px; }
.stats dd { font-size: 13px; color: var(--muted); margin-top: 6px; text-transform: uppercase; letter-spacing: .08em; }

/* Climb meter */
.climb { position: relative; height: 320vh; background: #000; }
.climb__sticky { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; display: flex; align-items: center; }
.climb__bg { position: absolute; inset: 0; }
.climb__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; transform: scale(calc(1.25 - var(--p, 0) * .2)); filter: brightness(calc(.35 + var(--p, 0) * .5)) saturate(calc(.4 + var(--p, 0) * .7)); will-change: transform; }
.climb__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, .25) 60%, rgba(0, 0, 0, .55) 100%), linear-gradient(180deg, var(--bg) 0%, transparent 18%, transparent 82%, var(--bg) 100%); }
.climb__inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 100%; padding-top: var(--nav-h); }
.climb__meters { font: 400 clamp(84px, 16vw, 220px)/.85 var(--display); font-variant-numeric: tabular-nums; letter-spacing: -.01em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.climb__meters small { font-size: .28em; margin-left: .15em; }
.climb__lap { font-size: clamp(16px, 1.6vw, 20px); color: #d5d8d5; margin-top: 14px; }
.climb__lap b { font-variant-numeric: tabular-nums; }
.climb__msg { margin-top: 18px; display: inline-block; padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line-2); background: rgba(0, 0, 0, .4); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); font-size: 14px; font-weight: 500; transition: color .3s, border-color .3s; }
.climb__msg.is-hot { color: var(--mint); border-color: rgba(200, 247, 216, .5); }
.climb__bar { position: relative; height: min(70vh, 620px); display: flex; gap: 14px; }
.climb__laps { display: flex; flex-direction: column-reverse; gap: 3px; width: 16px; height: 100%; }
.climb__laps li { flex: 1; border-radius: 3px; background: rgba(255, 255, 255, .12); transition: background .35s, box-shadow .35s; }
.climb__laps li.on { background: var(--mint); box-shadow: 0 0 14px rgba(200, 247, 216, .55); }
.climb__laps li.on:nth-child(n+15) { background: var(--sky); box-shadow: 0 0 14px rgba(157, 189, 255, .55); }
.climb__marks { position: relative; width: 170px; font-size: 12px; color: var(--muted); text-align: right; }
.mk { position: absolute; right: 0; white-space: nowrap; padding-right: 10px; }
.mk::after { content: ""; position: absolute; right: -6px; top: 50%; width: 12px; height: 1px; background: var(--line-2); }
.mk--top { top: 0; transform: translateY(-50%); color: var(--ink); }
.mk--mid { top: 50%; transform: translateY(-50%); }
.climb__hint { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); font-size: 12px; color: var(--muted); letter-spacing: .12em; text-transform: uppercase; transition: opacity .3s; }

/* Modes */
.modes__grid { display: grid; gap: 16px; }
.mode {
  position: relative; overflow: hidden; border-radius: 24px; padding: clamp(24px, 3vw, 40px);
  background: var(--bg-2); border: 1px solid var(--line);
  transition: transform .5s var(--ease), border-color .4s;
}
.mode:hover { transform: translateY(-6px); border-color: var(--line-2); }
.mode--full { background: radial-gradient(120% 90% at 100% 0%, rgba(157, 189, 255, .16), transparent 55%), radial-gradient(100% 80% at 0% 100%, rgba(200, 247, 216, .12), transparent 60%), var(--bg-2); border-color: rgba(200, 247, 216, .25); }
.mode__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; flex-wrap: wrap; }
.badge { display: inline-block; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; padding: 8px 12px; border-radius: 999px; background: var(--grad); color: #07130c; }
.badge--ghost { background: transparent; border: 1px solid var(--line-2); color: var(--ink); }
.mode__big { font: 400 clamp(88px, 11vw, 150px)/.8 var(--display); }
.mode__big small { display: block; font: 500 13px var(--body); letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-top: 12px; text-align: right; }
.mode__list { margin-top: 32px; border-top: 1px solid var(--line); }
.mode__list li { display: flex; justify-content: space-between; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.mode__list span { color: var(--muted); }
.mode__profile { margin-top: 26px; height: 54px; }
.mode__profile svg { width: 100%; height: 100%; overflow: visible; }
.mode__profile path { fill: none; stroke: url(#g-brand); stroke-width: 1.6; vector-effect: non-scaling-stroke; stroke-dasharray: 8000; stroke-dashoffset: 8000; transition: stroke-dashoffset 2.6s var(--ease) .3s; }
.mode.is-in .mode__profile path { stroke-dashoffset: 0; }

.statement { margin-top: clamp(56px, 8vw, 110px); max-width: 1040px; }
.statement p { font: 500 clamp(22px, 2.8vw, 38px)/1.3 var(--body); letter-spacing: -.015em; color: #c8ccc8; text-wrap: pretty; }

/* Manifesto */
.manifesto { padding: clamp(60px, 8vw, 120px) 0; background: var(--bg-2); border-block: 1px solid var(--line); }
.manifesto__grid { display: grid; gap: clamp(36px, 6vw, 88px); align-items: center; }
.manifesto__media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; max-height: 80vh; }
.manifesto__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.manifesto__quote { font: 400 clamp(32px, 3.6vw, 54px)/1.04 var(--display); text-transform: uppercase; }
.manifesto__quote .w { opacity: .14; transition: opacity .35s; }
.manifesto__quote .w.on { opacity: 1; }

/* Rules */
.rules__list { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 24px; overflow: hidden; }
.rules__list li { background: var(--bg); display: flex; gap: 20px; padding: clamp(22px, 3vw, 36px); transition: background .3s; }
.rules__list li:hover { background: var(--bg-2); }
.rules__n { font: 400 28px/1 var(--display); background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; min-width: 36px; }
.rules__list h3 { font: 600 18px/1.3 var(--body); margin-bottom: 6px; }
.rules__list p { color: var(--muted); font-size: 15px; }
.notice { margin-top: 20px; display: flex; gap: 14px; align-items: flex-start; padding: 20px 22px; border-radius: var(--radius); background: rgba(255, 196, 87, .07); border: 1px solid rgba(255, 196, 87, .28); color: #e6dcc8; font-size: 15px; }
.notice .ic { color: #ffc457; width: 22px; height: 22px; margin-top: 1px; }

/* Band */
.band { position: relative; min-height: 88vh; display: flex; align-items: center; overflow: hidden; isolation: isolate; }
.band__media { position: absolute; inset: -12% 0; z-index: -2; }
.band__media img { width: 100%; height: 100%; object-fit: cover; }
.band__shade { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, var(--bg) 0%, rgba(8, 9, 10, .45) 30%, rgba(8, 9, 10, .55) 70%, var(--bg) 100%), rgba(8, 9, 10, .25); }
.band__quote { font: 400 clamp(40px, 7vw, 108px)/.95 var(--display); text-transform: uppercase; max-width: 1100px; text-wrap: balance; }

/* Signup */
.signup__grid { display: grid; gap: 20px; align-items: start; }
.price { position: relative; overflow: hidden; border-radius: 24px; padding: clamp(26px, 3vw, 40px); background: var(--bg-2); border: 1px solid rgba(200, 247, 216, .28); }
.price__glow { position: absolute; width: 380px; height: 380px; right: -140px; top: -160px; border-radius: 50%; background: radial-gradient(circle, rgba(157, 189, 255, .4), transparent 65%); filter: blur(10px); pointer-events: none; animation: float 9s ease-in-out infinite alternate; }
@keyframes float { to { transform: translate(-60px, 40px); } }
.price__label { font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.price__value { font: 400 clamp(64px, 8vw, 104px)/1 var(--display); margin: 10px 0 8px; display: flex; align-items: flex-start; gap: 4px; }
.price__value small { font-size: .4em; margin-top: .25em; color: var(--mint); }
.price__value span { font: 600 14px var(--body); color: var(--muted); align-self: flex-end; margin: 0 0 .9em 8px; }
.price__note { color: var(--muted); font-size: 15px; }
.seats { margin: 26px 0; padding: 18px; border-radius: 14px; background: rgba(255, 255, 255, .04); border: 1px solid var(--line); }
.seats__row { display: flex; justify-content: space-between; align-items: center; gap: 12px; font-weight: 500; }
.seats__row span { display: flex; align-items: center; gap: 8px; }
.seats__row b { font: 400 36px/1 var(--display); background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.seats__sub { font-size: 13px; color: var(--muted); margin-top: 6px; }

.includes { display: grid; gap: 22px; }
.feat { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.feat li { display: flex; flex-direction: column; gap: 14px; padding: 18px; border-radius: 16px; background: var(--bg-2); border: 1px solid var(--line); font-size: 15px; font-weight: 500; line-height: 1.35; transition: border-color .3s, transform .4s var(--ease); }
.feat li:hover { border-color: rgba(200, 247, 216, .4); transform: translateY(-3px); }
.feat .ic { width: 28px; height: 28px; stroke: url(#g-brand); stroke-width: 1.5; }
.basecamp { padding: 22px; border-radius: 20px; border: 1px solid var(--line); background: linear-gradient(180deg, var(--bg-3), var(--bg-2)); }
.basecamp__head { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.basecamp__head .link { font-size: 14px; }
.basecamp__where { margin: 10px 0 16px; color: #c8ccc8; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips li { display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: 999px; border: 1px solid var(--line-2); font-size: 14px; }
.chips .ic { color: var(--mint); }

/* Steps */
.steps { margin-top: clamp(64px, 9vw, 120px); }
.steps__title { margin-bottom: 24px; }
.steps__list { display: grid; gap: 14px; counter-reset: s; }
.step { position: relative; padding: 26px 24px; border-radius: 20px; background: var(--bg-2); border: 1px solid var(--line); display: flex; flex-direction: column; gap: 10px; }
.step__n { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; font: 400 20px/1 var(--display); color: #07130c; background: var(--grad); margin-bottom: 6px; }
.step h4 { font: 600 19px/1.2 var(--body); }
.step p { color: var(--muted); font-size: 15px; }
.step__tag { font-size: 12px !important; text-transform: uppercase; letter-spacing: .14em; margin-top: auto; }
.step__tag--ok { display: flex; align-items: center; gap: 8px; color: var(--mint) !important; }
.step__btns { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.copy { display: flex; align-items: center; justify-content: space-between; gap: 12px; width: 100%; margin-top: 6px; padding: 14px 16px; border-radius: 14px; background: #000; border: 1px dashed rgba(200, 247, 216, .45); transition: border-color .25s, background .25s; text-align: left; }
.copy:hover { border-style: solid; border-color: var(--mint); }
.copy__num { font: 400 26px/1 var(--display); letter-spacing: .04em; }
.copy__act { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--mint); }
.copy__act em { font-style: normal; }
.copy.is-done { border-color: var(--mint); background: rgba(200, 247, 216, .07); }

.combo { margin-top: 14px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding: 22px 24px; border-radius: 20px; background: linear-gradient(95deg, rgba(200, 247, 216, .1), rgba(157, 189, 255, .1)); border: 1px solid rgba(157, 189, 255, .28); }
.combo__t { font-weight: 600; font-size: 17px; }
.combo__s { color: var(--muted); font-size: 14px; }
.combo__p { font: 400 40px/1 var(--display); }
.docs { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 10px 24px; }
.docs a { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: #c8ccc8; border-bottom: 1px solid var(--line-2); padding-bottom: 3px; transition: color .2s, border-color .2s; }
.docs a:hover { color: var(--mint); border-color: var(--mint); }

/* Jersey */
.jersey { overflow: hidden; }
.jersey__grid { display: grid; gap: clamp(40px, 6vw, 80px); align-items: center; }
.jersey__stage { position: relative; display: grid; place-items: center; padding: 20px 0; }
.jersey__halo { position: absolute; width: 90%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(200, 247, 216, .35) 0%, rgba(157, 189, 255, .15) 38%, transparent 68%); filter: blur(20px); animation: breathe 6s ease-in-out infinite alternate; }
@keyframes breathe { from { transform: scale(.9); opacity: .7; } to { transform: scale(1.06); opacity: 1; } }
.jersey__img { position: relative; width: min(460px, 78%); filter: drop-shadow(0 40px 60px rgba(0, 0, 0, .6)); animation: bob 7s ease-in-out infinite alternate; }
@keyframes bob { from { transform: translateY(-8px) rotate(-1.2deg); } to { transform: translateY(8px) rotate(1.2deg); } }
.jersey__weight { position: absolute; right: 6%; bottom: 10%; width: 110px; height: 110px; border-radius: 50%; display: grid; place-content: center; text-align: center; background: rgba(8, 9, 10, .6); border: 1px solid var(--line-2); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); font-size: 13px; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; }
.jersey__weight b { display: block; font: 400 44px/1 var(--display); color: var(--ink); letter-spacing: 0; }
.jersey__text > * + * { margin-top: 22px; }
.specs { display: grid; gap: 12px; }
.specs li { display: flex; gap: 12px; align-items: flex-start; color: #d0d3d0; }
.specs .ic { color: var(--mint); margin-top: 3px; }
.jersey__buy { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 0; border-block: 1px solid var(--line); }
.jersey__price { font: 400 44px/1 var(--display); }
.jersey__fine { font-size: 13px; color: var(--muted); max-width: 300px; margin-top: 6px; }
.launch { display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: 999px; font-size: 13px; font-weight: 600; border: 1px solid rgba(200, 247, 216, .45); color: var(--mint); }
.launch::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; animation: pulse 2s infinite; }

/* About + gallery */
.about__grid { max-width: 1040px; }
.about__quote p { font: 500 clamp(22px, 2.8vw, 38px)/1.32 var(--body); letter-spacing: -.015em; text-wrap: pretty; }
.about__quote footer { margin-top: 26px; display: flex; flex-direction: column; gap: 2px; }
.about__quote footer span { color: var(--muted); font-size: 14px; }

.gallery { margin-top: clamp(48px, 7vw, 90px); }
.gallery__track {
  display: flex; gap: 14px; overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory;
  padding: 0 var(--gutter) 4px; scroll-padding-inline: var(--gutter); scrollbar-width: none;
  cursor: grab;
}
@media (min-width: 1100px) { .gallery__track { padding-left: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter))); scroll-padding-inline: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter))); } }
.gallery__track::-webkit-scrollbar { display: none; }
.gallery__track.is-drag { cursor: grabbing; scroll-snap-type: none; }
.gallery__track.is-drag img { pointer-events: none; }
.g { flex: none; height: clamp(300px, 46vw, 520px); aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden; scroll-snap-align: start; background: var(--bg-3); }
.g--w { aspect-ratio: 3 / 2; }
.g img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); user-select: none; -webkit-user-drag: none; }
.g:hover img { transform: scale(1.05); }
.gallery__nav { display: flex; align-items: center; gap: 16px; margin-top: 22px; }
.gallery__progress { flex: 1; height: 2px; background: var(--line); border-radius: 2px; overflow: hidden; }
.gallery__progress span { display: block; height: 100%; width: 20%; background: var(--grad); transform-origin: left; transition: width .2s; }

/* Partners */
.partners { background: var(--bg-2); border-block: 1px solid var(--line); }
.partners .h2--sm { color: #d7dad7; }
.logos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; }
.logos li { background: var(--bg-2); }
.logos a { height: 120px; display: grid; place-items: center; padding: 24px; transition: background .3s; }
.logos img { max-height: 44px; max-width: 100%; width: auto; opacity: .62; transition: opacity .3s, transform .5s var(--ease); }
.logos a:hover { background: var(--bg-3); }
.logos a:hover img { opacity: 1; transform: scale(1.06); }

/* FAQ */
.faq__grid { display: grid; gap: 32px; }
.faq__list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 0; font-size: clamp(16px, 1.4vw, 19px); font-weight: 600; transition: color .2s; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--mint); }
.faq summary .ic { width: 22px; height: 22px; transition: transform .4s var(--ease); color: var(--mint); }
.faq details[open] summary .ic { transform: rotate(45deg); }
.faq details p { color: var(--muted); padding: 0 40px 24px 0; animation: fadeDown .45s var(--ease); }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-8px); } }

/* Final CTA */
.final { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; isolation: isolate; text-align: center; }
.final__media { position: absolute; inset: -12% 0; z-index: -2; }
.final__media img { width: 100%; height: 100%; object-fit: cover; }
.final__shade { position: absolute; inset: 0; z-index: -1; background: radial-gradient(70% 60% at 50% 50%, rgba(8, 9, 10, .45), rgba(8, 9, 10, .9)), linear-gradient(180deg, var(--bg), transparent 25%, transparent 75%, var(--bg)); }
.final__inner { display: flex; flex-direction: column; align-items: center; }
.final .kicker::before { display: none; }
.final__title { font: 400 clamp(56px, 11vw, 168px)/.88 var(--display); text-transform: uppercase; }
.final__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 40px; }

/* Footer */
.footer { padding: 72px 0 calc(28px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); }
.footer__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
.footer__brand { grid-column: 1 / -1; }
.footer__brand img { height: 64px; width: auto; }
.footer__brand p { color: var(--muted); margin-top: 12px; }
.footer__h { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.footer__grid a { display: block; padding: 5px 0; font-size: 15px; color: #d0d3d0; transition: color .2s; }
.footer__grid a:hover { color: var(--mint); }
.footer__legal { margin-top: 56px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; font-size: 13px; color: var(--muted); }
.footer__credit a { text-decoration: underline; }

/* Dock (mobile sticky CTA) */
.dock {
  position: fixed; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom)); z-index: 40;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 10px 10px 10px 18px; border-radius: 999px;
  background: rgba(16, 18, 20, .82); border: 1px solid var(--line-2);
  backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%);
  transform: translateY(140%); transition: transform .5s var(--ease);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, .6);
}
.dock.is-on { transform: none; }
.dock__t { font-weight: 600; font-size: 14px; line-height: 1.2; }
.dock__s { font-size: 12px; color: var(--muted); line-height: 1.3; font-variant-numeric: tabular-nums; }

.wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 40; width: 56px; height: 56px; border-radius: 50%; display: none; place-items: center; background: #25d366; color: #fff; box-shadow: 0 12px 30px -8px rgba(37, 211, 102, .6); transition: transform .35s var(--ease); }
.wa-float:hover { transform: scale(1.08); }
.wa-float .ic { width: 28px; height: 28px; stroke-width: 1.7; }

.toast { position: fixed; left: 50%; top: 20px; z-index: 100; transform: translate(-50%, -250%); visibility: hidden; padding: 12px 18px; border-radius: 999px; background: var(--ink); color: #000; font-weight: 600; font-size: 14px; transition: transform .5s var(--ease); pointer-events: none; }
.toast.is-on { transform: translate(-50%, 0); visibility: visible; }

/* ---------- Reveal animations ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(36px); transition: opacity 1s var(--ease), transform 1.1s var(--ease); transition-delay: var(--d, 0s); }
.js [data-reveal].is-in { opacity: 1; transform: none; }
.js .reveal-img[data-reveal] { opacity: 1; transform: none; clip-path: inset(12% 8% 12% 8% round var(--radius)); transition: clip-path 1.4s var(--ease); }
.js .reveal-img[data-reveal] img { transform: scale(1.25); transition: transform 1.8s var(--ease); }
.js .reveal-img[data-reveal].is-in { clip-path: inset(0 0 0 0 round var(--radius)); }
.js .reveal-img[data-reveal].is-in img { transform: scale(1); }

/* ---------- Responsive ---------- */
@media (max-width: 959px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
  .hero { justify-content: flex-end; }
  .countdown { position: relative; right: auto; bottom: auto; margin: 28px var(--gutter) 0; }
  .countdown__grid { grid-template-columns: repeat(4, 1fr); }
  .climb__marks { width: 118px; font-size: 11px; }
  .climb__inner { align-items: center; }
  .climb__bar { height: min(62vh, 520px); }
}
@media (max-width: 599px) {
  .hide-sm { display: none; }
  .hero__actions .btn { flex: 1 1 100%; }
  .hero__meta { gap: 8px 18px; font-size: 14px; }
  .climb__inner { flex-direction: column; justify-content: center; align-items: flex-start; gap: 28px; }
  .climb__bar { width: 100%; height: auto; flex-direction: column-reverse; gap: 10px; }
  .climb__laps { flex-direction: row; width: 100%; height: 14px; }
  .climb__marks { width: 100%; height: 16px; text-align: left; }
  .mk { top: 0 !important; transform: none !important; padding: 0; }
  .mk::after { display: none; }
  .mk--mid { left: 50%; right: auto; transform: translateX(-50%) !important; }
  .mk--top { right: 0; }
  .feat { grid-template-columns: 1fr 1fr; }
  .feat li { padding: 14px; font-size: 14px; }
  .jersey__weight { width: 88px; height: 88px; right: 2%; }
  .jersey__weight b { font-size: 34px; }
  .faq details p { padding-right: 0; }
  .g { height: 380px; }
  .g--w { height: 260px; }
  .footer { padding-bottom: calc(100px + env(safe-area-inset-bottom)); }
}
@media (min-width: 600px) {
  .logos { grid-template-columns: repeat(3, 1fr); }
  .steps__list { grid-template-columns: repeat(3, 1fr); }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer__brand { grid-column: auto; }
}
@media (min-width: 720px) {
  .modes__grid { grid-template-columns: 1.15fr 1fr; }
  .rules__list { grid-template-columns: 1fr 1fr; }
  .logos { grid-template-columns: repeat(5, 1fr); }
}
@media (min-width: 960px) {
  .reto__grid { grid-template-columns: 1.1fr .9fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .manifesto__grid { grid-template-columns: .8fr 1.2fr; align-items: start; }
  .manifesto__media { position: sticky; top: calc(var(--nav-h) + 24px); }
  .manifesto__text { padding-block: 8vh; }
  .signup__grid { grid-template-columns: .9fr 1.1fr; }
  .price { position: sticky; top: calc(var(--nav-h) + 20px); }
  .jersey__grid { grid-template-columns: 1fr 1fr; }
  .faq__grid { grid-template-columns: .8fr 1.2fr; gap: 64px; }
  .faq .section__head { position: sticky; top: calc(var(--nav-h) + 20px); align-self: start; }
  .hero__scroll { display: block; }
  .wa-float { display: grid; }
  .dock { display: none; }
  .rules__list { grid-template-columns: repeat(3, 1fr); }
}
@media (max-height: 760px) and (min-width: 960px) {
  .hero__tag { font-size: clamp(34px, 8vh, 64px); }
  .hero__lead { font-size: 16px; max-width: 520px; }
  .countdown { padding: 14px 16px; }
  .countdown__grid span { font-size: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .hero__in { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
}
