:root {
  --engine-black: #030404;
  --engine-lime: #ccff00;
  --engine-lime-soft: #efffb6;
  --font-geist-sans: "Geist", ui-sans-serif, system-ui, sans-serif;
  --font-geist-mono: "Geist Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--engine-black); color: #fff; }
html { scroll-behavior: auto; }
body {
  font-family: var(--font-geist-sans);
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img { display: block; max-width: 100%; }
::selection { background: #ccff00; color: #000; }

.landing {
  position: relative;
  min-height: 100vh;
  overflow-x: clip;
  background: #030404;
  isolation: isolate;
}

.progress-bar {
  pointer-events: none;
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: 1px;
  background: rgba(255,255,255,.04);
}
.progress-bar > span {
  display: block;
  height: 100%;
  width: 0;
  background: #ccff00;
  transition: width .2s linear;
}

.hud-left {
  pointer-events: none;
  position: fixed;
  bottom: 1.5rem;
  left: 1.25rem;
  z-index: 40;
  display: none;
  align-items: flex-end;
  gap: .75rem;
}
@media (min-width: 1024px) { .hud-left { display: flex; } }
.hud-left .n {
  font-family: var(--font-geist-mono);
  font-size: 9px;
  font-weight: 900;
  color: #ccff00;
}
.hud-left .rule { height: 1px; width: 2.25rem; background: rgba(255,255,255,.18); }
.hud-left .k {
  font-family: var(--font-geist-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
}

.engine-grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 10;
  opacity: .085;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.vignette {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 10;
  background: radial-gradient(circle at 50% 50%, transparent 34%, rgba(0,0,0,.52) 100%);
}

.engine-display {
  font-family: var(--font-geist-sans);
  font-weight: 900;
  text-wrap: balance;
}

/* ENGINE */
.stage {
  position: relative;
  scroll-margin-top: 5rem;
}
.stage-engine { height: 100svh; }
.stage-engine .sticky {
  position: sticky;
  top: 0;
  display: flex;
  height: 100svh;
  align-items: flex-end;
  padding: 6rem 0 3.5rem;
}
.stage-engine .sticky::before {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image:
    linear-gradient(rgba(204,255,0,.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204,255,0,.22) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 72% 48%, black 0%, transparent 62%);
}
@media (min-width: 640px) {
  .stage-engine .sticky { align-items: center; padding-bottom: 0; }
}
.wrap {
  position: relative;
  z-index: 20;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .wrap { padding: 0 1.5rem; } }
@media (min-width: 768px) { .wrap { padding: 0 2rem; } }
@media (min-width: 1024px) { .wrap { padding: 0 3rem; } }

#hero-engine {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: block;
  pointer-events: none;
}
.hero-fade {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(3,4,4,.88) 0%, rgba(3,4,4,.55) 34%, rgba(3,4,4,.2) 52%, transparent 70%),
    linear-gradient(180deg, rgba(3,4,4,.2) 0%, transparent 18%, transparent 78%, rgba(3,4,4,.45) 100%);
}
.hero-copy { max-width: 720px; position: relative; z-index: 21; }
.hero-copy h1 {
  max-width: 820px;
  font-size: clamp(4.05rem, 8.7vw, 9rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: .76;
  letter-spacing: -.085em;
  color: #fff;
  text-shadow: 0 2px 28px rgba(0,0,0,.54);
}
.hero-copy h1 span { display: block; color: #ccff00; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 2rem;
}
.cta-lime {
  display: flex;
  height: 3.25rem;
  width: fit-content;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 0 1.5rem;
  background: #ccff00;
  color: #000;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: background .2s, color .2s;
}
.cta-lime-lg {
  height: 4.25rem;
  padding: 0 2rem;
  font-size: 13px;
  letter-spacing: .18em;
}
.cta-lime:hover { background: #fff; }
.cta-lime svg { width: 1rem; height: 1rem; transition: transform .2s; }
.cta-lime-lg svg { width: 1.25rem; height: 1.25rem; }
.cta-lime:hover svg { transform: translateX(4px); }
.cta-x {
  display: flex;
  height: 4.25rem;
  align-items: center;
  justify-content: center;
  padding: 0 1.75rem;
  border: 1px solid rgba(204,255,0,.55);
  color: #ccff00;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: rgba(3,4,4,.45);
  backdrop-filter: blur(12px);
  transition: background .2s, color .2s, border-color .2s;
}
.cta-x:hover { background: #ccff00; color: #000; border-color: #ccff00; }



.hud-right {
  display: none;
  position: absolute;
  right: 1.25rem;
  bottom: 1.5rem;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-geist-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.34);
}
@media (min-width: 640px) { .hud-right { display: flex; } }
.hud-right i {
  display: block;
  width: 1px;
  height: 2.25rem;
  background: linear-gradient(to bottom, #ccff00, transparent);
}

/* SIGNAL CRAWL */
.stage-signal { height: 175svh; }
.stage-signal .sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
}
.signal-crawl-viewport {
  z-index: 12;
  pointer-events: none;
  perspective: 420px;
  perspective-origin: 50% 12%;
  width: min(78vw, 920px);
  height: 46%;
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(#0000 0%, #000 10% 86%, #0000 100%);
  mask-image: linear-gradient(#0000 0%, #000 10% 86%, #0000 100%);
}
.signal-crawl-plane {
  transform-origin: 50% 100%;
  width: 92%;
  height: 230%;
  transform-style: preserve-3d;
  position: absolute;
  bottom: -105%;
  left: 50%;
  transform: translate(-50%) rotateX(61deg);
}
.signal-crawl-track {
  will-change: transform;
  animation: 80s linear infinite signal-crawl;
}
.signal-crawl-sequence {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 1080px;
  padding-block: 90px;
}
.signal-crawl-item {
  text-align: center;
  width: 100%;
  max-width: 720px;
  font-family: var(--font-geist-mono);
  letter-spacing: .02em;
  color: #fff;
  filter: drop-shadow(0 4px 10px #000);
  margin: 0;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 600;
  line-height: 1.55;
}
@keyframes signal-crawl {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
@media (max-width: 900px) {
  .signal-crawl-viewport {
    perspective: 300px;
    width: 88%;
    height: 38%;
    top: 22%;
    left: 50%;
    transform: translateX(-50%);
  }
}

.engine-sweep-cta {
  isolation: isolate;
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  position: absolute;
  bottom: 7svh;
  left: 50%;
  z-index: 20;
  display: flex;
  height: 5.5rem;
  width: min(92vw, 560px);
  transform: translateX(-50%);
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 2rem;
  font-family: var(--font-geist-mono);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #fff;
  box-shadow: 0 22px 70px #0000009e, 0 0 0 1px #ccff0033;
  background: rgba(3,4,4,.55);
}
.engine-sweep-cta:before {
  content: "";
  z-index: 5;
  pointer-events: none;
  clip-path: inherit;
  border: 1px solid #ccff0052;
  position: absolute;
  inset: 0;
}
.engine-sweep-cta:hover,
.engine-sweep-cta[data-holding="true"] {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 28px 90px #000000b8, 0 0 42px #ccff0029, 0 0 0 1px #ccff0080;
}
.engine-sweep-cta__grid {
  opacity: .34;
  background-image: linear-gradient(#ccff002e 1px, #0000 1px), linear-gradient(90deg, #ccff002e 1px, #0000 1px);
  background-size: 15px 15px;
  position: absolute;
  inset: 0;
}
.engine-sweep-cta__fill {
  position: absolute;
  inset-block: 0;
  left: 0;
  width: 0;
  background:
    linear-gradient(#ccff0038 1px, #0000 1px) 0 0 / 15px 15px,
    linear-gradient(90deg, #ccff0038 1px, #0000 1px) 0 0 / 15px 15px,
    linear-gradient(90deg, #42531dd1, #ccff00b8);
  box-shadow: inset -1px 0 #efffb6e6;
}
.engine-sweep-cta__beam {
  z-index: 4;
  pointer-events: none;
  filter: blur(2px);
  background: linear-gradient(90deg, #0000, #efffb6f0, #0000);
  width: 22px;
  position: absolute;
  inset-block: -20%;
  left: -10px;
  opacity: 0;
  box-shadow: 0 0 22px #ccff00b8;
}
.engine-sweep-cta__mark {
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(2, 6px);
  gap: 3px;
  position: absolute;
  left: 22px;
}
.engine-sweep-cta__mark i {
  background: #ccff00;
  width: 6px;
  height: 6px;
  box-shadow: 0 0 7px #ccff0085;
}
.engine-sweep-cta span.label { position: relative; z-index: 10; }
@media (min-width: 640px) {
  .engine-sweep-cta { height: 6rem; font-size: 18px; }
}

/* PRODUCTS */
.stage-products { height: 360svh; background: #030404; }
.stage-products .sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  background: #030404;
}
.field {
  position: absolute;
  inset: 0;
}
.field canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; z-index: 2; }
.field-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #030404;
}
.field-fallback .grid {
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image:
    linear-gradient(rgba(204,255,0,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204,255,0,.18) 1px, transparent 1px);
  background-size: 54px 54px;
}
.field-fallback .dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: #ccff00;
  box-shadow: 0 0 28px rgba(204,255,0,.9);
}
.shade-left {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 10;
  background: linear-gradient(90deg, rgba(3,4,4,.98) 0%, rgba(3,4,4,.94) 29.5%, rgba(3,4,4,.46) 34%, transparent 45%, transparent 80%, rgba(3,4,4,.34) 100%);
}
.shade-top, .shade-bot {
  pointer-events: none;
  position: absolute;
  inset-inline: 0;
  z-index: 20;
}
.shade-top { top: 0; height: 10rem; background: linear-gradient(to bottom, #030404, #03040470, transparent); }
.shade-bot { bottom: 0; height: 8rem; background: linear-gradient(to top, #030404, #03040485, transparent); }

.prod-head {
  pointer-events: none;
  position: absolute;
  inset-inline: 0;
  top: 0;
  z-index: 30;
  padding: 2rem 1.25rem 0;
}
@media (min-width: 640px) { .prod-head { padding: 2.5rem 2.25rem 0; } }
@media (min-width: 1024px) { .prod-head { padding: 2.5rem 3rem 0; } }
.prod-head-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 2rem; }
.prod-kicker {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-geist-mono);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #ccff00;
}
.prod-kicker .ln { height: 1px; width: 1rem; background: #ccff00; }
.prod-title {
  margin-top: 1rem;
  max-width: 27vw;
  font-size: clamp(.88rem, 3.7vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: .78;
  letter-spacing: -.075em;
  text-shadow: 0 3px 36px rgba(0,0,0,.86);
  overflow-wrap: anywhere;
}
.drag-hint {
  display: none;
  align-items: center;
  gap: .75rem;
  padding-top: .5rem;
  font-family: var(--font-geist-mono);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.34);
}
@media (min-width: 640px) { .drag-hint { display: flex; } }
.drag-hint b {
  width: 8px; height: 8px; transform: rotate(45deg);
  border: 1px solid rgba(204,255,0,.7);
}

.prod-body {
  pointer-events: none;
  position: absolute;
  left: 1.25rem;
  bottom: 3.5rem;
  top: 31%;
  z-index: 30;
  width: 27vw;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 91%, transparent 100%);
  perspective: 720px;
}
@media (min-width: 640px) { .prod-body { left: 2.25rem; } }
@media (min-width: 1024px) { .prod-body { left: 3rem; } }
.prod-copy {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  border-left: 1px solid rgba(204,255,0,.38);
  padding-left: clamp(.75rem, 1.35vw, 1.4rem);
  transform-origin: bottom center;
}
.prod-copy h3 {
  max-width: 25vw;
  font-size: clamp(.88rem, 1.75vw, 1.7rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: -.045em;
  text-shadow: 0 5px 28px rgba(0,0,0,.9);
  text-wrap: balance;
}
.prod-copy p {
  margin-top: clamp(.7rem, 1.4vw, 1.3rem);
  max-width: 24vw;
  font-size: clamp(.68rem, 1.08vw, 1.04rem);
  font-weight: 500;
  line-height: 1.58;
  letter-spacing: -.018em;
  color: rgba(255,255,255,.68);
  text-wrap: balance;
}
.prod-modes {
  margin-top: clamp(.8rem, 1.8vw, 1.7rem);
  display: flex;
  flex-direction: column;
  gap: clamp(.42rem, .8vw, .75rem);
  font-family: var(--font-geist-mono);
  font-size: clamp(.54rem, .72vw, .72rem);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #ccff00;
}
.prod-modes div { display: flex; align-items: center; gap: .5rem; }
.prod-modes .idx { color: rgba(255,255,255,.24); }
.prod-modes .ln { height: 1px; width: .75rem; background: rgba(204,255,0,.45); }

.open-link {
  position: absolute;
  right: 2.25rem;
  top: 5rem;
  z-index: 50;
  display: none;
  height: 2.5rem;
  align-items: center;
  gap: .5rem;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.65);
  padding: 0 1rem;
  font-family: var(--font-geist-mono);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  backdrop-filter: blur(20px);
  transition: border-color .2s, color .2s;
}
.open-link:hover { border-color: rgba(204,255,0,.6); color: #ccff00; }
@media (min-width: 640px) { .open-link { display: flex; } }
@media (min-width: 1024px) { .open-link { right: 3rem; } }
.open-link svg { width: 14px; height: 14px; }

.rail {
  position: absolute;
  right: 1rem;
  top: 1.75rem;
  z-index: 50;
  display: flex;
  flex-direction: row;
  gap: 4px;
}
@media (min-width: 640px) {
  .rail {
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    flex-direction: column;
  }
}
.rail button {
  display: flex;
  height: 1.75rem;
  min-width: 1.5rem;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-geist-mono);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.22);
  transition: color .2s;
}
.rail button:hover { color: rgba(255,255,255,.55); }
.rail button.is-on { color: #ccff00; }
@media (min-width: 640px) {
  .rail button { height: 2rem; justify-content: flex-end; gap: .75rem; color: rgba(255,255,255,.22); }
  .rail button.is-on { color: #fff; }
}
.rail button .tick {
  display: none;
  height: 1px;
  width: 1.25rem;
  background: rgba(255,255,255,.2);
  transition: width .2s, background .2s;
}
@media (min-width: 640px) { .rail button .tick { display: block; } }
.rail button.is-on .tick { width: 2.5rem; background: #ccff00; }

/* TOKEN */
.stage-token { height: 440svh; background: #030404; }
.stage-token .sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  background: #030404;
}
.token-grid {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .095;
  background-image:
    linear-gradient(rgba(204,255,0,.26) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204,255,0,.26) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 72%);
}
.token-glow {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 50%, rgba(204,255,0,.075), transparent 31%),
    linear-gradient(90deg, rgba(3,4,4,.96) 0%, rgba(3,4,4,.2) 29%, rgba(3,4,4,.08) 72%, rgba(3,4,4,.82) 100%);
}
.token-line {
  pointer-events: none;
  position: absolute;
  inset-inline: 0;
  top: 76px;
  z-index: 3;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(204,255,0,.5), transparent);
}
.token-copy-wrap {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: flex-end;
  padding: 0 1.25rem 10svh;
}
@media (min-width: 640px) { .token-copy-wrap { padding-inline: 2rem; } }
@media (min-width: 1024px) {
  .token-copy-wrap { align-items: center; padding-bottom: 0; }
}
.token-copy { width: 100%; }
@media (min-width: 1024px) { .token-copy { width: 31%; padding-left: 3vw; } }
.token-copy .kicker {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-geist-mono);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #ccff00;
}
.token-copy .kicker .ln { height: 1px; width: 2.5rem; background: #ccff00; }
.token-copy h2 {
  margin-top: 1rem;
  max-width: 650px;
  font-size: clamp(3.6rem, 7.8vw, 8.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: .72;
  letter-spacing: -.085em;
}
.token-copy .sub {
  margin-top: 1.25rem;
  max-width: 480px;
  font-family: var(--font-geist-mono);
  font-size: 9px;
  font-weight: 900;
  line-height: 1.8;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
}
.token-copy .meta {
  margin-top: 2rem;
  font-family: var(--font-geist-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(204,255,0,.55);
}
.token-scroll {
  pointer-events: none;
  position: absolute;
  right: 1.25rem;
  bottom: 1.75rem;
  z-index: 20;
  display: none;
  align-items: flex-end;
  gap: 1rem;
}
@media (min-width: 640px) { .token-scroll { display: flex; } }
.token-scroll .lab {
  font-family: var(--font-geist-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
}
.token-scroll .bars { display: flex; gap: 6px; }
.token-scroll .bars span {
  display: block;
  width: 1px;
  height: 2rem;
  background: rgba(255,255,255,.15);
  transition: background .5s;
}
.token-scroll .bars span.on { background: #ccff00; }
.token-scroll .n {
  font-family: var(--font-geist-mono);
  font-size: 9px;
  font-weight: 900;
  color: #ccff00;
}

/* PARTNERS */
.stage-partners { height: 300svh; background: #030404; }
.stage-partners .sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  background: #030404;
}
.partners-grid {
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: .105;
  background-image:
    linear-gradient(rgba(204,255,0,.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204,255,0,.3) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse at 72% 50%, black, transparent 70%);
}
.partners-glow {
  pointer-events: none;
  position: absolute;
  left: 28%;
  right: 0;
  top: 50%;
  z-index: 1;
  height: 31%;
  transform: translateY(-50%);
  background: radial-gradient(ellipse at center, rgba(204,255,0,.16), rgba(204,255,0,.035) 38%, transparent 72%);
  filter: blur(24px);
}
.partners-line {
  pointer-events: none;
  position: absolute;
  left: 30%;
  right: 0;
  top: 50%;
  z-index: 1;
  height: 1px;
  transform: translateY(-50%);
  background: linear-gradient(to right, transparent, rgba(204,255,0,.7), transparent);
  box-shadow: 0 0 24px rgba(204,255,0,.7);
}
.partners-track {
  position: absolute;
  inset-block: 0;
  left: 25%;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.partners-marquee {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  animation: 40s linear infinite partners-move;
  font-family: var(--font-geist-sans);
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  font-weight: 900;
  letter-spacing: -.06em;
  text-transform: uppercase;
  color: #fff;
}
.partners-marquee span { opacity: .22; }
.partners-marquee span.is-on { opacity: 1; color: #ccff00; }
@keyframes partners-move {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.partners-copy-wrap {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: flex-end;
  padding: 0 1.25rem 10svh;
}
@media (min-width: 1024px) {
  .partners-copy-wrap { align-items: center; padding-bottom: 0; padding-inline: 2rem; }
}
.partners-copy { width: 82%; max-width: 590px; }
@media (min-width: 1024px) { .partners-copy { width: 30%; padding-left: 3vw; } }
.partners-copy .kicker {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-geist-mono);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #ccff00;
}
.partners-copy .kicker .ln { height: 1px; width: 2.5rem; background: #ccff00; }
.partners-copy h2 {
  margin-top: 1rem;
  font-size: clamp(4rem, 8.6vw, 9.2rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: .7;
  letter-spacing: -.09em;
}
.partners-copy h2 span { display: block; color: #ccff00; }

/* CTA BAND */
.stage-end {
  position: relative;
  display: flex;
  min-height: calc(100svh - 64px);
  overflow: hidden;
  background: #ccff00;
  color: #030404;
}
.stage-end .inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(5rem, 12svh, 9rem) 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 640px) { .stage-end .inner { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .stage-end .inner { padding-inline: 3rem; } }
.end-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0,0,0,.18);
  padding-bottom: 1.75rem;
  font-family: var(--font-geist-mono);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.stage-end h2 {
  margin-top: clamp(3rem, 6svh, 5rem);
  font-size: clamp(4.2rem, 9.3vw, 12rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: .73;
  letter-spacing: -.078em;
}
.stage-end h2 span { display: block; }
.stage-end h2 .mute { color: rgba(0,0,0,.32); }
.cta-dark {
  display: flex;
  height: 4rem;
  width: fit-content;
  align-items: center;
  gap: 1.25rem;
  margin-top: clamp(3.5rem, 7svh, 6rem);
  padding: 0 2rem;
  background: #030404;
  color: #fff;
  font-family: var(--font-geist-mono);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: background .2s, color .2s;
}
.cta-dark:hover { background: #fff; color: #000; }
.cta-dark svg { width: 1rem; height: 1rem; transition: transform .2s; }
.cta-dark:hover svg { transform: translate(4px, -4px); }

footer {
  background: #030404;
  color: rgba(255,255,255,.28);
}
.foot-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  min-height: 4rem;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}
@media (min-width: 640px) {
  .foot-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) { .foot-inner { padding-inline: 3rem; } }
.brand-row { display: flex; align-items: center; justify-content: center; gap: 1rem; }
@media (min-width: 640px) { .brand-row { justify-content: flex-start; } }
.brand-row .n {
  font-family: var(--font-geist-mono);
  font-size: 8px;
  font-weight: 900;
  color: #ccff00;
}
.brand-row img { height: 16px; width: auto; opacity: .65; }
.brand-row .word {
  font-family: var(--font-geist-sans);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.legal {
  font-family: var(--font-geist-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  .engine-grain, .signal-crawl-track, .partners-marquee { animation: none; }
  .signal-crawl-track { transform: translateY(-18%); }
}
@media (max-width: 719px) {
  .engine-grain { opacity: .055; }
  .prod-body, .prod-title { max-width: none; width: auto; }
  .prod-body { width: 72vw; left: 1.25rem; }
  .prod-copy h3, .prod-copy p { max-width: 70vw; }
}
