/* === VIIVA FPV — Design Tokens === */
:root {
  /* core palette derived from logo */
  --blue: #1E3FCC;
  --blue-deep: #0F2585;
  --blue-soft: oklch(0.55 0.18 265);
  --cream: #F2EEE4;
  --cream-warm: #E8E2D3;
  --ink: #0A0E1F;
  --ink-soft: #2A2F44;
  --line: rgba(10,14,31,0.12);
  --line-strong: rgba(10,14,31,0.22);

  /* type */
  --serif: "DM Serif Display", "Libre Bodoni", Georgia, serif;
  --sans: "Space Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "JetBrains Mono", "SF Mono", ui-monospace, monospace;

  /* surface */
  --bg: var(--cream);
  --fg: var(--ink);
  --accent: var(--blue);

  /* sizing */
  --max: 1480px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 4px;
}

[data-theme="dark"] {
  --bg: #07090F;
  --fg: var(--cream);
  --ink: var(--cream);
  --ink-soft: rgba(242,238,228,0.7);
  --line: rgba(242,238,228,0.12);
  --line-strong: rgba(242,238,228,0.25);
  --cream: #07090F;
  --cream-warm: #0F1320;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01" on, "cv11" on;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

/* === reusable === */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 10px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}
.eyebrow.no-line::before { display: none; }

h1, h2, h3, h4 { margin: 0; font-family: var(--serif); font-weight: 400; line-height: 0.95; letter-spacing: -0.01em; }
h1 { font-size: clamp(56px, 9vw, 168px); }
h2 { font-size: clamp(44px, 6.5vw, 96px); }
h3 { font-size: clamp(28px, 3.2vw, 44px); }
p { margin: 0; }

.italic { font-style: italic; }
.tabular { font-variant-numeric: tabular-nums; }

/* button */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 16px 24px;
  background: var(--ink); color: var(--cream);
  border: 1px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
  transition: transform .25s, background .25s, color .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); background: var(--blue); border-color: var(--blue); color: #fff; }
.btn.alt { background: transparent; color: var(--fg); }
.btn.alt:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.btn.blue { background: var(--blue); border-color: var(--blue); color: #fff; }
.btn .arrow { display: inline-block; transition: transform .25s; }
.btn:hover .arrow { transform: translateX(4px); }

/* === NAV === */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background .3s;
}
.nav .brand {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: 0.02em;
  color: var(--blue);
}
.nav .brand .prop { color: var(--blue); }
.nav .nav-left {
  display: flex; align-items: center; gap: 22px;
}
.nav .social {
  display: flex; gap: 8px;
  padding-left: 18px;
  border-left: 1px solid var(--line);
}
.nav .social-btn {
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  color: var(--ink-soft);
  transition: all .25s ease;
}
.nav .social-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: translateY(-1px);
}
.nav .links {
  display: flex; gap: 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.nav .links a { position: relative; padding: 6px 0; }
.nav .links a:hover { color: var(--blue); }
.nav .links a::after {
  content: ""; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--blue);
  transition: width .3s;
}
.nav .links a:hover::after { width: 100%; }
.nav .meta {
  display: flex; align-items: center; gap: 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
}
.nav .meta .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #00C26C; box-shadow: 0 0 0 4px rgba(0,194,108,0.18);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

/* === HUD strip (telemetry) === */
.hud {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 40;
  padding: 10px var(--gutter);
  background: var(--ink); color: var(--cream);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex; gap: 28px;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hud .row { display: flex; gap: 28px; }
.hud .item { display: flex; gap: 8px; opacity: 0.7; }
.hud .item b { font-weight: 500; color: #fff; opacity: 1; }
.hud .item .blue { color: #6B8DFF; }

/* === HERO === */
.hero {
  min-height: 100vh;
  padding: 140px var(--gutter) 120px;
  position: relative;
  display: flex; flex-direction: column;
  justify-content: center;
}
.hero .hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: clamp(56px, 11vw, 200px);
  line-height: 0.86;
  letter-spacing: -0.025em;
}
.hero h1 .blue { color: var(--blue); }
.hero h1 .italic { font-style: italic; }
.hero h1 .outline {
  -webkit-text-stroke: 1.5px var(--ink);
  color: transparent;
}
.hero h1 .hero-sub {
  display: block;
  font-size: clamp(28px, 4.5vw, 76px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink-soft);
  margin-top: 18px;
  font-weight: 400;
}
.hero h1 .hero-sub .italic { color: var(--blue); }
.hero .bottom-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero .lede {
  font-family: var(--sans);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.5;
  max-width: 380px;
  color: var(--ink-soft);
}
.hero .lede strong {
  color: var(--fg);
  font-weight: 600;
}
.hero .stat {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft);
}
.hero .stat b {
  display: block;
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  color: var(--fg);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.hero .cta-group {
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-self: end;
}

/* Mobile: empilha bottom-row pra leitura clara */
@media (max-width: 720px) {
  .hero { padding: 100px 20px 80px; }
  .hero .bottom-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero .cta-group {
    justify-self: stretch;
    width: 100%;
  }
  .hero .cta-group .btn { flex: 1; justify-content: center; }
}

/* ==========================================================
   VIDEO OPENER — section full-viewport antes da hero
   ========================================================== */
.video-opener {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px; /* fallback pra telas baixas */
  overflow: hidden;
  background: #0A0E1F;
}
/* Frame: só cor sólida de fallback (#0A0E1F). O poster vem de <img>/<picture>,
   NÃO de background-image — evita double-fetch e torna o <img fetchpriority=high>
   o candidato a LCP previsível, que pinta direto do HTML estático. */
.video-opener-frame {
  position: absolute;
  inset: 0;
  background: #0A0E1F;
}
/* Poster como <img> cover — é o LCP element, pinta antes do React montar. z-index 0. */
.video-opener-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 0;
}
/* DESKTOP: vídeo horizontal 16:9 cover — por cima do poster (z-index 1) */
.video-opener-frame iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;          /* 100vw × 9/16 */
  min-height: 100vh;
  min-width: 177.78vh;      /* 100vh × 16/9 */
  transform: translate(-50%, -50%);
  border: 0;
  z-index: 1;
  opacity: 0;
  animation: videoOpenerFadeIn 1.1s ease-out forwards;
}
/* MOBILE: vídeo vertical 9:16 cover */
@media (max-width: 720px) {
  .video-opener-frame iframe {
    width: 100vw;
    height: 177.78vw;        /* 100vw × 16/9 (vídeo vertical) */
    min-height: 100vh;
    min-width: 56.25vh;      /* 100vh × 9/16 */
  }
}
/* Sutil escurecida no rodapé pra dar contraste ao scroll cue */
.video-opener::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 30%;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 31, 0.55) 100%);
  pointer-events: none;
}

/* Scroll cue — botão minimalista no rodapé */
.scroll-cue {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: transparent;
  border: 0;
  color: rgba(242, 238, 228, 0.85);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  animation: scrollCueIn 1s ease-out 2.5s forwards;
}
.scroll-cue:hover { color: var(--bg); }
.scroll-cue-arrow {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  animation: scrollCueBounce 2.2s ease-in-out infinite;
}

@keyframes videoOpenerFadeIn { to { opacity: 1; } }
@keyframes scrollCueIn { to { opacity: 1; } }
@keyframes scrollCueBounce {
  0%, 100% { transform: translateY(0); opacity: 0.85; }
  50%      { transform: translateY(6px); opacity: 1; }
}

/* Respeita reduce-motion */
@media (prefers-reduced-motion: reduce) {
  .video-opener-frame iframe,
  .scroll-cue,
  .scroll-cue-arrow {
    animation: none !important;
    opacity: 1;
  }
}

/* Mobile: scroll cue mais subtle e padding menor */
@media (max-width: 720px) {
  .scroll-cue { bottom: 28px; font-size: 10px; }
}

/* propeller decoration */
.hero-prop {
  position: absolute;
  right: -8%;
  top: 14%;
  width: 700px;
  height: 700px;
  pointer-events: none;
  opacity: 0.95;
  z-index: 1;
}
.hero-prop .spinner {
  width: 100%; height: 100%;
  animation: spin 14s linear infinite;
  transform-origin: center;
  color: var(--blue);
  opacity: 0.18;
}

.prop-mark {
  display: inline-block;
  color: var(--blue);
}
.prop-mark svg { display: block; }

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Drone-style spin-down used on the brand mark.
   7 rotations (2520°) with quartic ease-out — fast like a drone, then
   decelerates and stops. Held still for the last 10% (4.5s–5s). */
@keyframes viiva-spindown {
  0%   { transform: rotate(0deg);    }
  5%   { transform: rotate(519deg);  }
  10%  { transform: rotate(945deg);  }
  15%  { transform: rotate(1305deg); }
  20%  { transform: rotate(1597deg); }
  30%  { transform: rotate(2021deg); }
  40%  { transform: rotate(2279deg); }
  50%  { transform: rotate(2422deg); }
  60%  { transform: rotate(2489deg); }
  70%  { transform: rotate(2514deg); }
  80%  { transform: rotate(2519deg); }
  90%  { transform: rotate(2520deg); }
  100% { transform: rotate(2520deg); }
}
.prop-mark--spin svg {
  transform-origin: 50% 50%;
  animation: viiva-spindown 5s linear 0.3s 1 both;
}
@media (prefers-reduced-motion: reduce) {
  .prop-mark--spin svg { animation: none; }
}

/* corner crosshairs */
.crosshair {
  position: absolute;
  width: 18px; height: 18px;
  border: 1px solid var(--blue);
}
.crosshair.tl { top: 96px; left: var(--gutter); border-right: none; border-bottom: none; }
.crosshair.tr { top: 96px; right: var(--gutter); border-left: none; border-bottom: none; }
.crosshair.bl { bottom: 60px; left: var(--gutter); border-right: none; border-top: none; }
.crosshair.br { bottom: 60px; right: var(--gutter); border-left: none; border-top: none; }

/* === SERVICES === */
.services {
  padding: 140px var(--gutter);
  border-top: 1px solid var(--line);
  position: relative;
}
.services .head {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}
.services .head h2 .italic { color: var(--blue); }
.services .head p {
  font-size: 17px;
  line-height: 1.55;
  max-width: 460px;
  color: var(--ink-soft);
}
.services .head p strong {
  color: var(--fg);
  font-weight: 600;
}
.services .grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.service {
  padding: 40px 32px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column;
  position: relative;
  background: transparent;
  transition: background .35s;
  cursor: pointer;
  min-height: 460px;
}
.service:last-child { border-right: none; }
.service:hover { background: var(--ink); color: var(--cream); }
.service:hover .num,
.service:hover .desc,
.service:hover .specs { color: rgba(242,238,228,0.7); }
.service:hover h3 .blue { color: #6B8DFF; }
.service:hover .arrow-link { color: var(--cream); border-color: rgba(242,238,228,0.3); }
.service .num {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.18em;
  color: var(--ink-soft);
  margin-bottom: 24px;
  transition: color .35s;
}
.service h3 {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 16px;
  min-height: 130px;
}
.service h3 .blue { color: var(--blue); transition: color .35s; }
.service h3 .italic { font-style: italic; }
.service .desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 32px;
  flex: 1;
  transition: color .35s;
}
.service .specs {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex; flex-wrap: wrap; gap: 6px 14px;
  margin-bottom: 28px;
  transition: color .35s;
}
.service .specs span { display: inline-flex; align-items: center; gap: 6px; }
.service .specs span::before {
  content: "+"; opacity: 0.5;
}
.service .arrow-link {
  display: inline-flex; align-items: center; justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  transition: color .35s, border-color .35s;
}
.service .arrow-link .arr {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .25s;
}
.service:hover .arrow-link .arr { transform: rotate(-45deg); }

/* === SHOWREEL === */
.reel {
  padding: 140px var(--gutter);
  background: var(--ink);
  color: var(--cream);
  position: relative;
}
.reel .head {
  max-width: var(--max);
  margin: 0 auto 60px;
  display: flex; justify-content: space-between; align-items: end;
  gap: 40px;
}
.reel h2 { color: var(--cream); max-width: 800px; }
.reel h2 .blue { color: #6B8DFF; font-style: italic; }
.reel .head .eyebrow { color: rgba(242,238,228,0.6); }
.reel .filters {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.reel .filter {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid rgba(242,238,228,0.2);
  border-radius: 999px;
  background: transparent;
  color: rgba(242,238,228,0.6);
  cursor: pointer;
  transition: all .25s;
}
.reel .filter:hover { border-color: var(--cream); color: var(--cream); }
.reel .filter.active { background: var(--blue); border-color: var(--blue); color: #fff; }

.reel .grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.tile {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 2px;
  background: #131727;
  aspect-ratio: 16/9;
}
.tile.t1 { grid-column: span 7; aspect-ratio: 16/10; }
.tile.t2 { grid-column: span 5; aspect-ratio: 4/5; }
.tile.t3 { grid-column: span 4; aspect-ratio: 1/1; }
.tile.t4 { grid-column: span 4; aspect-ratio: 1/1; }
.tile.t5 { grid-column: span 4; aspect-ratio: 1/1; }
.tile.t6 { grid-column: span 8; aspect-ratio: 16/9; }
.tile.t7 { grid-column: span 4; aspect-ratio: 4/5; }

.tile .placeholder {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg,
      rgba(255,255,255,0.02) 0,
      rgba(255,255,255,0.02) 2px,
      transparent 2px,
      transparent 18px),
    linear-gradient(135deg, #1a2240, #0c1024);
  display: flex; align-items: center; justify-content: center;
}
.tile .tile-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  object-fit: cover;
  pointer-events: none;
  background: #0c1024;
}
.tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,9,15,0) 55%, rgba(7,9,15,0.65) 100%);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s;
}
.tile:has(.tile-video)::after { opacity: 1; }
.tile .play {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  transition: transform .35s, background .35s;
  z-index: 2;
}
.tile:hover .play { transform: scale(1.1); background: var(--blue); border-color: var(--blue); }
.tile .play::after {
  content: ""; width: 0; height: 0;
  border-left: 14px solid #fff;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 4px;
}
.tile .meta {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  display: flex; justify-content: space-between; align-items: end;
  z-index: 2;
  font-family: var(--mono);
}
.tile .meta .ttl {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.tile .meta .tag {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}
.tile .meta .right {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-align: right;
}
.tile .corner {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  display: flex; align-items: center; gap: 6px;
  z-index: 2;
}
.tile .corner .rec {
  width: 6px; height: 6px; border-radius: 50%;
  background: #FF3344;
  animation: pulse 1.4s infinite;
}

/* === PROCESS === */
.process {
  padding: 140px var(--gutter);
  background: var(--cream-warm);
}
.process .head {
  max-width: var(--max);
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
}
.process h2 .italic { color: var(--blue); }
.process .head p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 440px;
}
.process .steps {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-strong);
}
.step {
  padding: 32px 24px 36px;
  border-right: 1px solid var(--line-strong);
  position: relative;
}
.step:last-child { border-right: none; }
.step .num {
  font-family: var(--serif);
  font-size: 80px;
  line-height: 0.9;
  color: var(--blue);
  margin-bottom: 24px;
  font-style: italic;
}
.step h4 {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.step p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.step .dur {
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* === ABOUT === */
.about {
  padding: 140px var(--gutter);
}
.about .grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.about .left { position: sticky; top: 120px; }
.about .left h2 {
  font-size: clamp(48px, 6vw, 90px);
  line-height: 0.95;
  margin-bottom: 32px;
}
.about .left h2 .blue { color: var(--blue); font-style: italic; }
.about .right {
  font-family: var(--serif);
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: var(--ink);
  font-weight: 400;
}
.about .right p + p { margin-top: 24px; }
.about .right em { color: var(--blue); font-style: italic; }
.about .stats {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.about .badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  padding: 14px 22px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.about .badge span {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--blue);
  font-style: italic;
  text-transform: none;
}
.about .stats .stat .num {
  font-family: var(--serif);
  font-size: 64px;
  line-height: 1;
  color: var(--blue);
  letter-spacing: -0.02em;
}
.about .stats .stat .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 8px;
}

/* === CONTACT === */
.contact {
  padding: 140px var(--gutter) 200px;
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.contact .grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  position: relative;
  z-index: 2;
}
.contact .left h2 {
  font-size: clamp(52px, 7vw, 124px);
  line-height: 0.9;
  color: var(--cream);
  letter-spacing: -0.02em;
}
.contact .left h2 .italic { color: #6B8DFF; }
.contact .left .sub {
  font-size: 17px;
  margin-top: 32px;
  color: rgba(242,238,228,0.7);
  max-width: 420px;
}
.contact .left .info {
  margin-top: 56px;
  display: grid; gap: 24px;
}
.contact .left .info .lbl {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(242,238,228,0.5);
  display: block; margin-bottom: 6px;
}
.contact .left .info .val {
  font-family: var(--serif);
  font-size: 24px;
  display: inline-block;
  transition: color .25s, transform .25s;
}
.contact .left .info a.val:hover {
  color: #6B8DFF;
  transform: translateX(4px);
}
.contact .right form {
  display: grid; gap: 0;
}
.contact .right .field {
  position: relative;
  border-bottom: 1px solid rgba(242,238,228,0.2);
  padding: 22px 0;
}
.contact .right label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(242,238,228,0.5);
  display: block;
  margin-bottom: 8px;
}
.contact .right input,
.contact .right textarea,
.contact .right select {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  outline: none;
  resize: none;
  padding: 0;
}
.contact .right input::placeholder,
.contact .right textarea::placeholder {
  color: rgba(242,238,228,0.3);
}
.contact .right select option {
  background: var(--ink); color: var(--cream);
}
.contact .right textarea { min-height: 80px; line-height: 1.4; }
.contact .right .submit-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 32px;
}
.contact .right .ok {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #00C26C;
  opacity: 0;
  transition: opacity .3s;
}
.contact .right .ok.show { opacity: 1; }
.contact .budget-pills {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 8px;
}
.contact .pill {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 12px;
  border: 1px solid rgba(242,238,228,0.2);
  border-radius: 999px;
  background: transparent;
  color: rgba(242,238,228,0.7);
  cursor: pointer;
  transition: all .25s;
}
.contact .pill:hover { border-color: var(--cream); color: var(--cream); }
.contact .pill.active { background: var(--blue); border-color: var(--blue); color: #fff; }

.contact-prop {
  position: absolute;
  left: -150px; bottom: -200px;
  width: 700px; height: 700px;
  color: var(--blue);
  opacity: 0.12;
  pointer-events: none;
  animation: spin 22s linear infinite;
}

/* === FOOTER === */
.footer {
  padding: 32px var(--gutter) 60px;
  background: var(--ink);
  color: rgba(242,238,228,0.6);
  border-top: 1px solid rgba(242,238,228,0.08);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer .row {
  max-width: var(--max);
  margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer a:hover { color: var(--cream); }

/* === marquee === */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  overflow: hidden;
  background: var(--cream);
}
.marquee .track {
  display: flex;
  gap: 60px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.01em;
}
.marquee .track span { display: inline-flex; align-items: center; gap: 60px; }
.marquee .track .blue { color: var(--blue); font-style: italic; }
.marquee .track .dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--blue); display: inline-block;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* === responsive === */
@media (max-width: 1024px) {
  .nav .links { display: none; }
  .nav .meta .ip { display: none; }
  .nav .social { padding-left: 14px; }
  .hero .bottom-row { grid-template-columns: 1fr; }
  .hero .cta-group { justify-self: start; }
  .services .head { grid-template-columns: 1fr; }
  .services .grid { grid-template-columns: 1fr; }
  .service { border-right: none; }
  .reel .grid { grid-template-columns: repeat(6, 1fr); }
  .tile.t1, .tile.t6 { grid-column: span 6; }
  .tile.t2 { grid-column: span 6; }
  .tile.t3, .tile.t4, .tile.t5, .tile.t7 { grid-column: span 3; }
  .process .head { grid-template-columns: 1fr; }
  .process .steps { grid-template-columns: 1fr 1fr; }
  .step:nth-child(2) { border-right: none; }
  .step:nth-child(1), .step:nth-child(2) { border-bottom: 1px solid var(--line-strong); }
  .about .grid { grid-template-columns: 1fr; gap: 40px; }
  .about .left { position: static; }
  .contact .grid { grid-template-columns: 1fr; gap: 40px; }
  .hud { display: none; }
  .crosshair { display: none; }
  .hero-prop { right: -40%; opacity: 0.12; }
}
@media (max-width: 600px) {
  .reel .grid { grid-template-columns: 1fr; }
  .tile.t1, .tile.t2, .tile.t3, .tile.t4, .tile.t5, .tile.t6, .tile.t7 {
    grid-column: span 1; aspect-ratio: 16/10;
  }
  .process .steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--line-strong); }
  .about .stats { grid-template-columns: 1fr 1fr; }
}
