/* ============================================================
   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: 16px;
}
@media (max-width: 1100px) { .team__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .team__grid { grid-template-columns: 1fr; } }

/* Full-bleed photo tile */
.team__card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}
@media (max-width: 520px) { .team__card { aspect-ratio: 4 / 5; } }

.team__photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 18%;
  filter: grayscale(1) contrast(1.04);
  transition: transform 700ms var(--ease), filter 500ms var(--ease);
}
.team__card:hover .team__photo { transform: scale(1.05); filter: grayscale(0) contrast(1.02); }

/* AI tile — no photo, targeting glyph on dark */
.team__card--ai { background: radial-gradient(120% 90% at 50% 22%, #17171b 0%, var(--ink) 72%); }
.team__ai-glyph { position: absolute; inset: 0; display: grid; place-items: center; }
.team__ai-glyph svg { width: 44%; height: 44%; opacity: 0.5; transition: opacity 500ms var(--ease), transform 600ms var(--ease); }
.team__ai-glyph svg circle, .team__ai-glyph svg line { stroke: var(--shot); }
.team__ai-glyph svg circle[fill] { fill: var(--shot); }
.team__card--ai:hover .team__ai-glyph svg { opacity: 0.9; transform: scale(1.06); }

/* gradient scrim + text overlay */
.team__overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px;
  background: linear-gradient(to top, rgba(10,10,12,0.94) 0%, rgba(10,10,12,0.72) 26%, rgba(10,10,12,0.12) 56%, rgba(10,10,12,0) 80%);
}

.team__card-name {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.02;
  text-transform: uppercase;
  color: #fff;
}
.team__card-role {
  margin-top: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--shot);
}
.team__card-desc {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
  max-height: 0; opacity: 0; margin-top: 0;
  overflow: hidden;
  transition: max-height 550ms var(--ease), opacity 400ms var(--ease), margin-top 550ms var(--ease);
}
.team__card:hover .team__card-desc { max-height: 150px; opacity: 1; margin-top: 12px; }
@media (hover: none), (max-width: 1100px) {
  .team__card-desc { max-height: 150px; opacity: 1; margin-top: 12px; }
}
.team__card-num {
  position: absolute;
  top: 15px; right: 17px;
  z-index: 3;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.7);
  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) 160px;
  border-top: 1px solid #ffffff10;
}
@media (max-width: 700px) {
  /* HUD bottom rail скрыт на мобильных — лишний воздух не нужен */
  .footer { padding-bottom: 40px; }
}
.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; }
}

/* ============================================================
   CONTACT FORM (Final CTA)
   ============================================================ */
.contact-form {
  position: relative;
  z-index: 2;
  margin: 56px auto 0;
  max-width: 640px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 600px) {
  .contact-form__grid { grid-template-columns: 1fr; gap: 20px; }
}
.contact-form__field { display: flex; flex-direction: column; gap: 8px; }
.contact-form__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-on-dark-3);
}
.contact-form__input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-dark-strong);
  color: var(--fg-on-dark);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.4;
  outline: none;
  transition: border-color .2s, background .2s;
  border-radius: 0;
  -webkit-appearance: none;
}
.contact-form__input::placeholder { color: var(--fg-on-dark-4); }
.contact-form__input:hover { border-color: rgba(255,255,255,0.25); }
.contact-form__input:focus {
  border-color: var(--shot);
  background: rgba(255,255,255,0.05);
}
.contact-form__textarea {
  resize: vertical;
  min-height: 110px;
  font-family: var(--font-body);
}

/* consent row */
.contact-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 4px;
  cursor: pointer;
  user-select: none;
  font-size: 13px;
  line-height: 1.5;
  color: var(--fg-on-dark-2);
}
.contact-form__check {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0; height: 0;
}
.contact-form__check-box {
  flex: 0 0 18px;
  width: 18px; height: 18px;
  margin-top: 2px;
  border: 1px solid var(--border-dark-strong);
  background: rgba(255,255,255,0.03);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: border-color .2s, background .2s, color .2s;
}
.contact-form__consent:hover .contact-form__check-box { border-color: rgba(255,255,255,0.35); }
.contact-form__check:checked + .contact-form__check-box {
  border-color: var(--shot);
  background: var(--shot);
  color: var(--white);
}
.contact-form__check:focus-visible + .contact-form__check-box {
  box-shadow: 0 0 0 2px rgba(232,93,36,0.35);
}
.contact-form__consent-text a {
  color: var(--fg-on-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,0.3);
  transition: color .2s, text-decoration-color .2s;
}
.contact-form__consent-text a:hover {
  color: var(--shot);
  text-decoration-color: var(--shot);
}

.contact-form__consent.is-error .contact-form__check-box {
  border-color: var(--shot);
  background: rgba(232,93,36,0.08);
}
.contact-form__consent.shake {
  animation: consentShake 320ms cubic-bezier(.36,.07,.19,.97);
}
@keyframes consentShake {
  10%, 90% { transform: translateX(-1px); }
  20%, 80% { transform: translateX(2px); }
  30%, 50%, 70% { transform: translateX(-3px); }
  40%, 60% { transform: translateX(3px); }
}

.contact-form__error {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--shot);
  margin-top: -8px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity .2s;
}
.contact-form__error.is-visible { opacity: 1; height: auto; }

.contact-form__submit {
  margin-top: 8px;
  align-self: flex-start;
  opacity: 0.45;
  pointer-events: none;
  transition: opacity .25s;
}
.contact-form__submit.is-ready {
  opacity: 1;
  pointer-events: auto;
}
.contact-form__submit:disabled { cursor: not-allowed; }

/* allow click on disabled submit so we can show the error */
.contact-form__submit[disabled] { pointer-events: auto; opacity: 0.45; }
.contact-form__submit[disabled]:hover { opacity: 0.6; }

/* ============================================================
   FOOTER additions (requisites + legal links)
   ============================================================ */
.footer__requisites {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #ffffff08;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--fg-on-dark-3);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
}
.footer__sep { color: var(--fg-on-dark-4); }
.footer__links {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
}
.footer__links a {
  color: var(--fg-on-dark-2);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.footer__links a:hover { color: var(--shot); border-bottom-color: var(--shot); }

.footer__services {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border-dark);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  font-size: 13px;
}
.footer__services a {
  color: var(--fg-on-dark-2);
  text-decoration: none;
  transition: color .2s;
}
.footer__services a:hover { color: var(--shot); }
.footer__services a:last-child { color: var(--shot); font-weight: 600; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 1000;
  background: rgba(14, 14, 16, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-dark-strong);
  color: var(--fg-on-dark-2);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .28s ease, transform .28s ease;
  pointer-events: none;
}
.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  max-width: 1200px;
  margin: 0 auto;
}
.cookie-banner__icon {
  flex: 0 0 auto;
  color: var(--shot);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-banner__text {
  margin: 0;
  flex: 1;
  line-height: 1.5;
}
.cookie-banner__text a {
  color: var(--fg-on-dark);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color .2s, border-color .2s;
}
.cookie-banner__text a:hover { color: var(--shot); border-color: var(--shot); }
.cookie-banner__btn {
  flex: 0 0 auto;
  padding: 10px 18px;
  background: transparent;
  border: 1px solid var(--shot);
  color: var(--shot);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.cookie-banner__btn:hover {
  background: var(--shot);
  color: var(--white);
}
@media (max-width: 600px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; }
  .cookie-banner__inner { flex-direction: column; align-items: stretch; gap: 12px; padding: 14px; }
  .cookie-banner__icon { display: none; }
  .cookie-banner__btn { width: 100%; padding: 12px; }
}

/* ============================================================
   CASES — proof blocks (dark «dossier» style)
============================================================ */
.cases { background: var(--ink); color: var(--fg-on-dark); }
.cases .eyebrow { color: var(--fg-on-dark-3); }
.cases .h-mega { color: var(--white); }
.cases__grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.case {
  border: 1px solid var(--border-dark-strong);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: rgba(255,255,255,0.03);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.case:hover { border-color: var(--shot); transform: translateY(-4px); }
.case__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.case__tag {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--fg-on-dark-3);
}
.case__metric { font-family: var(--font-mono); font-size: 13px; color: var(--fg-on-dark-2); white-space: nowrap; }
.case__metric b { color: var(--shot); font-size: 19px; font-weight: 800; }
.case__title {
  font-family: var(--font-display); font-size: 21px; font-weight: 700;
  line-height: 1.2; color: var(--white); letter-spacing: -.02em;
}
.case__desc { color: var(--fg-on-dark-2); font-size: 15px; line-height: 1.6; }
.case__proof {
  margin-top: auto; display: block; border-radius: var(--radius-md);
  overflow: hidden; border: 1px solid var(--border-dark); background: #000; line-height: 0;
}
.case__proof img { width: 100%; height: auto; display: block; transition: opacity .3s, transform .4s var(--ease); }
.case__proof:hover img { transform: scale(1.02); opacity: .92; }
.case__gallery { margin-top: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.case__gallery a { border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--border-dark); line-height: 0; }
.case__gallery img { width: 100%; height: 84px; object-fit: cover; object-position: top; display: block; transition: opacity .3s; }
.case__gallery a:hover img { opacity: .75; }
.case__link { font-family: var(--font-mono); font-size: 12px; color: var(--shot); text-decoration: none; letter-spacing: .06em; }
.case__link:hover { text-decoration: underline; }
/* Featured flagship case (Dao Lai) — full-width card linking to its own page */
.case--featured { grid-column: 1 / -1; }
.case__feat-main { display: flex; flex-direction: column; gap: 14px; }
.case__gallery--feat { margin-top: 0; }
@media (min-width: 801px) {
  .case--featured { display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: center; }
  .case__gallery--feat img { height: 150px; }
}
.cases__perf {
  margin-top: 28px; padding: 22px 26px;
  border: 1px dashed var(--border-dark-strong); border-radius: var(--radius-lg);
  color: var(--fg-on-dark-2); font-size: 15px; line-height: 1.6;
}
.cases__perf b { color: var(--shot); }
.cases__perf a { color: var(--white); border-bottom: 1px solid var(--shot); text-decoration: none; white-space: nowrap; }
.cases__perf a:hover { color: var(--shot); }
@media (max-width: 800px) { .cases__grid { grid-template-columns: 1fr; } }

/* ============================================================
   HERO TRUST STRIP
============================================================ */
.hero__trust {
  margin-top: 22px; display: flex; flex-wrap: wrap; gap: 10px 22px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .05em;
  color: var(--fg-on-dark-3); text-transform: uppercase;
}
.hero__trust b { color: var(--shot); font-weight: 700; }
.hero__trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust span::before { content: ''; width: 5px; height: 5px; background: var(--shot); border-radius: 50%; }

/* ============================================================
   OFFER FORM (block 2)
============================================================ */
.offer { background: var(--paper); color: var(--ink); }
.offer__wrap { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px,5vw,72px); align-items: center; }
.offer__title { font-family: var(--font-display); font-size: clamp(28px,3.5vw,40px); font-weight: 800; line-height: 1.1; letter-spacing: -.03em; color: var(--ink); }
.offer__title .italic-shot { color: var(--shot); }
.offer__text { margin-top: 18px; color: var(--smoke); font-size: 17px; line-height: 1.6; max-width: 46ch; }
.offer__note { margin-top: 16px; font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em; color: var(--smoke); }
.offer__form { display: flex; flex-direction: column; gap: 14px; background: var(--white); padding: clamp(24px,3vw,36px); border-radius: var(--radius-lg); border: 1px solid var(--border-light); }
.offer__form input, .offer__form textarea {
  width: 100%; padding: 14px 16px; border: 1px solid var(--border-light); border-radius: var(--radius-md);
  font-family: var(--font-body); font-size: 15px; background: var(--paper); color: var(--ink); outline: none; transition: border-color .2s;
}
.offer__form input:focus, .offer__form textarea:focus { border-color: var(--shot); }
.offer__form textarea { resize: vertical; min-height: 76px; }
.offer__form .btn { justify-content: center; width: 100%; }
@media (max-width: 800px) { .offer__wrap { grid-template-columns: 1fr; } }

/* ============================================================
   WHY (UTP)
============================================================ */
.why__grid { margin-top: 56px; display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--border-dark); border: 1px solid var(--border-dark); border-radius: var(--radius-lg); overflow: hidden; }
.why__item { background: var(--ink); padding: clamp(28px,3vw,40px); display: flex; flex-direction: column; gap: 12px; }
.why__num { font-family: var(--font-mono); font-size: 12px; color: var(--shot); letter-spacing: .12em; }
.why__h { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--white); line-height: 1.2; letter-spacing: -.02em; }
.why__p { color: var(--fg-on-dark-2); font-size: 15px; line-height: 1.6; }
@media (max-width: 700px) { .why__grid { grid-template-columns: 1fr; } }

/* ============================================================
   REVIEWS
============================================================ */
.reviews__grid { margin-top: 48px; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.review { padding: 28px; border: 1px solid var(--border-light); border-radius: var(--radius-lg); background: var(--white); display: flex; flex-direction: column; gap: 14px; }
.review__stars { color: var(--shot); font-size: 15px; letter-spacing: 3px; }
.review__text { color: var(--ink); font-size: 15px; line-height: 1.6; flex: 1; }
.review__who { font-family: var(--font-mono); font-size: 12px; color: var(--smoke); letter-spacing: .04em; }
.reviews__cta { margin-top: 32px; }
@media (max-width: 800px) { .reviews__grid { grid-template-columns: 1fr; } }

/* ============================================================
   GUARANTEES + FAQ
============================================================ */
.guarantees { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 56px; }
.guarantee { padding: 26px; border: 1px solid var(--border-light); border-radius: var(--radius-lg); }
.guarantee__icon { color: var(--shot); font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; }
.guarantee__h { margin-top: 10px; font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--ink); line-height: 1.2; }
.guarantee__p { margin-top: 8px; color: var(--smoke); font-size: 14px; line-height: 1.55; }
.faq__list { margin-top: 56px; max-width: 860px; }
.faq__item { border-top: 1px solid var(--border-light); }
.faq__item:last-child { border-bottom: 1px solid var(--border-light); }
.faq__q { list-style: none; cursor: pointer; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--ink); }
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after { content: '+'; color: var(--shot); font-size: 26px; font-weight: 300; flex: 0 0 auto; transition: transform .3s var(--ease); }
.faq__item[open] .faq__q::after { transform: rotate(45deg); }
.faq__a { padding: 0 0 22px; color: var(--smoke); font-size: 15px; line-height: 1.65; max-width: 72ch; }
@media (max-width: 700px) { .guarantees { grid-template-columns: 1fr; } }

/* ============================================================
   MOCK PLACEHOLDERS (фото/видео — заменить реальным)
============================================================ */
.ph { position: relative; background: rgba(232,93,36,0.06); border: 1px dashed rgba(232,93,36,0.45); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: var(--shot); font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; text-align: center; line-height: 1.4; }
.ph--avatar { width: 54px; height: 54px; border-radius: 50%; flex: 0 0 auto; font-size: 9px; }
.ph--photo { aspect-ratio: 4/3; width: 100%; }
.ph--video { aspect-ratio: 16/9; width: 100%; font-size: 13px; }
.ph__badge { position: absolute; top: 8px; left: 8px; background: var(--shot); color: #fff; font-size: 9px; padding: 2px 7px; border-radius: 3px; letter-spacing: .08em; }

/* ============================================================
   FOR WHOM (сегменты / боль)
============================================================ */
.forwhom__grid { margin-top: 52px; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.segment { padding: 30px 28px; border: 1px solid var(--border-dark-strong); border-radius: var(--radius-lg); background: rgba(255,255,255,0.03); transition: border-color .3s var(--ease); }
.segment:hover { border-color: var(--shot); }
.segment__tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; color: var(--fg-on-dark-3); text-transform: uppercase; }
.segment__who { margin-top: 10px; font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--white); line-height: 1.2; letter-spacing: -.02em; }
.segment__pain { margin-top: 12px; color: var(--fg-on-dark-2); font-size: 15px; line-height: 1.55; }
.segment__fix { margin-top: 14px; color: var(--shot); font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em; }
@media (max-width: 800px) { .forwhom__grid { grid-template-columns: 1fr; } }

/* ============================================================
   REVIEW — with avatar/name/business
============================================================ */
.review__head { display: flex; align-items: center; gap: 13px; }
.review__who-name { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--ink); line-height: 1.2; }
.review__who-biz { font-family: var(--font-mono); font-size: 11px; color: var(--smoke); letter-spacing: .03em; margin-top: 3px; }
.reviews__note { margin-top: 28px; font-family: var(--font-mono); font-size: 12px; color: var(--smoke); letter-spacing: .04em; }
.reviews__note a { color: var(--ink); border-bottom: 1px solid var(--shot); text-decoration: none; }
