/* ============================================================
   STRUCTURE — AI FOR LOGISTICS
   Obsidian monolith. Pure black. White light. Nothing else.
   ============================================================ */

:root {
  --black: #000000;
  --ink: #050505;
  --surface: #0a0a0a;
  --elev: #101010;
  --white: #f4f3f0;
  --white-pure: #ffffff;
  --grey: rgba(244, 243, 240, 0.55);
  --grey-dim: rgba(244, 243, 240, 0.32);
  --hairline: rgba(255, 255, 255, 0.10);
  --hairline-strong: rgba(255, 255, 255, 0.18);
  --accent: #2fe6c8;
  --accent-soft: rgba(47, 230, 200, 0.5);
  --accent-glow: rgba(47, 230, 200, 0.14);
  --accent-dark: #0c9c86;
  --violet: #6e5bd4;
  --violet-glow: rgba(110, 91, 212, 0.12);
  --font-sans: "Archivo", sans-serif;
  --font-serif: "Instrument Serif", serif;
  --font-mono: "Fragment Mono", monospace;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-expo: cubic-bezier(0.87, 0, 0.13, 1);
  --pad: clamp(20px, 4vw, 64px);
}

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

html { background: var(--black); }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: var(--black); }

html { -webkit-tap-highlight-color: transparent; }

@media (pointer: fine) {
  body, a, button { cursor: none; }
}

a { color: inherit; text-decoration: none; }
em { font-style: normal; }
.serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; letter-spacing: 0; text-transform: none; }
.mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ============ NOISE / GRAIN ============ */
.noise {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 0.7s steps(6) infinite;
}
@keyframes grain {
  0% { transform: translate(0, 0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -2%); }
  80% { transform: translate(3%, 3%); }
  100% { transform: translate(-1%, 1%); }
}

/* ============ AURORA — colour atmosphere ============ */
.aurora {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.aurora::before, .aurora::after {
  content: "";
  position: absolute;
  width: 90vmax; height: 90vmax;
  border-radius: 50%;
  will-change: transform;
}
.aurora::before {
  background: radial-gradient(closest-side, var(--accent-glow), transparent 70%);
  top: -45vmax; left: -25vmax;
  animation: aurora-a 26s ease-in-out infinite alternate;
}
.aurora::after {
  background: radial-gradient(closest-side, var(--violet-glow), transparent 70%);
  bottom: -50vmax; right: -30vmax;
  animation: aurora-b 32s ease-in-out infinite alternate;
}
@keyframes aurora-a {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(18vw, 12vh) scale(1.25); }
}
@keyframes aurora-b {
  from { transform: translate(0, 0) scale(1.15); }
  to { transform: translate(-16vw, -14vh) scale(0.9); }
}
main, .footer { position: relative; z-index: 1; }

/* ============ CURSOR ============ */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 3000;
  border-radius: 50%;
  mix-blend-mode: difference;
  display: none;
}
@media (pointer: fine) {
  .cursor-dot, .cursor-ring { display: block; }
}
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  mix-blend-mode: normal;
  box-shadow: 0 0 12px var(--accent-soft);
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 40px; height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out), opacity 0.3s;
}
.cursor-ring.is-hover { width: 72px; height: 72px; }
.cursor-ring.is-down { width: 28px; height: 28px; }

/* ============ SCROLL PROGRESS ============ */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; z-index: 1500;
}
.scroll-progress span {
  display: block; height: 100%; width: 100%;
  background: linear-gradient(90deg, var(--accent), var(--violet));
  box-shadow: 0 0 10px var(--accent-soft);
  transform-origin: left;
  transform: scaleX(0);
}

/* ============ PRELOADER ============ */
.preloader {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: inset(0 0 0% 0);
}
.pre-center { text-align: center; }
.pre-logo {
  font-weight: 800;
  font-stretch: 125%;
  font-size: clamp(28px, 5vw, 56px);
  letter-spacing: 0.02em;
}
.pre-logo sup { font-size: 0.3em; font-weight: 400; vertical-align: super; }
.pre-word-wrap { height: 20px; overflow: hidden; margin-top: 14px; }
.pre-word {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--accent);
  display: block;
}
.pre-count {
  position: absolute;
  bottom: 32px; right: var(--pad);
  font-family: var(--font-mono);
  font-size: clamp(48px, 10vw, 120px);
  line-height: 1;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}
.pre-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
}
.pre-bar span {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--violet));
  box-shadow: 0 0 12px var(--accent-soft);
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px var(--pad);
  mix-blend-mode: difference;
  transition: transform 0.6s var(--ease-out);
}
.nav.nav-hidden { transform: translateY(-110%); }
.nav-logo {
  font-weight: 800;
  font-stretch: 125%;
  font-size: 17px;
  letter-spacing: 0.02em;
  color: var(--white-pure);
  white-space: nowrap;
}
.nav-logo sup { font-size: 0.45em; font-weight: 400; }
.nav-sep { font-weight: 300; margin: 0 8px; opacity: 0.5; }
.nav-product { font-weight: 500; font-stretch: 100%; letter-spacing: 0.18em; font-size: 13px; }
.nav-links {
  display: flex;
  gap: clamp(18px, 3vw, 44px);
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white-pure);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--white-pure);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-out);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.tag-new {
  font-size: 8px;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 2px 5px;
  border-radius: 100px;
  margin-left: 6px;
  vertical-align: middle;
  animation: blink-soft 2.4s infinite;
}
@keyframes blink-soft { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.burger {
  display: none;
  background: none; border: none;
  width: 40px; height: 32px;
  position: relative;
  z-index: 1101;
}
.burger span {
  position: absolute; left: 8px; right: 8px;
  height: 1.5px;
  background: var(--white-pure);
  transition: transform 0.45s var(--ease-out), top 0.45s var(--ease-out);
}
.burger span:nth-child(1) { top: 12px; }
.burger span:nth-child(2) { top: 19px; }
body.menu-open .burger span:nth-child(1) { top: 15px; transform: rotate(45deg); }
body.menu-open .burger span:nth-child(2) { top: 15px; transform: rotate(-45deg); }

/* ============ MOBILE MENU ============ */
.menu-overlay {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 990;
  display: flex;
  align-items: center;
  padding: var(--pad);
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
  transition: clip-path 0.8s var(--ease-expo), visibility 0s 0.8s;
}
body.menu-open .menu-overlay {
  clip-path: inset(0 0 0% 0);
  visibility: visible;
  transition: clip-path 0.8s var(--ease-expo);
}
.menu-inner { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.menu-link {
  font-weight: 800;
  font-stretch: 110%;
  font-size: clamp(40px, 9vw, 80px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  display: block;
  padding: 6px 0;
  border-bottom: 1px solid var(--hairline);
  transition: padding-left 0.4s var(--ease-out), opacity 0.3s;
}
.menu-link:hover { padding-left: 16px; }
.menu-link em {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  vertical-align: super;
  margin-right: 12px;
  color: var(--accent);
}
.menu-cta {
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--hairline-strong);
  border-radius: 100px;
  padding: 18px 28px;
  text-align: center;
}

/* ============ BUTTONS ============ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
  border: 1px solid var(--white);
  isolation: isolate;
  transition: color 0.45s var(--ease-out), border-color 0.45s;
}
.btn-label { position: relative; z-index: 2; transition: color 0.45s var(--ease-out); }
.btn-fill {
  position: absolute;
  inset: -2px;
  background: var(--white-pure);
  border-radius: 50%;
  transform: scale(0) translateY(60%);
  transition: transform 0.6s var(--ease-out);
  z-index: 1;
}
.btn:hover .btn-fill { transform: scale(2.5) translateY(0); }

.btn-solid { background: var(--white-pure); color: var(--black); border-color: var(--white-pure); }
.btn-solid .btn-fill { background: var(--black); }
.btn-solid:hover .btn-label { color: var(--white-pure); }
.btn-solid:hover { box-shadow: 0 0 44px var(--accent-glow), 0 0 12px var(--accent-glow); border-color: var(--accent-soft); }
.btn-ghost:hover { box-shadow: 0 0 32px var(--accent-glow); border-color: var(--accent-soft); }

.btn-ghost { background: transparent; color: var(--white); }
.btn-ghost:hover .btn-label { color: var(--black); }

.btn-nav { padding: 11px 22px; font-size: 10px; background: transparent; color: var(--white-pure); border-color: rgba(255,255,255,0.5); }
.btn-nav:hover .btn-label { color: var(--black); }

/* dark variants for inverted (white) sections */
.btn-dark { background: var(--black); color: var(--white-pure); border-color: var(--black); }
.btn-dark .btn-fill { background: var(--white-pure); }
.btn-dark:hover { border-color: var(--black); }
.btn-dark:hover .btn-label { color: var(--black); }
.btn-dark-ghost { background: transparent; color: var(--black); border-color: rgba(0,0,0,0.6); }
.btn-dark-ghost .btn-fill { background: var(--black); }
.btn-dark-ghost:hover .btn-label { color: var(--white-pure); }

.btn-xl { padding: 24px 56px; font-size: 14px; }

/* ============ SECTION SCAFFOLD ============ */
section { position: relative; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid var(--hairline);
  padding-top: 16px;
  margin-bottom: clamp(40px, 7vh, 80px);
  color: var(--grey);
}
.section-no { color: var(--accent); }
.h2 {
  font-weight: 800;
  font-stretch: 120%;
  font-size: clamp(40px, 6.5vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.h2 .serif { font-weight: 400; font-size: 0.92em; text-transform: none; }

/* ============ HERO ============ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--pad) 0;
  overflow: hidden;
}
#heroCanvas, #radarCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 60%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 60%, black 30%, transparent 75%);
  pointer-events: none;
}
.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 120% 90% at 50% 40%, transparent 40%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 5;
  padding-top: 16vh;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--grey);
  border: 1px solid var(--hairline);
  border-radius: 100px;
  padding: 8px 18px;
  margin-bottom: clamp(20px, 3vh, 36px);
  backdrop-filter: blur(6px);
  background: rgba(0,0,0,0.3);
}
.pulse-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  flex: none;
  animation: pulse-ring 2s var(--ease-out) infinite;
}
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 var(--accent-soft); }
  70% { box-shadow: 0 0 0 9px rgba(47,230,200,0); }
  100% { box-shadow: 0 0 0 0 rgba(47,230,200,0); }
}
.hero-title {
  font-weight: 850;
  font-stretch: 125%;
  font-size: clamp(40px, 12.2vw, 200px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin-left: -0.04em;
}
.hero-title .serif {
  font-weight: 400;
  font-size: 0.95em;
  color: var(--accent);
  text-shadow: 0 0 60px var(--accent-glow);
}
.hero-title-lh { font-size: clamp(30px, 7vw, 120px); }

.line { display: block; overflow: hidden; padding-bottom: 0.06em; margin-bottom: -0.06em; }
.line-inner { display: inline-block; transform: translateY(115%); will-change: transform; }

.hero-sub-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-top: clamp(28px, 5vh, 56px);
  flex-wrap: wrap;
}
.hero-sub {
  max-width: 480px;
  color: var(--grey);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-foot {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--hairline);
  margin-top: clamp(32px, 6vh, 64px);
  padding: 20px 0;
  color: var(--grey-dim);
}
.scroll-hint { display: flex; align-items: center; gap: 12px; }
.scroll-line {
  width: 1px; height: 36px;
  background: var(--hairline-strong);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--accent);
  animation: scroll-drip 1.8s var(--ease-expo) infinite;
}
@keyframes scroll-drip {
  0% { transform: translateY(-100%); }
  60%, 100% { transform: translateY(100%); }
}

/* ============ MARQUEE BANDS ============ */
.band { overflow: hidden; }
.band-invert {
  background: var(--white-pure);
  color: var(--black);
  padding: clamp(14px, 2vw, 24px) 0;
}
.marquee { overflow: hidden; white-space: nowrap; }
.marquee-track {
  display: inline-flex;
  will-change: transform;
}
.marquee-track span {
  font-weight: 800;
  font-stretch: 120%;
  font-size: clamp(18px, 2.6vw, 34px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  flex: none;
}

/* ============ MANIFESTO ============ */
.manifesto { padding: clamp(100px, 18vh, 220px) var(--pad); }
.manifesto-text {
  font-weight: 500;
  font-stretch: 105%;
  font-size: clamp(28px, 4.6vw, 68px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  max-width: 18em;
}
.manifesto-text .w { opacity: 0.13; display: inline-block; }
.manifesto-sig {
  margin-top: clamp(28px, 5vh, 48px);
  color: var(--grey);
  font-size: clamp(18px, 2vw, 26px);
}

/* ============ PROBLEM ============ */
.problem { padding: clamp(80px, 14vh, 180px) var(--pad); }
.problem .h2 { margin-bottom: clamp(48px, 8vh, 96px); max-width: 12em; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.problem-card {
  background: var(--black);
  padding: clamp(28px, 3.5vw, 56px);
  position: relative;
  overflow: hidden;
  transition: background 0.5s;
  will-change: transform;
  transform-style: preserve-3d;
}
.problem-card:hover { background: var(--surface); }
.problem-num {
  font-weight: 850;
  font-stretch: 125%;
  font-size: clamp(48px, 5.5vw, 92px);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.problem-small { font-size: 0.38em; font-weight: 500; margin-left: 6px; }
.problem-unit {
  display: block;
  color: var(--grey-dim);
  margin: 14px 0 18px;
}
.problem-card p { color: var(--grey); font-size: 15px; max-width: 30em; }
.card-scan {
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 14px var(--accent-soft);
  transition: left 0.9s var(--ease-out);
}
.problem-card:hover .card-scan { left: 140%; }

/* ============ CAPABILITIES (HORIZONTAL) ============ */
.caps { background: var(--black); }
.caps-pin {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 0 60px;
  overflow: hidden;
}
.caps-head { padding: 0 var(--pad); margin-bottom: clamp(32px, 5vh, 64px); }
.caps-head .section-head { margin-bottom: 28px; }
.caps-track {
  display: flex;
  gap: clamp(16px, 2vw, 28px);
  padding: 0 var(--pad);
  width: max-content;
  will-change: transform;
}
.cap-card {
  width: clamp(300px, 34vw, 460px);
  min-height: clamp(380px, 52vh, 520px);
  border: 1px solid var(--hairline);
  background: linear-gradient(160deg, var(--surface), var(--black) 60%);
  padding: clamp(24px, 2.4vw, 40px);
  display: flex;
  flex-direction: column;
  flex: none;
  position: relative;
  overflow: hidden;
  transition: border-color 0.5s, transform 0.6s var(--ease-out);
}
.cap-card:hover { border-color: var(--hairline-strong); transform: translateY(-8px); }
.cap-card::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(255,255,255,0.06), transparent 65%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.cap-card:hover::after { opacity: 1; }
.cap-top {
  display: flex;
  justify-content: space-between;
  color: var(--grey-dim);
  margin-bottom: 28px;
}
.cap-no { color: var(--accent); }
.cap-status { display: inline-flex; align-items: center; gap: 8px; }
.cap-status .pulse-dot { width: 5px; height: 5px; }
.cap-card h3 {
  font-weight: 800;
  font-stretch: 118%;
  font-size: clamp(26px, 2.6vw, 40px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: auto 0 16px;
}
.cap-card p { color: var(--grey); font-size: 14.5px; line-height: 1.65; }

/* capability mini-figures */
.cap-fig {
  height: clamp(90px, 12vh, 130px);
  border: 1px dashed var(--hairline);
  border-radius: 4px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.fq-line { height: 5px; border-radius: 3px; background: rgba(255,255,255,0.14); overflow: hidden; position: relative; }
.fq-line::after {
  content: ""; position: absolute; inset: 0;
  background: var(--white-pure);
  transform: translateX(-100%);
  animation: fq-type 3s var(--ease-out) infinite;
}
.fq-line:nth-child(2)::after { animation-delay: 0.35s; width: 75%; }
.fq-line:nth-child(3)::after { animation-delay: 0.7s; width: 50%; }
@keyframes fq-type { 0% { transform: translateX(-100%);} 45%, 80% { transform: translateX(0);} 100% { transform: translateX(101%);} }
.fq-stamp { position: absolute; right: 12px; bottom: 10px; color: var(--accent); font-size: 9px; }

.fig-dispatch { flex-direction: row; align-items: center; justify-content: space-between; }
.fd-node { width: 8px; height: 8px; border-radius: 50%; background: var(--white-pure); position: relative; z-index: 2; }
.fd-node:nth-child(2), .fd-node:nth-child(3) { opacity: 0.5; }
.fd-path {
  position: absolute; left: 24px; right: 24px; top: 50%;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.4) 0 6px, transparent 6px 12px);
  background-size: 24px 1px;
  animation: fd-flow 1.2s linear infinite;
}
@keyframes fd-flow { to { background-position: 24px 0; } }

.fi-row { display: flex; align-items: center; gap: 10px; }
.fi-row span:first-child { flex: 1; height: 5px; border-radius: 3px; background: rgba(255,255,255,0.14); }
.fi-ok { font-size: 10px; color: var(--white); opacity: 0; animation: fi-pop 3.6s infinite; }
.fi-row:nth-child(1) .fi-ok { animation-delay: 0.4s; }
.fi-row:nth-child(2) .fi-ok { animation-delay: 1.2s; }
.fi-row:nth-child(3) .fi-ok { animation-delay: 2s; }
@keyframes fi-pop { 0%, 10% { opacity: 0; transform: scale(0.4);} 16%, 85% { opacity: 1; transform: scale(1);} 100% { opacity: 0; } }

.fig-customs { flex-direction: row; align-items: center; justify-content: space-between; }
.fc-doc { width: 44%; display: flex; flex-direction: column; gap: 8px; }
.fc-doc span { height: 4px; background: rgba(255,255,255,0.18); border-radius: 2px; }
.fc-doc span:nth-child(2) { width: 70%; }
.fc-doc span:nth-child(3) { width: 45%; }
.fc-seal {
  border: 1px solid var(--white);
  padding: 8px 14px;
  font-size: 10px;
  border-radius: 2px;
  transform: rotate(-8deg);
  animation: fc-stamp 4s var(--ease-expo) infinite;
}
@keyframes fc-stamp {
  0%, 8% { opacity: 0; transform: rotate(-8deg) scale(2.4); }
  14%, 90% { opacity: 1; transform: rotate(-8deg) scale(1); }
  100% { opacity: 0; }
}

.fig-forecast { flex-direction: row; align-items: flex-end; gap: 6px; padding-bottom: 12px; }
.ff-bar {
  flex: 1;
  background: linear-gradient(to top, rgba(255,255,255,0.5), rgba(255,255,255,0.12));
  animation: ff-grow 2.8s var(--ease-out) infinite alternate;
  transform-origin: bottom;
  height: 100%;
}
.ff-bar:nth-child(1) { animation-delay: 0s; max-height: 30%; }
.ff-bar:nth-child(2) { animation-delay: 0.12s; max-height: 45%; }
.ff-bar:nth-child(3) { animation-delay: 0.24s; max-height: 38%; }
.ff-bar:nth-child(4) { animation-delay: 0.36s; max-height: 62%; }
.ff-bar:nth-child(5) { animation-delay: 0.48s; max-height: 55%; }
.ff-bar:nth-child(6) { animation-delay: 0.6s; max-height: 80%; }
.ff-bar:nth-child(7) { animation-delay: 0.72s; max-height: 95%; }
@keyframes ff-grow { from { transform: scaleY(0.55); } to { transform: scaleY(1); } }

.fig-leads { align-items: center; justify-content: center; }
.fl-ping {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--white-pure);
}
.fl-ping::after {
  content: "";
  position: absolute; inset: -2px;
  border-radius: 50%;
  border: 1px solid var(--white);
  animation: fl-ring 2.2s var(--ease-out) infinite;
}
.fl-ping:nth-child(1) { left: 22%; top: 30%; }
.fl-ping:nth-child(2) { left: 58%; top: 60%; animation-delay: 0.5s; }
.fl-ping:nth-child(3) { left: 78%; top: 26%; }
.fl-ping:nth-child(2)::after { animation-delay: 0.7s; }
.fl-ping:nth-child(3)::after { animation-delay: 1.4s; }
@keyframes fl-ring { from { transform: scale(1); opacity: 1; } to { transform: scale(4.5); opacity: 0; } }
.fl-count { position: absolute; right: 12px; bottom: 10px; color: var(--accent); font-size: 9px; }

.cap-card-end {
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  background: var(--black);
  border-style: dashed;
}
.cap-end-title {
  font-weight: 800;
  font-stretch: 118%;
  font-size: clamp(28px, 3vw, 44px) !important;
  text-transform: uppercase;
  line-height: 1.04 !important;
  margin: 0 !important;
}
.caps-progress {
  padding: 28px var(--pad) 0;
  color: var(--grey-dim);
  letter-spacing: 0.3em;
}

/* ============ LOADHAWK FEATURE (INVERTED) ============ */
.loadhawk-feat {
  background: var(--white-pure);
  color: var(--black);
}
.lh-inner { padding: clamp(80px, 14vh, 180px) var(--pad) clamp(60px, 10vh, 120px); }
.loadhawk-feat .section-head {
  border-top-color: rgba(0,0,0,0.15);
  color: rgba(0,0,0,0.5);
}
.lh-title-link { display: block; }
.lh-giant {
  font-weight: 850;
  font-stretch: 125%;
  font-size: clamp(34px, 11.5vw, 210px);
  white-space: nowrap;
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-left: -0.04em;
  transition: letter-spacing 0.8s var(--ease-out);
}
.lh-title-link:hover .lh-giant { letter-spacing: -0.01em; }
.lh-row {
  display: flex;
  justify-content: space-between;
  gap: clamp(32px, 5vw, 80px);
  margin-top: clamp(40px, 7vh, 80px);
  flex-wrap: wrap;
}
.lh-copy { max-width: 560px; }
.lh-lede { font-size: clamp(17px, 1.6vw, 22px); line-height: 1.6; color: rgba(0,0,0,0.8); }
.lh-sub { font-size: clamp(20px, 2.2vw, 30px); margin-top: 20px; color: var(--accent-dark); }
.lh-ctas { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.lh-facts {
  list-style: none;
  display: flex;
  flex-direction: column;
  min-width: min(380px, 100%);
}
.lh-facts li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid rgba(0,0,0,0.15);
}
.lh-facts li:last-child { border-bottom: 1px solid rgba(0,0,0,0.15); }
.lh-fact-num {
  font-weight: 850;
  font-stretch: 125%;
  font-size: clamp(40px, 4.5vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.lh-fact-num i { font-style: normal; font-size: 0.4em; font-weight: 500; margin-left: 4px; }
.lh-fact-label { color: rgba(0,0,0,0.5); text-align: right; max-width: 200px; font-size: 10px; }
.lh-marquee {
  border-top: 1px solid rgba(0,0,0,0.12);
  padding: clamp(12px, 1.6vw, 20px) 0;
}
.lh-marquee .marquee-track span {
  -webkit-text-stroke: 1px var(--black);
  color: transparent;
}

/* ============ IMPACT ============ */
.impact { padding: clamp(80px, 14vh, 180px) var(--pad); }
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.impact-cell {
  background: var(--black);
  padding: clamp(28px, 3vw, 52px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: clamp(200px, 28vh, 300px);
  justify-content: space-between;
  transition: background 0.5s;
  position: relative;
  overflow: hidden;
}
.impact-cell:hover { background: var(--surface); }
.impact-cell::before {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--violet));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s var(--ease-out);
}
.impact-cell:hover::before { transform: scaleX(1); }
.impact-num {
  font-weight: 850;
  font-stretch: 125%;
  font-size: clamp(44px, 5vw, 88px);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.impact-label { color: var(--grey); font-size: 14px; max-width: 16em; }

/* ============ PROCESS ============ */
.process { padding: clamp(80px, 14vh, 180px) var(--pad); }
.process-list { border-top: 1px solid var(--hairline); }
.process-row {
  display: grid;
  grid-template-columns: 120px 1fr 1.2fr;
  gap: clamp(20px, 4vw, 60px);
  align-items: baseline;
  padding: clamp(32px, 5vh, 56px) 0;
  border-bottom: 1px solid var(--hairline);
  position: relative;
  transition: padding-left 0.5s var(--ease-out);
}
.process-row::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--surface);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s var(--ease-out);
  z-index: -1;
}
.process-row:hover::before { transform: scaleY(1); }
.process-row:hover { padding-left: 24px; }
.process-no { color: var(--accent); font-size: 13px; }
.process-title {
  font-weight: 800;
  font-stretch: 118%;
  font-size: clamp(26px, 3.4vw, 52px);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.01em;
}
.process-copy { color: var(--grey); font-size: 15px; max-width: 36em; }

/* ============ AGENTS (LOADHAWK PAGE) ============ */
.agents { padding: clamp(80px, 14vh, 180px) var(--pad); }
.agents .h2 { margin-bottom: clamp(48px, 8vh, 96px); }
.agent-stack { display: flex; flex-direction: column; }
.agent-card {
  border-top: 1px solid var(--hairline);
  padding: clamp(24px, 3.5vh, 40px) 0;
  position: relative;
  transition: background 0.5s;
}
.agent-card:last-child { border-bottom: 1px solid var(--hairline); }
.agent-head {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: baseline;
  gap: clamp(16px, 3vw, 48px);
}
.agent-no { color: var(--accent); }
.agent-name {
  font-weight: 850;
  font-stretch: 125%;
  font-size: clamp(34px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  transition: -webkit-text-stroke 0.4s, color 0.4s, transform 0.6s var(--ease-out);
}
.agent-card:hover .agent-name { transform: translateX(16px); }
.agent-stat { color: var(--grey-dim); text-align: right; }
.agent-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.7s var(--ease-expo), opacity 0.5s;
  opacity: 0;
}
.agent-card:hover .agent-body, .agent-card.is-open .agent-body { max-height: 260px; opacity: 1; }
.agent-body p {
  color: var(--grey);
  max-width: 620px;
  padding-top: 22px;
  font-size: 15.5px;
}
.agent-meter {
  height: 2px;
  background: var(--hairline);
  margin-top: 22px;
  max-width: 620px;
  overflow: hidden;
}
.agent-meter span {
  display: block;
  height: 100%;
  width: var(--w, 80%);
  background: linear-gradient(90deg, var(--accent), var(--white-pure));
  box-shadow: 0 0 8px var(--accent-soft);
  transform: translateX(-101%);
  transition: transform 1.2s var(--ease-expo) 0.15s;
}
.agent-card:hover .agent-meter span, .agent-card.is-open .agent-meter span { transform: translateX(0); }
.agents-note {
  margin-top: clamp(36px, 6vh, 64px);
  font-size: clamp(20px, 2.4vw, 32px);
  color: var(--grey);
  max-width: 24em;
}
.agents-note::before {
  content: "✦ ";
  color: var(--accent);
}

/* ============ OPS FEED — live terminal ============ */
.opsfeed {
  flex: none;
  align-self: flex-end;
  margin-left: auto;
  width: 330px;
  border: 1px solid var(--hairline);
  background: rgba(5, 5, 5, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 6px;
  overflow: hidden;
}
.opsfeed-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid var(--hairline);
  color: var(--grey-dim);
  font-size: 9px;
}
.opsfeed-head .live {
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.opsfeed-head .live::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink-soft 1.4s infinite;
}
.opsfeed-body {
  padding: 10px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-height: 128px;
}
.opsfeed-line {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.06em;
  color: var(--grey);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.opsfeed-line .t { color: var(--grey-dim); margin-right: 8px; }
.opsfeed-line .ok { color: var(--accent); }

/* ============ PIPELINE (LOADHAWK PAGE) ============ */
.pipeline { padding: clamp(80px, 14vh, 180px) var(--pad); }
.pipeline .h2 { margin-bottom: clamp(48px, 8vh, 96px); }
.pipe-track {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 24px 0 0;
  flex-wrap: wrap;
  gap: 18px;
}
.pipe-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 2;
  color: var(--grey);
}
.pipe-step .mono { font-size: 9.5px; }
.pipe-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 1px solid var(--white);
  background: var(--black);
  transition: background 0.4s, box-shadow 0.4s;
}
.pipe-step:hover .pipe-dot { background: var(--accent); border-color: var(--accent); box-shadow: 0 0 18px var(--accent-soft); }
.pipe-human .pipe-dot { background: var(--accent); border-color: var(--accent); box-shadow: 0 0 14px var(--accent-soft); }
.pipe-human { color: var(--accent); }
.pipe-line {
  position: absolute;
  top: 29px; left: 0; right: 0;
  height: 1px;
  background: var(--hairline);
  z-index: 1;
}
.pipe-line span {
  display: block; height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--accent), var(--white-pure));
  transform: scaleX(0);
  transform-origin: left;
}
.pipe-runner {
  position: absolute;
  top: -3px; left: 0;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent), 0 0 4px var(--accent);
  z-index: 3;
}
.pipe-compare {
  display: flex;
  align-items: stretch;
  gap: 1px;
  margin-top: clamp(56px, 9vh, 100px);
  border: 1px solid var(--hairline);
  background: var(--hairline);
}
.pipe-cell {
  flex: 1;
  background: var(--black);
  padding: clamp(28px, 3.5vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pipe-cell-vs {
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  font-size: clamp(22px, 2.6vw, 36px);
  color: var(--grey-dim);
  padding: 0 clamp(16px, 2.5vw, 40px);
}
.pipe-cell-h { color: var(--grey-dim); }
.pipe-cell-num {
  font-weight: 850;
  font-stretch: 125%;
  font-size: clamp(56px, 8vw, 130px);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.pipe-cell-num i { font-style: normal; font-size: 0.3em; font-weight: 500; margin-left: 6px; }
.pipe-cell-sub { color: var(--grey); font-size: 14px; }

/* ============ GUARANTEE (INVERTED) ============ */
.guarantee { background: var(--white-pure); color: var(--black); }
.g-inner { padding: clamp(90px, 15vh, 200px) var(--pad); }
.guarantee .section-head { border-top-color: rgba(0,0,0,0.15); color: rgba(0,0,0,0.5); }
.g-giant {
  font-weight: 850;
  font-stretch: 125%;
  font-size: clamp(56px, 11vw, 190px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-left: -0.04em;
  font-variant-numeric: tabular-nums;
}
.g-sub-line { font-size: 0.55em; }
.g-giant .serif { text-transform: none; color: var(--accent-dark); }
.g-row {
  display: flex;
  justify-content: space-between;
  gap: clamp(32px, 5vw, 80px);
  margin-top: clamp(40px, 7vh, 80px);
  margin-bottom: clamp(40px, 7vh, 72px);
  flex-wrap: wrap;
}
.g-copy { max-width: 520px; font-size: clamp(16px, 1.5vw, 20px); line-height: 1.7; color: rgba(0,0,0,0.78); }
.g-list { list-style: none; display: flex; flex-direction: column; gap: 16px; color: rgba(0,0,0,0.65); font-size: 11px; }
.g-note { margin-top: 24px; color: rgba(0,0,0,0.45); font-size: 10px; }

/* ============ FIT ============ */
.fit { padding: clamp(80px, 14vh, 180px) var(--pad); }
.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.fit-cell {
  background: var(--black);
  padding: clamp(28px, 3vw, 48px);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  transition: background 0.5s;
}
.fit-cell:hover { background: var(--surface); }
.fit-num { color: var(--accent); }
.fit-cell p { font-size: clamp(17px, 1.6vw, 22px); line-height: 1.5; color: var(--grey); }
.fit-cell strong { color: var(--white); font-weight: 700; }

/* ============ FOOTER ============ */
.footer {
  padding: clamp(100px, 16vh, 220px) var(--pad) 0;
  position: relative;
  overflow: hidden;
}
.footer-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 4vh, 44px);
  margin-bottom: clamp(80px, 14vh, 160px);
  position: relative;
}
.footer-cta::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: min(80vw, 900px); height: min(80vw, 900px);
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, var(--accent-glow), var(--violet-glow) 50%, transparent 75%);
  pointer-events: none;
  z-index: -1;
}
.footer-eyebrow { color: var(--accent); letter-spacing: 0.3em; }
.footer-title {
  font-weight: 850;
  font-stretch: 125%;
  font-size: clamp(72px, 16vw, 260px);
  line-height: 0.88;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.footer-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-top: 1px solid var(--hairline);
  padding: clamp(40px, 6vh, 64px) 0;
}
.footer-col { display: flex; flex-direction: column; gap: 12px; font-size: 15px; color: var(--grey); }
.footer-h { color: var(--grey-dim); margin-bottom: 8px; }
.footer-col a { position: relative; width: fit-content; }
.footer-col a::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-out);
}
.footer-col a:hover { color: var(--white); }
.footer-col a:hover::after { transform: scaleX(1); transform-origin: left; }
.footer-giant {
  font-weight: 850;
  font-stretch: 125%;
  font-size: clamp(80px, 14.5vw, 280px);
  line-height: 0.75;
  letter-spacing: -0.02em;
  text-align: center;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.16);
  user-select: none;
  transform: translateY(18%);
}
.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid var(--hairline);
  color: var(--grey-dim);
  font-size: 10px;
  position: relative;
  background: var(--black);
}

/* ============ QUOTE ============ */
.quote-sec {
  padding: clamp(100px, 18vh, 220px) var(--pad);
  text-align: center;
  position: relative;
}
.quote-mark {
  font-size: clamp(80px, 12vw, 200px);
  line-height: 0.4;
  color: var(--accent);
  opacity: 0.85;
}
.quote-text {
  font-weight: 500;
  font-stretch: 105%;
  font-size: clamp(26px, 4vw, 56px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  max-width: 20em;
  margin: 0 auto;
}
.quote-text .w { opacity: 0.13; display: inline-block; }
.quote-attr { margin-top: clamp(24px, 4vh, 40px); color: var(--grey-dim); letter-spacing: 0.3em; }

/* ============ ABOUT ============ */
.about { padding: clamp(80px, 14vh, 180px) var(--pad); }
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 6vw, 100px);
  align-items: start;
}
.about-main .h2 { margin-bottom: clamp(28px, 5vh, 48px); }
.about-lede {
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.6;
  margin-bottom: 24px;
}
.about-lede strong, .about-copy strong { font-weight: 700; color: var(--white-pure); }
.about-copy { color: var(--grey); font-size: 16px; line-height: 1.75; }
.about-copy a { color: var(--accent); border-bottom: 1px solid var(--accent-soft); }
.about-facts {
  list-style: none;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--hairline);
}
.about-facts li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 14px;
  color: var(--grey);
}
.about-facts li span:last-child { text-align: right; }
.about-k { color: var(--accent); font-size: 10px; flex: none; }

/* ============ FAQ ============ */
.faq { padding: clamp(80px, 14vh, 180px) var(--pad); }
.faq .h2 { margin-bottom: clamp(40px, 7vh, 80px); }
.faq-list { border-top: 1px solid var(--hairline); max-width: 920px; }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: clamp(20px, 3vh, 30px) 0;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q {
  font-weight: 700;
  font-stretch: 110%;
  font-size: clamp(17px, 2vw, 26px);
  letter-spacing: -0.01em;
  transition: color 0.3s, transform 0.4s var(--ease-out);
}
.faq-item summary:hover .faq-q { color: var(--accent); transform: translateX(8px); }
.faq-x {
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--accent);
  flex: none;
  transition: transform 0.45s var(--ease-out);
}
.faq-item[open] .faq-x { transform: rotate(45deg); }
.faq-item p {
  color: var(--grey);
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 44em;
  padding: 0 0 26px;
}
.faq-item p a { color: var(--accent); border-bottom: 1px solid var(--accent-soft); }

/* ============ CONTACT FORM ============ */
.contact { padding: clamp(80px, 14vh, 180px) var(--pad); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.contact-copy {
  color: var(--grey);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
  margin-top: clamp(24px, 4vh, 40px);
  max-width: 26em;
}
.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: clamp(28px, 5vh, 48px);
  color: var(--grey-dim);
  letter-spacing: 0.18em;
}
.contact-meta .live-row { display: inline-flex; align-items: center; gap: 10px; color: var(--accent); }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 26px;
  border: 1px solid var(--hairline);
  background: linear-gradient(160deg, rgba(255,255,255,0.025), transparent 55%);
  padding: clamp(24px, 3vw, 48px);
  border-radius: 8px;
  backdrop-filter: blur(6px);
}
.hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.form-field { display: flex; flex-direction: column; gap: 10px; }
.form-field label { color: var(--accent); font-size: 9.5px; }
.form-field input,
.form-field select,
.form-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--hairline-strong);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 16px;
  padding: 10px 2px;
  border-radius: 0;
  outline: none;
  transition: border-color 0.4s, box-shadow 0.4s;
  -webkit-appearance: none;
  appearance: none;
}
.form-field select { cursor: pointer; }
.form-field select option { background: var(--ink); color: var(--white); }
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--grey-dim); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 1px 0 0 var(--accent);
}
.form-field textarea { resize: vertical; min-height: 90px; }
.form-submit { align-self: flex-start; }
.form-status { color: var(--accent); min-height: 1em; letter-spacing: 0.18em; }
.contact-form.is-sent .form-submit { pointer-events: none; opacity: 0.4; }

/* ============ REVEAL PRIMS ============ */
[data-fade] { opacity: 0; transform: translateY(40px); will-change: transform, opacity; }
.no-js [data-fade], .reduced [data-fade] { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .process-row { grid-template-columns: 70px 1fr; }
  .process-copy { grid-column: 2; }
  .agent-head { grid-template-columns: 70px 1fr; }
  .agent-stat { grid-column: 2; text-align: left; }
}
@media (max-width: 820px) {
  body { font-size: 15px; }
  .caps-pin { min-height: 0; padding: 80px 0 40px; }
  .caps-track {
    overflow-x: auto;
    width: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 20px;
  }
  .caps-track::-webkit-scrollbar { display: none; }
  .cap-card { width: 82vw; min-height: 420px; scroll-snap-align: center; }
  .caps-progress { display: none; }
  .caps-head::after {
    content: "SWIPE →";
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.3em;
    color: var(--accent);
    display: block;
    margin-top: 18px;
  }
  .nav { padding: 14px 20px; }
  .nav-links, .btn-nav { display: none; }
  .burger { display: block; }
  .problem-grid, .fit-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .impact-cell { min-height: 150px; padding: 22px; }
  .footer-meta { grid-template-columns: 1fr; gap: 40px; }
  .hero-content { padding-top: 13vh; }
  .hero-sub-row { flex-direction: column; align-items: stretch; margin-top: 24px; }
  .hero-sub { max-width: none; }
  .hero-ctas { width: 100%; }
  .hero-ctas .btn { flex: 1 1 auto; min-height: 54px; }
  .btn { padding: 15px 24px; }
  .btn-xl { padding: 20px 36px; font-size: 12px; width: 100%; }
  .pipe-compare { flex-direction: column; }
  .pipe-cell-vs { padding: 18px 0; }
  .pipe-track { gap: 14px 22px; justify-content: flex-start; }
  .pipe-line { display: none; }
  .hero-foot { padding: 16px 0; }
  .hero-foot-item:last-child { display: none; }
  .lh-fact-label { text-align: left; }
  .lh-facts { min-width: 100%; }
  .lh-ctas .btn { flex: 1 1 auto; justify-content: center; }
  .agent-body { max-height: none; opacity: 1; }
  .agent-meter span { transform: translateX(0); }
  .agent-head { row-gap: 8px; }
  .opsfeed { display: none; }
  .menu-overlay { padding-bottom: calc(var(--pad) + env(safe-area-inset-bottom)); }
  .menu-cta { min-height: 56px; display: flex; align-items: center; justify-content: center; }
  .section-head { margin-bottom: 32px; }
  .process-row:hover { padding-left: 0; }
  .footer-base { flex-direction: column; gap: 6px; }
  .noise { opacity: 0.035; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .form-submit { align-self: stretch; }
  .about-facts li span:last-child { text-align: right; font-size: 13px; }
  .contact-form { padding: 22px 18px; }
  .form-field input, .form-field select, .form-field textarea { font-size: 16px; min-height: 44px; }
  .quote-text { font-size: clamp(22px, 6.4vw, 32px); }

  /* --- compressed mobile rhythm --- */
  .h2 { font-size: clamp(30px, 9.4vw, 44px); }
  .manifesto, .quote-sec { padding: 72px var(--pad); }
  .problem, .impact, .process, .about, .faq, .contact,
  .agents, .pipeline, .fit { padding: 64px var(--pad); }
  .lh-inner { padding: 72px var(--pad) 56px; }
  .g-inner { padding: 72px var(--pad); }
  .footer { padding-top: 88px; }
  .footer-cta { margin-bottom: 72px; }
  .manifesto-text { font-size: clamp(24px, 6.8vw, 34px); }
  .manifesto-sig { margin-top: 24px; font-size: 17px; }
  .quote-attr { margin-top: 20px; }
  .problem .h2, .agents .h2, .pipeline .h2, .faq .h2 { margin-bottom: 40px; }
  .problem-card { padding: 24px 20px; }
  .problem-num { font-size: 44px; }
  .problem-unit { margin: 10px 0 12px; }
  .impact-num { font-size: 38px; }
  .impact-label { font-size: 13px; }
  .process-row { padding: 26px 0; grid-template-columns: 1fr; gap: 10px; }
  .process-no { font-size: 11px; }
  .process-title { font-size: 24px; }
  .agent-card { padding: 22px 0; }
  .agent-name { font-size: clamp(28px, 8.4vw, 40px); }
  .agent-body p { padding-top: 14px; font-size: 14.5px; }
  .agent-meter { margin-top: 14px; }
  .agents-note { margin-top: 32px; font-size: 18px; }
  .pipe-compare { margin-top: 44px; }
  .pipe-cell { padding: 22px 20px; }
  .pipe-cell-num { font-size: 52px; }
  .lh-row, .g-row { margin-top: 32px; gap: 28px; }
  .g-row { margin-bottom: 32px; }
  .lh-fact-num { font-size: 36px; }
  .lh-facts li { padding: 14px 0; }
  .fit-cell { min-height: 0; padding: 22px 20px; gap: 14px; }
  .fit-cell p { font-size: 16px; }
  .footer-giant { transform: translateY(10%); }
  .caps-head { margin-bottom: 24px; }
  .cap-card { min-height: 380px; padding: 20px; }
  .cap-fig { height: 80px; margin-bottom: 18px; }
  .hero-foot { margin-top: 28px; }
}

/* ============================================================
   LOADHAWK v2 — proof components
   Live load theater · call transcript · ROI · hiring trap
   ============================================================ */

/* ---------- 002 LIVE LOAD THEATER ---------- */
.theater { padding: clamp(80px, 14vh, 180px) var(--pad); }
.theater .h2 { margin-bottom: clamp(24px, 4vh, 40px); }
.theater-lede {
  color: var(--grey);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: clamp(36px, 6vh, 64px);
}
.theater-shell {
  border: 1px solid var(--hairline-strong);
  border-radius: 8px;
  background: linear-gradient(165deg, rgba(255,255,255,0.03), transparent 50%), var(--ink);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.theater-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 14px 22px;
  border-bottom: 1px solid var(--hairline);
  color: var(--grey-dim);
}
.theater-bar .mono { font-size: 10px; }
.th-clock { color: var(--white); font-variant-numeric: tabular-nums; }
.th-status { color: var(--accent); display: inline-flex; align-items: center; gap: 8px; }
.th-status.is-booked { color: var(--white); }
.th-pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  animation: blink-soft 1.2s infinite;
}
.theater-cols {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  min-height: 420px;
}
.theater-log {
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  overflow: hidden;
  justify-content: flex-end;
  position: relative;
}
.theater-log::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 70px;
  background: linear-gradient(to bottom, var(--ink), transparent);
  pointer-events: none;
  z-index: 2;
}
.th-line {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: var(--grey);
  display: flex;
  gap: 12px;
  align-items: baseline;
}
.th-line .t { color: var(--grey-dim); flex: none; font-variant-numeric: tabular-nums; }
.th-line .ag { color: var(--accent); flex: none; min-width: 92px; }
.th-line.th-final { color: var(--white); }
.th-line.th-final .ag { color: var(--white); }
.theater-board {
  border-left: 1px solid var(--hairline);
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.015);
}
.th-board-head {
  display: flex;
  justify-content: space-between;
  color: var(--grey-dim);
  font-size: 9.5px;
  margin-bottom: 14px;
}
.th-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 240px;
}
.th-list li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: baseline;
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--grey);
  opacity: 0;
  transform: translateX(12px);
  transition: opacity 0.5s, transform 0.5s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
}
.th-list li.in { opacity: 1; transform: none; }
.th-list li.th-top {
  border-color: var(--accent-soft);
  box-shadow: 0 0 24px var(--accent-glow);
  color: var(--white);
}
.th-list li .sc { color: var(--accent); }
.th-list li .rt { color: var(--white); }
.th-approve {
  margin-top: auto;
  width: 100%;
  padding: 17px 16px;
  border: 1px solid var(--hairline-strong);
  border-radius: 6px;
  background: transparent;
  color: var(--grey-dim);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.4s, color 0.4s, border-color 0.4s, box-shadow 0.4s;
}
.th-approve.armed {
  background: var(--white-pure);
  color: var(--black);
  border-color: var(--white-pure);
  animation: th-arm 1.6s ease-in-out infinite;
}
@keyframes th-arm {
  0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow); }
  50% { box-shadow: 0 0 36px 4px var(--accent-glow); }
}
.th-approve.booked {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--black);
  animation: none;
}
.th-board-note {
  margin-top: 12px;
  text-align: center;
  font-size: 8.5px;
  color: var(--grey-dim);
}
.theater-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 13px 22px;
  border-top: 1px solid var(--hairline);
}
.th-replay {
  background: none;
  border: none;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  padding: 6px 0;
}
.th-replay:hover { text-shadow: 0 0 18px var(--accent-soft); }
.th-effort { color: var(--grey-dim); font-size: 9.5px; }
.th-effort b { color: var(--white); font-weight: 400; }

.theater-compare {
  display: flex;
  align-items: stretch;
  gap: 1px;
  margin-top: clamp(40px, 7vh, 72px);
  border: 1px solid var(--hairline);
  background: var(--hairline);
}
.tc-cell {
  flex: 1;
  background: var(--black);
  padding: clamp(28px, 3.5vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tc-vs {
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  font-size: clamp(22px, 2.6vw, 36px);
  color: var(--grey-dim);
  padding: 0 clamp(16px, 2.5vw, 40px);
}
.tc-h { color: var(--grey-dim); }
.tc-num {
  font-weight: 850;
  font-stretch: 125%;
  font-size: clamp(56px, 8vw, 130px);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.tc-num i { font-style: normal; font-size: 0.3em; font-weight: 500; margin-left: 6px; }
.tc-sub { color: var(--grey); font-size: 14px; }

/* ---------- 004 THE CALL ---------- */
.thecall { padding: clamp(80px, 14vh, 180px) var(--pad); }
.thecall .h2 { margin-bottom: clamp(24px, 4vh, 40px); }
.transcript {
  border: 1px solid var(--hairline-strong);
  border-radius: 8px;
  max-width: 880px;
  overflow: hidden;
  background: linear-gradient(165deg, rgba(255,255,255,0.025), transparent 55%), var(--ink);
}
.tr-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 13px 20px;
  border-bottom: 1px solid var(--hairline);
  color: var(--grey-dim);
  font-size: 9.5px;
}
.tr-rec { display: inline-flex; align-items: center; gap: 8px; color: var(--accent); }
.tr-rec i {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink-soft 1.2s infinite;
}
.tr-body {
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.tr-line { max-width: 78%; }
.tr-carrier { align-self: flex-start; }
.tr-ai { align-self: flex-end; }
.tr-who {
  display: block;
  font-size: 9px;
  color: var(--grey-dim);
  margin-bottom: 7px;
}
.tr-ai .tr-who { color: var(--accent); }
.tr-line p {
  font-size: clamp(14.5px, 1.3vw, 16.5px);
  line-height: 1.6;
  color: var(--grey);
  border: 1px solid var(--hairline);
  border-radius: 3px;
  padding: 14px 18px;
}
.tr-ai p {
  color: var(--white);
  background: var(--accent-glow);
  border-color: rgba(47, 230, 200, 0.28);
}
.tr-you { color: var(--accent); }
.tr-chip {
  display: inline-block;
  margin-top: 9px;
  font-size: 8.5px;
  letter-spacing: 0.18em;
  color: var(--accent);
  border: 1px solid rgba(47, 230, 200, 0.35);
  border-radius: 100px;
  padding: 4px 10px;
}
.tr-foot {
  padding: 14px 20px;
  border-top: 1px solid var(--hairline);
  color: var(--grey-dim);
  font-size: 9px;
  text-align: center;
  letter-spacing: 0.18em;
}

/* ---------- 005 STACK STRIP ---------- */
.stack-strip {
  margin-top: clamp(56px, 9vh, 100px);
  border: 1px dashed var(--hairline-strong);
  border-radius: 8px;
  padding: clamp(28px, 3.5vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}
.stack-h { color: var(--grey-dim); font-size: 9.5px; letter-spacing: 0.3em; }
.stack-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
  color: var(--white);
  font-size: clamp(12px, 1.3vw, 15px);
  letter-spacing: 0.22em;
}
.stack-row i { color: var(--grey-dim); font-style: normal; }
.stack-note { color: var(--grey); font-size: clamp(17px, 1.8vw, 22px); }

/* ---------- 006 ROI CALCULATOR ---------- */
.roi { padding: clamp(80px, 14vh, 180px) var(--pad); }
.roi .h2 { margin-bottom: clamp(48px, 8vh, 96px); }
.roi-shell {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.roi-controls, .roi-results { background: var(--black); padding: clamp(28px, 3.5vw, 56px); }
.roi-field { margin-bottom: clamp(32px, 4vh, 48px); }
.roi-field label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  color: var(--accent);
  font-size: 10px;
  margin-bottom: 18px;
}
.roi-field output {
  font-family: var(--font-mono);
  font-size: clamp(20px, 2vw, 26px);
  color: var(--white);
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}
.roi-field input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 2px;
  background: var(--hairline-strong);
  border-radius: 2px;
  outline: none;
}
.roi-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--white-pure);
  border: none;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.12), 0 0 20px var(--accent-glow);
  transition: box-shadow 0.3s;
}
.roi-field input[type="range"]::-webkit-slider-thumb:hover { box-shadow: 0 0 0 6px rgba(255,255,255,0.16), 0 0 28px var(--accent-soft); }
.roi-field input[type="range"]::-moz-range-thumb {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--white-pure);
  border: none;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.12), 0 0 20px var(--accent-glow);
}
.roi-note { color: var(--grey-dim); font-size: 9px; line-height: 2; max-width: 34em; }
.roi-results { display: flex; flex-direction: column; }
.roi-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--hairline);
  color: var(--grey);
  font-size: 15px;
}
.roi-hrs { color: var(--grey-dim); font-size: 10px; }
.roi-val { color: var(--white); font-size: clamp(16px, 1.6vw, 20px); font-variant-numeric: tabular-nums; }
.roi-total { padding: clamp(24px, 3vh, 40px) 0 0; }
.roi-total-h { color: var(--grey-dim); font-size: 10px; display: block; margin-bottom: 10px; }
.roi-total-num {
  display: block;
  font-weight: 850;
  font-stretch: 125%;
  font-size: clamp(52px, 6.5vw, 104px);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.roi-mult { color: var(--accent); font-size: 10px; display: block; margin-top: 14px; line-height: 1.9; }
.roi-results .btn { margin-top: clamp(24px, 3.5vh, 40px); align-self: flex-start; }

/* ---------- 007 HIRING TRAP ---------- */
.hiretrap { padding: clamp(80px, 14vh, 180px) var(--pad); }
.hiretrap .h2 { margin-bottom: clamp(28px, 5vh, 48px); }
.trap-quote {
  font-size: clamp(20px, 2.8vw, 38px);
  line-height: 1.35;
  color: var(--grey);
  max-width: 28em;
  margin-bottom: clamp(48px, 8vh, 88px);
}
.trap-table { border: 1px solid var(--hairline); }
.trap-head, .trap-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 16px clamp(18px, 2.5vw, 32px);
  border-bottom: 1px solid var(--hairline);
}
.trap-head {
  color: var(--grey-dim);
  font-size: 10px;
  border-bottom-color: var(--hairline-strong);
  background: var(--surface);
}
.trap-head .trap-lh { color: var(--accent); }
.trap-row:last-child { border-bottom: none; }
.trap-row { transition: background 0.4s; }
.trap-row:hover { background: var(--surface); }
.trap-row span:first-child { color: var(--grey); font-size: 15px; }
.trap-row span:nth-child(2) { color: var(--grey-dim); font-size: 15px; }
.trap-row .trap-lh { color: var(--white); font-weight: 600; font-size: 15px; }
.trap-note {
  margin-top: clamp(32px, 5vh, 56px);
  font-size: clamp(19px, 2.2vw, 30px);
  color: var(--grey);
  max-width: 26em;
}
.trap-note::before { content: "✦ "; color: var(--accent); }

/* ---------- STICKY MOBILE CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 950;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--hairline-strong);
  transform: translateY(110%);
  transition: transform 0.55s var(--ease-out);
}
.sticky-cta.show { transform: none; }
.sticky-cta-note { color: var(--accent); font-size: 8.5px; line-height: 1.5; }
.sticky-cta .btn { flex: none; padding: 13px 22px; font-size: 10px; }

/* ---------- LOADHAWK v2 RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .hero-lh .opsfeed { display: none; }
}
@media (max-width: 820px) {
  .theater, .thecall, .roi, .hiretrap { padding: 64px var(--pad); }
  .theater .h2, .thecall .h2, .roi .h2, .hiretrap .h2 { margin-bottom: 24px; }
  .theater-lede { margin-bottom: 32px; }
  .theater-cols { grid-template-columns: 1fr; min-height: 0; }
  .theater-log { min-height: 280px; padding: 14px 16px; }
  .th-line { font-size: 9.5px; gap: 8px; }
  .th-line .ag { min-width: 72px; }
  .theater-board { border-left: none; border-top: 1px solid var(--hairline); }
  .th-list { min-height: 0; }
  .theater-bar { padding: 12px 16px; }
  .theater-foot { padding: 12px 16px; }
  .theater-compare { flex-direction: column; }
  .tc-vs { padding: 18px 0; }
  .tc-cell { padding: 22px 20px; }
  .tc-num { font-size: 52px; }
  .tr-line { max-width: 100%; }
  .tr-body { gap: 18px; }
  .roi-shell { grid-template-columns: 1fr; }
  .roi-results .btn { align-self: stretch; text-align: center; }
  .trap-quote { margin-bottom: 36px; }
  .trap-head { grid-template-columns: 1fr 1fr; }
  .trap-head span:first-child { display: none; }
  .trap-row { grid-template-columns: 1fr 1fr; row-gap: 6px; padding: 14px 16px; }
  .trap-row span:first-child { grid-column: 1 / -1; color: var(--white); font-size: 14px; }
  .trap-row span:nth-child(2), .trap-row .trap-lh { font-size: 13.5px; }
  .sticky-cta { display: flex; }
  .stack-strip { margin-top: 44px; padding: 22px 18px; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .line-inner { transform: none; }
  [data-fade] { opacity: 1; transform: none; }
}
