/* GPUVault v2 - "Aurora Vault" concept. Same brand tokens as v1 (navy base, amber accent, Sora),
   different treatment: cinematic dark aurora, glass panels, cursor + scroll choreography. */
:root {
  --bg: #14133a;
  --bg-deep: #0F0E2A;          /* brand deep navy */
  --near-black: #1E1D3A;       /* brand near-black (panels) */
  --panel: rgba(30, 29, 58, .55);
  --line: rgba(255, 255, 255, .1);
  --line-strong: rgba(255, 255, 255, .2);
  --text: #ffffff;
  --text-2: rgba(235, 234, 250, .82);
  --text-3: rgba(220, 219, 240, .64);
  --amber: #F5A623;
  --amber-hover: #ffc45c;
  --amber-dark: #C77F0D;
  --shadow: rgba(3, 2, 14, .5);
  --pad-x: clamp(20px, 4.5vw, 72px);
  --radius: 18px;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --spring: cubic-bezier(.34, 1.56, .5, 1);
  color-scheme: dark;
}

@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
  src: url("assets/sora-var-latin.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
  src: url("assets/sora-var-latin-ext.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; background: linear-gradient(180deg, #14133a 0%, #0F0E2A 45%, #0C0B24 100%); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  background: transparent;
  color: var(--text);
  font: 400 16px/1.65 'Sora', system-ui, sans-serif;
  overflow-x: hidden;
}

::selection { background: rgba(245, 166, 35, .35); }
a { color: var(--amber); text-decoration: none; }
a:hover { color: var(--amber-hover); }
:focus-visible { outline: 2px solid var(--amber); outline-offset: 2px; border-radius: 4px; }
.icon { width: 1em; height: 1em; flex: none; fill: currentColor; }
/* Logotype: official wordmark image (assets/wordmark.png, keyed from gpu-vault.jpg) */
.wordmark-img { display: block; flex: none; width: auto; height: 15px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ── Custom cursor ── */
.cursor-dot, .cursor-ring { display: none; }
@media (pointer: fine) and (hover: hover) {
  body.has-cursor { cursor: none; }
  body.has-cursor a, body.has-cursor button, body.has-cursor textarea, body.has-cursor input { cursor: none; }
  body.has-cursor .cursor-dot {
    display: block; position: fixed; z-index: 9999; pointer-events: none;
    width: 8px; height: 8px; border-radius: 50%; background: var(--amber);
    top: 0; left: 0; transform: translate(-50%, -50%);
    will-change: transform; opacity: 0; transition: opacity .2s;
  }
  body.has-cursor .cursor-ring {
    display: block; position: fixed; z-index: 9998; pointer-events: none;
    width: 38px; height: 38px; border-radius: 50%;
    border: 1.5px solid rgba(245, 166, 35, .55);
    top: 0; left: 0; transform: translate(-50%, -50%);
    will-change: transform; opacity: 0;
    transition: opacity .2s, width .3s var(--ease-out), height .3s var(--ease-out),
                border-color .3s, background-color .3s;
  }
  body.has-cursor.cursor-in .cursor-dot,
  body.has-cursor.cursor-in .cursor-ring { opacity: 1; }
  body.has-cursor .cursor-ring.is-link {
    width: 56px; height: 56px;
    border-color: rgba(245, 166, 35, .9);
    background: rgba(245, 166, 35, .08);
  }
  body.has-cursor .cursor-ring.is-text {
    width: 4px; height: 34px; border-radius: 3px;
    border-color: rgba(255, 255, 255, .7);
  }
}

/* ── Scroll progress ── */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 200;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--amber-dark), var(--amber), var(--amber-hover));
  transform: scaleX(0); transform-origin: 0 50%;
  will-change: transform;
}

/* ── Aurora field ── */
.aurora {
  position: fixed; inset: 0; z-index: -1; overflow: hidden;
  background: radial-gradient(ellipse 120% 70% at 50% -10%, rgba(62, 74, 165, .24), transparent 62%);
}
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(90px) saturate(1.25); opacity: .7;
  will-change: transform;
}
.blob-a {
  width: 55vw; height: 55vw; max-width: 900px; max-height: 900px;
  left: -12vw; top: -18vw;
  background: radial-gradient(circle at 40% 40%, rgba(62, 74, 165, .58), transparent 65%);
  animation: drift-a 26s ease-in-out infinite alternate;
}
.blob-b {
  width: 44vw; height: 44vw; max-width: 760px; max-height: 760px;
  right: -14vw; top: 4vw;
  background: radial-gradient(circle at 60% 40%, rgba(245, 166, 35, .4), transparent 65%);
  animation: drift-b 32s ease-in-out infinite alternate;
}
.blob-c {
  width: 50vw; height: 50vw; max-width: 820px; max-height: 820px;
  left: 22vw; bottom: -30vw;
  background: radial-gradient(circle at 50% 50%, rgba(84, 98, 196, .46), transparent 65%);
  animation: drift-c 38s ease-in-out infinite alternate;
}
@keyframes drift-a { from { transform: translate3d(0, 0, 0) scale(1); } to { transform: translate3d(6vw, 4vw, 0) scale(1.12); } }
@keyframes drift-b { from { transform: translate3d(0, 0, 0) scale(1.05); } to { transform: translate3d(-5vw, 6vw, 0) scale(.95); } }
@keyframes drift-c { from { transform: translate3d(0, 0, 0) scale(1); } to { transform: translate3d(-4vw, -5vw, 0) scale(1.1); } }
.grain {
  position: absolute; inset: -50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ── Glass panels ── */
.glass {
  background: var(--panel);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .09);
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 46px; padding: 12px 26px;
  font: 600 15px/1 'Sora', system-ui, sans-serif;
  border-radius: 999px; border: 1px solid transparent;
  transition: transform .3s var(--spring), background-color .2s, color .2s, box-shadow .3s, border-color .2s;
  touch-action: manipulation;
}
.btn:active { transform: scale(.97); }
.btn-solid {
  background: var(--amber); color: #191505;
  box-shadow: 0 6px 26px rgba(245, 166, 35, .28);
}
.btn-solid:hover { background: var(--amber-hover); color: #191505; box-shadow: 0 8px 34px rgba(245, 166, 35, .42); }
.btn-ghost {
  background: rgba(255, 255, 255, .04); color: var(--text);
  border-color: var(--line-strong);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .1); color: var(--text); border-color: rgba(255, 255, 255, .3); }
.btn-outline-amber { background: transparent; color: var(--amber); border-color: var(--amber); }
.btn-outline-amber:hover { background: rgba(245, 166, 35, .12); color: var(--amber-hover); }
.btn-sm { min-height: 40px; padding: 9px 18px; font-size: 14px; }
.btn-lg { min-height: 54px; padding: 15px 34px; font-size: 16px; }
.magnetic { will-change: transform; }
.magnetic .m-inner { display: inline-flex; align-items: center; gap: 8px; will-change: transform; }

/* ── Nav ── */
.nav-wrap {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 14px var(--pad-x);
  transition: padding .35s var(--ease-out), background-color .35s, box-shadow .35s;
}
.nav-wrap.scrolled {
  padding: 8px var(--pad-x);
  background: rgba(19, 18, 50, .72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line), 0 12px 40px var(--shadow);
}
.nav { display: flex; align-items: center; gap: 28px; max-width: 1440px; margin: 0 auto; }
.nav-brand { display: flex; align-items: center; gap: 10px; color: var(--text); font-size: 14px; }
.brand-mark { display: block; flex: none; }
.nav-links { display: flex; gap: 6px; margin-left: auto; }
.nav-links a {
  color: var(--text-2); font-size: 14.5px; font-weight: 500;
  padding: 10px 14px; border-radius: 999px;
  transition: color .2s, background-color .2s;
}
.nav-links a:hover { color: var(--text); background: rgba(255, 255, 255, .07); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-signin { color: var(--text-2); font-size: 14.5px; font-weight: 500; padding: 10px 6px; }
.nav-signin:hover { color: var(--text); }
.nav-toggle {
  display: none; background: none; border: 1px solid var(--line-strong); border-radius: 10px;
  color: var(--text); font-size: 22px; width: 44px; height: 44px;
  align-items: center; justify-content: center;
}
.nav-mobile { display: none; }
@media (max-width: 900px) {
  .nav-links, .nav-signin { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-mobile.open {
    display: flex; flex-direction: column; gap: 4px;
    margin-top: 10px; padding: 12px;
    background: rgba(19, 18, 50, .94); backdrop-filter: blur(16px);
    border: 1px solid var(--line); border-radius: 14px;
  }
  .nav-mobile a { color: var(--text-2); padding: 12px 14px; border-radius: 10px; font-weight: 500; }
  .nav-mobile a:hover { color: var(--text); background: rgba(255, 255, 255, .06); }
}

/* ── Hero ── */
.hero {
  position: relative; isolation: isolate; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(120px, 16vh, 180px) var(--pad-x) 90px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1; overflow: hidden;
}
.hero-bg img,
.hero-bg video {
  position: absolute; inset: -6% 0; width: 100%; height: 112%;
  object-fit: cover; object-position: 65% 40%;
  transform: translate3d(0, var(--py, 0px), 0);
  will-change: transform;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 14, 42, .93) 0%, rgba(15, 14, 42, .78) 34%, rgba(15, 14, 42, .38) 62%, rgba(15, 14, 42, .55) 100%),
    linear-gradient(180deg, rgba(15, 14, 42, .55) 0%, rgba(15, 14, 42, .12) 40%, rgba(15, 14, 42, .92) 96%);
}
.hero-spot {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: radial-gradient(620px circle at var(--mx, 60%) var(--my, 30%), rgba(184, 112, 8, .22), rgba(122, 74, 6, .1) 45%, transparent 68%);
  mix-blend-mode: screen;
  transition: opacity .4s;
}
.hero-inner { position: relative; z-index: 2; }
.hero-inner {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(32px, 5vw, 80px); align-items: center;
  max-width: 1440px; margin: 0 auto; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 2.5px;
  color: var(--amber);
  border: 1px solid rgba(245, 166, 35, .35); border-radius: 999px;
  padding: 8px 16px; margin-bottom: 26px;
  background: rgba(245, 166, 35, .06);
}
.hero-copy h1 {
  font-size: clamp(38px, 5.4vw, 74px);
  font-weight: 700; line-height: 1.06; letter-spacing: -.02em;
  margin-bottom: 24px; max-width: 14ch;
}
.hero-copy h1 em, .final-cta h2 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--amber-dark) 0%, var(--amber) 40%, var(--amber-hover) 70%, #fff 115%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: shimmer 6s ease-in-out infinite;
}
@keyframes shimmer { 0%, 100% { background-position: 0% 0; } 50% { background-position: 100% 0; } }
/* split-word reveal */
.js .split .w {
  display: inline-block;
  transform: translateY(1.1em) rotate(2deg); opacity: 0;
  transition: transform .7s var(--ease-out), opacity .5s;
  transition-delay: calc(var(--i) * 45ms);
  will-change: transform;
}
.js .split.in .w { transform: none; opacity: 1; }
.hero-sub { color: var(--text-2); font-size: clamp(16px, 1.4vw, 19px); max-width: 46ch; margin-bottom: 34px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero-proof { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; color: var(--text-3); font-size: 14px; }
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  border: 1px solid var(--line-strong); border-radius: 999px;
  padding: 7px 14px; color: var(--text-2); font-size: 13px; font-weight: 500;
}
.pill .icon { color: var(--amber); }
.hero-scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  width: 24px; height: 38px; border: 1.5px solid var(--line-strong); border-radius: 12px;
}
.hero-scroll-hint span {
  position: absolute; top: 7px; left: 50%; width: 4px; height: 8px; margin-left: -2px;
  border-radius: 2px; background: var(--amber);
  animation: hint 1.8s var(--ease-out) infinite;
}
@keyframes hint { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(12px); opacity: 0; } 100% { opacity: 0; } }

/* widget */
.hero-widget { perspective: 1200px; }
.widget {
  position: relative; padding: 26px; overflow: hidden;
  background: rgba(30, 29, 58, .8);
  box-shadow: 0 30px 80px var(--shadow);
}
.widget-glow, .card-glow {
  position: absolute; inset: 0; pointer-events: none; opacity: 0;
  background: radial-gradient(320px circle at var(--gx, 50%) var(--gy, 50%), rgba(245, 166, 35, .12), transparent 70%);
  transition: opacity .35s;
  border-radius: inherit;
}
.tilt:hover .widget-glow, .tilt:hover .card-glow { opacity: 1; }
.widget-head { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.widget-mark { flex: none; opacity: .9; }
.widget-title { display: block; font-weight: 700; font-size: 17px; margin-bottom: 4px; }
.widget-sub { display: block; color: var(--text-3); font-size: 13.5px; }
.widget textarea {
  width: 100%; min-height: 92px; resize: vertical;
  background: rgba(12, 11, 40, .55); color: var(--text);
  border: 1px solid var(--line); border-radius: 12px;
  padding: 14px; font: 400 14.5px/1.5 'Sora', system-ui, sans-serif;
  transition: border-color .2s, box-shadow .2s;
}
.widget textarea::placeholder { color: var(--text-3); }
.widget textarea:focus { outline: none; border-color: rgba(245, 166, 35, .6); box-shadow: 0 0 0 3px rgba(245, 166, 35, .15); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 18px; }
.chip {
  background: rgba(255, 255, 255, .05); color: var(--text-2);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 15px; min-height: 38px; font: 500 13px 'Sora', system-ui, sans-serif;
  transition: background-color .2s, color .2s, border-color .2s, transform .3s var(--spring);
}
.chip:hover { background: rgba(245, 166, 35, .1); color: var(--amber-hover); border-color: rgba(245, 166, 35, .4); transform: translateY(-2px); }
.match-btn { width: 100%; }
.match-result {
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height .5s var(--ease-out), opacity .4s .1s, margin .5s var(--ease-out);
}
.match-result.show { max-height: 240px; opacity: 1; margin-top: 18px; }
.match-head { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 8px; }
.match-gpu { font-weight: 700; font-size: 15px; }
.match-avail { display: inline-flex; align-items: center; gap: 6px; color: #6ee7a0; font-size: 13px; font-weight: 600; }
.match-desc { color: var(--text-2); font-size: 14px; margin-bottom: 10px; }
.match-launch { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14.5px; min-height: 44px; }

/* ── Ticker ── */
.ticker {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden; padding: 18px 0;
  background: rgba(21, 20, 54, .45);
  -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; animation: ticker 36s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-list { display: flex; list-style: none; }
.ticker-list li {
  display: flex; align-items: baseline; gap: 10px;
  padding: 0 34px; white-space: nowrap;
  border-right: 1px solid var(--line);
}
.ticker-list li strong { font-size: 15px; letter-spacing: .5px; }
.ticker-list li span { color: var(--amber); font-size: 13.5px; font-weight: 600; font-variant-numeric: tabular-nums; }

/* ── Stats ── */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  padding: clamp(50px, 8vh, 90px) var(--pad-x);
  max-width: 1200px; margin: 0 auto; text-align: center;
}
.stat .num {
  font-size: clamp(30px, 3.4vw, 46px); font-weight: 700; letter-spacing: -.02em; font-variant-numeric: tabular-nums;
  background: linear-gradient(180deg, #fff 30%, rgba(235, 234, 250, .65));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat .num.amber {
  background: linear-gradient(180deg, var(--amber-hover) 30%, var(--amber));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat .lbl { color: var(--text-3); font-size: 13.5px; margin-top: 6px; }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 30px 14px; } }

/* ── Scrollytelling ── */
.scrolly { padding: clamp(60px, 10vh, 120px) var(--pad-x); }
.scrolly-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 110px);
  max-width: 1280px; margin: 0 auto;
}
.scrolly-sticky { position: sticky; top: clamp(100px, 18vh, 190px); align-self: start; }
.eyebrow { display: block; color: var(--amber); font-size: 12px; font-weight: 700; letter-spacing: 3px; margin-bottom: 16px; }
.scrolly-sticky h2 { font-size: clamp(26px, 2.8vw, 40px); font-weight: 700; line-height: 1.18; letter-spacing: -.015em; margin-bottom: 18px; }
.scrolly-sticky p { color: var(--text-2); max-width: 44ch; }
.scrolly-meter {
  position: relative; margin-top: 34px;
  width: 220px; height: 3px; border-radius: 2px;
  background: rgba(255, 255, 255, .1);
}
.meter-fill {
  position: absolute; inset: 0;
  border-radius: 2px; background: linear-gradient(90deg, var(--amber-dark), var(--amber));
  transform: scaleX(0); transform-origin: 0 50%;
  transition: transform .5s var(--ease-out);
  will-change: transform;
}
.meter-dot {
  position: absolute; top: 50%; width: 11px; height: 11px;
  border-radius: 50%; transform: translate(-50%, -50%);
  background: var(--near-black); border: 2px solid rgba(255, 255, 255, .25);
  transition: background-color .3s, border-color .3s, box-shadow .3s;
}
.meter-dot[data-dot="1"] { left: 10%; }
.meter-dot[data-dot="2"] { left: 50%; }
.meter-dot[data-dot="3"] { left: 90%; }
.meter-dot.on { background: var(--amber); border-color: var(--amber-hover); box-shadow: 0 0 14px rgba(245, 166, 35, .7); }
.scrolly-steps { display: flex; flex-direction: column; gap: 4vh; }
.s-step {
  min-height: 52vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 30px 0;
  opacity: .38; filter: saturate(.5);
  transform: translateY(16px);
  transition: opacity .5s var(--ease-out), transform .6s var(--ease-out), filter .5s;
}
.s-step.on { opacity: 1; filter: none; transform: none; }
.s-num {
  font-size: clamp(52px, 6vw, 84px); font-weight: 800; line-height: 1;
  letter-spacing: -.03em; margin-bottom: 12px;
  color: transparent; -webkit-text-stroke: 1.5px rgba(255, 255, 255, .28);
  transition: color .45s, -webkit-text-stroke-color .45s;
}
.s-step.on .s-num { color: var(--amber); -webkit-text-stroke-color: transparent; }
.s-step h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.s-step p { color: var(--text-2); max-width: 40ch; }
@media (max-width: 860px) {
  .scrolly-grid { grid-template-columns: 1fr; }
  .scrolly-sticky { position: static; }
  .scrolly-meter { display: none; }
  .s-step { min-height: 0; opacity: 1; filter: none; transform: none; }
}

/* ── Sections ── */
.section { padding: clamp(50px, 9vh, 110px) var(--pad-x); max-width: 1440px; margin: 0 auto; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; flex-wrap: wrap; margin-bottom: 34px; }
.section-head h2 {
  font-size: clamp(26px, 2.8vw, 40px); font-weight: 700; letter-spacing: -.015em;
  display: inline-flex; align-items: center; gap: 14px;
}
.section-head h2::before {
  content: ""; width: 26px; height: 5px; border-radius: 3px; flex: none;
  background: linear-gradient(90deg, var(--amber), var(--amber-hover));
}
.head-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; min-height: 44px; }

/* ── Use cases (tilt cards) ── */
.usecases {
  display: grid; gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
}
.usecase {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 5px;
  padding: 22px;
  color: var(--text);
  transform-style: preserve-3d;
  transition: transform .5s var(--ease-out), border-color .3s, box-shadow .4s;
  will-change: transform;
}
.usecase:hover { border-color: rgba(245, 166, 35, .4); box-shadow: 0 24px 60px var(--shadow); color: var(--text); }
.usecase .icon {
  width: 46px; height: 46px; padding: 11px; box-sizing: border-box;
  color: var(--amber); margin-bottom: 8px;
  background: rgba(245, 166, 35, .15); border: 1px solid rgba(245, 166, 35, .25);
  border-radius: 13px;
}
.usecase strong { font-size: 18px; font-weight: 700; }
.usecase .desc { color: var(--text-2); font-size: 14px; max-width: 34ch; }
.usecase .price { color: var(--amber); font-size: 13.5px; font-weight: 600; font-variant-numeric: tabular-nums; }
.usecase-wide { grid-column: span 2; grid-row: span 2; }
.cell-img {
  position: absolute; inset: -8% 0; width: 100%; height: 116%;
  object-fit: cover; z-index: -2;
  transform: translate3d(0, var(--py, 0px), 0) scale(1.08);
  transition: transform .8s var(--ease-out);
  will-change: transform;
}
.usecase:hover .cell-img { transform: translate3d(0, var(--py, 0px), 0) scale(1.14); }
.cell-scrim {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(15, 14, 42, .05) 0%, rgba(15, 14, 42, .82) 78%);
}
@media (max-width: 1020px) { .usecases { grid-template-columns: repeat(2, 1fr); } .usecase-wide { grid-column: span 2; grid-row: span 1; min-height: 240px; } }
@media (max-width: 560px) { .usecases { grid-template-columns: 1fr; grid-auto-rows: auto; } .usecase { min-height: 150px; } .usecase-wide { grid-column: span 1; } }

/* ── Duo ── */
.duo { display: grid; grid-template-columns: 1.25fr 1fr; gap: 16px; }
.duo-card { position: relative; overflow: hidden; padding: clamp(26px, 3vw, 44px); display: flex; flex-direction: column; justify-content: center; }
.duo-card h2 { font-size: clamp(22px, 2.2vw, 32px); font-weight: 700; letter-spacing: -.01em; margin-bottom: 14px; max-width: 20ch; }
.duo-card p { color: var(--text-2); margin-bottom: 24px; max-width: 44ch; }
.duo-card p strong { color: var(--amber); }
.duo-card .btn { align-self: flex-start; }
.amber-edge { border-color: rgba(245, 166, 35, .3); }
.duo-card.amber-edge { display: grid; grid-template-columns: 1.1fr .9fr; gap: 20px; align-items: center; }
.duo-media { overflow: hidden; border-radius: 12px; height: 100%; min-height: 240px; }
.duo-img {
  width: 100%; height: 118%; object-fit: cover;
  transform: translate3d(0, var(--py, 0px), 0);
  will-change: transform;
}
@media (max-width: 980px) {
  .duo { grid-template-columns: 1fr; }
  .duo-card.amber-edge { grid-template-columns: 1fr; }
  .duo-media { min-height: 200px; max-height: 260px; }
}

/* ── Quotes ── */
.quotes { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 16px; }
.quote { position: relative; padding: 34px 28px 28px; display: flex; flex-direction: column; gap: 18px; justify-content: space-between; overflow: hidden; }
.quote::before {
  content: "\201C"; position: absolute; top: -14px; left: 14px;
  font-size: 110px; line-height: 1; font-weight: 800;
  color: rgba(245, 166, 35, .22); pointer-events: none;
}
.quote p { font-size: 16px; line-height: 1.6; color: var(--text-2); }
.quote-featured p { font-size: clamp(18px, 1.6vw, 22px); color: var(--text); font-weight: 500; }
.quote cite { display: flex; align-items: center; gap: 10px; font-style: normal; color: var(--text-3); font-size: 13.5px; }
.avatar { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; }
@media (max-width: 900px) { .quotes { grid-template-columns: 1fr; } }

/* ── Final CTA ── */
.final-cta {
  text-align: center;
  padding: clamp(70px, 14vh, 150px) var(--pad-x);
}
.final-cta h2 {
  font-size: clamp(34px, 5vw, 68px); font-weight: 700; letter-spacing: -.02em; line-height: 1.1;
  margin-bottom: 30px;
}

/* ── Footer ── */
footer {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px;
  padding: 60px var(--pad-x) 70px;
  border-top: 1px solid var(--line);
  max-width: 1440px; margin: 0 auto;
}
.foot-brand .row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.foot-brand .wordmark-img { height: 13px; }
.foot-brand .tag { display: block; color: var(--amber); font-size: 13.5px; font-weight: 600; margin-bottom: 14px; }
.foot-col { display: flex; flex-direction: column; gap: 4px; }
.foot-col .head { color: var(--text-3); font-size: 11.5px; font-weight: 700; letter-spacing: 2px; margin-bottom: 10px; }
.foot-col a { color: var(--text-2); font-size: 14px; padding: 6px 0; min-height: 32px; transition: color .2s; }
.foot-col a:hover { color: var(--amber-hover); }
.variant-link { color: var(--amber) !important; margin-top: 8px; }
@media (max-width: 800px) { footer { grid-template-columns: 1fr 1fr; } .foot-brand { grid-column: span 2; } }

/* ── Reveal ── */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease-out), transform .8s var(--ease-out); }
.js .reveal.in { opacity: 1; transform: none; }
.js .delay-1 { transition-delay: .08s; }
.js .delay-2 { transition-delay: .16s; }
.js .delay-3 { transition-delay: .24s; }
.js .delay-4 { transition-delay: .32s; }

/* ── Gate popup (same behavior as v1, restyled) ── */
.popup-backdrop[hidden] { display: none; }
.popup-backdrop {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(4, 3, 16, .8);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
body.gate-locked { overflow: hidden; }
.popup {
  width: min(460px, 100%);
  background: rgba(30, 29, 58, .95);
  border: 1px solid var(--line-strong); border-radius: 22px;
  padding: 38px; text-align: center;
  box-shadow: 0 40px 120px rgba(0, 0, 0, .6);
}
.popup-brand { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 20px; }
.popup-brand .wordmark-img { height: 13px; }
.popup-kicker { color: var(--amber); font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px; }
.popup-tagline { font-size: clamp(26px, 4vw, 34px); font-weight: 700; line-height: 1.15; letter-spacing: -.01em; margin-bottom: 14px; }
.popup-soon { color: var(--text-2); font-size: 14.5px; margin-bottom: 22px; }
.popup-form { display: flex; gap: 10px; }
.popup-form input {
  flex: 1; min-height: 46px; padding: 10px 16px;
  background: rgba(12, 11, 40, .6); color: var(--text);
  border: 1px solid var(--line-strong); border-radius: 999px;
  font: 400 14.5px 'Sora', system-ui, sans-serif;
}
.popup-form input:focus { outline: none; border-color: rgba(245, 166, 35, .6); box-shadow: 0 0 0 3px rgba(245, 166, 35, .15); }
.popup-error { color: #ff8a8a; font-size: 13.5px; margin-top: 12px; }

/* ── Reduced motion: kill choreography, keep content ── */
@media (prefers-reduced-motion: reduce) {
  .blob, .ticker-track, .hero-scroll-hint span,
  .hero-copy h1 em, .final-cta h2 em { animation: none !important; }
  .js .reveal, .js .split .w { opacity: 1 !important; transform: none !important; transition: none !important; }
  .s-step { opacity: 1; filter: none; transform: none; transition: none; }
  .scroll-progress, .cursor-dot, .cursor-ring, .hero-spot { display: none !important; }
  .cell-img, .usecase, .btn, .chip { transition-duration: .01ms !important; }
}

@media (max-width: 860px) {
  .hero { min-height: 0; padding-top: 120px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-scroll-hint { display: none; }
}
