@font-face {
  font-family: "Geist";
  src: url("fonts/Geist-Variable.woff2") format("woff2-variations"),
       url("fonts/Geist-Variable.woff2") format("woff2");
  font-weight: 100 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Geist Mono";
  src: url("fonts/GeistMono-Variable.woff2") format("woff2-variations"),
       url("fonts/GeistMono-Variable.woff2") format("woff2");
  font-weight: 100 900; font-style: normal; font-display: swap;
}

/* =====================================================================
   AI-Flow · v0.3 · Landing tokens (carry-over from v0.2 sign-off)
   ===================================================================== */
:root {
  --navy-1000:#050B14; --navy-950:#070F1C; --navy-900:#0A1628; --navy-850:#0E1B30;
  --navy-800:#122139; --navy-700:#1A2D4A; --navy-600:#243A5C; --navy-500:#34507A;
  --navy-400:#5A7298; --navy-300:#8497B7; --navy-200:#B6C2D6; --navy-100:#DDE4EE; --navy-50:#F2F5FA;

  --blue-700:#0089A2; --blue-600:#00A3BC; --blue-500:#00B8D4; --blue-400:#2BCEE6;
  --blue-300:#6EDFF0; --blue-200:#A6ECF7;
  --blue-glow: 0 0 0 1px rgba(0,184,212,.45), 0 6px 30px -8px rgba(0,184,212,.45);

  --orange-600:#E85820; --orange-500:#FF6B35; --orange-400:#FF8557; --orange-300:#FFA17B;
  --orange-glow: 0 0 0 1px rgba(255,107,53,.55), 0 8px 28px -10px rgba(255,107,53,.55);

  --ok-500:#3DD68C;  --warn-500:#F2B244;  --err-500:#FF5C5C;

  --bg:        var(--navy-900);
  --bg-elev:   var(--navy-850);
  --bg-card:   var(--navy-800);
  --bg-sub:    var(--navy-950);
  --border:    rgba(132, 151, 183, 0.16);
  --border-strong: rgba(132, 151, 183, 0.30);
  --text:      #E7ECF3;
  --text-muted:#8497B7;
  --text-faint:#5A7298;

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

  --r-1:2px; --r-2:4px; --r-3:8px; --r-4:12px; --r-5:16px; --r-6:24px; --r-pill:999px;

  --dur-1:120ms; --dur-2:200ms; --dur-3:320ms; --dur-4:480ms; --dur-5:720ms;
  --ease-standard: cubic-bezier(.2,0,0,1);
  --ease-emphasized: cubic-bezier(.2,0,0,1.05);
  --ease-decelerate: cubic-bezier(0,0,.2,1);
  --ease-accelerate: cubic-bezier(.4,0,1,1);

  --shadow-1: 0 1px 0 rgba(0,0,0,.4);
  --shadow-2: 0 4px 16px -8px rgba(0,0,0,.5);
  --shadow-3: 0 10px 30px -12px rgba(0,0,0,.55), 0 2px 6px -2px rgba(0,0,0,.4);
  --shadow-4: 0 24px 60px -20px rgba(0,0,0,.65), 0 6px 12px -6px rgba(0,0,0,.4);

  --f-display: "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI";
  --f-body:    "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI";
  --f-mono:    "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --col: 1280px;
}

[data-theme="light"] {
  --bg:#F6F7FB; --bg-elev:#FFFFFF; --bg-card:#FFFFFF; --bg-sub:#EFF1F6;
  --border: rgba(10,22,40,0.10); --border-strong: rgba(10,22,40,0.18);
  --text:#0A1628; --text-muted:#4A5874; --text-faint:#8497B7;
  --shadow-2: 0 4px 16px -8px rgba(10,22,40,.18);
  --shadow-3: 0 10px 30px -12px rgba(10,22,40,.20), 0 2px 6px -2px rgba(10,22,40,.08);
  --shadow-4: 0 24px 60px -20px rgba(10,22,40,.22), 0 6px 12px -6px rgba(10,22,40,.10);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--f-body);
  font-size: 15px; line-height: 1.55;
  color: var(--text); background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
}
::selection { background: var(--blue-500); color: #001920; }

/* =====================================================================
   Layout
   ===================================================================== */
.wrap { max-width: var(--col); margin: 0 auto; padding: 0 var(--s-6); position: relative; }
@media (max-width: 720px) { .wrap { padding: 0 var(--s-5); } }

main { position: relative; overflow-x: clip; max-width: 100vw; }
.nav { max-width: 100vw; overflow: visible; }
.nav-inner { max-width: min(var(--col), 100vw); }

/* Section frame */
.sec {
  padding: var(--s-10) 0;
  position: relative;
}
.sec--tight { padding: var(--s-9) 0; }
@media (max-width: 720px) { .sec { padding: var(--s-9) 0; } .sec--tight { padding: var(--s-8) 0; } }

.sec-head {
  display: flex; flex-direction: column; gap: var(--s-3);
  margin-bottom: var(--s-7);
  max-width: 64ch;
}
.sec-head--center { margin-left: auto; margin-right: auto; text-align: center; align-items: center; }

.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-faint);
  display: inline-flex; align-items: center; gap: var(--s-2);
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue-500); }
.eyebrow--orange .dot { background: var(--orange-500); }

.sec-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0;
  color: var(--text);
  text-wrap: balance;
}
.sec-title em { font-style: normal; color: var(--blue-500); }

.sec-lede {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.4;
  letter-spacing: -0.012em;
  color: var(--text-muted);
  margin: 0;
  max-width: 60ch;
  text-wrap: pretty;
}

/* =====================================================================
   Nav + SubNav
   ===================================================================== */
.nav {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  background: color-mix(in oklab, var(--bg) 78%, transparent);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--s-4) var(--s-6);
  max-width: var(--col); margin: 0 auto;
  gap: var(--s-5);
}
@media (max-width: 720px) { .nav-inner { padding: var(--s-3) var(--s-5); } }

.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-display);
  font-weight: 600; font-size: 18px;
  letter-spacing: -0.025em;
  color: var(--text); text-decoration: none;
}
.logo-mark { width: 24px; height: 24px; color: var(--blue-500); overflow: visible; }
.logo-mark path { stroke-linecap: round; stroke-linejoin: round; fill: none; stroke: currentColor; stroke-width: 2.4; }

/* (epic e) Path drawing animation */
.logo-mark.is-drawing path {
  stroke-dasharray: var(--len, 60);
  stroke-dashoffset: var(--len, 60);
  animation: logo-draw 1.1s var(--ease-standard) forwards;
}
.logo-mark.is-drawing path:nth-child(2) { animation-delay: 0.6s; }
@keyframes logo-draw { to { stroke-dashoffset: 0; } }

.nav-actions { display: flex; align-items: center; gap: var(--s-3); }

.nav-cta {
  display: none;
}
@media (min-width: 880px) { .nav-cta { display: inline-flex; } }

.nav-meta {
  font-family: var(--f-mono);
  font-size: 11px; color: var(--text-faint);
  letter-spacing: 0.04em; text-transform: uppercase;
  display: none;
}
@media (min-width: 1024px) { .nav-meta { display: inline; } }

.subnav {
  border-top: 1px solid var(--border);
  overflow: hidden;
  max-width: 100vw;
}
.subnav-inner {
  max-width: var(--col); margin: 0 auto;
  padding: 6px var(--s-6);
  display: flex; gap: var(--s-2); overflow-x: auto; overflow-y: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
}
.subnav-inner::-webkit-scrollbar { display: none; }
@media (max-width: 720px) {
  .subnav-inner {
    padding: 6px var(--s-4);
    mask-image: linear-gradient(to right, transparent 0, black 14px, black calc(100% - 14px), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 14px, black calc(100% - 14px), transparent 100%);
  }
  .subnav__a { font-size: 10.5px; padding: 5px 9px; scroll-snap-align: start; }
}
.subnav__a {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-faint);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  transition: color var(--dur-2) var(--ease-standard),
              border-color var(--dur-2) var(--ease-standard),
              background var(--dur-2) var(--ease-standard);
  white-space: nowrap;
}
.subnav__a:hover { color: var(--text); }
.subnav__a.is-active {
  color: var(--blue-300);
  background: color-mix(in oklab, var(--blue-500) 10%, transparent);
  border-color: rgba(0,184,212,0.30);
}

/* =====================================================================
   Lang switch (segmented)
   ===================================================================== */
.lang {
  position: relative;
  display: inline-flex;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 3px;
  gap: 0;
}
.lang__b {
  appearance: none; background: transparent; border: none; cursor: pointer;
  padding: 5px 11px;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-faint);
  border-radius: var(--r-pill);
  z-index: 1; position: relative;
  transition: color var(--dur-2) var(--ease-standard);
}
.lang__b:hover { color: var(--text-muted); }
.lang__b.is-active { color: var(--text); }
.lang__ind {
  position: absolute;
  top: 3px; bottom: 3px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-pill);
  z-index: 0;
  transition: transform var(--dur-3) var(--ease-emphasized),
              width var(--dur-3) var(--ease-emphasized);
  pointer-events: none;
}

/* =====================================================================
   Hero
   ===================================================================== */
.hero {
  position: relative;
  min-height: clamp(620px, 92vh, 920px);
  display: flex; align-items: center;
  padding: var(--s-9) 0 var(--s-9);
  overflow: hidden;
  isolation: isolate;
}

/* Hero mesh — WebGL canvas full-bleed */
.hero__mesh {
  position: absolute; inset: 0;
  z-index: -2;
  pointer-events: none;
}
.hero__mesh canvas {
  display: block;
  width: 100% !important; height: 100% !important;
}

/* Vignette */
.hero__veil {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(ellipse 90% 70% at 50% 50%, transparent 0%, var(--bg) 75%),
    linear-gradient(180deg, transparent 0%, var(--bg) 100%);
}

/* Grid dot overlay */
.hero__grid {
  position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: 0.5;
  background-image: radial-gradient(circle at 1px 1px, rgba(132,151,183,0.10) 1px, transparent 0);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 30%, transparent 75%);
}
[data-theme="light"] .hero__grid {
  background-image: radial-gradient(circle at 1px 1px, rgba(10,22,40,0.07) 1px, transparent 0);
}

.hero-grid {
  display: grid; grid-template-columns: 1.5fr 1fr;
  gap: var(--s-9);
  align-items: end;
  width: 100%;
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: var(--s-7); } }

.hero__h1 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin: var(--s-5) 0 var(--s-5);
  color: var(--text);
  text-wrap: balance;
}
.hero__h1 em {
  font-style: normal;
  color: var(--blue-500);
  position: relative;
}
.hero__sub {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.4;
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0 0 var(--s-6);
  text-wrap: pretty;
}
.hero__ctas { display: flex; gap: var(--s-3); flex-wrap: wrap; }

.hero__aside {
  border-left: 1px solid var(--border);
  padding-left: var(--s-5);
  font-size: 14px;
  color: var(--text-muted);
}
@media (max-width: 980px) {
  .hero__aside { border-left: none; border-top: 1px solid var(--border); padding-left: 0; padding-top: var(--s-5); }
}
.aside-list { list-style: none; padding: 0; margin: var(--s-3) 0 0; display: flex; flex-direction: column; gap: var(--s-3); }
.aside-list li { display: flex; gap: var(--s-3); align-items: flex-start; font-size: 13.5px; line-height: 1.4; }
.aside-list li b { color: var(--text); font-weight: 500; }

.hero__scroll {
  position: absolute; bottom: var(--s-5); left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-mono);
  font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-faint);
  display: inline-flex; align-items: center; gap: 8px;
  z-index: 2;
  animation: scroll-hint 2.4s var(--ease-standard) infinite;
}
@keyframes scroll-hint {
  0%, 100% { opacity: 0.6; transform: translate(-50%, 0); }
  50%      { opacity: 1; transform: translate(-50%, 4px); }
}

/* =====================================================================
   Buttons (carry-over)
   ===================================================================== */
.btn {
  appearance: none;
  font-family: var(--f-body);
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  background: transparent;
  color: var(--text);
  transition: transform var(--dur-2) var(--ease-standard),
              box-shadow var(--dur-2) var(--ease-standard),
              background var(--dur-2) var(--ease-standard),
              color var(--dur-2) var(--ease-standard),
              border-color var(--dur-2) var(--ease-standard);
}
.btn:disabled { cursor: not-allowed; opacity: 0.45; }
.btn:focus-visible { outline: 2px solid var(--blue-500); outline-offset: 2px; }
.btn__content { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 8px; }
.btn__label { white-space: nowrap; }

.btn--sm { font-size: 12.5px; padding: 7px 14px; }
.btn--md { font-size: 14px;   padding: 10px 18px; }
.btn--lg { font-size: 15px;   padding: 14px 24px; }
.btn--xl { font-size: 16px;   padding: 18px 28px; letter-spacing: -0.008em; }

.btn--primary {
  background: var(--orange-500); color: #1a0c04;
  box-shadow: 0 8px 22px -12px rgba(255,107,53,.65);
}
.btn--primary:hover:not(:disabled) {
  transform: translateY(-1px);
  background: var(--orange-400);
  box-shadow: 0 14px 30px -14px rgba(255,107,53,.85), 0 0 0 1px rgba(255,107,53,.5) inset;
}
.btn--primary:active:not(:disabled) { transform: translateY(0); }

.btn--glow .btn__ring {
  position: absolute; inset: -3px;
  border-radius: inherit; pointer-events: none;
  border: 2px solid rgba(255,107,53, 0.55);
  opacity: 0; transform: scale(0.94);
  transition: opacity var(--dur-3) var(--ease-standard), transform var(--dur-3) var(--ease-emphasized);
}
.btn--glow:hover:not(:disabled) .btn__ring { animation: ring-breath 2.4s var(--ease-standard) infinite; opacity: 1; }
@keyframes ring-breath {
  0%, 100% { transform: scale(1.02); border-color: rgba(255,107,53,0.55); opacity: 1; }
  50%      { transform: scale(1.18); border-color: rgba(0,184,212,0.55);  opacity: 0; }
}

.btn--ghost {
  color: var(--blue-300);
  border-color: rgba(0,184,212, 0.32);
  background: color-mix(in oklab, var(--blue-500) 6%, transparent);
}
[data-theme="light"] .btn--ghost { color: var(--blue-700); border-color: rgba(0,184,212,0.40); }
.btn--ghost:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: var(--blue-500);
  box-shadow: var(--blue-glow);
}
.btn--quiet { color: var(--text-muted); border-color: var(--border); }
.btn--quiet:hover:not(:disabled) {
  color: var(--text); border-color: var(--border-strong); background: var(--bg-elev);
}

.btn.is-loading .btn__label { opacity: 0.6; }
.btn.is-checked { background: var(--ok-500); color: #001a0d; }

/* (epic d) Particle burst layer attached to button */
.btn__burst {
  position: absolute; inset: 0; pointer-events: none;
  overflow: visible; z-index: 2;
}
.btn__burst i {
  position: absolute; left: 50%; top: 50%;
  width: 6px; height: 6px; border-radius: 50%;
  transform: translate(-50%, -50%);
  --tx: 0px; --ty: 0px; --c: var(--blue-500);
  background: var(--c);
  box-shadow: 0 0 12px var(--c), 0 0 4px var(--c);
  animation: burst 720ms cubic-bezier(.2,.7,.3,1) forwards;
}
@keyframes burst {
  0%   { transform: translate(-50%, -50%) scale(0.4); opacity: 1; }
  60%  { opacity: 1; }
  100% { transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty) + 18px)) scale(0.4); opacity: 0; }
}

/* Spinner */
.spinner { display: inline-flex; }
.spinner svg { width: 100%; height: 100%; animation: spin 700ms linear infinite; color: currentColor; }
@keyframes spin { to { transform: rotate(360deg); } }

/* =====================================================================
   Badges / Chips
   ===================================================================== */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 9px;
  border-radius: var(--r-pill);
  font-size: 11px;
  letter-spacing: 0.06em;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--text-muted) 10%, transparent);
  color: var(--text-muted);
  white-space: nowrap;
}
.badge.is-mono { font-family: var(--f-mono); }
.badge--accent { color: var(--blue-300); background: color-mix(in oklab, var(--blue-500) 12%, transparent); border-color: rgba(0,184,212, 0.30); }
.badge--orange { color: var(--orange-400); background: color-mix(in oklab, var(--orange-500) 14%, transparent); border-color: rgba(255,107,53, 0.30); }
.badge--ok     { color: var(--ok-500);  background: color-mix(in oklab, var(--ok-500) 12%, transparent); border-color: rgba(61,214,140, 0.30); }
.badge--warn   { color: var(--warn-500); background: color-mix(in oklab, var(--warn-500) 14%, transparent); border-color: rgba(242,178,68, 0.30); }
.badge--info   { color: var(--text);   background: var(--bg-elev); border-color: var(--border-strong); }
.badge__dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 3px color-mix(in oklab, currentColor 22%, transparent); }
.badge__dot--accent, .badge__dot--orange, .badge__dot--ok { animation: pulse 2.4s var(--ease-standard) infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px color-mix(in oklab, currentColor 22%, transparent); }
  50%      { box-shadow: 0 0 0 6px color-mix(in oklab, currentColor 0%, transparent); }
}

/* =====================================================================
   Marquee · Trust strip (Lusion-style slow scroll)
   ===================================================================== */
.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: var(--s-7) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(180deg, var(--bg-sub), var(--bg) 50%, var(--bg-sub));
}
.marquee__rail {
  display: flex; gap: var(--s-7);
  width: max-content;
  animation: marquee 38s linear infinite;
  will-change: transform;
}
.marquee__lab {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-faint);
  text-align: center;
  margin-bottom: var(--s-4);
}
.marquee__group { display: inline-flex; align-items: center; gap: var(--s-7); padding-right: var(--s-7); }
.marquee__org {
  display: inline-flex; align-items: center; gap: var(--s-3);
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 30px);
  letter-spacing: -0.02em;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color var(--dur-2) var(--ease-standard);
}
.marquee__org:hover { color: var(--text); }
.marquee__sep {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue-500);
  opacity: 0.55;
}
.marquee__edge {
  position: absolute; top: 0; bottom: 0; width: 12%; pointer-events: none; z-index: 2;
}
.marquee__edge--l { left: 0;  background: linear-gradient(90deg, var(--bg-sub), transparent); }
.marquee__edge--r { right: 0; background: linear-gradient(-90deg, var(--bg-sub), transparent); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee.is-paused .marquee__rail { animation-play-state: paused; }

/* =====================================================================
   Service grid (asymmetric)
   ===================================================================== */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--s-4);
  grid-auto-rows: minmax(280px, auto);
}
@media (max-width: 1100px) { .svc-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(260px, auto); } }
@media (max-width: 720px)  { .svc-grid { grid-template-columns: 1fr; } }

/* asymmetric placement at desktop sizes (6-col grid) */
.svc-grid > .svc:nth-child(1) { grid-column: span 3; grid-row: span 2; min-height: 460px; }
.svc-grid > .svc:nth-child(2) { grid-column: span 3; }
.svc-grid > .svc:nth-child(3) { grid-column: span 2; }
.svc-grid > .svc:nth-child(4) { grid-column: span 2; }
.svc-grid > .svc:nth-child(5) { grid-column: span 2; }
.svc-grid > .svc:nth-child(6) { grid-column: span 3; }

@media (max-width: 1100px) {
  .svc-grid > .svc:nth-child(1) { grid-column: span 4; min-height: 380px; grid-row: auto; }
  .svc-grid > .svc:nth-child(2),
  .svc-grid > .svc:nth-child(3),
  .svc-grid > .svc:nth-child(4),
  .svc-grid > .svc:nth-child(5),
  .svc-grid > .svc:nth-child(6) { grid-column: span 2; }
}
@media (max-width: 720px) {
  .svc-grid > .svc { grid-column: 1 / -1 !important; min-height: 280px !important; }
}

.svc {
  --tx: 0deg; --ty: 0deg; --mx: 50%; --my: 50%;
  position: relative;
  background: var(--bg-card);
  border-radius: var(--r-5);
  border: 1px solid var(--border);
  overflow: hidden;
  transform: perspective(1100px) rotateX(var(--tx)) rotateY(var(--ty));
  transition: transform 80ms linear,
              box-shadow var(--dur-3) var(--ease-standard),
              border-color var(--dur-3) var(--ease-standard);
}
a.svc,
button.svc {
  display: block;
  width: 100%;
  text-align: left;
  text-decoration: none;
  color: inherit;
  font: inherit;
  padding: 0;
  cursor: pointer;
  appearance: none;
}
a.svc:focus-visible,
button.svc:focus-visible {
  outline: 2px solid var(--blue-500);
  outline-offset: 3px;
}
.svc--link:hover { border-color: var(--blue-500); }
.svc:hover { box-shadow: var(--shadow-3); border-color: var(--border-strong); }
.svc__border {
  position: absolute; inset: 0;
  border-radius: inherit; pointer-events: none;
  background: radial-gradient(320px circle at var(--mx) var(--my), rgba(0,184,212,0.20), transparent 60%);
  opacity: 0; transition: opacity var(--dur-3) var(--ease-standard);
}
.svc:hover .svc__border { opacity: 1; }
.svc--featured .svc__border {
  background: radial-gradient(320px circle at var(--mx) var(--my), rgba(255,107,53,0.22), transparent 60%);
}
/* Animated gradient border (epic earned) on featured */
.svc--featured::before {
  content: ""; position: absolute; inset: 0;
  border-radius: inherit; padding: 1px;
  background: conic-gradient(from var(--ang, 0deg),
    var(--orange-500), var(--blue-500), var(--orange-500), var(--orange-300), var(--orange-500));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0.55; pointer-events: none;
  transition: opacity var(--dur-3) var(--ease-standard);
}
@property --ang { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
.svc--featured:hover::before { opacity: 1; animation: spin-conic 1.6s linear infinite; }
@keyframes spin-conic { to { --ang: 360deg; } }

.svc__inner {
  padding: var(--s-6);
  display: flex; flex-direction: column;
  height: 100%;
  position: relative; z-index: 1;
  gap: var(--s-4);
}
.svc--lg .svc__inner { padding: var(--s-7); }

.svc__head {
  display: flex; align-items: center; justify-content: space-between;
}
.svc__idx {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.14em;
  color: var(--text-faint);
}
.svc__icon {
  width: 44px; height: 44px;
  border-radius: var(--r-3);
  background: color-mix(in oklab, var(--blue-500) 14%, transparent);
  color: var(--blue-300);
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(0,184,212,0.22);
}
.svc--featured .svc__icon {
  background: color-mix(in oklab, var(--orange-500) 14%, transparent);
  color: var(--orange-400);
  border-color: rgba(255,107,53, 0.30);
}
/* (epic f) per-service icon micro-animations on hover */
.svc__ico-svg { width: 22px; height: 22px; transition: transform var(--dur-3) var(--ease-emphasized); }
.svc:hover .svc__ico-svg { transform: scale(1.06); }
/* spark — rotate */
.svc[data-ico="spark"]:hover .svc__ico-svg { animation: ico-spin 1.4s var(--ease-standard) infinite; }
@keyframes ico-spin { to { transform: rotate(360deg) scale(1.06); } }
/* wave — bars dance */
.svc[data-ico="wave"]:hover .svc__ico-svg .b { animation: wave-bar 1.0s var(--ease-standard) infinite; }
.svc[data-ico="wave"]:hover .svc__ico-svg .b:nth-child(2) { animation-delay: 0.08s; }
.svc[data-ico="wave"]:hover .svc__ico-svg .b:nth-child(3) { animation-delay: 0.16s; }
.svc[data-ico="wave"]:hover .svc__ico-svg .b:nth-child(4) { animation-delay: 0.24s; }
.svc[data-ico="wave"]:hover .svc__ico-svg .b:nth-child(5) { animation-delay: 0.32s; }
@keyframes wave-bar { 0%, 100% { transform: scaleY(0.6); } 50% { transform: scaleY(1.4); } }
/* phone — wiggle */
.svc[data-ico="phone"]:hover .svc__ico-svg { animation: ico-shake 0.9s var(--ease-standard) infinite; }
@keyframes ico-shake { 0%, 100% { transform: rotate(0deg); } 25% { transform: rotate(-6deg); } 75% { transform: rotate(6deg); } }
/* shuffle — translate flip */
.svc[data-ico="shuffle"]:hover .svc__ico-svg .a { animation: shuf-a 1.2s var(--ease-standard) infinite; }
.svc[data-ico="shuffle"]:hover .svc__ico-svg .b { animation: shuf-b 1.2s var(--ease-standard) infinite; }
@keyframes shuf-a { 0%,100% { transform: translateX(0); } 50% { transform: translateX(2px); } }
@keyframes shuf-b { 0%,100% { transform: translateX(0); } 50% { transform: translateX(-2px); } }
/* doc — line shimmer */
.svc[data-ico="doc"]:hover .svc__ico-svg .l { stroke-dasharray: 4 2; animation: ico-march 0.9s linear infinite; }
@keyframes ico-march { to { stroke-dashoffset: -12; } }
/* gear — slow spin */
.svc[data-ico="gear"]:hover .svc__ico-svg { animation: ico-spin 4s linear infinite; }

.svc__body { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.svc__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.15;
  letter-spacing: -0.022em;
  color: var(--text);
  margin: 0;
  text-wrap: pretty;
}
.svc--lg .svc__title { font-size: clamp(28px, 2.6vw, 36px); }
.svc__one {
  font-family: var(--f-body);
  font-size: 14.5px; line-height: 1.5;
  color: var(--text-muted);
  margin: 0; max-width: 42ch;
}
.svc--lg .svc__one { font-size: 16px; max-width: 50ch; }
.svc__metric { display: flex; flex-direction: column; gap: 2px; margin-top: auto; }
.svc__num {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 32px; line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text);
}
.svc--featured .svc__num { color: var(--orange-400); }
.svc--lg .svc__num { font-size: 56px; }
.svc__metricLabel {
  font-family: var(--f-mono);
  font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-faint);
}
.svc__foot {
  display: flex; flex-direction: column; gap: var(--s-3);
  margin-top: var(--s-4);
  padding-top: var(--s-4);
  border-top: 1px dashed var(--border);
}
.svc__stack { display: flex; flex-wrap: wrap; gap: 6px; }
.svc__chip {
  font-family: var(--f-mono);
  font-size: 10.5px; letter-spacing: 0.05em;
  padding: 3px 8px;
  border: 1px solid var(--border);
  border-radius: var(--r-2);
  color: var(--text-muted);
}
.svc__cta {
  font-family: var(--f-mono);
  font-size: 11.5px; letter-spacing: 0.06em;
  color: var(--blue-300);
  display: inline-flex; align-items: center; gap: 6px;
  align-self: flex-start;
  transition: gap var(--dur-2) var(--ease-standard);
}
.svc--featured .svc__cta { color: var(--orange-400); }
.svc:hover .svc__cta { gap: 10px; }

/* =====================================================================
   Audit timeline · 3 steps · scroll-triggered SVG draw
   ===================================================================== */
.timeline {
  position: relative;
  padding: var(--s-7) 0 var(--s-3);
}
.timeline__svg {
  position: absolute;
  top: calc(var(--s-7) + 36px); /* aligns with marker centers */
  left: 5%; right: 5%;
  height: 24px;
  pointer-events: none;
  overflow: visible;
}
.timeline__svg path {
  fill: none;
  stroke: var(--blue-500);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: var(--len, 1200);
  stroke-dashoffset: var(--len, 1200);
  transition: stroke-dashoffset 1.4s var(--ease-decelerate);
  filter: drop-shadow(0 0 8px rgba(0,184,212,0.45));
}
.timeline.is-active .timeline__svg path { stroke-dashoffset: 0; }

.timeline__row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  position: relative;
  z-index: 1;
}
@media (max-width: 720px) { .timeline__row { grid-template-columns: 1fr; gap: var(--s-7); } }

.tstep {
  display: flex; flex-direction: column; gap: var(--s-3);
  text-align: center;
  align-items: center;
  padding: 0 var(--s-3);
  opacity: 0; transform: translateY(20px) scale(0.96);
  transition: opacity 600ms var(--ease-decelerate),
              transform 600ms var(--ease-emphasized);
}
.timeline.is-active .tstep { opacity: 1; transform: none; }
.timeline.is-active .tstep:nth-child(1) { transition-delay: 200ms; }
.timeline.is-active .tstep:nth-child(2) { transition-delay: 300ms; }
.timeline.is-active .tstep:nth-child(3) { transition-delay: 400ms; }

.tstep__node {
  width: 68px; height: 68px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  position: relative;
  z-index: 2;
  transition: border-color var(--dur-3) var(--ease-standard), background var(--dur-3) var(--ease-standard);
}
.timeline.is-active .tstep__node { border-color: var(--blue-500); background: color-mix(in oklab, var(--blue-500) 12%, var(--bg-card)); }
.tstep__node::after {
  content: ""; position: absolute; inset: -8px;
  border-radius: inherit;
  border: 1px solid rgba(0,184,212,0.25);
  opacity: 0; transition: opacity 500ms var(--ease-standard);
}
.timeline.is-active .tstep__node::after { opacity: 1; animation: pulse-ring 2.4s var(--ease-standard) infinite; }
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.4); opacity: 0; }
}
.tstep__num {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.14em;
  color: var(--text-faint);
  text-transform: uppercase;
}
.tstep__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.022em;
  margin: 0;
  color: var(--text);
}
.tstep__body {
  font-family: var(--f-body);
  font-size: 14px; line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
  max-width: 30ch;
}
.tstep__when {
  font-family: var(--f-mono);
  font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue-300);
}

/* =====================================================================
   Stats row
   ===================================================================== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
  border: 1px solid var(--border);
  border-radius: var(--r-5);
  background: var(--bg-card);
  overflow: hidden;
}
@media (max-width: 980px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .stats-row { grid-template-columns: 1fr; } }

.stats-cell {
  padding: var(--s-7) var(--s-6);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: var(--s-3);
  min-height: 220px;
  position: relative;
  background:
    linear-gradient(180deg, transparent, color-mix(in oklab, var(--blue-500) 4%, transparent));
}
.stats-cell:last-child { border-right: none; }
@media (max-width: 980px) {
  .stats-cell { border-right: none; border-bottom: 1px solid var(--border); }
  .stats-cell:nth-child(2) { border-right: 1px solid var(--border); }
  .stats-cell:nth-child(odd) { border-right: 1px solid var(--border); }
  .stats-cell:nth-last-child(-n+2) { border-bottom: none; }
  .stats-cell:nth-last-child(-n+2):not(:nth-child(odd)) { border-right: none; }
}

.counter {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: clamp(48px, 5.6vw, 72px);
  letter-spacing: -0.025em;
  line-height: 1;
  display: inline-flex; align-items: baseline;
  color: var(--text);
}
.counter__num { display: inline-flex; }
.counter__digit {
  display: inline-block;
  min-width: 0.62em;
  text-align: center;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(180deg, var(--text) 0%, color-mix(in oklab, var(--blue-300) 60%, var(--text)) 120%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.counter__suffix { font-size: 0.42em; color: var(--text-muted); margin-left: 0.18em; letter-spacing: 0.04em; }
.counter--alt { font-size: clamp(38px, 4vw, 52px); }
.counter--alt .counter__suffix { font-size: 0.5em; }

.stat__bar { height: 4px; background: var(--navy-700); border-radius: var(--r-pill); overflow: hidden; }
.stat__fill { display: block; height: 100%; background: linear-gradient(90deg, var(--blue-500), var(--blue-300)); border-radius: inherit; }
.stat__label { font-family: var(--f-body); font-size: 14px; color: var(--text); }
.stat__sub { font-family: var(--f-mono); font-size: 11px; color: var(--text-faint); letter-spacing: 0.08em; text-transform: uppercase; }
.stat { display: flex; flex-direction: column; gap: 10px; width: 100%; }

/* =====================================================================
   Pricing
   ===================================================================== */
.pricing-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
  align-items: stretch;
}
@media (max-width: 980px) { .pricing-row { grid-template-columns: 1fr; } }

.tier {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-5);
  padding: var(--s-7);
  display: flex; flex-direction: column; gap: var(--s-4);
  transition: border-color var(--dur-3) var(--ease-standard),
              transform var(--dur-3) var(--ease-standard),
              box-shadow var(--dur-3) var(--ease-standard);
}
.tier:hover { border-color: var(--border-strong); transform: translateY(-2px); box-shadow: var(--shadow-3); }
.tier--pop {
  background: linear-gradient(180deg, color-mix(in oklab, var(--orange-500) 6%, var(--bg-card)) 0%, var(--bg-card) 100%);
  border-color: var(--orange-500);
  box-shadow: 0 0 0 1px var(--orange-500), 0 18px 40px -20px rgba(255,107,53,0.5);
}
.tier--pop:hover { transform: translateY(-3px); }
.tier__pop {
  position: absolute; top: -12px; right: var(--s-6);
  background: var(--orange-500);
  color: #1a0c04;
  font-family: var(--f-mono);
  font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--r-pill);
}
.tier__name {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 24px; letter-spacing: -0.022em;
  margin: 0;
  color: var(--text);
}
.tier__sub {
  font-family: var(--f-body);
  font-size: 14px; color: var(--text-muted);
  margin: 0;
  min-height: 2.8em;
}
.tier__price {
  display: flex; align-items: baseline; gap: 6px;
  padding-top: var(--s-3);
  padding-bottom: var(--s-3);
  border-top: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border);
}
.tier__num {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 40px; letter-spacing: -0.02em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.tier__cur { font-family: var(--f-mono); font-size: 12.5px; color: var(--text-muted); letter-spacing: 0.06em; }
.tier__per { font-family: var(--f-mono); font-size: 12px; color: var(--text-faint); margin-left: 4px; letter-spacing: 0.06em; }
.tier__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--s-3); flex: 1; }
.tier__list li {
  display: flex; gap: var(--s-3); align-items: flex-start;
  font-size: 14px; line-height: 1.4;
  color: var(--text);
}
.tier__list li svg { flex: 0 0 14px; margin-top: 4px; color: var(--blue-500); }
.tier--pop .tier__list li svg { color: var(--orange-400); }
.tier__list li small {
  display: block;
  font-family: var(--f-mono); font-size: 11px;
  color: var(--text-faint); letter-spacing: 0.04em;
  margin-top: 1px;
}

/* =====================================================================
   Case-study placeholders
   ===================================================================== */
.cases-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}
@media (max-width: 900px) { .cases-row { grid-template-columns: 1fr; } }

.case {
  position: relative;
  border: 1px dashed var(--border-strong);
  border-radius: var(--r-5);
  padding: var(--s-6);
  display: flex; flex-direction: column; gap: var(--s-4);
  background:
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(132,151,183,0.025) 14px 15px),
    var(--bg-card);
  min-height: 280px;
  transition: border-color var(--dur-3) var(--ease-standard), background var(--dur-3) var(--ease-standard);
}
.case:hover { border-color: var(--blue-500); }
.case__head { display: flex; align-items: center; justify-content: space-between; }
.case__industry {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-faint);
}
.case__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.022em;
  line-height: 1.2;
  margin: 0;
  color: var(--text);
}
.case__teaser {
  font-family: var(--f-body);
  font-size: 14px; line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
}
.case__metric {
  margin-top: auto;
  display: flex; align-items: baseline; gap: 8px;
  border-top: 1px dashed var(--border);
  padding-top: var(--s-3);
}
.case__num {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 30px;
  color: var(--text);
}
.case__metricLabel {
  font-family: var(--f-mono);
  font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-faint);
}
.case__skel {
  display: flex; flex-direction: column; gap: 6px;
}
.cases-empty {
  margin-top: var(--s-5);
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--s-5) var(--s-6);
  border: 1px solid var(--border);
  border-radius: var(--r-4);
  background: var(--bg-card);
  flex-wrap: wrap; gap: var(--s-3);
}
.cases-empty span { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.04em; color: var(--text-muted); }

/* =====================================================================
   Final CTA
   ===================================================================== */
.cta-final {
  position: relative;
  border-radius: var(--r-6);
  overflow: hidden;
  isolation: isolate;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: var(--s-9) var(--s-8);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--s-7);
  align-items: stretch;
}
@media (max-width: 980px) { .cta-final { grid-template-columns: 1fr; padding: var(--s-7) var(--s-6); } }
.cta-final__bg {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(600px circle at 12% 100%, rgba(0,184,212,0.18), transparent 60%),
    radial-gradient(600px circle at 95% 0%, rgba(255,107,53,0.16), transparent 60%);
}
.cta-final__body { display: flex; flex-direction: column; gap: var(--s-5); }
.cta-final__h {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0;
  color: var(--text);
  text-wrap: balance;
}
.cta-final__h em { font-style: normal; color: var(--orange-500); }
.cta-final__sub { font-family: var(--f-display); font-weight: 400; color: var(--text-muted); font-size: 18px; max-width: 50ch; line-height: 1.4; margin: 0; }
.cta-final__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--s-3); }
.cta-final__list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--text); }
.cta-final__list svg { color: var(--blue-500); flex-shrink: 0; margin-top: 4px; }
.cta-final__ctas { display: flex; gap: var(--s-3); flex-wrap: wrap; margin-top: var(--s-2); }

.cta-final__embed {
  background: var(--bg-sub);
  border: 1px solid var(--border);
  border-radius: var(--r-5);
  display: flex; flex-direction: column;
  overflow: hidden;
  min-height: 360px;
}
.cta-final__embed-head {
  padding: 10px var(--s-4);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--f-mono); font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 0.06em;
}
.cta-final__embed-stage {
  flex: 1;
  display: block;
  padding: 0;
  background: var(--bg-sub);
  position: relative;
  min-height: 640px;
  overflow: hidden;
}
.cta-final__embed-iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 640px;
  border: 0;
  background: var(--bg-sub);
  color-scheme: dark;
}
.cta-final__embed-msg {
  text-align: center; max-width: 36ch;
  display: flex; flex-direction: column; gap: var(--s-3);
  font-family: var(--f-body); font-size: 14px;
  color: var(--text-muted);
}
.cta-final__embed-msg b { color: var(--text); font-weight: 500; }
.cal-icon {
  width: 56px; height: 56px;
  margin: 0 auto;
  border-radius: var(--r-4);
  background: color-mix(in oklab, var(--blue-500) 16%, transparent);
  border: 1px solid rgba(0,184,212,0.30);
  color: var(--blue-300);
  display: inline-flex; align-items: center; justify-content: center;
}

/* Mobile responsiveness for booking iframe */
@media (max-width: 980px) {
  .cta-final__embed {
    min-height: 560px;
    max-width: 100%;
    overflow: hidden;
  }
  .cta-final__embed-stage,
  .cta-final__embed-iframe {
    min-height: 560px;
  }
}
@media (max-width: 720px) {
  .cta-final {
    padding: var(--s-6) var(--s-4);
  }
  .cta-final__embed {
    min-height: 520px;
    border-radius: var(--r-4);
  }
  .cta-final__embed-stage,
  .cta-final__embed-iframe {
    min-height: 520px;
  }
  .cta-final__embed-head {
    padding: 10px var(--s-3);
    font-size: 10.5px;
  }
}

/* =====================================================================
   Footer
   ===================================================================== */
.foot {
  border-top: 1px solid var(--border);
  padding: var(--s-9) 0 var(--s-7);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-6);
}
@media (max-width: 900px) { .foot { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .foot { grid-template-columns: 1fr; } }
.foot__brand .logo { font-size: 20px; }
.foot__tag {
  font-family: var(--f-body);
  font-size: 14px; line-height: 1.5;
  color: var(--text-muted);
  margin: var(--s-4) 0 var(--s-4);
  max-width: 38ch;
}
.foot__company {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.04em;
  color: var(--text-faint);
  display: flex; flex-direction: column; gap: 4px;
}
.foot__company b { color: var(--text); font-weight: 500; }
.foot__col h5 {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-faint);
  margin: 0 0 var(--s-3);
  font-weight: 500;
}
.foot__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--s-2); }
.foot__list a {
  font-family: var(--f-body); font-size: 14px;
  color: var(--text-muted); text-decoration: none;
  transition: color var(--dur-2) var(--ease-standard);
}
.foot__list a:hover { color: var(--text); }
.foot__bottom {
  margin-top: var(--s-7);
  padding-top: var(--s-5);
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--f-mono);
  font-size: 11px; color: var(--text-faint);
  letter-spacing: 0.04em;
  flex-wrap: wrap; gap: var(--s-3);
}

/* =====================================================================
   Reduced motion
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero__mesh, .marquee__rail, .btn--glow:hover .btn__ring,
  .svc--featured::before, .badge__dot, .tstep__node::after,
  .scroll-hint, .hero__scroll {
    animation: none !important;
  }
}

/* =====================================================================
   View transitions (epic h)
   ===================================================================== */
@view-transition { navigation: auto; }
::view-transition-old(root), ::view-transition-new(root) {
  animation-duration: 320ms;
  animation-timing-function: cubic-bezier(.2,0,0,1);
}

/* utility */
.t-cap { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-faint); }
.mute { color: var(--text-muted); }
