/* ============================================================
   LEADSHOT — landing styles
   ============================================================ */
@import url('tokens.css');

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

html, body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body {
  cursor: none;
}

a, button { cursor: none; }
@media (max-width: 900px) {
  body, a, button { cursor: auto; }
}

::selection { background: var(--shot); color: var(--ink); }

/* ============================================================
   CUSTOM CURSOR — reticle
   ============================================================ */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 56px; height: 56px;
  margin-left: -28px; margin-top: -28px;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: width 250ms var(--ease), height 250ms var(--ease),
              margin-left 250ms var(--ease), margin-top 250ms var(--ease),
              opacity 250ms var(--ease);
  will-change: transform;
}
.cursor svg { width: 100%; height: 100%; display: block; }
.cursor circle, .cursor line { stroke: #fff !important; }
.cursor circle[fill] { fill: #fff !important; stroke: none !important; }

.cursor.lock {
  width: 88px; height: 88px;
  margin-left: -44px; margin-top: -44px;
}
.cursor.lock .ring-outer { animation: spin 4s linear infinite; transform-origin: 40px 40px; }
.cursor.fire {
  animation: fireFlash 280ms var(--ease);
}
@keyframes fireFlash {
  0% { transform: scale(1); }
  40% { transform: scale(0.6); opacity: 0.4; }
  100% { transform: scale(1.4); opacity: 1; }
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   FIXED HUD — top + bottom rails
   ============================================================ */
.hud {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  mix-blend-mode: difference;
  color: #fff;
}
.hud__rail {
  position: absolute;
  left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 4vw, 56px);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hud__rail--top { top: 0; }
.hud__rail--bottom { bottom: 0; }

.hud__brand {
  display: flex; align-items: center; gap: 14px;
  pointer-events: auto;
  cursor: none;
}
.hud__brand .lock {
  width: 8px; height: 8px;
  background: var(--shot);
  border-radius: 50%;
  animation: pulseDot 1.6s var(--ease-in-out) infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.6); }
}
.hud__nav {
  display: flex; gap: 32px;
  pointer-events: auto;
}
.hud__nav a {
  color: inherit;
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  cursor: none;
  transition: opacity var(--duration-base) var(--ease);
}
.hud__nav a::before {
  content: counter(navItem, decimal-leading-zero) ' ';
  counter-increment: navItem;
  opacity: 0.45;
  margin-right: 6px;
}
.hud__nav { counter-reset: navItem; }
.hud__nav a:hover { opacity: 0.55; }

.hud__coords {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.1em;
}
.hud__coords span { opacity: 0.5; margin: 0 6px; }

.hud__crosshair {
  position: absolute;
  top: 50%; left: 50%;
  width: 1px; height: 100vh;
  background: linear-gradient(to bottom, transparent, #ffffff08 20%, #ffffff08 80%, transparent);
  transform: translateX(-50%);
}
.hud__crosshair--h {
  width: 100vw; height: 1px;
  top: 50%; left: 0;
  background: linear-gradient(to right, transparent, #ffffff08 20%, #ffffff08 80%, transparent);
  transform: translateY(-50%);
}

/* corner brackets */
.hud__corner {
  position: absolute;
  width: 24px; height: 24px;
  border: 1px solid #ffffff40;
}
.hud__corner.tl { top: 70px; left: clamp(16px, 4vw, 48px); border-right: none; border-bottom: none; }
.hud__corner.tr { top: 70px; right: clamp(16px, 4vw, 48px); border-left: none; border-bottom: none; }
.hud__corner.bl { bottom: 70px; left: clamp(16px, 4vw, 48px); border-right: none; border-top: none; }
.hud__corner.br { bottom: 70px; right: clamp(16px, 4vw, 48px); border-left: none; border-top: none; }

/* ============================================================
   LOADER
   ============================================================ */
.loader {
  position: fixed;
  inset: 0;
  background: var(--ink);
  display: grid;
  place-items: center;
  z-index: 10000;
  transition: opacity 700ms var(--ease), visibility 700ms;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader__inner { display: grid; gap: 28px; place-items: center; text-align: center; }
.loader__reticle { width: 80px; height: 80px; animation: breathe 2.5s var(--ease-in-out) infinite; }
.loader__reticle svg { width: 100%; height: 100%; }
@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}
.loader__text {
  font-size: 11px; letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--smoke);
  font-variant-numeric: tabular-nums;
}
.loader__bar {
  width: 220px; height: 1px;
  background: #ffffff15;
  position: relative; overflow: hidden;
}
.loader__bar::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--shot);
  transform: scaleX(0);
  transform-origin: left;
  animation: load 1.4s var(--ease) forwards;
}
@keyframes load { to { transform: scaleX(1); } }

/* ============================================================
   COMMON
   ============================================================ */
.section {
  position: relative;
  padding: clamp(80px, 12vw, 160px) clamp(20px, 4vw, 56px);
}
.container {
  max-width: var(--container-max);
  margin: 0 auto;
}
.section--paper { background: var(--paper); color: var(--ink); }
.section--paper .smoke { color: var(--smoke); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--smoke);
}
.eyebrow .num { color: var(--shot); font-variant-numeric: tabular-nums; }
.eyebrow::before {
  content: ''; width: 28px; height: 1px; background: var(--shot);
}

/* big section heading */
.h-mega {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 7.5vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.h-large {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5.5vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.h-med {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.shot { color: var(--shot); }
.italic-shot { color: var(--shot); font-style: italic; font-weight: 800; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 22px 32px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0;
  background: var(--shot);
  color: var(--ink);
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: transform var(--duration-base) var(--ease);
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--ink);
  transform: translateX(-101%);
  transition: transform 500ms var(--ease);
  z-index: 0;
}
.btn:hover::after { transform: translateX(0); }
.btn:hover { color: var(--shot); border-color: var(--shot); }
.btn > * { position: relative; z-index: 1; }
.btn .arr { width: 14px; height: 1px; background: currentColor; position: relative; }
.btn .arr::after {
  content: ''; position: absolute;
  right: 0; top: 50%;
  width: 6px; height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.btn--ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid #ffffff30;
}
.btn--ghost:hover { color: var(--ink); border-color: var(--paper); }
.btn--ghost::after { background: var(--paper); }

.section--paper .btn--ghost {
  color: var(--ink);
  border-color: #0e0e1030;
}
.section--paper .btn--ghost:hover { color: var(--paper); }
.section--paper .btn--ghost::after { background: var(--ink); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
  padding: 120px clamp(20px, 4vw, 56px) 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image: url('reticle-pattern.svg');
  background-size: 240px;
  opacity: 0.5;
  z-index: -2;
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
}
.hero__reticle {
  position: absolute;
  top: 50%; left: 50%;
  width: min(90vh, 800px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0.18;
  pointer-events: none;
  animation: heroReticleSpin 60s linear infinite;
}
.hero__reticle svg { width: 100%; height: 100%; overflow: visible; }
@keyframes heroReticleSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.hero__content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 1200px;
}

.hero__pre {
  display: inline-flex; align-items: center; gap: 16px;
  font-size: 11px; letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 48px;
  padding: 10px 20px;
  border: 1px solid #ffffff15;
  border-radius: 999px;
}
.hero__pre .pulse {
  width: 6px; height: 6px; background: var(--shot);
  border-radius: 50%;
  box-shadow: 0 0 0 0 var(--shot);
  animation: pulseDotShot 1.4s var(--ease-in-out) infinite;
}
@keyframes pulseDotShot {
  0% { box-shadow: 0 0 0 0 #E85D2480; }
  70% { box-shadow: 0 0 0 12px #E85D2400; }
  100% { box-shadow: 0 0 0 0 #E85D2400; }
}

.hero__title-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.hero__wordmark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(64px, 18vw, 280px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  position: relative;
  z-index: 3;
}
.hero__wordmark .lead, .hero__wordmark .shot {
  display: inline-block;
  transition: transform 800ms var(--ease);
}
.hero__wordmark .shot { color: var(--shot); }

/* === ambient stencil — three thin metadata rows === */
.hero__agency-stencil {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
  z-index: 1;
  opacity: 0.85;
  padding: 4% 0;
}
.hero__agency-stencil .ag-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 11px;
  letter-spacing: 0.28em;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff35;
  font-variant-numeric: tabular-nums;
}
.hero__agency-stencil .ag-tick {
  flex: 0 0 auto;
  padding: 0 clamp(8px, 2vw, 24px);
}
.hero__agency-stencil .ag-tick--center {
  flex: 1;
  text-align: center;
}
.hero__agency-stencil .ag-letters {
  flex: 1;
  display: none;
  justify-content: space-between;
  padding: 0 clamp(12px, 3vw, 40px);
  font-size: 11px;
  font-weight: 700;
}
.hero__agency-stencil .ag-letters b {
  display: inline-block;
  font-weight: 700;
  transition: color 600ms var(--ease), transform 600ms var(--ease);
}
.hero__agency-stencil .ag-row--mid {
  font-size: 12px;
  color: #ffffff20;
}
.hero__agency-stencil .ag-big {
  flex: 1;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(20px, 3vw, 44px);
  letter-spacing: 0.06em;
  color: #ffffff10;
  -webkit-text-stroke: 1px #ffffff25;
  text-stroke: 1px #ffffff25;
  text-shadow: none;
  transition: color 800ms var(--ease), -webkit-text-stroke-color 800ms var(--ease);
}

/* === fragmented shards — sliced horizontal copies of "AGENCY" === */
.hero__shards {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  display: grid;
  place-items: center;
}
.hero__shards .shard {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(80px, 22vw, 340px);
  line-height: 0.85;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  color: var(--shot);
  -webkit-text-stroke: 1px var(--shot);
  text-stroke: 1px var(--shot);
  white-space: nowrap;
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 500ms var(--ease), transform 700ms var(--ease), color 500ms var(--ease);
}
/* horizontal slice clips, each shard reveals a different band */
.hero__shards .shard--1 {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 18%, 0 18%);
  clip-path: polygon(0 0, 100% 0, 100% 18%, 0 18%);
  color: transparent;
  -webkit-text-stroke: 1px #ffffff90;
}
.hero__shards .shard--2 {
  -webkit-clip-path: polygon(0 22%, 100% 22%, 100% 38%, 0 38%);
  clip-path: polygon(0 22%, 100% 22%, 100% 38%, 0 38%);
  color: var(--shot);
  -webkit-text-stroke: 0;
}
.hero__shards .shard--3 {
  -webkit-clip-path: polygon(0 42%, 100% 42%, 100% 58%, 0 58%);
  clip-path: polygon(0 42%, 100% 42%, 100% 58%, 0 58%);
  color: transparent;
  -webkit-text-stroke: 1px var(--shot);
}
.hero__shards .shard--4 {
  -webkit-clip-path: polygon(0 62%, 100% 62%, 100% 78%, 0 78%);
  clip-path: polygon(0 62%, 100% 62%, 100% 78%, 0 78%);
  color: #378ADD;
  -webkit-text-stroke: 0;
}
.hero__shards .shard--5 {
  -webkit-clip-path: polygon(0 82%, 100% 82%, 100% 100%, 0 100%);
  clip-path: polygon(0 82%, 100% 82%, 100% 100%, 0 100%);
  color: transparent;
  -webkit-text-stroke: 1px #ffffff70;
}

/* hover — bring the shards alive: slide outward at random offsets, reveal stencil */
.hero__title-wrap:hover .shard {
  opacity: 0.95;
}
.hero__title-wrap:hover .shard--1 { transform: translate(calc(-50% - 28px), -50%); animation: shardJitter1 1.4s steps(3) infinite 100ms; }
.hero__title-wrap:hover .shard--2 { transform: translate(calc(-50% + 18px), -50%); animation: shardJitter2 1.6s steps(3) infinite; }
.hero__title-wrap:hover .shard--3 { transform: translate(calc(-50% - 10px), -50%); animation: shardJitter3 1.2s steps(3) infinite 50ms; }
.hero__title-wrap:hover .shard--4 { transform: translate(calc(-50% + 24px), -50%); animation: shardJitter4 1.5s steps(3) infinite 80ms; }
.hero__title-wrap:hover .shard--5 { transform: translate(calc(-50% - 16px), -50%); animation: shardJitter5 1.8s steps(3) infinite; }

@keyframes shardJitter1 {
  0%, 100% { transform: translate(calc(-50% - 28px), -50%); }
  33% { transform: translate(calc(-50% - 36px), -50%); }
  66% { transform: translate(calc(-50% - 22px), -50%); }
}
@keyframes shardJitter2 {
  0%, 100% { transform: translate(calc(-50% + 18px), -50%); }
  33% { transform: translate(calc(-50% + 26px), -50%); }
  66% { transform: translate(calc(-50% + 12px), -50%); }
}
@keyframes shardJitter3 {
  0%, 100% { transform: translate(calc(-50% - 10px), -50%); }
  33% { transform: translate(calc(-50% + 4px), -50%); }
  66% { transform: translate(calc(-50% - 18px), -50%); }
}
@keyframes shardJitter4 {
  0%, 100% { transform: translate(calc(-50% + 24px), -50%); }
  33% { transform: translate(calc(-50% + 14px), -50%); }
  66% { transform: translate(calc(-50% + 32px), -50%); }
}
@keyframes shardJitter5 {
  0%, 100% { transform: translate(calc(-50% - 16px), -50%); }
  33% { transform: translate(calc(-50% - 8px), -50%); }
  66% { transform: translate(calc(-50% - 24px), -50%); }
}

/* on hover — stencil rows brighten, big AGENCY pops */
.hero__title-wrap:hover .hero__agency-stencil .ag-row { color: #ffffff70; }
.hero__title-wrap:hover .hero__agency-stencil .ag-row--mid { color: var(--shot); }
.hero__title-wrap:hover .hero__agency-stencil .ag-big {
  color: transparent;
  -webkit-text-stroke: 1px var(--shot);
  text-stroke: 1px var(--shot);
}
.hero__title-wrap:hover .hero__agency-stencil .ag-letters b:nth-child(odd) {
  color: var(--shot);
  transform: translateY(-2px);
}
.hero__title-wrap:hover .hero__agency-stencil .ag-letters b:nth-child(even) {
  color: #378ADD;
  transform: translateY(2px);
}

/* the wordmark itself — when hovering, dim slightly so shards read */
.hero__title-wrap:hover .hero__wordmark .lead {
  transform: translateX(-4px);
}
.hero__title-wrap:hover .hero__wordmark .shot {
  transform: translateX(4px);
}

.hero__tagline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(20px, 2.4vw, 32px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-top: 28px;
}
.hero__tagline .div {
  display: inline-block; width: 6px; height: 6px;
  background: var(--shot); border-radius: 50%;
  vertical-align: middle; margin: 0 18px;
  transform: translateY(-3px);
}
.hero__sub {
  margin: 36px auto 0;
  max-width: 540px;
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff80;
}
.hero__cta {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 56px;
}

.hero__meta {
  position: absolute;
  bottom: 64px;
  left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 56px);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff50;
  font-variant-numeric: tabular-nums;
}
.hero__meta .scroll-hint {
  display: flex; align-items: center; gap: 12px;
}
.hero__meta .scroll-hint .line {
  width: 60px; height: 1px;
  background: linear-gradient(to right, var(--shot), transparent);
  position: relative;
  overflow: hidden;
}
.hero__meta .scroll-hint .line::after {
  content: '';
  position: absolute; top: 0; left: -50%;
  width: 50%; height: 100%;
  background: var(--shot);
  animation: scanLine 2s var(--ease) infinite;
}
@keyframes scanLine {
  0% { left: -50%; }
  100% { left: 100%; }
}

/* ============================================================
   PROBLEM
   ============================================================ */
.problem {
  background: var(--ink);
  color: var(--paper);
}
.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  margin-top: 80px;
}
@media (max-width: 900px) {
  .problem__grid { grid-template-columns: 1fr; gap: 48px; }
}

.problem__noise {
  height: 100%;
  min-height: 360px;
  position: relative;
  border: 1px solid #ffffff10;
  overflow: hidden;
  background: #ffffff03;
}
.problem__noise canvas { width: 100%; height: 100%; display: block; }
.problem__noise .tag {
  position: absolute; top: 16px; left: 16px;
  font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--shot);
  font-weight: 700;
}
.problem__noise .tag::before {
  content: ''; display: inline-block;
  width: 6px; height: 6px; background: var(--shot);
  border-radius: 50%; margin-right: 8px;
  vertical-align: 2px;
  animation: blink 1s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.problem__list {
  list-style: none;
  display: grid;
  gap: 0;
  border-top: 1px solid #ffffff15;
  margin-top: 24px;
}
.problem__list li {
  padding: 28px 0;
  border-bottom: 1px solid #ffffff15;
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 24px;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  cursor: none;
  transition: color 300ms var(--ease), padding-left 300ms var(--ease);
}
.problem__list li:hover {
  color: var(--shot);
  padding-left: 12px;
}
.problem__list li:hover .num { color: var(--shot); }
.problem__list li .num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--smoke);
  font-variant-numeric: tabular-nums;
}
.problem__list li .strike {
  width: 28px; height: 1px;
  background: var(--shot);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 600ms var(--ease);
}
.problem__list li.in-view .strike { transform: scaleX(1); }

.problem__verdict {
  margin-top: 48px;
  padding: 36px 0 0;
  border-top: 1px solid var(--shot);
}
.problem__verdict p {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--paper);
  text-transform: uppercase;
}

/* ============================================================
   SOLUTION
   ============================================================ */
.solution {
  background: var(--paper);
  color: var(--ink);
}
.solution__pipeline {
  margin-top: 80px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid #0e0e1015;
}
@media (max-width: 900px) { .solution__pipeline { grid-template-columns: 1fr; } }

.solution__step {
  padding: 48px 40px 56px;
  position: relative;
  border-right: 1px solid #0e0e1015;
  min-height: 320px;
  display: flex; flex-direction: column;
  background: var(--paper);
}
.solution__step:last-child { border-right: none; }
@media (max-width: 900px) {
  .solution__step { border-right: none; border-bottom: 1px solid #0e0e1015; }
  .solution__step:last-child { border-bottom: none; }
}

.solution__step .num {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--shot);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.solution__step h3 {
  margin-top: 36px;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-transform: uppercase;
}
.solution__step p {
  margin-top: 16px;
  color: var(--smoke);
  font-size: 15px;
  line-height: 1.6;
  max-width: 32ch;
}
.solution__step .target {
  position: absolute;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  opacity: 0.25;
  transition: opacity 400ms var(--ease), transform 600ms var(--ease);
}
.solution__step:hover .target { opacity: 1; transform: rotate(45deg); }

.solution__line {
  position: absolute;
  top: 50%; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(to right, transparent, var(--shot), transparent);
  pointer-events: none;
  opacity: 0;
  transform-origin: left;
  transform: scaleX(0);
}
.solution.in-view .solution__line {
  animation: traceLine 1.4s var(--ease) forwards;
}
@keyframes traceLine {
  0% { opacity: 0; transform: scaleX(0); }
  20% { opacity: 1; }
  100% { opacity: 1; transform: scaleX(1); }
}

/* ============================================================
   MODULES — the centerpiece
   ============================================================ */
.modules {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  transition: background 700ms var(--ease);
}
.modules__head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 80px;
}
@media (max-width: 700px) { .modules__head { grid-template-columns: 1fr; } }

.modules__head .meta {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--smoke);
  font-variant-numeric: tabular-nums;
  text-align: right;
}
@media (max-width: 700px) { .modules__head .meta { text-align: left; } }

.modules__head .meta .live {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 8px;
  color: var(--shot);
}
.modules__head .meta .live::before {
  content: ''; width: 6px; height: 6px; background: var(--shot);
  border-radius: 50%;
  animation: blink 1s steps(2) infinite;
}

.modules__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid #ffffff15;
  border-bottom: 1px solid #ffffff15;
}
@media (max-width: 900px) { .modules__grid { grid-template-columns: 1fr; } }

.module {
  padding: 56px 40px;
  border-right: 1px solid #ffffff15;
  border-bottom: 1px solid #ffffff15;
  position: relative;
  cursor: none;
  transition: background 500ms var(--ease), color 500ms var(--ease);
  overflow: hidden;
  isolation: isolate;
}
.module:nth-child(2n) { border-right: none; }
.module:nth-last-child(-n+2) { border-bottom: none; }
@media (max-width: 900px) {
  .module { border-right: none; }
  .module:nth-child(2n) { border-right: none; }
  .module:last-child { border-bottom: none; }
}

.module__num {
  position: absolute;
  top: 32px; right: 32px;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--smoke);
  font-variant-numeric: tabular-nums;
}
.module__tag {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--smoke);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}
.module__tag .dot {
  width: 8px; height: 8px;
  background: var(--module-color, var(--shot));
  border-radius: 50%;
}
.module__title {
  margin-top: 240px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5.5vw, 80px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}
.module__title .sub-name {
  display: block;
  color: var(--module-color, var(--shot));
  transition: color 500ms var(--ease);
}
.module__copy {
  margin-top: 28px;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.5;
  color: #ffffff70;
  max-width: 36ch;
  font-weight: 500;
}
.module__cta {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--module-color, var(--shot));
}
.module__cta .arr { width: 24px; height: 1px; background: currentColor; position: relative; transition: width 400ms var(--ease); }
.module__cta .arr::after {
  content: ''; position: absolute;
  right: 0; top: 50%;
  width: 6px; height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.module:hover .module__cta .arr { width: 48px; }

/* big background reticle inside each module */
.module__reticle {
  position: absolute;
  top: 56px; left: 40px;
  width: 180px; height: 180px;
  pointer-events: none;
  opacity: 0.85;
  transition: transform 800ms var(--ease), opacity 500ms var(--ease);
}
.module__reticle svg { width: 100%; height: 100%; overflow: visible; }
.module__reticle circle:not([fill]):not([fill="none"]), .module__reticle line, .module__reticle path:not([fill]):not([fill="none"]), .module__reticle rect:not([fill]):not([fill="none"]) { stroke: var(--module-color, var(--shot)); transition: stroke 500ms var(--ease); }
.module__reticle circle[fill]:not([fill="none"]), .module__reticle path[fill]:not([fill="none"]):not([fill="#fff"]), .module__reticle rect[fill]:not([fill="none"]) { fill: var(--module-color, var(--shot)); stroke: none; transition: fill 500ms var(--ease); }

/* hovered (active) module */
.module.is-active {
  background: var(--module-color, var(--shot));
  color: var(--ink);
}
.module.is-active .module__num,
.module.is-active .module__tag,
.module.is-active .module__copy { color: #0e0e1080; }
.module.is-active .module__cta { color: var(--ink); }
.module.is-active .module__title .sub-name { color: var(--ink); }
.module.is-active .module__tag .dot { background: var(--ink); }
.module.is-active .module__reticle { opacity: 0.6; transform: scale(1.4) rotate(45deg); }
.module.is-active .module__reticle circle:not([fill]):not([fill="none"]),
.module.is-active .module__reticle line,
.module.is-active .module__reticle path:not([fill]):not([fill="none"]),
.module.is-active .module__reticle rect:not([fill]):not([fill="none"]) { stroke: var(--ink); }
.module.is-active .module__reticle circle[fill]:not([fill="none"]),
.module.is-active .module__reticle path[fill]:not([fill="none"]):not([fill="#fff"]),
.module.is-active .module__reticle rect[fill]:not([fill="none"]) { fill: var(--ink); }

/* ============================================================
   RESULTS
   ============================================================ */
.results {
  background: var(--paper);
  color: var(--ink);
}
.results__grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid #0e0e1015;
}
@media (max-width: 900px) { .results__grid { grid-template-columns: 1fr; } }

.result {
  padding: 48px 40px 40px;
  border-right: 1px solid #0e0e1015;
  position: relative;
  min-height: 280px;
  display: flex; flex-direction: column; justify-content: space-between;
  background: var(--paper);
  transition: background 400ms var(--ease);
}
.result:last-child { border-right: none; }
@media (max-width: 900px) {
  .result { border-right: none; border-bottom: 1px solid #0e0e1015; }
  .result:last-child { border-bottom: none; }
}
.result:hover { background: var(--white); }

.result__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(56px, 7vw, 112px);
  line-height: 0.9;
  letter-spacing: -0.05em;
}
.result__num .unit { color: var(--shot); }
.result__label {
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--smoke); font-weight: 700;
}
.result__desc {
  font-size: 15px;
  line-height: 1.5;
  margin-top: 12px;
  color: var(--ink);
  font-weight: 600;
  max-width: 28ch;
}
.result__bar {
  margin-top: 24px;
  height: 2px;
  background: #0e0e1010;
  position: relative; overflow: hidden;
}
.result__bar::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--shot);
  transform: scaleX(0);
  transform-origin: left;
}
.result.in-view .result__bar::after {
  animation: fillBar 1.6s var(--ease) forwards;
}
@keyframes fillBar { to { transform: scaleX(var(--bar, 0.7)); } }

/* ============================================================
   APPROACH
   ============================================================ */
.approach {
  background: var(--ink);
  color: var(--paper);
}
.approach__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 80px;
}
@media (max-width: 900px) { .approach__grid { grid-template-columns: 1fr; gap: 48px; } }

.approach__lead {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.approach__lead .accent { color: var(--shot); }

.approach__points {
  list-style: none;
  display: grid; gap: 0;
  border-top: 1px solid #ffffff15;
}
.approach__points li {
  padding: 28px 0;
  border-bottom: 1px solid #ffffff15;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
}
.approach__points li .marker {
  width: 12px; height: 12px;
  border: 1.5px solid var(--shot);
  border-radius: 50%;
  position: relative;
}
.approach__points li .marker::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--shot);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 400ms var(--ease);
}
.approach__points li:hover .marker::after { transform: scale(1); }
.approach__points li .text {
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--paper);
}
.approach__points li .text small {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--smoke);
  text-transform: none;
  line-height: 1.5;
}

/* ============================================================
   TEAM
   ============================================================ */
.team {
  background: var(--paper);
  color: var(--ink);
}
.team__head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 64px;
}
@media (max-width: 700px) { .team__head { grid-template-columns: 1fr; } }
.team__head .note {
  font-size: 12px;
  color: var(--smoke);
  max-width: 32ch;
  line-height: 1.5;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid #0e0e1015;
}
@media (max-width: 1100px) { .team__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .team__grid { grid-template-columns: 1fr; } }

.team__card {
  padding: 32px;
  border-right: 1px solid #0e0e1015;
  border-bottom: 1px solid #0e0e1015;
  position: relative;
  min-height: 320px;
  display: flex; flex-direction: column;
  background: var(--paper);
  transition: background 400ms var(--ease);
}
.team__grid > .team__card:nth-child(4n) { border-right: none; }
.team__grid > .team__card:nth-last-child(-n+4) { border-bottom: none; }
@media (max-width: 1100px) {
  .team__grid > .team__card { border-right: none; border-bottom: 1px solid #0e0e1015; }
  .team__grid > .team__card:nth-child(2n-1) { border-right: 1px solid #0e0e1015; }
  .team__grid > .team__card:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 600px) {
  .team__grid > .team__card { border-right: none; }
  .team__grid > .team__card:nth-child(2n-1) { border-right: none; }
}
.team__card:hover { background: var(--ink); color: var(--paper); }
.team__card:hover .team__card-role { color: var(--shot); }
.team__card:hover .team__card-desc { color: #ffffff70; }
.team__card:hover .team__avatar { border-color: var(--shot); }
.team__card:hover .team__avatar svg circle,
.team__card:hover .team__avatar svg line { stroke: var(--shot); }
.team__card:hover .team__avatar .placeholder-text { color: #ffffff70; }

.team__avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  border: 1px solid #0e0e1020;
  display: grid; place-items: center;
  background: transparent;
  position: relative;
  transition: border-color 400ms var(--ease);
}
.team__avatar svg { width: 36px; height: 36px; opacity: 0.45; }
.team__avatar svg circle, .team__avatar svg line { stroke: var(--ink); transition: stroke 400ms var(--ease); }
.team__avatar svg circle[fill] { fill: currentColor; }
.team__avatar .placeholder-text {
  position: absolute;
  bottom: -22px;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--smoke);
  font-weight: 600;
}

.team__card-name {
  margin-top: 56px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}
.team__card-role {
  margin-top: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--smoke);
  transition: color 400ms var(--ease);
}
.team__card-desc {
  margin-top: auto;
  font-size: 13px;
  line-height: 1.5;
  color: var(--smoke);
  padding-top: 24px;
  transition: color 400ms var(--ease);
}
.team__card-num {
  position: absolute;
  top: 32px; right: 32px;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--smoke);
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  padding: clamp(120px, 18vw, 240px) clamp(20px, 4vw, 56px);
}
.final__container {
  max-width: 1280px; margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}
.final__bg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(120vh, 1100px);
  aspect-ratio: 1;
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
}
.final__bg svg { width: 100%; height: 100%; overflow: visible; }
.final__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 9vw, 168px);
  line-height: 0.88;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}
.final__title .word { display: inline-block; }
.final__title .accent { color: var(--shot); font-style: italic; font-weight: 800; }
.final__sub {
  margin: 32px auto 0;
  max-width: 480px;
  color: #ffffff70;
  font-size: 16px;
  line-height: 1.6;
}
.final__cta { margin-top: 56px; }

/* footer ribbon */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 56px clamp(20px, 4vw, 56px) 32px;
  border-top: 1px solid #ffffff10;
}
.footer__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
@media (max-width: 700px) { .footer__row { grid-template-columns: 1fr; } }
.footer__brand { display: flex; align-items: center; gap: 14px; font-weight: 900; letter-spacing: -0.02em; }
.footer__brand .mini-reticle { width: 24px; height: 24px; }
.footer__contact {
  display: flex; gap: 32px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
}
.footer__contact a { color: inherit; text-decoration: none; }
.footer__contact a:hover { color: var(--shot); }
.footer__legal {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #ffffff08;
  display: flex; justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--smoke);
}
@media (max-width: 700px) { .footer__legal { flex-direction: column; gap: 8px; } }

/* ============================================================
   GLITCH on hover
   ============================================================ */
.glitch {
  position: relative;
  display: inline-block;
}
/* legacy glitch pseudo-elements removed — replaced with .hero__shards */
@keyframes glitchShift1 {
  0%, 100% { transform: translate(-2px, 0); }
  50% { transform: translate(2px, -1px); }
}
@keyframes glitchShift2 {
  0%, 100% { transform: translate(2px, 0); }
  50% { transform: translate(-2px, 1px); }
}

/* reveal */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 900ms var(--ease), transform 900ms var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-d2 { transition-delay: 100ms; }
.reveal-d3 { transition-delay: 200ms; }
.reveal-d4 { transition-delay: 300ms; }

/* split clip reveal — for hero wordmark */
.clip-reveal {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.clip-reveal > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1100ms var(--ease);
}
.clip-reveal.in-view > span { transform: translateY(0); }

/* utility */
.flex { display: flex; }
.between { justify-content: space-between; }
.center { align-items: center; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* hide HUD on small screens for clarity */
@media (max-width: 700px) {
  .hud__rail--bottom { display: none; }
  .hud__corner { display: none; }
}
