/* =========================================================
   MostWanted Designs V2 — Cinematic stylesheet
   Same DNA (asphalt + amber + brake + bone) · film-grade polish
   ========================================================= */

/* -------- 1. Reset & base -------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, ol, figure, blockquote, dl { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, video, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
a { color: inherit; text-decoration: none; }
input, select, textarea, button { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--amber); color: var(--asphalt); }

/* -------- 2. Tokens -------- */
:root {
  --asphalt:        #0B0B0D;
  --asphalt-2:      #101013;
  --concrete:       #17171B;
  --graffiti-wall:  #1F1F24;
  --cement:         #2C2C33;
  --rebar:          #3F3F46;

  --bone:           #F4EFE4;
  --bone-2:         #DDD6C6;
  --smoke:          #9C988E;
  --smoke-2:        #6E6A62;

  --amber:          #FFB800;
  --amber-hot:      #FFD43B;
  --brake:          #FF2D2D;
  --brake-deep:     #B81818;
  --lamp:           #FF7A1F;
  --success:        #5DBA68;
  --wa:             #25D366;

  --shadow-1: 0 1px 0 rgba(255,255,255,0.04), 0 10px 30px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 0 1px rgba(255,184,0,0.4), 0 20px 50px rgba(255,184,0,0.18);

  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px;
  --s-9: 96px; --s-10: 128px;
  --r-1: 2px; --r-2: 6px; --r-3: 12px;

  --ff-display: 'Anton', Impact, 'Arial Narrow', sans-serif;
  --ff-spray:   'Rubik Wet Paint', 'Anton', system-ui, sans-serif;
  --ff-body:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --ff-mono:    'JetBrains Mono', 'Consolas', monospace;

  --header-h: 76px;
  --max-w: 1320px;
  --ease-out: cubic-bezier(.2,.7,.2,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
}

/* -------- 3. Body & global atmosphere -------- */
html { background: var(--asphalt); }
body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--bone);
  background: var(--asphalt);
  background-image:
    radial-gradient(ellipse at 18% 0%, rgba(255,184,0,0.05), transparent 50%),
    radial-gradient(ellipse at 85% 100%, rgba(255,45,45,0.045), transparent 50%);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.02) 1px, transparent 0);
  background-size: 3px 3px;
  pointer-events: none; z-index: 1;
  mix-blend-mode: overlay; opacity: 0.5;
}
.film-grain {
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  background-size: 220px 220px;
  pointer-events: none; z-index: 2;
  mix-blend-mode: overlay; opacity: 0.16;
  animation: grainShift 1.4s steps(3) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0,0); }
  33% { transform: translate(-8px,6px); }
  66% { transform: translate(6px,-8px); }
  100% { transform: translate(0,0); }
}
.hazard-strip {
  position: fixed; left: 0; right: 0; height: 6px; z-index: 90;
  background: repeating-linear-gradient(135deg, var(--amber) 0 14px, var(--asphalt) 14px 28px);
  pointer-events: none; opacity: 0.85;
}
.hazard-strip.top { top: 0; }
.hazard-strip.bottom { bottom: 0; }

.skip-link {
  position: absolute; top: -100px; left: 16px;
  padding: 12px 18px; background: var(--amber); color: var(--asphalt);
  font-family: var(--ff-mono); font-weight: 700; font-size: 13px;
  border-radius: var(--r-2); z-index: 1000; transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

.container { width: min(100% - 40px, var(--max-w)); margin-inline: auto; }

/* -------- 4. IGNITION PRELOADER -------- */
.ignition {
  position: fixed; inset: 0; z-index: 500;
  background: var(--asphalt);
  display: grid; place-items: center;
  transition: transform 0.7s var(--ease-out), opacity 0.5s;
}
.ignition.is-done {
  transform: translateY(-100%);
  opacity: 0.4;
  pointer-events: none;
}
.ignition-inner { text-align: center; width: min(78vw, 420px); }
.ignition-inner img {
  width: 260px; height: auto; margin: 0 auto 34px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.6)) drop-shadow(0 0 20px rgba(60,140,255,0.2));
  animation: ignitionPulse 1.2s ease-in-out infinite;
}
@keyframes ignitionPulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}
.ignition-bar {
  height: 3px; background: var(--cement);
  overflow: hidden; border-radius: 2px;
}
.ignition-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--amber), var(--amber-hot));
  box-shadow: 0 0 16px var(--amber);
  transition: width 0.2s var(--ease-out);
}
.ignition-label {
  margin-top: 14px;
  font-family: var(--ff-mono); font-size: 11px;
  letter-spacing: 0.3em; color: var(--smoke); text-transform: uppercase;
}

/* -------- 5. CUSTOM CURSOR (desktop) -------- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 400;
  border-radius: 50%;
  opacity: 0;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--amber);
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(255,184,0,0.55);
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out), border-color 0.25s, background 0.25s;
}
.cursor-ring::before, .cursor-ring::after {
  content: ""; position: absolute; background: rgba(255,184,0,0.7);
  transition: opacity 0.2s;
}
.cursor-ring::before { top: 50%; left: -7px; width: 5px; height: 1px; box-shadow: 43px 0 0 rgba(255,184,0,0.7); }
.cursor-ring::after  { left: 50%; top: -7px; width: 1px; height: 5px; box-shadow: 0 43px 0 rgba(255,184,0,0.7); }
body.has-cursor .cursor-dot, body.has-cursor .cursor-ring { opacity: 1; }
body.cursor-hot .cursor-ring {
  width: 58px; height: 58px;
  border-color: var(--amber);
  background: rgba(255,184,0,0.06);
}
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* -------- 6. Header -------- */
.site-header {
  position: fixed; top: 6px; left: 0; right: 0; z-index: 80;
  padding: 14px 0;
  transition: all 0.35s var(--ease-out);
}
.site-header.is-scrolled {
  background: rgba(11,11,13,0.82);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,184,0,0.14);
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
}
.header-shell {
  width: min(100% - 40px, var(--max-w));
  margin-inline: auto;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: var(--s-5);
}
.brand { display: inline-flex; align-items: center; }
.brand-logo {
  height: 50px; width: auto;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.55)) drop-shadow(0 0 18px rgba(60,140,255,0.16));
  transition: transform 0.4s var(--ease-out), filter 0.4s, height 0.35s;
}
.site-header.is-scrolled .brand-logo { height: 42px; }
.brand:hover .brand-logo {
  transform: rotate(-1.5deg) scale(1.05);
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.6)) drop-shadow(0 0 24px rgba(255,184,0,0.35));
}
.primary-nav { display: flex; justify-content: center; gap: 4px; }
.primary-nav a {
  font-family: var(--ff-mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--bone-2);
  padding: 10px 14px; border-radius: 6px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  will-change: transform;
}
.primary-nav a .num { font-size: 10px; color: var(--amber); opacity: 0.7; }
.primary-nav a:hover { color: var(--bone); background: rgba(255,184,0,0.07); }
.primary-nav a:hover .num { opacity: 1; }
.cta-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  font-family: var(--ff-mono); font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--amber); color: var(--asphalt);
  border-radius: 999px; border: 1px solid var(--amber-hot);
  box-shadow: 0 6px 20px rgba(255,184,0,0.35), inset 0 1px 0 rgba(255,255,255,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  will-change: transform;
}
.cta-pill:hover { box-shadow: 0 10px 28px rgba(255,184,0,0.5); }
.cta-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--asphalt); animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.menu-toggle { display: none; }

/* -------- 7. WhatsApp FAB -------- */
.wa-fab {
  position: fixed; bottom: 24px; right: 24px;
  width: 64px; height: 64px; z-index: 70;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  display: grid; place-items: center;
  filter: drop-shadow(0 14px 28px rgba(18,140,126,0.45)) drop-shadow(0 6px 12px rgba(0,0,0,0.35));
  transition: transform 0.35s var(--ease-out), filter 0.35s, opacity 0.35s;
  opacity: 0; transform: scale(0.6) translateY(20px);
  animation: waFabEnter 0.7s var(--ease-out) 1.6s forwards;
  isolation: isolate;
}
@keyframes waFabEnter { to { opacity: 1; transform: scale(1) translateY(0); } }
.wa-fab:hover { transform: scale(1.08) rotate(-4deg); }
.wa-fab svg { width: 32px; height: 32px; position: relative; z-index: 2; }
.wa-fab-pulse {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25D366; pointer-events: none;
  animation: waPulse 2.4s var(--ease-out) infinite;
}
.wa-fab-pulse-2 { animation-delay: 1.2s; }
@keyframes waPulse { 0% { transform: scale(1); opacity: 0.7; } 80% { opacity: 0; } 100% { transform: scale(1.9); opacity: 0; } }
.wa-fab-dot {
  position: absolute; top: 4px; right: 4px;
  width: 14px; height: 14px; background: var(--amber);
  border: 2px solid var(--asphalt); border-radius: 50%;
  z-index: 3; animation: waDot 1.8s ease-in-out infinite;
}
@keyframes waDot { 0%,100% { transform: scale(1); } 50% { transform: scale(1.15); } }
.wa-fab-label {
  position: absolute; right: calc(100% + 14px); top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--asphalt); color: var(--bone);
  font-family: var(--ff-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 9px 13px; white-space: nowrap; border-radius: 4px;
  border: 1px solid var(--cement); border-left: 3px solid #25D366;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s, transform 0.25s var(--ease-out);
}
.wa-fab:hover .wa-fab-label { opacity: 1; transform: translateY(-50%) translateX(0); }

/* -------- 8. Cinematic primitives -------- */
.letterbox {
  position: absolute; left: 0; right: 0; z-index: 4;
  height: 0; background: #000;
  transition: height 0.1s linear;
  pointer-events: none;
}
.lb-top { top: 0; }
.lb-bottom { bottom: 0; }

/* Intro reveals (hero content on load) */
.rs-intro {
  opacity: 0; transform: translateY(26px);
  animation: introIn 0.9s var(--ease-out) calc(1.15s + var(--d, 0s)) forwards;
}
@keyframes introIn { to { opacity: 1; transform: translateY(0); } }

/* Scroll-progress reveals (driven by JS --p 0..1) */
.rs {
  --p: 0;
  opacity: var(--p);
  transform: translate3d(0, calc((1 - var(--p)) * 28px), 0);
  will-change: opacity, transform;
}
.rs-zoom {
  --p: 0; opacity: var(--p);
  transform: scale(calc(0.42 + var(--p) * 0.58));
  will-change: opacity, transform;
}
.rs-slide-l {
  --p: 0; opacity: var(--p);
  transform: translate3d(calc((var(--p) - 1) * 140%), 0, 0);
  will-change: opacity, transform;
}
.rs-slide-r {
  --p: 0; opacity: var(--p);
  transform: translate3d(calc((1 - var(--p)) * 140%), 0, 0);
  will-change: opacity, transform;
}

/* -------- 9. HERO -------- */
.hero { position: relative; height: 420vh; background: var(--asphalt); margin-top: -6px; }
.hero-track { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.hero-stage { position: relative; width: 100%; height: 100%; overflow: hidden; }
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 1;
}
@media (min-width: 900px) and (hover: hover) {
  .hero-video, .m-video, .s-video, .w-video { filter: saturate(1.06) contrast(1.03); }
}
.hero-vignette {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 28%, rgba(11,11,13,0.42) 70%, rgba(11,11,13,0.88) 100%),
    linear-gradient(180deg, rgba(11,11,13,0.55) 0%, transparent 30%, transparent 70%, rgba(11,11,13,0.85) 100%);
}
/* CRT scanlines retired — they visibly degraded the photoreal Seedance
   footage (fine 1px horizontal lines). The cinematic texture now comes only
   from the (softened) film grain. */
.hero-scanlines, .m-scanlines, .s-scanlines, .w-scanlines { display: none; }

.hud {
  position: absolute; z-index: 5;
  font-family: var(--ff-mono); color: var(--bone);
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
  pointer-events: none;
  will-change: transform;
}
.hud-label { font-size: 10px; letter-spacing: 0.18em; color: var(--amber); opacity: 0.9; text-transform: uppercase; }
.hud-value { font-size: 18px; font-weight: 700; letter-spacing: 0.05em; font-variant-numeric: tabular-nums; margin-top: 2px; }
.hud-unit { font-size: 9px; letter-spacing: 0.18em; color: var(--smoke); margin-top: 2px; }
/* HUD bands: full-width flex rows pinned to the stage's top/bottom edges.
   The hero content reserves padding past them, so overlap is impossible. */
.hud-band {
  position: absolute; left: 36px; right: 36px; z-index: 5;
  display: flex; justify-content: space-between; gap: 24px;
  pointer-events: none;
}
.hud-band-top { top: 96px; align-items: flex-start; }
.hud-band-bottom { bottom: 40px; align-items: flex-end; }
.hud-band .hud { position: static; }
/* On constrained heights the decorative bands yield the whole stage to the
   content — deterministic no-overlap. */
@media (max-height: 780px) {
  .hud-band { display: none; }
  .hero-content { padding: 120px 60px 80px; }
  .hero-sub { margin-bottom: 24px; }
  .hero-title { margin-bottom: 20px; }
}
.hud-progress { width: 100%; height: 4px; background: rgba(255,255,255,0.15); margin-bottom: 6px; border: 1px solid rgba(255,184,0,0.4); }
.hud-progress-fill { height: 100%; width: 0%; background: var(--amber); box-shadow: 0 0 12px var(--amber); }

.hero-content {
  position: absolute; z-index: 6; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  /* padding clears the HUD bands (top ~96-160px, bottom ~40-140px) at any size */
  padding: 180px 60px 170px; max-width: 1160px;
}
.evidence-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.18em;
  margin-bottom: 18px; width: fit-content;
}
.evidence-stamp {
  padding: 4px 10px; background: var(--brake); color: var(--bone);
  font-weight: 700; transform: rotate(-2deg);
  box-shadow: 0 4px 14px rgba(255,45,45,0.4);
}
.evidence-num { color: var(--amber); font-weight: 700; }
.evidence-meta { color: var(--smoke); }
.hero-title {
  font-family: var(--ff-display);
  /* vh term keeps the whole content block inside the band-free zone */
  font-size: clamp(44px, min(9vw, 13.5vh), 148px);
  line-height: 0.86; letter-spacing: -0.02em;
  text-transform: uppercase; color: var(--bone);
  margin-bottom: 28px;
  text-shadow: 0 6px 30px rgba(0,0,0,0.55);
}
.hero-title .line { display: block; }
.hero-title em {
  font-style: italic; font-family: var(--ff-spray);
  color: var(--amber); display: inline-block;
  font-size: 0.88em;
  transform: rotate(-1.5deg) translateY(0.05em);
}
.hero-sub {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.55; max-width: 600px;
  color: var(--bone-2); margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 28px;
  font-family: var(--ff-mono); font-size: 14px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 2px; border: 1px solid transparent;
  position: relative; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer; will-change: transform;
}
.btn::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -80%;
  width: 40%; transform: skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transition: left 0.55s var(--ease-out);
  pointer-events: none;
}
.btn:hover::after { left: 130%; }
.btn-primary {
  background: var(--amber); color: var(--asphalt); border-color: var(--amber-hot);
  box-shadow: 0 12px 30px rgba(255,184,0,0.35), inset 0 1px 0 rgba(255,255,255,0.35), inset 0 -2px 0 rgba(0,0,0,0.18);
}
.btn-primary:hover { box-shadow: 0 18px 40px rgba(255,184,0,0.55); }
.btn-ghost {
  background: rgba(255,255,255,0.04); color: var(--bone);
  border-color: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,184,0,0.5); }
.btn-block { width: 100%; justify-content: center; padding: 20px; }

.scroll-hint { text-align: center; align-self: flex-end; }
.scroll-hint-text { font-family: var(--ff-mono); font-size: 10px; letter-spacing: 0.3em; color: var(--smoke); text-transform: uppercase; display: block; margin-bottom: 10px; }
.scroll-hint-track { width: 1px; height: 56px; background: rgba(255,255,255,0.15); margin-inline: auto; position: relative; overflow: hidden; }
.scroll-hint-bar { width: 100%; height: 24px; background: linear-gradient(180deg, transparent, var(--amber)); animation: scrollHint 1.8s ease-in-out infinite; }
@keyframes scrollHint { 0% { transform: translateY(-100%); } 100% { transform: translateY(220%); } }

/* -------- 10. Ticker -------- */
.ticker {
  position: relative; z-index: 12;
  background: var(--amber);
  border-block: 3px solid var(--asphalt);
  overflow: hidden;
  transform: rotate(-0.6deg) scale(1.01);
  margin: -12px 0;
}
.ticker-track {
  display: flex; align-items: center; gap: 34px;
  width: max-content;
  padding: 12px 0;
  animation: tickerScroll 26s linear infinite;
}
.ticker span {
  font-family: var(--ff-display);
  font-size: 20px; letter-spacing: 0.06em;
  color: var(--asphalt); text-transform: uppercase; white-space: nowrap;
}
.ticker i { font-style: normal; color: var(--asphalt); opacity: 0.6; font-size: 12px; }
@keyframes tickerScroll { to { transform: translateX(-50%); } }

/* -------- 11. Section furniture -------- */
.section-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--ff-mono); font-size: 12px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--smoke); margin-bottom: 26px;
}
.section-eyebrow.amber { color: var(--amber); }
.eyebrow-line { width: 48px; height: 1px; background: currentColor; opacity: 0.7; }
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(40px, 6vw, 96px);
  line-height: 0.92; letter-spacing: -0.01em;
  text-transform: uppercase; color: var(--bone);
  margin-bottom: 56px;
}
.section-title em.spray, .section-title em.spray-alt {
  font-family: var(--ff-spray); font-style: italic;
  color: var(--amber); display: inline-block;
  font-size: 0.85em; transform: rotate(-1.5deg) translateY(0.05em);
}
.section-title em.spray-alt { color: var(--brake); transform: rotate(-2deg) translateY(0.05em); }

/* -------- 12. MANIFESTO stage -------- */
.manifesto-hero { position: relative; height: 520vh; background: var(--asphalt); border-top: 1px solid rgba(255,184,0,0.18); z-index: 10; }
.m-track { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.m-stage { position: relative; width: 100%; height: 100%; overflow: hidden; }
.m-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 1; background: var(--asphalt);
  transform: scale(1.02); will-change: transform;
}
.m-vignette {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    radial-gradient(ellipse at 65% 60%, transparent 25%, rgba(11,11,13,0.55) 70%, rgba(11,11,13,0.95) 100%),
    linear-gradient(180deg, rgba(11,11,13,0.5) 0%, transparent 25%, transparent 65%, rgba(11,11,13,0.9) 100%);
}
.m-content {
  position: absolute; z-index: 5; inset: 0;
  display: grid; align-content: center;
  padding: 110px 60px 80px;
  max-width: 1320px;
}
.m-hud {
  position: absolute; z-index: 5;
  font-family: var(--ff-mono); color: var(--bone);
  text-shadow: 0 2px 8px rgba(0,0,0,0.7); pointer-events: none;
}
.m-hud-tr { top: 110px; right: 40px; text-align: right; }
.m-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--ff-mono); font-size: 12px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--smoke); margin-bottom: 22px; max-width: 360px;
}
.m-eyebrow .eyebrow-line { width: 48px; height: 1px; background: currentColor; opacity: 0.7; }
.m-title {
  font-family: var(--ff-display);
  font-size: clamp(40px, 6.6vw, 112px);
  line-height: 0.92; letter-spacing: -0.01em;
  text-transform: uppercase; color: var(--bone);
  margin-bottom: 30px; max-width: 1100px;
  text-shadow: 0 6px 30px rgba(0,0,0,0.65);
}
.m-title > span { display: block; }
.m-title em.spray {
  font-family: var(--ff-spray); font-style: italic; color: var(--brake);
  display: inline-block; transform: rotate(-2deg); font-size: 0.85em;
}
.m-title .strike {
  text-decoration: line-through; text-decoration-thickness: 6px;
  text-decoration-color: var(--brake); color: var(--smoke); margin-right: 12px;
}
.m-title .hilite {
  background: var(--amber); color: var(--asphalt);
  padding: 0 14px; display: inline-block; transform: rotate(-0.5deg);
  box-shadow: 0 8px 20px rgba(255,184,0,0.3);
}
.m-lead {
  font-size: clamp(16px, 1.4vw, 22px); line-height: 1.5;
  color: var(--bone-2);
  border-left: 3px solid var(--amber);
  padding-left: 24px; max-width: 720px; margin-bottom: 28px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.m-lead strong { color: var(--bone); font-weight: 700; }
.m-rules { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; max-width: 1320px; }
.m-rules li {
  display: grid; grid-template-columns: 44px 1fr; gap: 12px;
  padding: 14px 16px;
  background: rgba(11,11,13,0.72);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--cement); border-left: 3px solid var(--amber);
  font-size: 13px; line-height: 1.4; align-items: center; color: var(--bone);
}
.rule-num { font-family: var(--ff-mono); font-size: 20px; color: var(--amber); font-weight: 700; }

/* -------- 12b. TALLER & FUGA stages (reuse .m-* machinery) -------- */
.taller-hero, .fuga-hero {
  position: relative; height: 380vh;
  background: var(--asphalt); z-index: 10;
}
.taller-hero { border-top: 1px solid rgba(255,184,0,0.14); }
.taller-tools .rule-num { font-size: 22px; }
/* Real WebGL emblem — floats on the right of EL TALLER */
.mwd3d {
  position: absolute;
  right: 2vw; top: 50%;
  width: min(40vw, 640px); aspect-ratio: 1;
  transform: translateY(-50%);
  z-index: 6;
  cursor: grab;
  touch-action: none;
}
.mwd3d:active { cursor: grabbing; }
.mwd3d canvas { width: 100% !important; height: 100% !important; display: block; }
.mwd3d-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; color: var(--bone-2); text-transform: uppercase;
  background: rgba(11,11,13,0.72); padding: 7px 13px;
  border: 1px solid var(--cement); border-left: 3px solid var(--amber);
  border-radius: 3px;
  white-space: nowrap;
}
@media (max-width: 1180px) { .mwd3d { display: none; } }
.taller-tools li strong { color: var(--bone); }
.fuga-content { align-content: center; }
.fuga-cta {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.fuga-cta-meta {
  font-family: var(--ff-mono); font-size: 12px;
  letter-spacing: 0.14em; color: var(--smoke); text-transform: uppercase;
}
@media (max-width: 960px) {
  .taller-hero, .fuga-hero { height: 340vh; }
}
@media (prefers-reduced-motion: reduce) {
  .taller-hero, .fuga-hero { height: auto; }
}

/* -------- 13. SERVICES stage -------- */
.services-hero { position: relative; height: 520vh; background: var(--asphalt); z-index: 10; }
.s-track { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.s-stage { position: relative; width: 100%; height: 100%; overflow: hidden; background: var(--asphalt); }
.s-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 1; background: var(--asphalt);
  transform: scale(1.02); will-change: transform;
}
.s-vignette {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 55%, transparent 20%, rgba(11,11,13,0.45) 60%, rgba(11,11,13,0.92) 100%),
    linear-gradient(180deg, rgba(11,11,13,0.55) 0%, transparent 25%, transparent 55%, rgba(11,11,13,0.9) 100%);
}
.s-content {
  position: absolute; z-index: 5; inset: 0;
  display: flex; flex-direction: column; justify-content: center; gap: 26px;
  padding: 100px 60px 60px;
  width: min(100%, 1400px); margin-inline: auto;
  pointer-events: none;
}
.s-content > * { pointer-events: auto; }
.s-header .section-title { font-size: clamp(32px, 4.6vw, 72px); margin-bottom: 0; }
.s-header .section-eyebrow { margin-bottom: 14px; }
.s-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5); perspective: 1400px; align-items: start;
}
.svc-slot { position: relative; display: block; }

.svc-card {
  position: relative;
  background: linear-gradient(180deg, rgba(31,31,36,0.92) 0%, rgba(23,23,27,0.95) 100%);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--cement);
  border-radius: var(--r-2);
  transition: transform 0.18s ease, box-shadow 0.4s, border-color 0.3s;
  transform-style: preserve-3d;
  overflow: hidden;
}
.svc-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 0%), rgba(255,184,0,0.18), transparent 40%);
  opacity: 0; transition: opacity 0.35s; pointer-events: none;
}
.svc-card:hover { border-color: rgba(255,184,0,0.4); box-shadow: var(--shadow-glow); will-change: transform; }
.svc-card:hover::before { opacity: 1; }
.svc-card-featured {
  background: linear-gradient(180deg, rgba(33,30,22,0.95) 0%, rgba(26,23,17,0.97) 100%);
  border-color: rgba(255,184,0,0.35);
}
.svc-card-featured .svc-num, .svc-card-featured .svc-icon { color: var(--amber); }
.svc-card-inner { position: relative; z-index: 2; padding: 24px 22px 20px; display: flex; flex-direction: column; height: 100%; }
.svc-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.svc-num { font-family: var(--ff-display); font-size: 36px; color: var(--smoke); line-height: 1; }
.svc-tag {
  font-family: var(--ff-mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--amber); padding: 5px 9px;
  border: 1px solid rgba(255,184,0,0.35); background: rgba(255,184,0,0.06);
}
.svc-icon {
  color: var(--bone); margin-bottom: 14px;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: var(--asphalt-2); border: 1px solid var(--cement); border-radius: var(--r-2);
}
.svc-title { font-family: var(--ff-display); font-size: 28px; line-height: 1; text-transform: uppercase; color: var(--bone); margin-bottom: 10px; }
.svc-desc { color: var(--bone-2); font-size: 14px; line-height: 1.5; margin-bottom: 14px; }
.svc-features { display: grid; gap: 6px; margin-bottom: 8px; font-size: 13px; color: var(--bone-2); }
.svc-features li { padding-left: 20px; position: relative; }
.svc-features li::before { content: "▸"; position: absolute; left: 0; top: 0; color: var(--amber); font-weight: 700; }
.svc-card-stamp {
  position: absolute; top: 18px; right: -32px;
  transform: rotate(20deg);
  font-family: var(--ff-mono); font-size: 9px;
  letter-spacing: 0.2em; font-weight: 700; color: var(--brake);
  padding: 4px 32px; border: 1.5px solid var(--brake);
  background: rgba(255,45,45,0.06); opacity: 0.85; pointer-events: none;
}

/* -------- 14. SHOWCASE stage -------- */
.showcase-hero { position: relative; height: 520vh; background: var(--asphalt); z-index: 10; }
.w-track { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.w-stage { position: relative; width: 100%; height: 100%; overflow: hidden; background: var(--asphalt); }
.w-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 1; background: var(--asphalt);
  transform: scale(1.02); will-change: transform;
}
.w-vignette {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 15%, rgba(11,11,13,0.5) 60%, rgba(11,11,13,0.92) 100%),
    linear-gradient(180deg, rgba(11,11,13,0.55) 0%, transparent 22%, transparent 60%, rgba(11,11,13,0.9) 100%);
}
.w-content {
  position: absolute; z-index: 5; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-start; gap: 20px;
  padding: 108px 60px 56px;
  width: min(100%, 1400px); margin-inline: auto;
  pointer-events: none;
}
.w-content > * { pointer-events: auto; }
.w-header .section-title { font-size: clamp(28px, 3.6vw, 56px); margin-bottom: 0; }
.w-header .section-eyebrow { margin-bottom: 10px; }
.w-cases {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 12px; perspective: 1400px;
  flex: 1; align-content: center;
}
.case-slot { position: relative; display: block; }
.case-card {
  display: block;
  background: rgba(23,23,27,0.88);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--cement); border-radius: var(--r-2);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.3s, box-shadow 0.3s;
  transform-style: preserve-3d;
}
.case-card:hover { border-color: var(--amber); box-shadow: var(--shadow-glow); will-change: transform; }
.case-img { position: relative; aspect-ratio: 16 / 6.2; background: var(--asphalt); overflow: hidden; }
.case-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(11,11,13,0.4) 100%); z-index: 2; }
.case-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; background: var(--asphalt); }
.case-tag {
  position: absolute; top: 10px; left: 10px; z-index: 3;
  font-family: var(--ff-mono); font-size: 9px;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 3px 6px; background: var(--asphalt); color: var(--amber); border: 1px solid var(--amber);
}
.case-meta { padding: 10px 14px 12px; }
.case-num { font-family: var(--ff-mono); font-size: 10px; letter-spacing: 0.2em; color: var(--amber); display: block; margin-bottom: 3px; }
.case-card h3 { font-family: var(--ff-display); font-size: 18px; line-height: 1; text-transform: uppercase; color: var(--bone); margin-bottom: 3px; }
.case-card p { color: var(--smoke); font-size: 12px; line-height: 1.4; }

/* -------- 15. STATS -------- */
.stats {
  position: relative; z-index: 10;
  padding: var(--s-8) 0;
  background: linear-gradient(180deg, var(--concrete) 0%, var(--asphalt) 100%);
  border-top: 1px solid var(--cement); border-bottom: 1px solid var(--cement);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-4); }
.stat { text-align: center; padding: 20px 16px; border-right: 1px dashed var(--cement); }
.stat:last-child { border-right: 0; }
.stat-num {
  font-family: var(--ff-display);
  font-size: clamp(54px, 6vw, 88px); line-height: 1;
  color: var(--amber);
  text-shadow: 0 0 30px rgba(255,184,0,0.3);
  font-variant-numeric: tabular-nums;
}
.stat-label { font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bone); margin-top: 8px; }
.stat-meta { font-family: var(--ff-mono); font-size: 11px; color: var(--smoke); margin-top: 4px; }

/* -------- 16. PROCESS -------- */
.process {
  position: relative; z-index: 10;
  padding: var(--s-10) 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255,184,0,0.05), transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(255,45,45,0.04), transparent 50%),
    var(--asphalt);
  overflow: hidden;
}
.process::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 80px);
  pointer-events: none; opacity: 0.4;
}
.proc-rail { position: relative; height: 60px; margin: 0 0 24px; }
.proc-rail-track {
  position: absolute; top: 50%; left: 4%; right: 4%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--cement) 0 6px, transparent 6px 12px);
  transform: translateY(-50%);
}
.proc-rail-fill {
  position: absolute; top: 50%; left: 4%; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--amber) 0%, var(--amber-hot) 60%, var(--brake) 100%);
  transform: translateY(-50%);
  box-shadow: 0 0 14px rgba(255,184,0,0.55);
}
.proc-rail-marker {
  position: absolute; top: 50%;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--asphalt); border: 2px solid var(--cement);
  transform: translate(-50%, -50%);
  transition: border-color 0.4s, transform 0.4s var(--ease-out), background 0.4s;
}
.proc-rail-marker[data-step="1"] { left: 12.5%; }
.proc-rail-marker[data-step="2"] { left: 37.5%; }
.proc-rail-marker[data-step="3"] { left: 62.5%; }
.proc-rail-marker[data-step="4"] { left: 87.5%; }
.proc-rail-marker .dot { position: absolute; inset: 4px; border-radius: 50%; background: var(--cement); transition: background 0.4s, box-shadow 0.4s; }
.proc-rail-marker.is-active { border-color: var(--amber); transform: translate(-50%, -50%) scale(1.15); }
.proc-rail-marker.is-active .dot { background: var(--amber); box-shadow: 0 0 16px var(--amber); animation: markerBlink 1.4s ease-in-out infinite; }
@keyframes markerBlink {
  0%,100% { box-shadow: 0 0 8px var(--amber); }
  50% { box-shadow: 0 0 20px var(--amber), 0 0 10px var(--amber); }
}
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-4); position: relative; }
.step {
  position: relative; padding: 26px 22px;
  background: linear-gradient(180deg, var(--graffiti-wall) 0%, var(--concrete) 100%);
  border: 1px solid var(--cement); border-top: 3px solid var(--amber);
  border-radius: var(--r-2); overflow: hidden;
  opacity: 0; transform: translate3d(0, 60px, 0) scale(0.96);
  transition: opacity 0.6s var(--ease-out), transform 0.7s var(--ease-spring), border-color 0.3s, box-shadow 0.4s;
  will-change: transform, opacity;
}
.step[data-step="1"] { transition-delay: 0ms; }
.step[data-step="2"] { transition-delay: 90ms; }
.step[data-step="3"] { transition-delay: 180ms; }
.step[data-step="4"] { transition-delay: 270ms; }
.step.is-in { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
.step:hover { border-color: rgba(255,184,0,0.55); box-shadow: 0 18px 40px rgba(0,0,0,0.45); transform: translate3d(0,-6px,0) scale(1); }
.step.is-hot { border-color: rgba(255,184,0,0.7) !important; box-shadow: 0 22px 50px rgba(0,0,0,0.55), 0 0 36px rgba(255,184,0,0.18) !important; }
.step.is-active::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: var(--amber-hot); box-shadow: 0 0 18px var(--amber);
  animation: stepScan 1.4s ease-out;
}
@keyframes stepScan {
  0% { transform: scaleX(0); transform-origin: left; }
  50% { transform: scaleX(1); transform-origin: left; }
  100% { transform: scaleX(1); transform-origin: right; opacity: 0; }
}
.step-bg-num {
  position: absolute; top: -18px; right: -8px;
  font-family: var(--ff-display); font-size: 130px; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,184,0,0.18);
  pointer-events: none; user-select: none;
  transition: -webkit-text-stroke-color 0.4s, transform 0.6s var(--ease-out);
}
.step:hover .step-bg-num, .step.is-hot .step-bg-num { -webkit-text-stroke: 1.5px rgba(255,184,0,0.6); transform: translate(4px,-2px) rotate(-2deg); }
.step.is-in .step-bg-num { animation: bgNumIn 0.9s var(--ease-out) both; }
@keyframes bgNumIn {
  0% { opacity: 0; transform: translate(20px,-30px) rotate(-8deg) scale(1.3); }
  100% { opacity: 1; transform: translate(0,0) rotate(0) scale(1); }
}
.step-content { position: relative; z-index: 2; }
.step-tag { font-family: var(--ff-mono); font-size: 10px; letter-spacing: 0.22em; color: var(--amber); margin-bottom: 14px; text-transform: uppercase; display: inline-block; }
.step-tag::before { content: "▶ "; color: var(--amber); transition: transform 0.3s; display: inline-block; }
.step:hover .step-tag::before { transform: translateX(3px); }
.step h3 { font-family: var(--ff-display); font-size: 28px; line-height: 1; text-transform: uppercase; color: var(--bone); margin-bottom: 12px; position: relative; }
.step h3::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 24px; height: 2px; background: var(--amber); transition: width 0.4s var(--ease-out); }
.step:hover h3::after { width: 64px; }
.step p { color: var(--bone-2); font-size: 14px; line-height: 1.55; margin-bottom: 16px; padding-top: 4px; }
.step-deliverables { display: flex; flex-wrap: wrap; gap: 6px; padding-top: 14px; border-top: 1px dashed var(--cement); }
.step-deliverables span {
  font-family: var(--ff-mono); font-size: 10px; letter-spacing: 0.06em;
  padding: 5px 9px; background: var(--asphalt-2); color: var(--bone-2);
  border: 1px solid transparent; border-radius: 4px;
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}
.step:hover .step-deliverables span { background: var(--asphalt); border-color: rgba(255,184,0,0.2); color: var(--bone); }
.step-corner {
  position: absolute; top: 10px; right: 10px;
  width: 14px; height: 14px;
  border-top: 1.5px solid var(--amber); border-right: 1.5px solid var(--amber);
  opacity: 0.35; transition: opacity 0.3s, transform 0.35s;
}
.step:hover .step-corner { opacity: 1; transform: translate(3px,-3px); }
.step-pulse {
  position: absolute; bottom: -2px; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.step.is-active .step-pulse { opacity: 1; animation: pulseShine 1.6s ease-out infinite; }
@keyframes pulseShine { 0%,100% { opacity: 0.4; transform: scaleX(0.6); } 50% { opacity: 1; transform: scaleX(1); } }

/* -------- 17. PRICING · MWD TRAX -------- */
.pricing {
  position: relative; z-index: 10;
  padding: var(--s-10) 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,184,0,0.06), transparent 55%),
    linear-gradient(180deg, var(--asphalt) 0%, var(--concrete) 100%);
  overflow: hidden;
}
.pricing::before {
  content: "TRAX";
  position: absolute; right: -60px; top: 40px;
  font-family: var(--ff-display); font-size: 300px; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px rgba(255,184,0,0.06);
  pointer-events: none; user-select: none;
}
.pricing-sub {
  max-width: 620px; color: var(--bone-2);
  margin: -32px 0 48px; font-size: 16px;
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5); perspective: 1400px;
  align-items: stretch;
}
.plan {
  position: relative;
  background: linear-gradient(180deg, var(--graffiti-wall) 0%, var(--concrete) 100%);
  border: 1px solid var(--cement);
  border-radius: var(--r-3);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.3s, box-shadow 0.4s;
  transform-style: preserve-3d;
}
.plan::before { /* holo-foil sweep */
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.06) 42%, rgba(255,184,0,0.10) 50%, rgba(255,255,255,0.06) 58%, transparent 70%);
  background-size: 250% 100%; background-position: 100% 0;
  transition: background-position 0.9s var(--ease-out);
  pointer-events: none;
}
.plan:hover::before { background-position: 0 0; }
.plan:hover { border-color: rgba(255,184,0,0.45); box-shadow: var(--shadow-glow); will-change: transform; }
.plan-featured {
  background: linear-gradient(180deg, #241f14 0%, #1a1610 100%);
  border-color: rgba(255,184,0,0.5);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,184,0,0.25);
  transform: scale(1.03);
  z-index: 2;
}
.plan-black {
  background: linear-gradient(180deg, #0d0d10 0%, #08080a 100%);
  border-color: rgba(255,45,45,0.3);
}
.plan-black:hover { border-color: rgba(255,45,45,0.6); box-shadow: 0 0 0 1px rgba(255,45,45,0.4), 0 20px 50px rgba(255,45,45,0.12); }
.plan-blacklist {
  position: absolute; top: 18px; right: -34px; z-index: 3;
  transform: rotate(22deg);
  font-family: var(--ff-mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em;
  padding: 6px 40px;
  background: var(--amber); color: var(--asphalt);
  box-shadow: 0 6px 18px rgba(255,184,0,0.4);
}
.plan-inner { position: relative; z-index: 2; padding: 30px 26px 26px; display: flex; flex-direction: column; height: 100%; }

/* Mixtape cover strip — one shared artwork, tinted per plan */
.plan-cover {
  position: relative;
  margin: -30px -26px 20px;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--cement);
}
.plan-cover img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 38%;
  transform: scale(1.02);
  transition: transform 0.7s var(--ease-out);
}
.plan:hover .plan-cover img { transform: scale(1.08); }
.plan-cover::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,13,0.18) 0%, transparent 35%, rgba(23,23,27,0.92) 96%);
}
.plan-featured .plan-cover img { filter: saturate(1.25) contrast(1.05); }
.plan-featured .plan-cover::after {
  background: linear-gradient(180deg, rgba(11,11,13,0.12) 0%, transparent 35%, rgba(26,22,16,0.94) 96%);
}
.plan-black .plan-cover img { filter: hue-rotate(-46deg) saturate(1.35) brightness(0.9); }
.plan-black .plan-cover::after {
  background: linear-gradient(180deg, rgba(11,11,13,0.2) 0%, transparent 35%, rgba(8,8,10,0.95) 96%);
}

.plan-eq { display: flex; gap: 4px; align-items: flex-end; height: 22px; margin-bottom: 18px; }
.plan-eq i {
  width: 5px; background: var(--cement); border-radius: 1px;
  height: 30%;
  transition: background 0.3s;
}
.plan:hover .plan-eq i, .plan-eq.is-hot i {
  background: var(--amber);
  animation: eqBounce 0.9s ease-in-out infinite;
}
.plan-eq i:nth-child(1) { animation-delay: 0s; }
.plan-eq i:nth-child(2) { animation-delay: .15s; }
.plan-eq i:nth-child(3) { animation-delay: .3s; }
.plan-eq i:nth-child(4) { animation-delay: .1s; }
.plan-eq i:nth-child(5) { animation-delay: .22s; }
@keyframes eqBounce {
  0%,100% { height: 30%; }
  50% { height: 100%; }
}
.plan-track {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--ff-mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--smoke); margin-bottom: 12px;
}
.plan-track .plan-genre { color: var(--amber); }
.plan-name {
  font-family: var(--ff-display);
  font-size: clamp(34px, 3vw, 44px); line-height: 1;
  text-transform: uppercase; color: var(--bone);
  margin-bottom: 16px; letter-spacing: 0.01em;
}
.plan-black .plan-name { color: var(--bone); text-shadow: 0 0 24px rgba(255,45,45,0.35); }
.plan-price {
  display: flex; align-items: baseline; gap: 4px;
  font-family: var(--ff-display); color: var(--amber);
  margin-bottom: 14px;
}
.plan-price .cur { font-size: 26px; opacity: 0.8; }
.plan-price .amt { font-size: clamp(52px, 4.6vw, 72px); line-height: 1; font-variant-numeric: tabular-nums; text-shadow: 0 0 30px rgba(255,184,0,0.3); }
.plan-black .plan-price { color: var(--brake); }
.plan-black .plan-price .amt { text-shadow: 0 0 30px rgba(255,45,45,0.35); }
.plan-tagline { font-size: 14px; color: var(--bone-2); margin-bottom: 20px; line-height: 1.5; }
.plan-features { display: grid; gap: 9px; margin-bottom: 26px; font-size: 14px; color: var(--bone-2); }
.plan-features li { padding-left: 22px; position: relative; }
.plan-features li::before { content: "▸"; position: absolute; left: 0; top: 0; color: var(--amber); font-weight: 700; }
.plan-black .plan-features li::before { color: var(--brake); }
.plan-inner .btn { margin-top: auto; }
.plan-foot {
  margin-top: 14px; text-align: center;
  font-family: var(--ff-mono); font-size: 9px;
  letter-spacing: 0.22em; color: var(--smoke-2); text-transform: uppercase;
}
.pricing-note {
  margin-top: 40px; text-align: center;
  font-family: var(--ff-mono); font-size: 12px;
  color: var(--smoke); letter-spacing: 0.04em;
}

/* -------- 18. TESTIMONIAL -------- */
.testimonial { position: relative; z-index: 10; padding: var(--s-9) 0; background: var(--asphalt); }
.quote {
  position: relative; max-width: 920px; margin: 0 auto;
  padding: 60px 40px 40px;
  background: linear-gradient(180deg, var(--concrete) 0%, var(--asphalt-2) 100%);
  border-left: 4px solid var(--amber); border-radius: var(--r-2);
}
.quote-mark { position: absolute; top: -10px; left: 28px; font-family: var(--ff-display); font-size: 140px; color: var(--amber); line-height: 0.5; opacity: 0.5; }
.quote p {
  font-family: var(--ff-display);
  font-size: clamp(24px, 3vw, 40px); line-height: 1.2;
  letter-spacing: -0.01em; text-transform: uppercase; color: var(--bone);
}
.quote p em { font-family: var(--ff-spray); color: var(--amber); font-style: italic; display: inline-block; transform: rotate(-1deg); }
.quote footer { margin-top: 22px; font-family: var(--ff-mono); font-size: 13px; letter-spacing: 0.06em; color: var(--smoke); }
.quote footer strong { color: var(--bone); font-weight: 700; }

/* -------- 19. CONTACT -------- */
.contact {
  position: relative; z-index: 10;
  padding: var(--s-10) 0 var(--s-9);
  background: linear-gradient(180deg, var(--asphalt) 0%, var(--concrete) 100%);
  overflow: hidden;
}
/* Ambient rain loop behind the form — pure atmosphere, heavily veiled */
.contact-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.38;
  z-index: 0;
}
.contact-bg-veil {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 40%, transparent 10%, rgba(11,11,13,0.55) 60%, rgba(11,11,13,0.9) 100%),
    linear-gradient(180deg, rgba(11,11,13,0.85) 0%, rgba(11,11,13,0.35) 30%, rgba(11,11,13,0.35) 70%, rgba(11,11,13,0.9) 100%);
}
.contact .container { position: relative; z-index: 2; }
.corona-hero {
  position: relative; height: 380vh;
  background: var(--asphalt); z-index: 10;
  border-top: 1px solid rgba(255,184,0,0.14);
}
@media (max-width: 960px) { .corona-hero { height: 340vh; } }
@media (prefers-reduced-motion: reduce) { .corona-hero { height: auto; } .contact-bg { display: none; } }
.contact-grid { display: grid; grid-template-columns: 0.85fr 1fr; gap: var(--s-7); align-items: stretch; }
.contact-poster {
  position: relative;
  background: #E8DCC4; color: var(--asphalt);
  border: 12px solid #2A1F12;
  padding: 32px 32px 28px;
  font-family: var(--ff-mono);
  transform: rotate(-1.5deg);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 0 60px rgba(160,120,40,0.15);
  background-image:
    radial-gradient(circle at 30% 20%, rgba(160,120,40,0.18), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(120,80,30,0.2), transparent 50%);
}
.contact-poster::before {
  content: ""; position: absolute; inset: -4px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.6' numOctaves='2'/><feColorMatrix values='0 0 0 0 0.16  0 0 0 0 0.10  0 0 0 0 0.04  0 0 0 0.18 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply; pointer-events: none;
}
.poster-stamp {
  font-family: var(--ff-display); font-size: 72px; line-height: 0.9;
  text-align: center; letter-spacing: 0.04em; color: var(--asphalt);
  margin-bottom: 20px; padding-bottom: 16px;
  border-bottom: 6px double var(--asphalt);
}
.poster-photo {
  position: relative; border: 3px solid var(--asphalt);
  margin-bottom: 20px; aspect-ratio: 1 / 1; overflow: hidden;
  background: #17171B;
}
.poster-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%;
  z-index: 1;
  filter: contrast(1.10) saturate(1.12) brightness(0.97);
}
.poster-photo-id {
  position: absolute; top: 0; left: 0; right: 0; z-index: 3;
  text-align: center; font-family: var(--ff-mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; color: var(--amber);
  background: var(--asphalt); padding: 5px 0;
  border-bottom: 1px solid rgba(255,184,0,0.4);
}
.poster-photo-label {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  text-align: center; font-family: var(--ff-mono); font-size: 8px;
  letter-spacing: 0.22em; color: #DDD6C6;
  background: rgba(11,11,13,0.85); padding: 5px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.poster-photo-grid {
  position: absolute; inset: 18px 0; z-index: 2; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,184,0,0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,184,0,0.06) 1px, transparent 1px);
  background-size: 25% 100%, 100% 20%;
  mix-blend-mode: overlay; opacity: 0.7;
}
.poster-name {
  font-family: var(--ff-display); font-size: 36px;
  letter-spacing: 0.04em; color: var(--asphalt);
  text-align: center; margin-bottom: 16px;
}
.poster-crimes {
  display: grid; gap: 6px;
  font-size: 12px; font-weight: 700; color: #5c4a2e;
  letter-spacing: 0.04em;
  border-top: 2px solid var(--asphalt); border-bottom: 2px solid var(--asphalt);
  padding: 14px 0; margin-bottom: 18px;
}
.poster-reward {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--asphalt); color: #E8DCC4;
  padding: 14px 16px; margin: 0 -10px;
  transform: rotate(0.5deg);
}
.poster-reward-label { font-size: 11px; letter-spacing: 0.2em; color: var(--amber); font-weight: 700; }
.poster-reward-amount { font-size: 13px; font-weight: 700; letter-spacing: 0.04em; }

.contact-form { padding: 12px 0; }
.contact-title {
  font-family: var(--ff-display);
  font-size: clamp(40px, 5vw, 72px); line-height: 0.95;
  letter-spacing: -0.01em; text-transform: uppercase;
  color: var(--bone); margin-bottom: 14px;
}
.contact-title em.spray {
  font-family: var(--ff-spray); font-style: italic; color: var(--amber);
  display: inline-block; transform: rotate(-1.5deg); font-size: 0.85em;
}
.contact-sub { color: var(--bone-2); margin-bottom: 32px; font-size: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
.field label { font-family: var(--ff-mono); font-size: 10px; letter-spacing: 0.2em; color: var(--amber); text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%; padding: 16px 18px;
  background: var(--asphalt-2);
  border: 1px solid var(--cement); border-radius: 2px;
  color: var(--bone); font-size: 15px;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--amber);
  background: var(--asphalt);
  box-shadow: 0 0 0 3px rgba(255,184,0,0.15);
}
.field textarea { resize: vertical; min-height: 100px; font-family: var(--ff-body); }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M2 4l4 4 4-4' stroke='%23FFB800' stroke-width='1.6' fill='none' stroke-linecap='square'/></svg>");
  background-repeat: no-repeat; background-position: right 16px center;
  padding-right: 40px;
}
.form-meta {
  margin-top: 18px;
  font-family: var(--ff-mono); font-size: 12px;
  color: var(--smoke); letter-spacing: 0.06em;
  display: flex; align-items: center; gap: 8px;
}
.form-meta strong { color: var(--amber); }
.dot-pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 12px var(--success); animation: pulse 1.8s ease-in-out infinite; }

/* -------- 20. FOOTER -------- */
.site-footer { position: relative; z-index: 10; background: var(--asphalt); padding: var(--s-8) 0 var(--s-6); border-top: 1px solid var(--cement); }
.footer-logo { text-align: center; padding: var(--s-5) 0 var(--s-6); border-bottom: 1px dashed var(--cement); margin-bottom: var(--s-7); }
.footer-logo img {
  width: 100%; max-width: 820px; height: auto;
  margin-inline: auto; display: block;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,0.5));
  transition: transform 0.6s var(--ease-out), filter 0.6s;
}
.footer-logo img:hover {
  transform: scale(1.015) rotate(-0.4deg);
  filter: drop-shadow(0 22px 50px rgba(255,184,0,0.25)) drop-shadow(0 18px 40px rgba(0,0,0,0.5));
}
.footer-tagline { margin-top: 22px; font-family: var(--ff-mono); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--smoke); }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-6); max-width: 880px; margin: 0 auto var(--s-7); text-align: center; }
.footer-col h4 { font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 14px; color: var(--bone-2); padding: 6px 0; transition: color 0.2s, transform 0.2s; }
.footer-col a:hover { color: var(--bone); transform: translateX(3px); }
.plate {
  margin: var(--s-7) auto; width: fit-content;
  display: flex; align-items: center;
  background: #DDD6C6; color: var(--asphalt);
  border-radius: 8px; border: 3px solid var(--asphalt);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4), inset 0 -2px 0 rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.6);
  padding: 4px 4px 4px 12px; overflow: hidden;
}
.plate-edge { width: 4px; height: 50px; background: repeating-linear-gradient(90deg, var(--asphalt) 0 2px, transparent 2px 4px); }
.plate-text { display: flex; align-items: center; gap: 14px; padding: 6px 18px; }
.plate-region { font-family: var(--ff-display); font-size: 36px; letter-spacing: 0.02em; line-height: 1; }
.plate-sep { width: 10px; height: 10px; border-radius: 50%; background: var(--brake); box-shadow: 0 0 0 2px var(--asphalt); }
.plate-num { font-family: var(--ff-display); font-size: 28px; letter-spacing: 0.04em; line-height: 1; }
.footer-legal {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding-top: var(--s-5);
  border-top: 1px dashed var(--cement);
  font-family: var(--ff-mono); font-size: 11px;
  color: var(--smoke); letter-spacing: 0.04em;
}

/* -------- 21. Reveal (IO-driven) -------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* -------- 22. Responsive -------- */
@media (max-width: 1080px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .plan-featured { transform: none; }
}
@media (max-width: 960px) {
  .primary-nav { display: none; }
  .primary-nav.is-open {
    display: flex; flex-direction: column;
    position: fixed; top: 70px; left: 16px; right: 16px;
    background: rgba(11,11,13,0.96);
    backdrop-filter: blur(16px);
    border: 1px solid var(--cement); border-radius: var(--r-3);
    padding: 14px; z-index: 95;
    box-shadow: 0 24px 60px rgba(0,0,0,0.6);
  }
  .menu-toggle { display: flex; flex-direction: column; gap: 5px; padding: 10px; }
  .menu-toggle span { width: 22px; height: 2px; background: var(--bone); }
  .hero-content { padding: 0 28px; }
  .hud-band, .m-hud-tr { display: none; }
  .hero-content { padding: 120px 28px 90px; }
  .m-content { padding: 88px 24px 60px; }
  .m-rules { grid-template-columns: 1fr 1fr; }
  .manifesto-hero { height: 460vh; }
  .services-hero, .showcase-hero { height: auto; }
  .services-hero .s-track, .showcase-hero .w-track { position: relative; height: auto; }
  .services-hero .s-stage, .showcase-hero .w-stage { height: auto; padding: 100px 0 80px; }
  .services-hero .s-video, .showcase-hero .w-video { position: relative; height: 60vh; }
  .services-hero .s-content, .showcase-hero .w-content { position: relative; padding: 24px; }
  .s-cards { grid-template-columns: 1fr; }
  .w-cases { grid-template-columns: 1fr; }
  .svc-slot.rs-zoom, .svc-slot.rs-slide-l, .svc-slot.rs-slide-r,
  .case-slot.rs-slide-l, .case-slot.rs-slide-r { --p: 1 !important; transform: none !important; opacity: 1 !important; }
  .rs[data-video-from] { --p: 1 !important; }
  .proc-rail { display: none; }
  .step-bg-num { font-size: 90px; }
  .contact-grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--s-4); }
  .footer-logo img { max-width: 92%; }
  .wa-fab { width: 56px; height: 56px; bottom: 18px; right: 18px; }
  .wa-fab svg { width: 28px; height: 28px; }
  .wa-fab-label { display: none; }
  .pricing::before { display: none; }
}
@media (max-width: 560px) {
  .hero { height: 340vh; }
  .manifesto-hero { height: 420vh; }
  .m-rules { grid-template-columns: 1fr; }
  .m-content { padding: 80px 18px 60px; }
  .hero-content { padding: 0 22px; }
  .field-row { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cta-pill span:not(.dot) { display: none; }
  .ticker span { font-size: 16px; }
}
@media (min-width: 561px) and (max-width: 960px) {
  .process-steps { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { border-right: 0; border-bottom: 1px dashed var(--cement); padding-bottom: 16px; }
}

/* -------- 23. Reduced motion -------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.05ms !important;
    scroll-behavior: auto !important;
  }
  .ignition { display: none; }
  .cursor-dot, .cursor-ring { display: none; }
  .rs-intro { opacity: 1; transform: none; animation: none; }
  .hero, .manifesto-hero, .services-hero, .showcase-hero { height: auto; }
  .hero-track, .m-track, .s-track, .w-track { position: relative; height: auto; }
  .hero-stage, .m-stage, .s-stage, .w-stage { height: auto; padding: 80px 0; }
  .hero-video, .m-video, .s-video, .w-video { position: relative; height: 100vh; }
  .hero-content, .m-content, .s-content, .w-content { position: relative; padding: 60px 24px; }
  .rs, .rs-zoom, .rs-slide-l, .rs-slide-r { --p: 1 !important; opacity: 1 !important; transform: none !important; }
  .letterbox { display: none; }
  .ticker-track { animation: none; }
}
