

:root {
  --bg:          #0a0a0f;
  --bg-deep:     #07070b;
  --surface:     #101016;
  --surface-2:   #14141b;
  --surface-3:   #1a1a22;
  --line:        #1d1d27;
  --line-2:      #262633;
  --line-3:      #32323f;
  --orange:      #E85A3E;
  --orange-2:    #F47458;
  --amber:       #ff931e;
  --blue:        #2483c5;

  --navy:        #2c3e50;
  --navy-deep:   #1f2d3a;

  --card:        #101016;
  --card-fg:     #f2f2f5;
  --destructive: #ff5a5a;
  --on-destructive: #0a0a0f;
  --ring:        #E85A3E;
  --orange-dim:  rgba(232, 90, 62, 0.07);
  --orange-mid:  rgba(232, 90, 62, 0.22);
  --orange-glow: rgba(232, 90, 62, 0.45);
  --op-green:    #3ddc84;
  --text:        #f2f2f5;
  --text-dim:    #a4a4af;
  --text-muted:  #8b8b99;
  --text-faint:  #7a7a88;

  --sans: 'JetBrains Mono', ui-monospace, monospace;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  --mono-tech: 'JetBrains Mono', ui-monospace, monospace;
  --nav-h: 64px;
  --hud-h: 36px;
  --pad: clamp(20px, 5vw, 64px);
  --maxw: 1280px;
  --t-fast: 0.18s ease;
  --t-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--orange); color: var(--bg); }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--orange); }

:where(a, button, [role="button"], input, textarea, select, summary,
       [tabindex]):focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 1px;
}

:where(a, button, [role="button"]):focus:not(:focus-visible) { outline: none; }

.nav-toggle:focus-visible { outline-offset: 1px; }

.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -120%);
  z-index: 200;
  background: var(--orange);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 20px;
  transition: transform var(--t-fast);
}
.skip-link:focus-visible { transform: translate(-50%, 0); }

#scanline {
  position: fixed;
  left: 0; right: 0; top: 0;
  height: 1px;
  z-index: 40;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0%,
    rgba(232, 90, 62,0.12) 20%, rgba(232, 90, 62,0.12) 80%, transparent 100%);
}
#scanline::after {
  content: '';
  position: absolute;
  left: 50%; top: -2px;
  width: 120px; height: 5px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, var(--orange-glow), transparent 70%);
  filter: blur(2px);
}

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  background: rgba(7, 7, 11, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-left a { display: flex; align-items: center; gap: 14px; }
.nav-eye { width: 30px; height: 30px; object-fit: contain; }
.nav-wordmark { display: flex; flex-direction: column; line-height: 1.15; }
.nav-name {
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 3px;
  color: var(--text);
  white-space: nowrap;
}
.nav-name span { color: var(--orange); }

.nav-tag {
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  color: var(--text);
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 560px) {
  .nav-tag { font-size: 0.6rem; letter-spacing: 1.8px; }
  .nav-left a { gap: 10px; }
  .nav-right { gap: 8px; }
}
@media (max-width: 400px) {
  .nav-tag { font-size: 0.52rem; letter-spacing: 1.2px; }
  .nav-eye { width: 26px; height: 26px; }
}

.nav-links { display: none; }
@media (min-width: 960px) { .nav-links { display: flex; } }

.nav-link {
  position: relative;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 10px 16px;
  transition: color var(--t-base);
}
.nav-link:hover { color: var(--text); }
.nav-link.active { color: var(--orange); }
.nav-right { display: flex; align-items: center; gap: 12px; }

.btn-primary {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--orange);
  padding: 10px 22px;
  border: none;
  cursor: pointer;
  transition: background var(--t-fast);
}
.btn-primary:hover { background: var(--orange-2); }
.btn-ghost {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  background: transparent;
  border: 1px solid var(--line-3);
  padding: 10px 22px;
  cursor: pointer;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.btn-ghost:hover { color: var(--text); border-color: var(--orange-mid); }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px 6px;
  cursor: pointer;
}
@media (min-width: 960px) { .nav-toggle { display: none; } }
.nav-toggle span { width: 22px; height: 1px; background: var(--text-dim); transition: all var(--t-fast); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  z-index: 99;
  flex-direction: column;
  background: rgba(7, 7, 11, 0.97);
  border-bottom: 1px solid var(--line);
  padding: 10px var(--pad) 20px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--orange); }

.h1, .h2, .chapter h1, .chapter .ch-title {
  font-family: var(--mono);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.eyebrow {
  font-size: 0.68rem;
  letter-spacing: 4px;
  color: var(--orange);
}
.eyebrow .num { color: var(--text-muted); }

.band {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--navy-deep) 60%, var(--bg-deep) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.btn-primary {
  font-weight: 700;
  letter-spacing: 2.5px;
  padding: 14px 30px;
  position: relative;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-base);
}
.btn-primary:hover {
  background: var(--orange-2);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -8px var(--orange-glow);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  font-weight: 500;
  padding: 14px 28px;
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}
.btn-ghost:hover { background: rgba(232, 90, 62, 0.06); }

.svc {
  transition: background var(--t-base), transform var(--t-base), border-color var(--t-base);
}
.svc:hover { transform: translateY(-3px); }
.svc h3 { font-weight: 700; letter-spacing: -0.01em; }

.stat .val { font-weight: 800; letter-spacing: -0.02em; }

[data-lens] { position: relative; }

.lens {
  position: absolute;
  left: 0; top: 0;
  width: var(--lens-size, 170px);
  height: var(--lens-size, 170px);
  margin-left: calc(var(--lens-size, 170px) / -2);
  margin-top:  calc(var(--lens-size, 170px) / -2);
  transform: translate(var(--lx, -9999px), var(--ly, -9999px)) scale(var(--lens-scale, 0.6));
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
  opacity: var(--lens-on, 0);
  transition: opacity 0.35s ease, transform 0.18s cubic-bezier(0.16, 1, 0.3, 1);

  background: radial-gradient(circle at 50% 50%,
              rgba(232, 90, 62, 0.12) 0%,
              rgba(232, 90, 62, 0.06) 58%,
              transparent 72%);
  box-shadow:
    inset 0 0 0 1px var(--orange-mid),
    inset 0 0 22px rgba(232, 90, 62, 0.18),
    0 0 30px rgba(232, 90, 62, 0.12);
  backdrop-filter: saturate(1.5) brightness(1.22) contrast(1.06);
  -webkit-backdrop-filter: saturate(1.5) brightness(1.22) contrast(1.06);
}

.lens::before, .lens::after {
  content: '';
  position: absolute;
  background: var(--orange-mid);
}
.lens::before { left: 50%; top: 6px; bottom: 6px; width: 1px; transform: translateX(-50%); }
.lens::after  { top: 50%; left: 6px; right: 6px; height: 1px; transform: translateY(-50%); }

[data-lens].lens-active .svc-grid { transition: opacity var(--t-base); opacity: 0.82; }

@media (hover: none), (prefers-reduced-motion: reduce) {
  .lens { display: none; }
  [data-lens].lens-active .svc-grid { opacity: 1; }
}

.eyebrow { color: var(--text-muted); }
.eyebrow .num { color: var(--orange); }

.ci-icon { color: var(--text-muted); opacity: 0.8; }
.ci:hover .ci-icon { color: var(--orange); opacity: 1; }

.diamond { background: var(--text-faint); }
.eyebrow .diamond { background: var(--orange); }
.prod-feats .diamond { background: var(--line-3); }
.ticker .diamond { background: var(--line-3); }

.prose p strong, .about-copy p strong, .lede strong { color: var(--text); }

#hud-section { color: var(--text-dim); }

.btn-primary:hover {
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.85),
              0 0 0 1px rgba(232, 90, 62, 0.35);
}
.core-glow {
  background:
    radial-gradient(circle at 50% 50%, rgba(232,90,62,0.06) 0%, transparent 46%),
    radial-gradient(circle at 50% 50%, rgba(7,7,11,0.74) 0%, transparent 62%);
}
.hero-shade {
  background:
    linear-gradient(180deg, rgba(7,7,11,0.70) 0%, rgba(44,62,80,0.16) 32%,
                            rgba(7,7,11,0.30) 62%, rgba(7,7,11,0.92) 100%);
}

#hero::before {
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); width: 100%; }
section { position: relative; padding: clamp(80px, 12vh, 140px) 0; }
.band { background: var(--bg-deep); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.divider { display: none; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.eyebrow .num { color: var(--orange); }
.eyebrow .dash { display: none; }
.h1 {
  font-size: clamp(2.3rem, 5.4vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.04;
  text-transform: uppercase;
}
.h1 .o { color: var(--orange); }
.h2 {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.06;
  text-transform: uppercase;
}
.h2 .o { color: var(--orange); }
.lede { font-size: 1.02rem; color: var(--text-dim); max-width: 520px; }

.vf { position: absolute; inset: 0; pointer-events: none; }
.vf i {
  position: absolute;
  width: 18px; height: 18px;
  border: 1px solid var(--line-3);
  transition: border-color 0.5s ease;
}
.vf i:nth-child(1) { top: 90px;  left: calc(var(--pad) * 0.55);  border-right: none; border-bottom: none; }
.vf i:nth-child(2) { top: 90px;  right: calc(var(--pad) * 0.55); border-left: none;  border-bottom: none; }
.vf i:nth-child(3) { bottom: 48px; left: calc(var(--pad) * 0.55);  border-right: none; border-top: none; }
.vf i:nth-child(4) { bottom: 48px; right: calc(var(--pad) * 0.55); border-left: none;  border-top: none; }
section.in-focus .vf i { border-color: var(--orange-mid); }

.diamond {
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--orange);
  transform: rotate(45deg);
  flex-shrink: 0;
}

#hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  padding: 0;
  overflow: hidden;
  background: var(--bg-deep);
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: var(--bg-deep);
}
@media (hover: hover) and (pointer: fine) {

  @media (min-width: 900px) { #hero-canvas { display: none; } }
}

#hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,7,11,0.62) 0%, rgba(7,7,11,0.18) 30%,
                            rgba(7,7,11,0.18) 62%, rgba(7,7,11,0.88) 100%);
  pointer-events: none;
}
.hero-grain {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,0.014) 0 1px, transparent 1px 3px);
  pointer-events: none;
}

.hero-vf i {
  position: absolute;
  width: 34px; height: 34px;
  border: 1px solid var(--orange-mid);
}
.hero-vf i:nth-child(1) { top: calc(var(--nav-h) + 26px); left: 26px;  border-right: none; border-bottom: none; }
.hero-vf i:nth-child(2) { top: calc(var(--nav-h) + 26px); right: 26px; border-left: none;  border-bottom: none; }
.hero-vf i:nth-child(3) { bottom: calc(var(--hud-h) + 26px); left: 26px;  border-right: none; border-top: none; }
.hero-vf i:nth-child(4) { bottom: calc(var(--hud-h) + 26px); right: 26px; border-left: none;  border-top: none; }

.hero-frame {
  position: absolute;
  top: calc(var(--nav-h) + 34px);
  right: 74px;
  font-family: var(--mono-tech);
  font-size: 0.62rem;
  letter-spacing: 2px;
  color: var(--text-muted);
}
@media (max-width: 720px) {
  .hero-frame { display: none; }
  .chapter .kicker { letter-spacing: 3px; }
}

.hero-stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0 var(--pad);
}
.chapter { grid-area: 1 / 1; max-width: 900px; }
.chapter .kicker {
  font-family: var(--mono);
  font-size: clamp(0.62rem, 1.4vw, 0.78rem);
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}
.chapter h1, .chapter .ch-title {
  font-size: clamp(2.3rem, 7.2vw, 5.6rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.02;
  text-transform: uppercase;
  text-shadow: 0 2px 40px rgba(7,7,11,0.65);
}
.chapter .ch-title .o { color: var(--orange); }
.chapter .sub {
  margin-top: 20px;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--text-dim);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.chapter .ch-actions {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.js .chapter { opacity: 0; visibility: hidden; }
.js .chapter:first-child { opacity: 1; visibility: visible; }
html:not(.js) .chapter { display: none; }
html:not(.js) .chapter.ch-final { display: block; }

.hero-cue {
  position: absolute;
  bottom: calc(var(--hud-h) + 30px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-dim);
}
.hero-cue .line {
  width: 1px; height: 44px;
  background: linear-gradient(180deg, var(--orange), transparent);
  animation: cue-drop 1.8s ease-in-out infinite;
}
@keyframes cue-drop {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.page-hero {
  padding-top: calc(var(--nav-h) + 70px);
  padding-bottom: 60px;
}
.page-hero .lede { max-width: 620px; margin-top: 22px; }

.aperture-stage {
  position: relative;
  width: 148%;
  max-width: none;
  margin-inline-start: auto;
  margin-inline-end: -26%;
  aspect-ratio: 940 / 1080;
  pointer-events: none;

  -webkit-mask-image:
    radial-gradient(closest-side circle at 50% 50%,
      #000 46%, rgba(0,0,0,0.62) 68%, rgba(0,0,0,0.18) 86%, transparent 100%);
  mask-image:
    radial-gradient(closest-side circle at 50% 50%,
      #000 46%, rgba(0,0,0,0.62) 68%, rgba(0,0,0,0.18) 86%, transparent 100%);
}
.aperture-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.aperture-veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, var(--bg) 0%, rgba(10,10,15,0.45) 14%, transparent 34%);
}
@media (max-width: 900px) {

  .aperture-stage {
    width: 112%;
    margin-inline: auto;
    margin-inline-end: -6%;
  }
}

.page-hero--eye { padding-bottom: 40px; overflow: hidden; }
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .page-hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .eye-stage { order: -1; min-height: 300px !important; }
}

.eye-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;

  --eye-x: 0px;
  --eye-y: 0px;
}

.eye-stage .iris {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(232, 90, 62, 0.14);
  transform: translate(-50%, -50%);
  animation: iris-breathe 6s ease-in-out infinite;
}
.eye-stage .iris.r1 { width: 290px; height: 290px; animation-delay: 0s; }
.eye-stage .iris.r2 { width: 370px; height: 370px; border-color: rgba(232, 90, 62,0.09); animation-delay: 1.2s; }
.eye-stage .iris.r3 { width: 450px; height: 450px; border-color: rgba(232, 90, 62,0.05); animation-delay: 2.4s; }
@keyframes iris-breathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1);    opacity: 1; }
  50%      { transform: translate(-50%, -50%) scale(1.035); opacity: 0.55; }
}

.eye-ping {
  position: absolute;
  top: 50%; left: 50%;
  width: 290px; height: 290px;
  border-radius: 50%;
  border: 1px solid rgba(232, 90, 62, 0.25);
  transform: translate(-50%, -50%) scale(0.9);
  animation: eye-ping 5s cubic-bezier(0.2, 0.6, 0.4, 1) infinite;
}
@keyframes eye-ping {
  0%   { transform: translate(-50%, -50%) scale(0.9);  opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(1.7);  opacity: 0; }
}

.eye-ticks {
  position: absolute;
  top: 50%; left: 50%;
  width: 450px; height: 450px;
  transform: translate(-50%, -50%);
  animation: eye-ticks-rotate 90s linear infinite;
}
@keyframes eye-ticks-rotate { to { transform: translate(-50%, -50%) rotate(360deg); } }
.eye-ticks i {
  position: absolute;
  top: 0; left: 50%;
  width: 1px; height: 10px;
  background: rgba(232, 90, 62, 0.3);
  transform-origin: 0.5px 225px;
}
.eye-ticks i:nth-child(1) { transform: rotate(0deg); }
.eye-ticks i:nth-child(2) { transform: rotate(45deg); }
.eye-ticks i:nth-child(3) { transform: rotate(90deg); }
.eye-ticks i:nth-child(4) { transform: rotate(135deg); }
.eye-ticks i:nth-child(5) { transform: rotate(180deg); }
.eye-ticks i:nth-child(6) { transform: rotate(225deg); }
.eye-ticks i:nth-child(7) { transform: rotate(270deg); }
.eye-ticks i:nth-child(8) { transform: rotate(315deg); }

.eye-crosshair { position: absolute; background: rgba(232, 90, 62, 0.07); }
.eye-crosshair.h { left: 0; right: 0; top: 50%; height: 1px; }
.eye-crosshair.v { top: 0; bottom: 0; left: 50%; width: 1px; }

.eye-img {
  position: relative;
  z-index: 2;
  width: min(280px, 58vw);
  filter: drop-shadow(0 0 40px rgba(232, 90, 62, 0.18));
  translate: var(--eye-x) var(--eye-y);
  transition: translate 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  animation: eye-blink 7s ease-in-out infinite;
}
@keyframes eye-blink {
  0%, 93%, 100% { transform: scaleY(1); }
  95.5%         { transform: scaleY(0.05); }
  97%           { transform: scaleY(1); }
}

@media (prefers-reduced-motion: reduce) {
  .eye-stage .iris, .eye-ping, .eye-ticks, .eye-img { animation: none; }
  .eye-img { translate: none; transition: none; }
}
.page-hero-meta {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 3px;
  color: var(--text-faint);
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  direction: ltr;
}
.page-hero-meta .diamond { width: 4px; height: 4px; opacity: 0.5; }

.crumb {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  transition: color var(--t-fast);
}
.crumb:hover { color: var(--orange); }
.crumb::before { content: '←'; color: var(--orange); }

.ticker-bar {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-deep);
  padding: 13px 0;
  direction: ltr;
}
.ticker { display: flex; width: max-content; animation: ticker-run 36s linear infinite; }
.ticker span {
  display: flex;
  align-items: center;
  gap: 26px;
  padding-right: 26px;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.ticker .diamond { width: 4px; height: 4px; }
@keyframes ticker-run { to { transform: translateX(-50%); } }

.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: clamp(40px, 7vh, 70px);
}
.sec-link {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--line-2);
  padding: 8px 16px;
  transition: all var(--t-fast);
  align-self: flex-end;
}
.sec-link:hover { color: var(--orange); border-color: var(--orange); }

.split-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 860px) { .split-2 { grid-template-columns: 1fr; gap: 44px; } }
.prose p {
  color: var(--text-dim);
  line-height: 1.9;
  margin-bottom: 18px;
  font-size: 0.96rem;
  max-width: 640px;
}
.prose p strong { color: var(--orange); font-weight: 500; }
.prose p:first-of-type { color: var(--text); font-size: 1.05rem; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 700px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }
.stat-cell { background: var(--bg); padding: 22px 20px; }
.stat-cell .n {
  font-family: var(--mono);
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--orange);
  line-height: 1;
  direction: ltr;
  display: inline-block;
}
.stat-cell .l {
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}

.cell-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 700px) { .cell-grid { grid-template-columns: 1fr !important; } }
.cell {
  background: var(--bg);
  padding: 22px 20px;
  position: relative;
  transition: background var(--t-fast);
}
.band .cell { background: var(--bg-deep); }
.cell::before, .cell::after {
  content: '';
  position: absolute;
  width: 10px; height: 10px;
  border-color: var(--orange);
  border-style: solid;
  opacity: 0;
  transition: opacity var(--t-base);
}
.cell::before { top: 6px; left: 6px; border-width: 1.5px 0 0 1.5px; }
.cell::after { bottom: 6px; right: 6px; border-width: 0 1.5px 1.5px 0; }
.cell:hover { background: var(--surface); }
.cell:hover::before, .cell:hover::after { opacity: 1; }
.cell-label {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.cell-title { font-size: 0.92rem; font-weight: 600; color: var(--text); line-height: 1.35; }
.cell-body { font-size: 0.8rem; color: var(--text-muted); line-height: 1.7; margin-top: 8px; }

.founders {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 700px) { .founders { grid-template-columns: 1fr; } }
.founder {
  background: var(--bg-deep);
  padding: 18px 16px;
  position: relative;
  transition: background var(--t-fast);
}
.founder::before, .founder::after {
  content: '';
  position: absolute;
  width: 10px; height: 10px;
  border-color: var(--orange);
  border-style: solid;
  opacity: 0;
  transition: opacity var(--t-base);
}
.founder::before { top: 6px; left: 6px; border-width: 1.5px 0 0 1.5px; }
.founder::after { bottom: 6px; right: 6px; border-width: 0 1.5px 1.5px 0; }
.founder:hover { background: var(--surface); }
.founder:hover::before, .founder:hover::after { opacity: 1; }
.founder-role {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 7px;
}
.founder-name { font-size: 0.88rem; font-weight: 600; color: var(--text); }

button.founder {
  display: block;
  width: 100%;
  text-align: inherit;
  font: inherit;
  color: inherit;
  border: none;
  cursor: pointer;
  appearance: none;
}
.founder-more {
  display: block;
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity var(--t-base), transform var(--t-base);
}
.founder:hover .founder-more,
.founder:focus-visible .founder-more { opacity: 1; transform: none; }

dialog.bio {

  margin: auto;
  padding: 0;
  border: none;
  background: transparent;
  width: min(620px, calc(100vw - 32px));
  max-height: min(86vh, 780px);
  color: var(--text);

  overflow: hidden;
}
dialog.bio::backdrop {
  background: rgba(4, 4, 8, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.bio-inner {
  position: relative;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-deep) 100%);
  border: 1px solid var(--line-2);
  border-top: 2px solid var(--orange);
  padding: 52px clamp(24px, 5vw, 46px) 36px;

  max-height: min(86vh, 780px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.bio-inner::-webkit-scrollbar { width: 4px; }
.bio-inner::-webkit-scrollbar-track { background: transparent; }
.bio-inner::-webkit-scrollbar-thumb { background: var(--line-3); }
.bio-inner::-webkit-scrollbar-thumb:hover { background: var(--orange-mid); }
.bio-inner { scrollbar-width: thin; scrollbar-color: var(--line-3) transparent; }

.bio-inner { scroll-padding-top: 40px; }
dialog.bio[open] { animation: bio-in 0.28s cubic-bezier(0.16, 1, 0.3, 1); }
@keyframes bio-in {
  from { opacity: 0; transform: translateY(14px) scale(0.985); }
  to   { opacity: 1; transform: none; }
}

.bio-close {
  position: absolute;
  z-index: 2;
  top: 12px; right: 14px;
  width: 34px; height: 34px;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.bio-close:hover { color: var(--orange); border-color: var(--line-3); }

.bio-role {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
}
.bio-name {
  font-family: var(--mono);
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 8px 0 4px;
}
.bio-div {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.bio-head {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.bio-body p {
  margin-top: 14px;
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--text-dim);
}

@media (max-width: 560px) {
  .bio-inner { padding: 34px 20px 28px; }
}

.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (min-width: 640px)  { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .svc-grid { grid-template-columns: repeat(4, 1fr); } }
.svc {
  position: relative;
  background: var(--bg);
  padding: 26px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  min-height: 230px;
  transition: background var(--t-base);
}
.svc:hover { background: var(--surface); }
.svc::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow);
}
.svc:hover::after { transform: scaleX(1); }
.svc-num {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 2px;
  color: var(--text-faint);
  direction: ltr;
}
.svc:hover .svc-num { color: var(--orange); }
.svc h3 { font-size: 0.95rem; font-weight: 600; line-height: 1.35; }
.svc p { font-size: 0.8rem; line-height: 1.65; color: var(--text-muted); flex: 1; }

.svc-detail {
  display: grid;
  grid-template-columns: 64px 1fr 1.1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.svc-detail:last-child { border-bottom: none; }
.svc-detail-num {
  font-family: var(--mono);
  font-size: 1.4rem;
  color: var(--orange);
  opacity: 0.6;
  line-height: 1;
  padding-top: 4px;
  direction: ltr;
}
.svc-detail-head h3 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.svc-detail-head p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; }
.svc-detail-body h4 {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.scope-list { list-style: none; }
.scope-list li {
  font-size: 0.84rem;
  color: var(--text-dim);
  line-height: 1.65;
  padding: 6px 0 6px 20px;
  position: relative;
}
.scope-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 13px;
  width: 8px; height: 1.5px;
  background: var(--orange);
  opacity: 0.6;
}
@media (max-width: 1024px) {
  .svc-detail { grid-template-columns: 48px 1fr; }
  .svc-detail-body { grid-column: 2; }
}
@media (max-width: 780px) {
  .svc-detail { grid-template-columns: 1fr; gap: 16px; }
  .svc-detail-body { grid-column: 1; }
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 1024px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .process { grid-template-columns: 1fr; } }
.step { background: var(--bg); padding: 26px 22px; }
.step-n {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 3px;
  color: var(--orange);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  direction: ltr;
}

.step h4 { font-size: 0.92rem; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.step p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.7; }

.chip-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 20px; direction: ltr; justify-content: flex-start; }
.chip {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--line-2);
  padding: 4px 11px;
}

#stats { padding: clamp(60px, 9vh, 100px) 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (min-width: 800px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat {
  background: var(--bg-deep);
  padding: 34px 26px 30px;
  position: relative;
}
.stat .val {
  font-family: var(--mono-tech);
  font-size: clamp(2.2rem, 4.4vw, 3.2rem);
  color: var(--text);
  line-height: 1;
  direction: ltr;
  display: inline-block;
}
.stat .val .u { color: var(--orange); font-size: 0.55em; }
.stat .lbl {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.stat .diamond { position: absolute; top: 18px; right: 18px; opacity: 0.55; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (min-width: 800px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
.why {
  background: var(--bg-deep);
  padding: 30px 26px;
  display: flex;
  gap: 18px;
}
.why-idx {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 2px;
  color: var(--orange);
  padding-top: 5px;
  direction: ltr;
}
.why h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.why p { font-size: 0.86rem; color: var(--text-dim); }

.partners-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.partner:hover { background: var(--surface); color: var(--orange); }

.partner-deck { position: relative; }

.partner-page { display: none; }
.partner-page.is-active {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  animation: partner-in 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes partner-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
@media (max-width: 820px) { .partner-page.is-active { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 480px) { .partner-page.is-active { grid-template-columns: 1fr; } }

.partner-page.is-active {
  perspective: 1000px;
}

a.partner {
  --tx: 0deg; --ty: 0deg; --tz: 0px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 140px;
  padding: 24px 18px;
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(232,90,62,0.05) 0%, transparent 60%),
    var(--bg-deep);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  color: var(--text-dim);
  text-decoration: none;
  overflow: hidden;
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateX(var(--tx)) rotateY(var(--ty)) translateZ(var(--tz));
  transition: background var(--t-base), border-color var(--t-base),
              color var(--t-base), box-shadow var(--t-base),
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  animation: partner-float 7s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.55s);
}

@keyframes partner-float {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -5px; }
}

a.partner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,0.55) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
a.partner:hover::after { transform: translateX(120%); }

a.partner:hover,
a.partner:focus-visible {
  background: linear-gradient(160deg, #ffffff 0%, #e6eaf1 100%);
  border-color: transparent;
  color: #14141b;
  box-shadow: 0 22px 48px -18px rgba(0,0,0,0.75),
              0 0 0 1px rgba(255,255,255,0.06);
  animation-play-state: paused;
  --tz: 14px;
}
a.partner:active { --tz: 4px; }

.partner-logo {
  max-height: 42px;
  max-width: 100%;
  width: auto;
  object-fit: contain;

  filter: brightness(0) invert(1);
  opacity: 0.75;
  transition: filter var(--t-base), opacity var(--t-base);
}

a.partner:hover .partner-logo,
a.partner:focus-visible .partner-logo { filter: brightness(0); opacity: 1; }

a.partner:has(.partner-logo) .partner-name { display: none; }

.partner-name {
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: letter-spacing var(--t-base);
}
a.partner:hover .partner-name { letter-spacing: 3px; font-weight: 700; }

.partner-go {
  position: absolute;
  top: 12px; right: 14px;
  font-size: 0.82rem;
  color: #14141b;
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity var(--t-base), transform var(--t-base);
}
a.partner:hover .partner-go,
a.partner:focus-visible .partner-go { opacity: 0.5; transform: none; }

@media (hover: none), (prefers-reduced-motion: reduce) {
  a.partner { animation: none; transform: none; }
  a.partner::after { display: none; }
}

.partner-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 26px;
}
.partner-arrow {
  width: 42px; height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: 8px;
  color: var(--text-dim);
  font-size: 0.9rem;
  cursor: pointer;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.partner-arrow:hover:not(:disabled) { color: var(--orange); border-color: var(--orange-mid); }
.partner-arrow:disabled { opacity: 0.3; cursor: default; }
.partner-count {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.partner-count b { color: var(--text); font-weight: 700; }

.prod-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 1020px) { .prod-grid { grid-template-columns: 1fr; } }
.prod {
  background: var(--bg-deep);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: background var(--t-base);
}
.prod:hover { background: var(--surface); }
.prod-head { padding: 34px 30px 26px; position: relative; z-index: 2; }
.prod-head h3 { font-size: 1.9rem; font-weight: 800; letter-spacing: 0.03em; color: var(--text); line-height: 1; margin: 14px 0; }
.prod-head h3 .d { color: var(--orange); }
.prod-head p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.75; }
.prod .prod-diagram { margin: 0 30px; }
.prod .prod-feats { padding: 22px 30px 28px; margin-top: auto; }

.has-bg-video {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.section-bg-video {
  position: absolute;
  top: 50%; left: 50%;
  width: 100%; height: 100%;
  transform: translate(-50%, -50%) scale(1.04);
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  filter: saturate(0.9) contrast(1.05);
}
.section-bg-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background:
    linear-gradient(180deg, var(--bg-deep) 0%, rgba(7,7,11,0.78) 22%,
                            rgba(7,7,11,0.78) 78%, var(--bg-deep) 100%);
}
.has-bg-video > .wrap { position: relative; z-index: 2; }

.has-bg-video .process { position: relative; z-index: 2; }
.has-bg-video .step {
  background: rgba(10, 10, 15, 0.82);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.has-bg-video .why-grid { position: relative; z-index: 2; }
.has-bg-video .why {
  background: rgba(10, 10, 15, 0.86);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border-radius: 2px;
  padding: 18px 20px;
}

#why .section-bg-video { opacity: 0.62; }
@media (prefers-reduced-motion: reduce) {
  .section-bg-video { display: none; }
}

.core-band {
  position: relative;
  overflow: hidden;
  background: var(--bg-deep);
  min-height: min(92vh, 820px);
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(90px, 14vh, 150px) 0;
  isolation: isolate;
}
.core-video {
  position: absolute;
  top: 50%; left: 50%;
  width: 100%; height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;

  -webkit-mask-image: radial-gradient(ellipse 62% 62% at 50% 50%, #000 38%, transparent 78%);
          mask-image: radial-gradient(ellipse 62% 62% at 50% 50%, #000 38%, transparent 78%);
  animation: core-breathe 14s ease-in-out infinite;
}
@keyframes core-breathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%      { transform: translate(-50%, -50%) scale(1.07); }
}

.core-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, rgba(232, 90, 62,0.10) 0%, transparent 46%),
    radial-gradient(circle at 50% 50%, rgba(7,7,11,0.72) 0%, transparent 62%);
}
.core-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.core-copy .h2 { text-shadow: 0 2px 44px rgba(7,7,11,0.9); }
.core-lede {
  margin: 22px auto 0;
  max-width: 600px;
  color: var(--text-dim);
  font-size: 1.02rem;
  line-height: 1.85;
  text-shadow: 0 1px 26px rgba(7,7,11,0.9);
}
@media (max-width: 720px) {
  .core-band { min-height: 68vh; }
}

@media (prefers-reduced-motion: reduce) {
  .core-video { animation: none; }
}

.prod-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}
.prod-row:last-child { border-bottom: none; }
.prod-row.flip > .prod-row-copy { order: 2; }
@media (max-width: 860px) {
  .prod-row { grid-template-columns: 1fr; gap: 44px; padding: 40px 0; }
  .prod-row.flip > .prod-row-copy { order: 0; }
}
.prod-row-copy h3 { font-size: 2.2rem; font-weight: 800; letter-spacing: 0.03em; margin-bottom: 16px; }
.prod-row-copy h3 .d { color: var(--orange); }
.prod-row-copy .prose p { font-size: 0.92rem; }
.prod-row-copy .prod-feats { padding: 0; margin-top: 22px; }
.prod-row .prod-diagram { margin: 0; }

.prod-feats { list-style: none; }
.prod-feats li {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 1px;
  color: var(--text-dim);
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
}
.prod-feats li:last-child { border-bottom: none; }
.prod-feats .diamond { width: 4px; height: 4px; opacity: 0.7; }

.prod-diagram {
  border: 1px solid var(--line-2);
  background: rgba(7, 7, 11, 0.5);

  padding: 34px 22px 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prod-diagram svg { width: 100%; height: auto; display: block; overflow: visible; }

.dg-lane line, .dg-lane path,
line.dg-lane, path.dg-lane { stroke: var(--line-3); stroke-width: 1.25; fill: none; }
.dg-lane.pass line { stroke: var(--orange); stroke-opacity: 0.75; }
.dg-lane.drop line { stroke: var(--text-faint); stroke-dasharray: 3 4; }
.dg-x line { stroke: var(--orange); stroke-width: 1.6; stroke-linecap: round; }

.dg-plane { fill: var(--orange-dim); }
.dg-plane-edge { stroke: var(--orange); stroke-width: 1.4; stroke-opacity: 0.85; }
.dg-plane-text {
  font-family: var(--mono-tech);
  font-size: 9px; letter-spacing: 1.6px;
  fill: var(--orange); text-anchor: middle;
}
.dg-plane-text.vert { text-anchor: end; }

.dg-checks path {
  stroke: var(--op-green); stroke-width: 1.8; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
}
.dg-core circle, .dg-core rect { stroke: var(--orange); stroke-width: 1.3; fill: none; }
.dg-core .dg-core-pupil { fill: var(--orange); stroke: none; }
.dg-node rect, rect.dg-node { stroke: var(--text-muted); stroke-width: 1.2; fill: var(--bg-deep); }

.dg-label text, text.dg-label {
  font-family: var(--mono-tech);
  font-size: 8.5px; letter-spacing: 1.4px; fill: var(--text-muted);
}
text.dg-label.end { text-anchor: end; }
.dg-guard-text {
  font-family: var(--mono-tech);
  font-size: 8.5px; letter-spacing: 1.4px;
  fill: var(--text-dim); text-anchor: middle;
}
.dg-caption {
  font-family: var(--mono-tech);
  font-size: 8.5px; letter-spacing: 1.2px;
  fill: var(--text-muted);
  text-anchor: middle;
}

#contact .wrap { text-align: center; }
.contact-panel {
  position: relative;
  border: 1px solid var(--line-2);
  background: var(--bg-deep);
  padding: clamp(50px, 9vh, 90px) var(--pad);
  max-width: 880px;
  margin: 0 auto;
}
.contact-panel .vf i:nth-child(1) { top: -1px; left: -1px; border-color: var(--orange-mid); }
.contact-panel .vf i:nth-child(2) { top: -1px; right: -1px; border-color: var(--orange-mid); }
.contact-panel .vf i:nth-child(3) { bottom: -1px; left: -1px; border-color: var(--orange-mid); }
.contact-panel .vf i:nth-child(4) { bottom: -1px; right: -1px; border-color: var(--orange-mid); }
.contact-lede { color: var(--text-dim); max-width: 520px; margin: 18px auto 0; }
.contact-actions { margin-top: 36px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.contact-meta {
  margin-top: 38px;
  display: flex;
  justify-content: center;
  gap: 14px 34px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
}
.contact-meta .item { display: flex; align-items: center; gap: 9px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 44px; } }

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.ci {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 18px;
  background: var(--bg-deep);
  transition: background var(--t-fast);
}
.ci:hover { background: var(--surface); }
.ci-icon { width: 18px; height: 18px; color: var(--orange); opacity: 0.8; flex-shrink: 0; }
.ci-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.ci-label {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 3px;
}
.ci-val { font-size: 0.87rem; color: var(--text); }

.hq-panel {
  border: 1px solid var(--line-2);
  background: var(--surface);
  padding: 26px 24px;
  position: relative;
}
.hq-panel::before, .hq-panel::after {
  content: '';
  position: absolute;
  width: 12px; height: 12px;
  border-color: var(--orange);
  border-style: solid;
}
.hq-panel::before { top: -1px; left: -1px; border-width: 1.5px 0 0 1.5px; }
.hq-panel::after { bottom: -1px; right: -1px; border-width: 0 1.5px 1.5px 0; }
.hq-coords {
  font-family: var(--mono);
  font-size: 1.05rem;
  letter-spacing: 3px;
  color: var(--orange);
  margin: 14px 0 6px;
  direction: ltr;
}

.hq-plus {
  display: inline-block;
  margin-bottom: 10px;
  font-family: var(--mono-tech);
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  border-bottom: 1px dotted var(--line-3);
  transition: color var(--t-fast), border-color var(--t-fast);
}
.hq-plus:hover { color: var(--orange); border-color: var(--orange-mid); }

.hq-note { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; }

.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 700px) { .form-row { grid-template-columns: 1fr; } }
.fg { display: flex; flex-direction: column; gap: 7px; }
.fg label {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.fg input, .fg textarea, .fg select {
  background: var(--surface);
  border: 1px solid var(--line-2);
  color: var(--text);
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 300;
  outline: none;
  transition: border-color var(--t-fast), background var(--t-fast);
  resize: vertical;
}
.fg input:focus, .fg textarea:focus, .fg select:focus {
  border-color: var(--orange);
  background: var(--orange-dim);
}
.fg select option { background: var(--surface-2); }

.btn-send {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--orange);
  border: none;
  padding: 14px 32px;
  cursor: pointer;
  align-self: flex-start;
  margin-top: 6px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  transition: background var(--t-fast), box-shadow var(--t-fast);
}
.btn-send:hover { background: var(--orange-2); box-shadow: 0 0 24px var(--orange-glow); }

footer {
  border-top: 1px solid var(--line);
  background: var(--bg-deep);
  padding: 34px var(--pad) calc(34px + var(--hud-h));
}
.footer-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 13px; }
.footer-brand img { width: 26px; height: 26px; }
.footer-name { font-family: var(--mono); font-size: 0.74rem; letter-spacing: 3px; }
.footer-name span { color: var(--orange); }
.footer-tag { font-family: var(--mono); font-size: 0.56rem; letter-spacing: 3px; color: var(--text-muted); text-transform: uppercase; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a {
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--t-fast);
}
.footer-links a:hover { color: var(--orange); }
.footer-copy { font-family: var(--mono); font-size: 0.58rem; letter-spacing: 2px; color: var(--text-faint); text-align: right; }

#hud {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  height: var(--hud-h);
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  background: rgba(7, 7, 11, 0.92);
  border-top: 1px solid var(--line);

  font-family: var(--mono-tech);
  font-size: 0.62rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  direction: ltr;
}
.hud-left, .hud-right { display: flex; align-items: center; gap: 18px; }
.hud-coords { white-space: nowrap; }
.hud-coords .lat { color: var(--text-dim); }
#hud-section { color: var(--orange); display: flex; align-items: center; gap: 10px; white-space: nowrap; }

.hud-progress { display: flex; align-items: center; gap: 10px; }
#hud-pct { color: var(--text-dim); min-width: 36px; text-align: right; }
.hud-track { width: 90px; height: 2px; background: var(--line-2); }
#hud-bar { width: 0%; height: 100%; background: var(--orange); }
#hud-time { color: var(--text-dim); }
@media (max-width: 760px) {
  .hud-right #hud-time { display: none; }
  .hud-track { width: 54px; }
}

.js .reveal { opacity: 0; transform: translateY(26px); }
.js .reveal.in { opacity: 1; transform: none; transition: opacity 0.7s ease, transform 0.7s ease; }
.js .reveal.rd1.in { transition-delay: 0.08s; }
.js .reveal.rd2.in { transition-delay: 0.16s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}
