/* ============================================================
   MPCH NEON — DESIGN SYSTEM (LIGHT, PEREGRINE-STRUCTURAL)
   Light surfaces + Peregrine DNA:
   - Inter 400 headlines (no bold)
   - Forum display serif for selective accents
   - Pill buttons
   - Generous whitespace
   - Detection-box overlays confined to dark imagery panels
   ============================================================ */

:root {
  /* ---------- SURFACES (LIGHT) ---------- */
  --page:          #FFFFFF;
  --surface:       #F8F8F6;   /* off-white */
  --surface-2:     #F2F1ED;   /* warm stone */
  --surface-3:     #EDEBE5;   /* deeper warm stone */

  /* ---------- INK (TEXT) ---------- */
  --ink:           #0C1B2A;   /* navy — primary */
  --ink-body:      #3A4150;   /* body copy */
  --ink-muted:     #6B7280;   /* secondary */
  --ink-faint:     #9AA0AB;   /* captions, placeholders */

  /* ---------- BORDERS ---------- */
  --border:        #EBEBEB;
  --border-strong: #D8D6D0;
  --rule:          #F0EFEA;

  /* ---------- ACCENTS (AA-SAFE ON WHITE) ---------- */
  --blue:          #2459E3;   /* MPCH legacy brand blue — primary accent */
  --blue-deep:     #1B45B5;   /* hover state */
  --blue-wash:     #E9EFFC;
  --green:         #0D6B1A;   /* 6.7:1 */
  --green-wash:    #EBF7EC;
  --cyan:          #0B7285;   /* 5.6:1 */
  --cyan-wash:     #E6F3F5;
  --violet:        #4A3AB0;   /* 8.3:1 */
  --violet-wash:   #EEECF7;
  --coral:         #C0392B;   /* 5.4:1 */
  --coral-wash:    #FBECEA;
  --amber:         #8C5E00;   /* 5.7:1 */
  --amber-wash:    #FAF3E2;

  /* ---------- DARK PANEL (Peregrine moment) ---------- */
  --dark:          #1B072D;   /* Peregrine deep purple-black */
  --dark-2:        #0D0118;   /* edge-darker */
  --dark-bloom:    #3D1040;   /* warm bloom */
  --neon-green:    #39FF14;   /* neon — dark panels only */
  --neon-cyan:     #00F0FF;   /* neon — dark panels only */
  --neon-mint:     #B8FAEF;   /* Peregrine pale mint */
  --neon-teal:     #16DCB8;   /* Peregrine vivid teal */

  /* ---------- TYPE (DEFENSE STACK) ---------- */
  --font-body:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:      'JetBrains Mono', ui-monospace, 'SF Mono', Consolas, monospace;
  --font-headline:  'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  /* Legacy alias — Forum serif removed in the defense pivot. */
  --font-display:   var(--font-headline);

  /* ---------- SPACING (4px base) ---------- */
  --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;

  /* ---------- LAYOUT ---------- */
  --container:    1200px;
  --container-sm: 760px;
  --radius-sm:    4px;
  --radius:       6px;
  --radius-lg:    12px;
  --pill:         999px;

  /* ---------- EFFECTS ---------- */
  --shadow-sm:    0 1px 2px rgba(12, 27, 42, 0.04);
  --shadow:       0 2px 12px rgba(12, 27, 42, 0.06);
  --shadow-lg:    0 12px 40px rgba(12, 27, 42, 0.10);
  --focus:        0 0 0 3px rgba(36, 89, 227, 0.32);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-body);
  background: var(--page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* ============================================================
   ENGINEER'S TRACING PAPER
   32px minor grid + 128px major grid on the page background.
   Fixed-position, behind all content. Opacity sits at ~3% so
   it reads as precision, not decoration.
   ============================================================ */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    /* major lines — every 128px */
    linear-gradient(to right,  rgba(12, 27, 42, 0.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(12, 27, 42, 0.055) 1px, transparent 1px),
    /* minor lines — every 32px */
    linear-gradient(to right,  rgba(12, 27, 42, 0.028) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(12, 27, 42, 0.028) 1px, transparent 1px);
  background-size:
    128px 128px,
    128px 128px,
    32px 32px,
    32px 32px;
}
/* Lift actual content above the grid-paper layer */
.nav, .hero, .layout, .footer { position: relative; z-index: 1; }

/* Hide grid paper when printing — keeps printed pages clean */
@media print {
  body::before { display: none; }
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }

::selection { background: var(--blue); color: #fff; }

a { text-decoration-color: rgba(36, 89, 227, 0.35); }

/* Inline text links inside body copy pick up brand blue */
.section p a,
.card p a,
.lede a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================================
   TYPOGRAPHY — Peregrine-inspired: all Inter 400 headlines
   ============================================================ */
.h-hero, .h1, .h2, .h3, .h4, .h5 {
  font-family: var(--font-headline);  /* Space Grotesk — defense signature */
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 var(--s-4);
}

.h-hero {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 18ch;
  font-weight: 500;
}
.h1 { font-size: clamp(32px, 3.6vw, 44px); line-height: 1.12; font-weight: 500; }
.h2 { font-size: clamp(24px, 2.4vw, 30px); line-height: 1.2; font-weight: 500; }
.h3 { font-size: 20px; line-height: 1.3; font-weight: 500; }
.h4 { font-size: clamp(26px, 2.4vw, 35px); line-height: 1.2; font-weight: 500; font-style: normal; }
.h5 { font-size: 17px; line-height: 1.35; font-weight: 500; }

p  { margin: 0 0 var(--s-4); }
.lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-body);
  max-width: 62ch;
  margin: 0 0 var(--s-6);
}
small, .caption {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
}

.eyebrow {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;  /* Peregrine signature */
  color: var(--ink-muted);
  margin-bottom: var(--s-4);
  display: inline-block;
}

code, pre, .mono {
  font-family: var(--font-mono);
  font-size: 13px;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: min(var(--container), 100% - 48px);
  margin-inline: auto;
}
.container-sm {
  width: min(var(--container-sm), 100% - 48px);
  margin-inline: auto;
}

/* Generous vertical rhythm (Peregrine ~100px) */
.section {
  padding: var(--s-10) 0;
  border-top: 1px solid var(--rule);
}
.section:first-of-type { border-top: 0; }
.section-header {
  max-width: 70ch;
  margin-bottom: var(--s-8);
}
.section-header p {
  font-size: 17px;
  color: var(--ink-body);
  max-width: 58ch;
}

/* ============================================================
   NAV (transparent, Peregrine-slim)
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--rule);
  box-shadow: 0 2px 0 -1px var(--blue), 0 1px 0 rgba(36, 89, 227, 0.12);
}
.nav-inner {
  width: min(var(--container), 100% - 48px);
  margin-inline: auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
}
/* ============================================================
   CMD-LOGO — Command Bracket [ MPCH ] (canonical mpch.com mark)
   Brackets: Space Grotesk 500, navy, SIZED LARGER than the text
   Letters:  Space Grotesk 700, tight tracking, navy
   The brackets are the brand signal — they sit tall with
   comfortable interior padding, matching the mpch.com homepage.
   ============================================================ */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-headline);   /* Space Grotesk */
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 18px;
  line-height: 1;
  transition: opacity 0.15s;
}
.logo:hover { opacity: 0.72; }
.logo .bracket {
  font-family: var(--font-headline);   /* Space Grotesk — matches text, not mono */
  font-weight: 500;
  color: #0D6B1A;                      /* institutional green — WCAG AA on white (6.7:1) */
  font-size: 26px;                     /* deliberately taller than the text */
  line-height: 1;
  letter-spacing: 0;
  display: inline-block;
  transform: translateY(-1px);          /* optical center */
}
.logo .mark {
  display: inline-block;
  padding: 0 2px;
}
/* Inverse for dark contexts (over photography, dark panel) */
.logo.on-dark { color: #fff; }
.logo.on-dark .bracket {
  color: #39FF14;                      /* neon green on dark surfaces */
  text-shadow: 0 0 8px rgba(57, 255, 20, 0.45);
}
/* Accent variant — colored brackets for decorative use only (not the default) */
.logo.accent-blue .bracket { color: var(--blue); }

/* ─────────────────────────────────────────────────────────────
   HUD logo — reticle corner brackets + scanning line.
   This is the hero-only "gamer / defense HUD" mark. Nav + footer
   still use the clean `.logo` text-bracket version.
   ───────────────────────────────────────────────────────────── */
.hud-logo {
  position: relative;
  display: inline-block;
  padding: clamp(18px, 2.4vw, 32px) clamp(28px, 3.6vw, 56px);
  margin-bottom: clamp(28px, 4vw, 48px);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hud-logo .hud-mark {
  display: inline-block;
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(56px, 7.8vw, 104px);
  letter-spacing: 0.04em;
  line-height: 1;
  color: #fff;
  /* subtle blue rim glow to feel HUD */
  text-shadow: 0 0 24px rgba(36, 89, 227, 0.35);
}
/* Corner reticle brackets — L-shaped targeting hooks */
.hud-corner {
  position: absolute;
  width: clamp(18px, 2.2vw, 32px);
  height: clamp(18px, 2.2vw, 32px);
  pointer-events: none;
  /* blue HUD color with a soft neon bloom */
  --hud-color: #2459E3;
  --hud-thick: 3px;
  filter: drop-shadow(0 0 6px rgba(36, 89, 227, 0.55));
}
.hud-corner::before,
.hud-corner::after {
  content: "";
  position: absolute;
  background: var(--hud-color);
}
/* horizontal hook */
.hud-corner::before {
  height: var(--hud-thick);
  width: 100%;
}
/* vertical hook */
.hud-corner::after {
  width: var(--hud-thick);
  height: 100%;
}
.hud-corner--tl { top: 0; left: 0; }
.hud-corner--tl::before { top: 0; left: 0; }
.hud-corner--tl::after  { top: 0; left: 0; }

.hud-corner--tr { top: 0; right: 0; }
.hud-corner--tr::before { top: 0; right: 0; }
.hud-corner--tr::after  { top: 0; right: 0; }

.hud-corner--bl { bottom: 0; left: 0; }
.hud-corner--bl::before { bottom: 0; left: 0; }
.hud-corner--bl::after  { bottom: 0; left: 0; }

.hud-corner--br { bottom: 0; right: 0; }
.hud-corner--br::before { bottom: 0; right: 0; }
.hud-corner--br::after  { bottom: 0; right: 0; }

/* Scanner line — sweeps vertically across the mark, neon-green/cyan HUD band.
   Uses top animation instead of translateY because the scanner's own height
   (2px) would break percentage-based translateY. */
.hud-scanner {
  position: absolute;
  left: 4%;
  right: 4%;
  height: 2px;
  top: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(57, 255, 20, 0)    0%,
    rgba(57, 255, 20, 0.85) 20%,
    rgba(0, 240, 255, 1)    50%,
    rgba(57, 255, 20, 0.85) 80%,
    rgba(57, 255, 20, 0)    100%
  );
  box-shadow:
    0 0 10px rgba(57, 255, 20, 0.85),
    0 0 24px rgba(0, 240, 255, 0.6),
    0 0 42px rgba(0, 240, 255, 0.35);
  animation: hud-scan 3.2s cubic-bezier(.55,.08,.45,.95) infinite;
  will-change: top, opacity;
}
@keyframes hud-scan {
  0%   { top: 0%;   opacity: 0; }
  8%   { opacity: 1; }
  50%  { top: 98%;  opacity: 1; }
  58%  { top: 98%;  opacity: 0; }
  100% { top: 98%;  opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hud-scanner { animation: none; opacity: 0; }
}
/* Reduce visual weight on small screens */
@media (max-width: 520px) {
  .hud-logo { padding: 16px 20px; }
  .hud-corner { width: 14px; height: 14px; --hud-thick: 2px; }
}

/* ── Hero Logo — Angular Command Brackets ──────────────────────
   Large-scale [ MPCH ] mark for the photographic hero.
   Brackets are CSS-drawn (sharp 90° corners), not font glyphs.
   ────────────────────────────────────────────────────────────── */
.hero-logo {
  display: inline-flex;
  align-items: center;
  gap: clamp(8px, 1vw, 16px);
  margin-bottom: clamp(24px, 3.5vw, 44px);
  line-height: 1;
  color: #fff;
}
/* CSS-drawn angular bracket — sharp 90° corners */
.hero-logo .hero-bracket {
  display: block;
  width: clamp(14px, 1.8vw, 22px);
  height: clamp(64px, 8.6vw, 112px);
  position: relative;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(57, 255, 20, 0.5));
}
/* Left bracket [ — top bar + vertical + bottom bar */
.hero-bracket--l::before,
.hero-bracket--l::after,
.hero-bracket--r::before,
.hero-bracket--r::after {
  content: '';
  position: absolute;
  background: #39FF14;
}
/* Left bracket [ */
.hero-bracket--l::before {
  /* vertical bar */
  top: 0; left: 0;
  width: clamp(3px, 0.25vw, 4px);
  height: 100%;
}
.hero-bracket--l::after {
  /* top + bottom horizontal bars via box-shadow */
  top: 0; left: 0;
  width: 100%;
  height: clamp(3px, 0.25vw, 4px);
  box-shadow: 0 calc(clamp(64px, 8.6vw, 112px) - clamp(3px, 0.25vw, 4px)) 0 0 #39FF14;
}
/* Right bracket ] */
.hero-bracket--r::before {
  /* vertical bar */
  top: 0; right: 0;
  width: clamp(3px, 0.25vw, 4px);
  height: 100%;
}
.hero-bracket--r::after {
  /* top + bottom horizontal bars via box-shadow */
  top: 0; right: 0;
  width: 100%;
  height: clamp(3px, 0.25vw, 4px);
  box-shadow: 0 calc(clamp(64px, 8.6vw, 112px) - clamp(3px, 0.25vw, 4px)) 0 0 #39FF14;
}
.hero-logo .hero-mark {
  font-family: var(--font-headline);  /* Space Grotesk */
  font-weight: 600;
  font-size: clamp(48px, 6.8vw, 88px);
  line-height: 1;
  letter-spacing: 0.06em;
  color: #fff;
  text-shadow: 0 0 20px rgba(57, 255, 20, 0.15);
  padding: 0 clamp(2px, 0.3vw, 6px);
}
@media (max-width: 520px) {
  .hero-logo { gap: 6px; }
  .hero-logo .hero-bracket { width: 12px; height: 52px; }
  .hero-bracket--l::after { box-shadow: 0 49px 0 0 #39FF14; }
  .hero-bracket--r::after { box-shadow: 0 49px 0 0 #39FF14; }
  .hero-logo .hero-mark { font-size: 40px; }
}

.logo-sub {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
  margin-left: var(--s-3);
  text-transform: uppercase;
}
.nav-links {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  gap: var(--s-6);
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }
.nav-cta {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 18px;
  border-radius: var(--pill);
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 0 rgba(27, 69, 181, 0.25);
}
.nav-cta:hover { transform: translateY(-1px); background: var(--blue-deep); }

/* ============================================================
   HERO — Light, Peregrine-style "text floating in generous space"
   ============================================================ */
.hero {
  position: relative;
  padding: var(--s-11) 0 var(--s-10);
  background:
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(36, 89, 227, 0.06), transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(11, 114, 133, 0.05), transparent 60%);
  overflow: hidden;
}
/* Soft vignette so the page grid fades near the hero edges */
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(255,255,255,0.35), transparent 75%);
  pointer-events: none;
}
.hero .container { position: relative; }
.hero-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: var(--s-6);
}
.hero-meta::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--ink-muted);
  vertical-align: middle;
  margin-right: var(--s-3);
}
.h-hero em {
  font-family: var(--font-headline);
  font-style: normal;
  color: var(--ink-muted);     /* muted emphasis instead of violet italic */
  font-weight: 400;
  letter-spacing: -0.02em;
  display: block;              /* break onto its own line for rhythm */
}
.hero .lede {
  font-size: 20px;
  line-height: 1.55;
  color: var(--ink-body);
  max-width: 60ch;
  margin: var(--s-6) 0 var(--s-7);
}
.hero-ctas {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
  margin-bottom: var(--s-6);
}
.hero-defense-entry {
  margin-bottom: var(--s-8);
}
.hero-defense-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease;
  backdrop-filter: blur(6px);
}
.hero-defense-link:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}
.hero-defense-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 10px;
  background: rgba(57,255,20,0.12);
  border: 1px solid rgba(57,255,20,0.3);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #39FF14;
}
.hero-telemetry {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-6);
  padding-top: var(--s-5);
  border-top: 1px solid var(--rule);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.hero-telemetry span { display: inline-flex; align-items: center; gap: var(--s-2); }
.hero-telemetry span::before {
  content: "●";
  color: var(--green);
  font-size: 9px;
}

/* ============================================================
   HERO — DEFENSE/PHOTOGRAPHIC VARIANT
   Full-bleed photo background with dark scrim + white knockout
   type. Sits inside the existing .hero structure so layout
   (container, ctas, telemetry) is preserved.
   ============================================================ */
.hero.hero-photo {
  padding: clamp(88px, 11vw, 160px) 0 clamp(80px, 10vw, 140px);
  background: #0A1220;       /* deep navy fallback */
  color: #fff;
  isolation: isolate;
}
.hero.hero-photo::before { display: none; }  /* override the light vignette */

.hero-photo-bg {
  position: absolute; inset: 0;
  background-image: url('./assets/img/cyber-intelligence-team.jpg');
  background-size: cover;
  background-position: center;
  filter: grayscale(0.25) brightness(0.6) contrast(1.05);
  z-index: 0;
}
.hero-photo-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(170deg, rgba(10, 18, 42, 0.40) 0%, rgba(12, 22, 55, 0.78) 100%),
    radial-gradient(ellipse 90% 100% at 10% 65%, rgba(36, 89, 227, 0.65), rgba(10, 18, 32, 0) 60%),
    radial-gradient(ellipse 70% 80% at 85% 25%, rgba(36, 89, 227, 0.30), rgba(10, 18, 32, 0) 60%),
    radial-gradient(ellipse 60% 55% at 45% 100%, rgba(36, 89, 227, 0.40), rgba(10, 18, 32, 0) 65%);
  z-index: 1;
}
/* Thin neon rule at the very bottom of the dark hero — Palantir-grade signal */
.hero.hero-photo::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg,
    rgba(57, 255, 20, 0) 0%,
    rgba(57, 255, 20, 0.55) 25%,
    var(--blue) 55%,
    rgba(0, 240, 255, 0.65) 85%,
    rgba(0, 240, 255, 0) 100%);
  z-index: 3;
}
.hero-photo .container { position: relative; z-index: 2; }

.hero.hero-photo .h-hero { color: #fff; }
.hero.hero-photo .h-hero em { color: rgba(140, 175, 255, 0.75); }

.hero-meta-dark {
  color: rgba(255, 255, 255, 0.72) !important;
}
.hero-meta-dark::before { background: rgba(255, 255, 255, 0.55) !important; }

.hero-lede-dark {
  color: rgba(255, 255, 255, 0.82) !important;
  max-width: 62ch;
}

.hero-telemetry-dark {
  color: rgba(255, 255, 255, 0.7) !important;
  border-top-color: rgba(255, 255, 255, 0.14) !important;
}
.hero-telemetry-dark span::before { color: var(--neon-green); }

/* Button variants that work on dark hero */
.btn-primary-light {
  display: inline-flex; align-items: center; justify-content: center;
  height: 44px; padding: 0 22px;
  border-radius: var(--pill);
  background: #fff; color: var(--ink);
  border: 1px solid #fff;
  font-family: var(--font-body);
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease;
}
.btn-primary-light:hover { transform: translateY(-1px); background: #f5f5f2; }

.btn.btn-ghost-light,
.btn-ghost-light {
  display: inline-flex; align-items: center; justify-content: center;
  height: 44px; padding: 0 22px;
  border-radius: var(--pill);
  background: transparent !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.65) !important;
  font-family: var(--font-body);
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: border-color .15s ease, background .15s ease;
}
.btn.btn-ghost-light:hover,
.btn-ghost-light:hover { border-color: #fff !important; background: rgba(255, 255, 255, 0.1) !important; }

.btn.btn-primary-light,
.btn-primary-light {
  background: #fff !important;
  color: var(--ink) !important;
  border: 1px solid #fff !important;
}

/* ============================================================
   FULL-BLEED PHOTO BANDS
   Breaks out of the .layout grid column to span the viewport.
   Uses viewport-width trick so markup stays inside .layout.
   ============================================================ */
.photo-band {
  position: relative;
  /* Full-bleed: this element is a sibling of <main>, not inside it,
     so plain 100% width against <body> is the full viewport. */
  width: 100%;
  height: clamp(360px, 44vw, 520px);
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  background-color: #0A1220;
  z-index: 1;  /* stays above the page grid paper */
}

/* Continuation <main> after a photo band: keep the same 2-column
   grid so content aligns with the original, but hide the duplicate
   TOC (visibility: hidden preserves the column width). */
.layout.layout-continued {
  padding-top: var(--s-8);
  grid-template-columns: 220px minmax(0, 1fr);
}
.layout.layout-continued > .toc {
  visibility: hidden;
  height: 0;
}
.photo-band::before {
  content: "";
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.35) brightness(0.55) contrast(1.05);
  z-index: 0;
}
.photo-band::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,18,32,0.15) 0%, rgba(10,18,32,0.78) 100%),
    radial-gradient(ellipse 45% 65% at 12% 75%, rgba(36, 89, 227, 0.30), rgba(10,18,32,0) 70%);
  z-index: 1;
}
/* Neon hairline along the bottom of each band — MPCH blue + cyan */
.photo-band {
  box-shadow: inset 0 -2px 0 0 var(--blue);
}
.photo-band.photo-band-2 {
  box-shadow: inset 0 -2px 0 0 var(--neon-cyan);
}
/* Vertical accent bar inside each band */
.photo-band-inner { border-left: 2px solid var(--blue); padding-left: var(--s-5); }
.photo-band.photo-band-2 .photo-band-inner { border-left-color: var(--neon-cyan); }
.photo-band-1::before {
  background-image: url('./assets/img/server-room-data-center.jpg');
}
.photo-band-2::before {
  background-image: url('./assets/img/woman-cybersecurity.jpg');
}
.photo-band-3::before {
  background-image: url('./assets/img/gradient-tech-bg.jpg');
  filter: grayscale(0.2) brightness(0.45) contrast(1.1);
}
.photo-band-inner {
  position: relative; z-index: 2;
  width: min(var(--container), 100% - 48px);
  margin-inline: auto;
  padding-bottom: var(--s-8);
}
.photo-band-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: var(--s-4);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}
.photo-band-eyebrow::before {
  content: "";
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--neon-green);
  box-shadow: 0 0 8px rgba(57, 255, 20, 0.6);
}
.photo-band.photo-band-2 .photo-band-eyebrow::before {
  background: var(--neon-cyan);
  box-shadow: 0 0 8px rgba(0, 240, 255, 0.65);
}
.photo-band-quote {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  max-width: 28ch;
  color: #fff;
  margin-bottom: var(--s-5);
}
.photo-band-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* ============================================================
   LAYOUT: TOC + CONTENT
   ============================================================ */
.layout {
  width: min(var(--container), 100% - 48px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: var(--s-8);
  padding-top: var(--s-8);
}
.toc {
  position: sticky;
  top: 96px;
  align-self: start;
  font-family: var(--font-mono);
  font-size: 12px;
}
.toc-title {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-muted);
  font-size: 10px;
  margin-bottom: var(--s-4);
}
.toc ul { list-style: none; padding: 0; margin: 0; border-left: 1px solid var(--border); }
.toc li { margin: 0; }
.toc a {
  display: block;
  padding: 6px 14px;
  text-decoration: none;
  color: var(--ink-muted);
  border-left: 2px solid transparent;
  margin-left: -1px;
  transition: color 0.15s, border-color 0.15s;
  font-size: 12px;
}
.toc a:hover { color: var(--ink); }
.toc a.active {
  color: var(--ink);
  border-left-color: var(--blue);
}

/* ============================================================
   BUTTONS — PILL (Peregrine signature)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 0 24px;
  height: 44px;
  border-radius: var(--pill);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: none; box-shadow: var(--focus); }

.btn-primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.btn-primary:hover { background: var(--blue-deep); border-color: var(--blue-deep); }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: #fff; }

.btn-accent {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.btn-accent:hover { background: #0a5715; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover { border-color: var(--ink); }

.btn-text {
  background: transparent;
  border: none;
  padding: 0;
  color: var(--ink);
  height: auto;
  border-radius: 0;
  position: relative;
}
.btn-text::after {
  content: "→";
  margin-left: 6px;
  transition: transform 0.2s;
}
.btn-text:hover::after { transform: translateX(4px); }

.btn-sm  { height: 36px; padding: 0 18px; font-size: 13px; }
.btn-lg  { height: 52px; padding: 0 32px; font-size: 15px; }

/* On dark panels */
.panel-dark .btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.panel-dark .btn-secondary:hover {
  background: #fff;
  color: var(--dark);
  border-color: #fff;
}
.panel-dark .btn-primary {
  background: #fff;
  color: var(--dark);
  border-color: #fff;
}
.panel-dark .btn-primary:hover { background: var(--neon-mint); border-color: var(--neon-mint); }

/* ============================================================
   COLOR SWATCHES
   ============================================================ */
.swatch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--s-4);
}
.swatch {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.swatch-chip {
  height: 110px;
  width: 100%;
  position: relative;
}
.swatch-body {
  padding: var(--s-4);
}
.swatch-name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 2px;
}
.swatch-hex {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-muted);
  text-transform: uppercase;
}
.swatch-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-faint);
  letter-spacing: 0.12em;
  margin-top: 6px;
  text-transform: uppercase;
}

.swatch-group-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: var(--s-7) 0 var(--s-4);
  padding-bottom: var(--s-2);
  border-bottom: 1px solid var(--rule);
}
.swatch-group-label:first-child { margin-top: 0; }

/* ============================================================
   TYPOGRAPHY SCALE SPECIMEN
   ============================================================ */
.type-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: var(--s-6);
  align-items: baseline;
  padding: var(--s-5) 0;
  border-bottom: 1px solid var(--rule);
}
.type-row:last-child { border-bottom: none; }
.type-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.type-meta strong {
  display: block;
  color: var(--ink);
  font-weight: 500;
  font-size: 13px;
  margin-bottom: 2px;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-body);
}
.type-specimen { color: var(--ink); }

/* Font family cards */
.font-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s-4);
  margin-bottom: var(--s-7);
}
.font-card {
  padding: var(--s-5);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.font-card .specimen {
  font-size: 44px;
  color: var(--ink);
  margin: var(--s-3) 0 var(--s-4);
  line-height: 1;
  font-weight: 400;
}
.font-card .font-name {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--ink-muted);
  text-transform: uppercase;
}
.font-card .font-role {
  font-size: 13px;
  color: var(--ink-body);
  margin-top: var(--s-2);
}

/* ============================================================
   SPACING RULER
   ============================================================ */
.space-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.space-row {
  display: grid;
  grid-template-columns: 80px 80px 1fr;
  gap: var(--s-4);
  align-items: center;
}
.space-token {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink);
  font-weight: 500;
}
.space-value {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-muted);
}
.space-bar {
  height: 12px;
  background: var(--violet);
  border-radius: 2px;
}

/* ============================================================
   GRID DEMO
   ============================================================ */
.grid {
  display: grid;
  gap: var(--s-4);
}
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

.grid-demo {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--s-3);
  background: var(--surface);
  padding: var(--s-4);
  border-radius: var(--radius);
}
.grid-demo .col {
  background: var(--violet-wash);
  border: 1px solid var(--violet);
  color: var(--violet);
  font-family: var(--font-mono);
  font-size: 10px;
  text-align: center;
  padding: var(--s-4) 0;
  border-radius: 2px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   PRINCIPLE CARDS
   ============================================================ */
.principle {
  padding: var(--s-6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.principle:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--border-strong);
}
.principle-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--violet);
  text-transform: uppercase;
  margin-bottom: var(--s-3);
}
.principle h3 {
  font-weight: 400;
  margin-bottom: var(--s-3);
}
.principle p {
  color: var(--ink-body);
  font-size: 15px;
  margin: 0;
}

/* ============================================================
   COMPONENT CARDS
   ============================================================ */
.component-card {
  background: var(--page);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: var(--s-5);
}
.component-preview {
  padding: var(--s-6);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  align-items: center;
}
.component-preview.column { flex-direction: column; align-items: flex-start; }
.component-code {
  background: var(--dark);
  color: #E8E6F1;
  padding: var(--s-5);
  font-family: var(--font-mono);
  font-size: 12px;
  overflow-x: auto;
  position: relative;
}
.component-code pre { margin: 0; }
.component-code .tag   { color: var(--neon-cyan); }
.component-code .attr  { color: var(--neon-mint); }
.component-code .str   { color: #FFD59A; }
.copy-btn {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  border-radius: 3px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s;
}
.copy-btn:hover { background: rgba(255, 255, 255, 0.16); }

/* ============================================================
   FORMS
   ============================================================ */
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--s-4); }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 14px;
  padding: 11px 14px;
  background: var(--page);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--violet);
  box-shadow: var(--focus);
}
.field .help {
  font-size: 12px;
  color: var(--ink-muted);
}
.field-error input { border-color: var(--coral); }
.field-error .help { color: var(--coral); }

/* ============================================================
   BADGES
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--pill);
  border: 1px solid transparent;
}
.badge-green  { background: var(--green-wash);  color: var(--green);  border-color: #C8E8CD; }
.badge-cyan   { background: var(--cyan-wash);   color: var(--cyan);   border-color: #BDE0E5; }
.badge-violet { background: var(--violet-wash); color: var(--violet); border-color: #D6D2EC; }
.badge-coral  { background: var(--coral-wash);  color: var(--coral);  border-color: #F3CDC7; }
.badge-amber  { background: var(--amber-wash);  color: var(--amber);  border-color: #EFE0B9; }
.badge-neutral { background: var(--surface);    color: var(--ink);    border-color: var(--border); }

/* ============================================================
   ALERTS
   ============================================================ */
.alert {
  padding: var(--s-4) var(--s-5);
  border-radius: var(--radius);
  border-left: 3px solid;
  background: var(--surface);
  margin-bottom: var(--s-3);
}
.alert-title {
  font-weight: 600;
  color: var(--ink);
  font-size: 14px;
  margin-bottom: 2px;
}
.alert-body { font-size: 13px; color: var(--ink-body); margin: 0; }
.alert-success { background: var(--green-wash);  border-left-color: var(--green); }
.alert-info    { background: var(--cyan-wash);   border-left-color: var(--cyan); }
.alert-warn    { background: var(--amber-wash);  border-left-color: var(--amber); }
.alert-error   { background: var(--coral-wash);  border-left-color: var(--coral); }

/* ============================================================
   TABLES
   ============================================================ */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); }
table.data {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
table.data th, table.data td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--rule);
}
table.data thead th {
  background: var(--surface);
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-muted);
}
table.data tbody tr:hover { background: var(--surface); }
table.data tbody tr:last-child td { border-bottom: none; }

/* ============================================================
   CONTENT CARDS (top-border variants)
   ============================================================ */
.card {
  background: var(--page);
  border: 1px solid var(--border);
  border-top: 3px solid var(--green);
  border-radius: var(--radius);
  padding: var(--s-5);
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.card-cyan   { border-top-color: var(--cyan); }
.card-violet { border-top-color: var(--violet); }
.card-blue   { border-top-color: var(--blue); }
.card-coral  { border-top-color: var(--coral); }
.card-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: var(--s-3);
}
.card-cyan   .card-num { color: var(--cyan); }
.card-violet .card-num { color: var(--violet); }
.card-blue   .card-num { color: var(--blue); }
.card-coral  .card-num { color: var(--coral); }
.card h4 {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  font-style: normal;
  margin-bottom: var(--s-2);
}
.card p {
  color: var(--ink-body);
  font-size: 14px;
  margin: 0;
}

/* ============================================================
   NUMBERED COMPARISON (Peregrine signature)
   ============================================================ */
.compare {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--s-8);
}
.compare-col h4 {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: var(--s-5);
  font-style: normal;
}
.compare-list {
  list-style: none;
  padding: 0; margin: 0;
  counter-reset: cmp;
}
.compare-list li {
  counter-increment: cmp;
  padding: var(--s-4) 0 var(--s-4) 56px;
  position: relative;
  border-top: 1px solid var(--rule);
  font-size: 15px;
  color: var(--ink-body);
}
.compare-list li:last-child { border-bottom: 1px solid var(--rule); }
.compare-list li::before {
  content: counter(cmp, decimal-leading-zero);
  position: absolute;
  left: 0; top: var(--s-4);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--violet);
}

/* ============================================================
   DARK PANEL — the Peregrine moment
   Detection-box overlay motif lives inside this panel.
   ============================================================ */
.panel-dark {
  background:
    radial-gradient(ellipse 100% 80% at 50% 100%, var(--dark-bloom) 0%, var(--dark) 45%, var(--dark-2) 100%);
  color: #fff;
  padding: var(--s-9) var(--s-5);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  margin: var(--s-6) 0;
}
.panel-dark .container {
  width: 100%;
  margin-inline: auto;
}
.panel-dark::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.panel-dark .container { position: relative; }
.panel-dark h2, .panel-dark h3, .panel-dark h4 { color: #fff; font-weight: 400; }
.panel-dark p { color: rgba(255, 255, 255, 0.72); }
.panel-dark .eyebrow { color: var(--neon-mint); }
.panel-dark .label-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 8px;
  background: var(--neon-green);
  color: var(--dark);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
}

/* Detection box overlay demo */
.detection-stage {
  position: relative;
  background:
    linear-gradient(135deg, #2a0f45 0%, #1b072d 40%, #0d0118 100%);
  min-height: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: var(--s-6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--s-7) var(--s-6) var(--s-6);
}
.detection-stage::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(57, 255, 20, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 255, 20, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.detection-box {
  position: absolute;
  border: 1px solid var(--neon-green);
  background: rgba(57, 255, 20, 0.06);
  border-radius: 1px;
}
.detection-box .label-chip {
  position: absolute;
  top: -22px; left: -1px;
  white-space: nowrap;
}
.detection-box.cyan {
  border-color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.05);
}
.detection-box.cyan .label-chip {
  background: var(--neon-cyan);
  color: var(--dark);
}
.detection-stage .stage-caption {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  position: absolute;
  bottom: var(--s-4);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  white-space: nowrap;
}

/* ============================================================
   GUIDELINES — Do / Don't
   ============================================================ */
.guidelines {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--s-4);
}
.rule {
  padding: var(--s-5);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-top: 3px solid var(--green);
}
.rule.dont { border-top-color: var(--coral); }
.rule-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--green);
  margin-bottom: var(--s-2);
}
.rule.dont .rule-tag { color: var(--coral); }
.rule h5 {
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 6px;
}
.rule p { font-size: 13px; margin: 0; color: var(--ink-body); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  margin-top: var(--s-10);
  border-top: 1px solid var(--border);
  padding: var(--s-7) 0 var(--s-8);
  background: var(--page);
}
.footer .container {
  display: flex;
  justify-content: space-between;
  gap: var(--s-6);
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: none;
}
.footer-logo .bracket {
  font-family: var(--font-headline);
  font-weight: 500;
  color: #39FF14;                      /* neon green — footer is dark context */
  text-shadow: 0 0 8px rgba(57, 255, 20, 0.45);
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0;
}
.footer-logo .mark { display: inline-block; padding: 0 2px; }
.footer-logo::after {
  content: "\00b7 Confidential \00b7 2026";
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-left: 8px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* --- Wide screens: container and type scale proportionally --- */
@media (min-width: 1440px) {
  :root { --container: 86vw; }
}
@media (min-width: 1800px) {
  html { font-size: calc(16px + 0.15vw); }
}
@media (min-width: 2200px) {
  html { font-size: calc(16px + 0.25vw); }
}

@media (max-width: 960px) {
  .layout { grid-template-columns: minmax(0, 1fr); }
  .toc { display: none; }
  .section { padding: var(--s-9) 0; }
  .hero { padding: var(--s-9) 0; }
  .type-row { grid-template-columns: 1fr; gap: var(--s-2); }
  .space-row { grid-template-columns: 72px 72px 1fr; }
}

@media (max-width: 820px) {
  .nav-links { display: none; }
  .logo-sub { display: none; }
}

@media (max-width: 600px) {
  .hero { padding: var(--s-8) 0 var(--s-9); }
  .h-hero { font-size: clamp(32px, 9vw, 48px); }
  .hero .lede { font-size: 17px; }
  .hero-telemetry { gap: var(--s-4); }
  .compare { gap: var(--s-5); }
  .font-card .specimen { font-size: 34px; }
  .section { padding: var(--s-8) 0; }
}

@media print {
  .nav, .toc, .hero-ctas { display: none; }
  .layout { grid-template-columns: 1fr; }
  .panel-dark { background: #fff; color: var(--ink); border: 1px solid var(--border); }
  .panel-dark h2, .panel-dark h3, .panel-dark h4 { color: var(--ink); }
  .panel-dark p { color: var(--ink-body); }
}

/* APEX gate — First Domain requirements list */
.gov-flow-gate-requirements {
  list-style: none;
  padding: 0;
  margin: 16px 0 20px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}
.gov-flow-gate-requirements li {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.82);
  padding-left: 14px;
  position: relative;
}
.gov-flow-gate-requirements li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #7FD4E1;
}
@media (max-width: 768px) {
  .gov-flow-gate-requirements {
    grid-template-columns: 1fr;
  }
}

/* ── Nav labels and dividers (structural navigation) ── */
.nav-dropdown-menu .nav-label {
  display: block;
  padding: 7px 18px;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 13px;
  color: #9ca3af;
  white-space: nowrap;
  cursor: default;
  pointer-events: none;
  user-select: none;
}
.nav-dropdown-menu .nav-divider {
  display: block;
  height: 1px;
  background: var(--border, #e5e7eb);
  margin: 6px 0;
  padding: 0;
}
.nav-dropdown-menu .nav-section-head {
  display: block;
  padding: 6px 18px 4px;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
  pointer-events: none;
  user-select: none;
}


/* ── Nav dropdown & responsive overrides (shared across all pages) ── */
.nav-links li { position: relative; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 180px;
  box-shadow: 0 8px 32px rgba(12,27,42,0.12);
  z-index: 100;
  list-style: none;
}
.nav-links li:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu li { margin: 0; }
.nav-dropdown-menu a {
  display: block;
  padding: 8px 20px;
  font-size: 13px;
  color: var(--ink-body);
  text-decoration: none;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: var(--surface); color: var(--ink); }
.nav-links .dropdown-arrow {
  display: inline-block;
  width: 10px;
  height: 6px;
  margin-left: 4px;
  vertical-align: middle;
}

/* === STORY SECTION === */
.story-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.story-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-body);
  cursor: pointer;
  transition: all 0.2s;
}
.story-tab svg { width: 18px; height: 18px; flex-shrink: 0; }
.story-tab.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.story-tab:hover:not(.active) { border-color: var(--blue); color: var(--blue); }

.story-panels { position: relative; }
.story-panel { display: none; }
.story-panel.active { display: block; }

.story-quote {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(24px, 2.8vw, 48px);
  line-height: 1.2;
  color: var(--ink);
  max-width: 52ch;
  margin-bottom: 48px;
}
.story-quote .highlight { color: var(--blue); }

/* Narrative sequence — numbered briefing layout */
/* === PILLAR CARDS — 3-column === */
.story-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.story-pillar {
  background: #162240;
  border-radius: 12px;
  padding: clamp(28px, 2.5vw, 40px);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.story-pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.story-pillar:nth-child(1)::before { background: var(--blue); }
.story-pillar:nth-child(2)::before { background: #0B7285; }
.story-pillar:nth-child(3)::before { background: #4A3AB0; }
.pillar-number {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.pillar-number::before { display: none; }
.pillar-content { }
.pillar-title {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(22px, 1.6vw, 28px);
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}
.pillar-body { font-size: 18px; line-height: 1.7; color: rgba(255,255,255,0.65); }

/* Company panel grid */
.story-company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
.story-terminal {
  background: #162240;
  border-radius: 8px;
  padding: 28px 24px;
  color: #fff;
}
.terminal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.terminal-header-rank {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--neon-green);
  letter-spacing: 0.05em;
}
.terminal-header-title {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.terminal-header-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--neon-green);
  border: 1px solid rgba(57,255,20,0.3);
  border-radius: 4px;
  padding: 2px 8px;
  letter-spacing: 0.1em;
}
.stat-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stat-row:last-child { border-bottom: none; }
.stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-width: 90px;
  flex-shrink: 0;
}
.stat-value {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.03em;
}
.stat-value--highlight { color: var(--neon-green); }
.stat-bar-wrap { flex: 1; }
.stat-bar {
  background: rgba(36,89,227,0.3);
  border-radius: 3px;
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
}
.stat-bar--cyan { background: rgba(11,114,133,0.3); }

.story-text-col { display: flex; flex-direction: column; gap: 24px; }
.story-text-block h3 {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 8px;
}
.story-text-block p { font-size: 18px; line-height: 1.7; color: var(--ink-body); }

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
  padding: 32px 0;
}
.story-stat-value {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--ink);
  line-height: 1;
}
.story-stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* === PRODUCT TABS === */
.product-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.product-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-body);
  cursor: pointer;
  transition: all 0.2s;
}
.product-tab svg { width: 16px; height: 16px; flex-shrink: 0; }
.product-tab.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.product-tab:hover:not(.active) { border-color: var(--blue); color: var(--blue); }

.product-panels { position: relative; }
.product-panel { display: none; }
.product-panel.active { display: block; }

.product-panel-inner {
  background: #162240;
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 0;
}
.product-panel-header {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  min-height: 220px;
}
.product-panel-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.25) brightness(0.55) contrast(1.05);
  z-index: 0;
}
.product-panel-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12,27,42,0.88) 0%, rgba(12,27,42,0.3) 50%, rgba(12,27,42,0.15) 100%);
  z-index: 1;
}
.product-panel-header > * { position: relative; z-index: 2; }
/* Product-specific header images */
[data-product="kms"] .product-panel-header::before {
  background-image: url('./assets/img/i-5.jpeg');
}
[data-product="blockchain"] .product-panel-header::before {
  background-image: url('./assets/img/server-room-data-center.jpg');
}
[data-product="dr"] .product-panel-header::before {
  background-image: url('./assets/img/i-1.jpeg');
}
[data-product="managed"] .product-panel-header::before {
  background-image: url('./assets/img/cyber-intelligence-team.jpg');
}
[data-product="governance"] .product-panel-header::before {
  background-image: url('./assets/img/woman-cybersecurity.jpg');
}
[data-product="physical"] .product-panel-header::before {
  background-image: url('./assets/img/i-7.jpeg');
}

/* Physical Security — custom card-grid layout */
.phys-panel {
  background: #162240;
  border-radius: 12px;
  padding: 36px 32px;
}
.phys-panel-lead {
  margin-bottom: 28px;
}
.phys-panel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.phys-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.phys-card svg { color: var(--blue); flex-shrink: 0; }
.phys-card strong {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 18px;
  color: #fff;
}
.phys-card span {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
}
@media (max-width: 960px) {
  .phys-panel-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .phys-panel-grid { grid-template-columns: 1fr; }
}
/* Cross-links between product panels */
.product-panel-links {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.panel-xlink {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 15px;
  color: var(--blue);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.panel-xlink:hover { color: #fff; }
/* Light-panel variant (for panels with white content area) */
.product-panel-content .panel-xlink:hover { color: var(--blue-deep, #1B45B5); }
.panel-xlink-neon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #39FF14;
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.2s ease, gap 0.2s ease;
}
.panel-xlink-neon:hover {
  color: #5FFF4A;
  gap: 10px;
}
.product-panel-tagline {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.product-panel-title {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 34px);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0;
}
.product-panel-title .bracket { color: var(--blue); }
.product-panel-content {
  padding: 36px 32px;
  background: rgba(255,255,255,0.03);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-panel-desc {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
}
.product-panel-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-panel-features li {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  padding: 8px 0 8px 18px;
  position: relative;
  line-height: 1.5;
}
.product-panel-features li::before {
  content: '\25B8';
  position: absolute;
  left: 0;
  color: var(--blue);
}

/* === OPERATIONS LEDGER === */
.ops-ledger {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 40px;
  background: #162240;
  border-radius: 12px;
  overflow: hidden;
  min-height: 240px;
}
.ops-ledger-hero {
  padding: clamp(32px, 3vw, 56px) clamp(28px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.ops-ledger-hero-value {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(44px, 4.5vw, 72px);
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.ops-ledger-hero-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.ops-ledger-hero-sub {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
  max-width: 32ch;
}
.ops-ledger-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.ops-ledger-metric {
  padding: clamp(20px, 2vw, 32px) clamp(20px, 2vw, 32px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
/* subtle grid lines between the 4 metrics */
.ops-ledger-metric:nth-child(1),
.ops-ledger-metric:nth-child(2) {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ops-ledger-metric:nth-child(1),
.ops-ledger-metric:nth-child(3) {
  border-right: 1px solid rgba(255,255,255,0.06);
}
.ops-ledger-metric-value {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(26px, 2.4vw, 38px);
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.ops-ledger-metric-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.logo-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 12px 0;
}
.logo-cloud-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 8px;
}
.deploy-client {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink-muted);
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  white-space: nowrap;
}

/* === PLATFORM IN ACTION (always dark) === */
.platform-action {
  background: #162240;
  border-radius: 12px;
  padding: 40px 48px;
  margin-top: 32px;
  color: #fff;
}
.platform-action .eyebrow { color: rgba(255,255,255,0.65); }
.platform-action h3 {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 28px);
  color: #fff;
  margin-bottom: 8px;
}
.platform-action-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 55ch;
  margin-bottom: 24px;
}

.infographic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.info-stat-card {
  background: rgba(36,89,227,0.06);
  border: 1px solid rgba(36,89,227,0.15);
  border-top: 3px solid rgba(36,89,227,0.5);
  border-radius: 8px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.info-stat-card-value {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 15px;
  color: #6B9FFF;
  letter-spacing: 0.03em;
}
.info-stat-card-label {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.info-stat-card-desc {
  font-family: var(--font-mono);
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.infographic-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
  padding: 20px 0;
  flex-wrap: wrap;
  row-gap: 16px;
}

.nav {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Large viewport nav scaling */
@media (min-width: 1800px) {
  /* --- Nav --- */
  .nav-inner { height: clamp(64px, 4vw, 88px); }
  .logo { font-size: clamp(18px, 1.1vw, 26px); }
  .logo .bracket { font-size: clamp(26px, 1.6vw, 38px); }
  .nav-links a { font-size: clamp(14px, 0.85vw, 18px); }
  .nav-links { gap: clamp(32px, 2vw, 48px); }
  .nav-cta { font-size: clamp(13px, 0.8vw, 17px); height: clamp(36px, 2.2vw, 48px); padding: 0 clamp(18px, 1.2vw, 28px); }
  .nav-dropdown-menu a { font-size: clamp(13px, 0.8vw, 16px); }

  /* --- Hero --- */
  .hero-logo .hero-mark { font-size: clamp(48px, 5.4vw, 120px); }
  .hero-logo .hero-bracket { width: clamp(14px, 1.5vw, 32px); height: clamp(64px, 7vw, 140px); }
  .hero-bracket--l::after { box-shadow: 0 calc(clamp(64px, 7vw, 140px) - clamp(3px, 0.25vw, 4px)) 0 0 #39FF14; }
  .hero-bracket--r::after { box-shadow: 0 calc(clamp(64px, 7vw, 140px) - clamp(3px, 0.25vw, 4px)) 0 0 #39FF14; }
  .h-hero { font-size: clamp(40px, 4.2vw, 96px); }
  .hero .lede, .hero-lede-dark { font-size: clamp(18px, 1.1vw, 24px); max-width: 54ch; }
  .hero-telemetry span { font-size: clamp(10px, 0.65vw, 14px); }
  .hero-telemetry { gap: clamp(24px, 1.6vw, 40px); }
  .hero-meta { font-size: clamp(11px, 0.7vw, 14px); }
  .btn-lg { font-size: clamp(15px, 0.9vw, 20px); height: clamp(48px, 3vw, 60px); padding: 0 clamp(28px, 1.8vw, 40px); }

  /* --- Section titles / subtitles (global) --- */
  .section-title { font-size: clamp(28px, 2.2vw, 64px); }
  .section-subtitle { font-size: clamp(18px, 1.05vw, 24px); }
  .corp-section .eyebrow { font-size: clamp(11px, 0.7vw, 14px); }
  .corp-section { padding: clamp(48px, 4.5vw, 112px) 0; }

  /* --- Story tabs / quote --- */
  .story-tabs .story-tab { font-size: clamp(14px, 0.9vw, 18px); padding: clamp(10px, 0.7vw, 14px) clamp(20px, 1.3vw, 28px); }
  .story-quote { font-size: clamp(24px, 2.2vw, 56px); }
  .pillar-title { font-size: clamp(22px, 1.4vw, 32px); }
  .pillar-body { font-size: clamp(17px, 0.95vw, 20px); }
  .pillar-number { font-size: clamp(12px, 0.7vw, 15px); }
  .story-stat-number { font-size: clamp(36px, 2.6vw, 56px); }
  .story-stat-label { font-size: clamp(12px, 0.75vw, 16px); }

  /* --- Platform products --- */
  .product-panel-tag { font-size: clamp(11px, 0.7vw, 14px); }
  .product-panel-title { font-size: clamp(20px, 1.4vw, 30px); }
  .product-panel-desc { font-size: clamp(18px, 1.1vw, 22px); }
  .product-feature { font-size: clamp(18px, 1.05vw, 21px); }

  /* --- Ops Ledger (wide) --- */
  .ops-ledger-hero-value { font-size: clamp(56px, 5vw, 84px); }
  .ops-ledger-metric-value { font-size: clamp(32px, 2.6vw, 48px); }
  .ops-ledger-metric-label { font-size: clamp(10px, 0.6vw, 13px); }
  .ops-ledger-hero-sub { font-size: clamp(18px, 1vw, 20px); }
  .deploy-client { font-size: clamp(14px, 0.9vw, 18px); }
  .logo-cloud-label { font-size: clamp(11px, 0.7vw, 14px); }

  /* --- Platform in Action --- */
  .platform-action { padding: clamp(40px, 2.8vw, 64px) clamp(48px, 3.2vw, 72px); }
  .platform-action h3 { font-size: clamp(26px, 2vw, 40px); }
  .platform-action-subtitle { font-size: clamp(18px, 1.1vw, 22px); }

  /* --- Infographic cards --- */
  .infographic-grid { gap: clamp(16px, 1.1vw, 28px); }
  .info-stat-card { padding: clamp(20px, 1.3vw, 32px); }
  .info-stat-card h4 { font-size: clamp(14px, 0.9vw, 18px); }
  .info-stat-card p { font-size: clamp(12px, 0.8vw, 16px); }
  .infographic-flow-label { font-size: clamp(10px, 0.65vw, 13px); }

  /* --- Physical security / managed --- */
  .managed-card h4 { font-size: clamp(16px, 1vw, 22px); }
  .managed-card p { font-size: clamp(18px, 1.05vw, 21px); }
  .managed-card-eyebrow { font-size: clamp(10px, 0.65vw, 13px); }
  /* vault-arch handled by new schematic layout */
  .location-label { font-size: clamp(13px, 0.85vw, 17px); }
  .location-detail { font-size: clamp(12px, 0.75vw, 16px); }

  /* --- Foundation cards --- */
  .foundation-card h4 { font-size: clamp(20px, 1.4vw, 26px); }
  .foundation-card p { font-size: clamp(15px, 0.9vw, 18px); }

  /* --- AI Governance --- */
  .gov-product h4 { font-size: clamp(16px, 1vw, 22px); }
  .gov-product p { font-size: clamp(18px, 1.05vw, 21px); }
  .gov-arch-label { font-size: clamp(15px, 1vw, 20px); }

  /* --- Trust section --- */
  .trust-card blockquote { font-size: clamp(15px, 0.95vw, 20px); }
  .trust-card-label { font-size: clamp(11px, 0.7vw, 14px); }
  .trust-card-attribution { font-size: clamp(12px, 0.75vw, 16px); }
  .trust-card-list li { font-size: clamp(16px, 0.95vw, 19px); }
  .trust-bar-item { font-size: clamp(14px, 0.9vw, 18px); }
  .cert-card h4 { font-size: clamp(15px, 0.95vw, 20px); }
  .cert-card p { font-size: clamp(16px, 0.95vw, 19px); }

  /* --- Ti22 section --- */
  .ti22-section h2 { font-size: clamp(28px, 2.2vw, 56px); }
  .ti22-section .section-subtitle { font-size: clamp(18px, 1.05vw, 24px); }
  .ti22-tab { font-size: clamp(14px, 0.85vw, 18px); }
  .ti22-stat-value { font-size: clamp(28px, 2vw, 48px); }
  .ti22-stat-label { font-size: clamp(11px, 0.7vw, 14px); }
  .ti22-cap-title { font-size: clamp(18px, 1.05vw, 22px); }
  .ti22-cap-desc { font-size: clamp(18px, 1.05vw, 21px); }

  /* --- Leadership --- */
  .leader-card-name { font-size: clamp(16px, 1vw, 22px); }
  .leader-card-role { font-size: clamp(12px, 0.75vw, 16px); }
  .leader-card-bio { font-size: clamp(18px, 1.05vw, 21px); }

  /* --- Testimonials --- */
  .testimonial-card-quote p { font-size: clamp(15px, 0.95vw, 20px); }
  .testimonial-card-author strong { font-size: clamp(14px, 0.85vw, 18px); }
  .testimonial-card-author span { font-size: clamp(12px, 0.75vw, 16px); }
  .testimonial-card-context { font-size: clamp(11px, 0.7vw, 14px); }

  /* --- Press grid --- */
  .press-item-title { font-size: clamp(16px, 1vw, 22px); }
  .press-item-meta { font-size: clamp(12px, 0.75vw, 16px); }
  .press-item-desc { font-size: clamp(16px, 0.95vw, 20px); }
  .appearances-card h4 { font-size: clamp(15px, 0.95vw, 20px); }
  .appearances-card p { font-size: clamp(16px, 0.95vw, 19px); }

  /* --- Footer --- */
  .footer-col h4 { font-size: clamp(12px, 0.75vw, 16px); }
  .footer-col a { font-size: clamp(16px, 0.95vw, 19px); }
  .footer-bottom { font-size: clamp(12px, 0.75vw, 16px); }
  .footer-logo { font-size: clamp(14px, 0.85vw, 18px); }
  .footer-logo .bracket { font-size: clamp(20px, 1.2vw, 28px); }

  /* --- Buttons (global) --- */
  .btn-corporate { font-size: clamp(14px, 0.9vw, 18px); padding: clamp(14px, 0.9vw, 18px) clamp(28px, 1.8vw, 40px); }
  .btn { font-size: clamp(14px, 0.85vw, 18px); }

  /* --- Photo bands --- */
  .photo-band-quote { font-size: clamp(24px, 2.2vw, 48px); }
  .photo-band-eyebrow { font-size: clamp(11px, 0.7vw, 14px); }
  .photo-band-meta { font-size: clamp(11px, 0.7vw, 14px); }
}

/* Mobile nav */
@media (max-width: 960px) {
  .story-pillars { grid-template-columns: 1fr; }
  .story-pillar { padding: 28px; }
  .story-company-grid { grid-template-columns: 1fr; }
  .story-stats { grid-template-columns: repeat(3, 1fr); }
  .product-panel-inner { grid-template-columns: 1fr; }
  .ops-ledger { grid-template-columns: 1fr; }
  .ops-ledger-hero { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .gov-products { grid-template-columns: 1fr; }
  .gov-feature-hero { grid-template-columns: 1fr; }
  .gov-feature-primary { min-height: 360px; }
  .gov-feature-secondary { min-height: 260px; }
  .gov-feature-bottom { grid-template-columns: 1fr; }
  .gov-feature-bottom-card { min-height: 260px; }
  .hiw-card { grid-template-columns: 40px 1fr; }
  .hiw-card-numblock { display: none; }
  .hiw-rail { left: 19px; }
  .gov-cap-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
  .patent-grid { grid-template-columns: repeat(2, 1fr); }
  .ip-summary { grid-template-columns: repeat(2, 1fr); }
  .leadership-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .press-grid { grid-template-columns: repeat(2, 1fr); }
  .appearances-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
  .serve-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .vault-arch { border-radius: 0; }
  .vault-strip { grid-template-columns: repeat(2, 1fr); }
  .locations { grid-template-columns: 1fr; gap: 16px; }
  .location-divider { width: 48px; height: 1px; margin: 0 auto; }
  .managed-grid { grid-template-columns: 1fr; }
  .foundation-grid { grid-template-columns: repeat(2, 1fr); }
  .foundation-card { min-height: 240px; }
  .ti22-capabilities { grid-template-columns: 1fr; }
  .ti22-stats { grid-template-columns: repeat(2, 1fr); }
  .infographic-grid { grid-template-columns: 1fr; }
  .ui-screenshot-grid { grid-template-columns: 1fr; }

  /* Nav mobile */
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 80px 24px 24px;
    box-shadow: -4px 0 32px rgba(0,0,0,0.12);
    z-index: 99;
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links li { margin: 0; }
  .nav-links a { padding: 12px 0; display: block; }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0 16px;
    display: none;
  }
  .nav-links li.open .nav-dropdown-menu { display: block; }
}


/* ══════════════════════════════════════════════════════
   CORPORATE SHARED CSS — extracted from index.html
   Applied to all standalone pages via styles.css
   ══════════════════════════════════════════════════ */

/* ── CORPORATE EXTENSIONS ── */
/* These extend the design-system styles.css with corporate-specific sections */

/* === NAV OVERRIDES FOR CORPORATE === */
.nav-links li { position: relative; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 180px;
  box-shadow: 0 8px 32px rgba(12,27,42,0.12);
  z-index: 100;
  list-style: none;
}
.nav-links li:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu li { margin: 0; }
.nav-dropdown-menu a {
  display: block;
  padding: 8px 20px;
  font-size: 13px;
  color: var(--ink-body);
  text-decoration: none;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: var(--surface); color: var(--ink); }
.nav-links .dropdown-arrow {
  display: inline-block;
  width: 10px;
  height: 6px;
  margin-left: 4px;
  vertical-align: middle;
}

/* === STORY SECTION === */
.story-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.story-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-body);
  cursor: pointer;
  transition: all 0.2s;
}
.story-tab svg { width: 18px; height: 18px; flex-shrink: 0; }
.story-tab.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.story-tab:hover:not(.active) { border-color: var(--blue); color: var(--blue); }

.story-panels { position: relative; }
.story-panel { display: none; }
.story-panel.active { display: block; }

.story-quote {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(24px, 2.8vw, 48px);
  line-height: 1.2;
  color: var(--ink);
  max-width: 52ch;
  margin-bottom: 48px;
}
.story-quote .highlight { color: var(--blue); }

/* Narrative sequence — numbered briefing layout */
/* === PILLAR CARDS — 3-column === */
.story-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.story-pillar {
  background: #162240;
  border-radius: 12px;
  padding: clamp(28px, 2.5vw, 40px);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.story-pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.story-pillar:nth-child(1)::before { background: var(--blue); }
.story-pillar:nth-child(2)::before { background: #0B7285; }
.story-pillar:nth-child(3)::before { background: #4A3AB0; }
.pillar-number {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.pillar-number::before { display: none; }
.pillar-content { }
.pillar-title {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(22px, 1.6vw, 28px);
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}
.pillar-body { font-size: 18px; line-height: 1.7; color: rgba(255,255,255,0.65); }

/* Company panel grid */
.story-company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
.story-terminal {
  background: #162240;
  border-radius: 8px;
  padding: 28px 24px;
  color: #fff;
}
.terminal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.terminal-header-rank {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--neon-green);
  letter-spacing: 0.05em;
}
.terminal-header-title {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.terminal-header-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--neon-green);
  border: 1px solid rgba(57,255,20,0.3);
  border-radius: 4px;
  padding: 2px 8px;
  letter-spacing: 0.1em;
}
.stat-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stat-row:last-child { border-bottom: none; }
.stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-width: 90px;
  flex-shrink: 0;
}
.stat-value {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.03em;
}
.stat-value--highlight { color: var(--neon-green); }
.stat-bar-wrap { flex: 1; }
.stat-bar {
  background: rgba(36,89,227,0.3);
  border-radius: 3px;
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
}
.stat-bar--cyan { background: rgba(11,114,133,0.3); }

.story-text-col { display: flex; flex-direction: column; gap: 24px; }
.story-text-block h3 {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 8px;
}
.story-text-block p { font-size: 18px; line-height: 1.7; color: var(--ink-body); }

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
  padding: 32px 0;
}
.story-stat-value {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--ink);
  line-height: 1;
}
.story-stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* === PRODUCT TABS === */
.product-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.product-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-body);
  cursor: pointer;
  transition: all 0.2s;
}
.product-tab svg { width: 16px; height: 16px; flex-shrink: 0; }
.product-tab.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.product-tab:hover:not(.active) { border-color: var(--blue); color: var(--blue); }

.product-panels { position: relative; }
.product-panel { display: none; }
.product-panel.active { display: block; }

.product-panel-inner {
  background: #162240;
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 0;
}
.product-panel-header {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  min-height: 220px;
}
.product-panel-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.25) brightness(0.55) contrast(1.05);
  z-index: 0;
}
.product-panel-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12,27,42,0.88) 0%, rgba(12,27,42,0.3) 50%, rgba(12,27,42,0.15) 100%);
  z-index: 1;
}
.product-panel-header > * { position: relative; z-index: 2; }
/* Product-specific header images */
[data-product="kms"] .product-panel-header::before {
  background-image: url('./assets/img/i-5.jpeg');
}
[data-product="blockchain"] .product-panel-header::before {
  background-image: url('./assets/img/server-room-data-center.jpg');
}
[data-product="dr"] .product-panel-header::before {
  background-image: url('./assets/img/i-1.jpeg');
}
[data-product="managed"] .product-panel-header::before {
  background-image: url('./assets/img/cyber-intelligence-team.jpg');
}
[data-product="governance"] .product-panel-header::before {
  background-image: url('./assets/img/woman-cybersecurity.jpg');
}
[data-product="physical"] .product-panel-header::before {
  background-image: url('./assets/img/i-7.jpeg');
}

/* Physical Security — custom card-grid layout */
.phys-panel {
  background: #162240;
  border-radius: 12px;
  padding: 36px 32px;
}
.phys-panel-lead {
  margin-bottom: 28px;
}
.phys-panel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.phys-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.phys-card svg { color: var(--blue); flex-shrink: 0; }
.phys-card strong {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 18px;
  color: #fff;
}
.phys-card span {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
}
@media (max-width: 960px) {
  .phys-panel-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .phys-panel-grid { grid-template-columns: 1fr; }
}
/* Cross-links between product panels */
.product-panel-links {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.panel-xlink {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 15px;
  color: var(--blue);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.panel-xlink:hover { color: #fff; }
/* Light-panel variant (for panels with white content area) */
.product-panel-content .panel-xlink:hover { color: var(--blue-deep, #1B45B5); }
.panel-xlink-neon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #39FF14;
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.2s ease, gap 0.2s ease;
}
.panel-xlink-neon:hover {
  color: #5FFF4A;
  gap: 10px;
}
.product-panel-tagline {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.product-panel-title {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 34px);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0;
}
.product-panel-title .bracket { color: var(--blue); }
.product-panel-content {
  padding: 36px 32px;
  background: rgba(255,255,255,0.03);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-panel-desc {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
}
.product-panel-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-panel-features li {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  padding: 8px 0 8px 18px;
  position: relative;
  line-height: 1.5;
}
.product-panel-features li::before {
  content: '\25B8';
  position: absolute;
  left: 0;
  color: var(--blue);
}

/* === OPERATIONS LEDGER === */
.ops-ledger {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 40px;
  background: #162240;
  border-radius: 12px;
  overflow: hidden;
  min-height: 240px;
}
.ops-ledger-hero {
  padding: clamp(32px, 3vw, 56px) clamp(28px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.ops-ledger-hero-value {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(44px, 4.5vw, 72px);
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.ops-ledger-hero-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.ops-ledger-hero-sub {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
  max-width: 32ch;
}
.ops-ledger-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.ops-ledger-metric {
  padding: clamp(20px, 2vw, 32px) clamp(20px, 2vw, 32px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
/* subtle grid lines between the 4 metrics */
.ops-ledger-metric:nth-child(1),
.ops-ledger-metric:nth-child(2) {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ops-ledger-metric:nth-child(1),
.ops-ledger-metric:nth-child(3) {
  border-right: 1px solid rgba(255,255,255,0.06);
}
.ops-ledger-metric-value {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(26px, 2.4vw, 38px);
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.ops-ledger-metric-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.logo-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 12px 0;
}
.logo-cloud-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 8px;
}
.deploy-client {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink-muted);
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  white-space: nowrap;
}

/* === PLATFORM IN ACTION (always dark) === */
.platform-action {
  background: #162240;
  border-radius: 12px;
  padding: 40px 48px;
  margin-top: 32px;
  color: #fff;
}
.platform-action .eyebrow { color: rgba(255,255,255,0.65); }
.platform-action h3 {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 28px);
  color: #fff;
  margin-bottom: 8px;
}
.platform-action-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 55ch;
  margin-bottom: 24px;
}

.infographic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.info-stat-card {
  background: rgba(36,89,227,0.06);
  border: 1px solid rgba(36,89,227,0.15);
  border-top: 3px solid rgba(36,89,227,0.5);
  border-radius: 8px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.info-stat-card-value {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 15px;
  color: #6B9FFF;
  letter-spacing: 0.03em;
}
.info-stat-card-label {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.info-stat-card-desc {
  font-family: var(--font-mono);
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.infographic-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
  padding: 20px 0;
  flex-wrap: wrap;
  row-gap: 16px;
}
/* ── Flow animation: light travels THROUGH the connector lines ── */
/* Each connector has a bright streak that slides along the wire. */
/* Nodes glow when the light arrives at them. No floating ball. */

/* Connector: use a narrow bright gradient on a wide background-size,
   then animate background-position so the bright spot slides through */
.flow-connector {
  background: rgba(107,159,255,0.25);
  position: relative;
  overflow: hidden;
}
.flow-connector::after {
  content: '';
  position: absolute;
  inset: -2px 0;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(156,191,255,0.15) 30%,
    rgba(156,191,255,0.95) 50%,
    rgba(156,191,255,0.15) 70%,
    transparent 100%);
  background-size: 300% 100%;
  border-radius: 2px;
  box-shadow: 0 0 6px rgba(107,159,255,0.4);
}
/* Forward pass (0-50%): streak slides left→right. Reverse (50-100%): right→left */
.flow-conn--0::after { animation: lineStreak 4s ease-in-out infinite; animation-delay: 0s; }
.flow-conn--1::after { animation: lineStreak 4s ease-in-out infinite; animation-delay: 0.4s; }
.flow-conn--2::after { animation: lineStreak 4s ease-in-out infinite; animation-delay: 0.8s; }
.flow-conn--3::after { animation: lineStreak 4s ease-in-out infinite; animation-delay: 1.2s; }
@keyframes lineStreak {
  0%   { background-position: 100% 0; opacity: 0; }
  5%   { opacity: 1; }
  15%  { background-position: 0% 0; }
  20%  { opacity: 0; }
  45%  { opacity: 0; }
  50%  { background-position: 0% 0; opacity: 1; }
  65%  { background-position: 100% 0; }
  70%  { opacity: 0; }
  100% { opacity: 0; }
}

/* Node glow — lights up when the streak arrives */
.flow-node--0 .flow-node-icon { animation: nodeGlow 4s ease-in-out infinite; animation-delay: 0s; }
.flow-node--1 .flow-node-icon { animation: nodeGlow 4s ease-in-out infinite; animation-delay: 0.4s; }
.flow-node--2 .flow-node-icon { animation: nodeGlow 4s ease-in-out infinite; animation-delay: 0.8s; }
.flow-node--3 .flow-node-icon { animation: nodeGlow 4s ease-in-out infinite; animation-delay: 1.2s; }
.flow-node--4 .flow-node-icon { animation: nodeGlow 4s ease-in-out infinite; animation-delay: 1.6s; }
@keyframes nodeGlow {
  0%,5%   { box-shadow: 0 0 0 rgba(107,159,255,0); border-color: rgba(107,159,255,0.5); background: linear-gradient(135deg, rgba(36,89,227,0.3) 0%, rgba(12,27,42,0.6) 100%); }
  10%,18% { box-shadow: 0 0 24px rgba(107,159,255,0.5), inset 0 0 12px rgba(107,159,255,0.15); border-color: rgba(156,191,255,0.9); background: linear-gradient(135deg, rgba(36,89,227,0.5) 0%, rgba(12,27,42,0.7) 100%); }
  25%     { box-shadow: 0 0 0 rgba(107,159,255,0); border-color: rgba(107,159,255,0.5); background: linear-gradient(135deg, rgba(36,89,227,0.3) 0%, rgba(12,27,42,0.6) 100%); }
  50%,55% { box-shadow: 0 0 0 rgba(107,159,255,0); border-color: rgba(107,159,255,0.5); background: linear-gradient(135deg, rgba(36,89,227,0.3) 0%, rgba(12,27,42,0.6) 100%); }
  60%,68% { box-shadow: 0 0 24px rgba(107,159,255,0.5), inset 0 0 12px rgba(107,159,255,0.15); border-color: rgba(156,191,255,0.9); background: linear-gradient(135deg, rgba(36,89,227,0.5) 0%, rgba(12,27,42,0.7) 100%); }
  75%     { box-shadow: 0 0 0 rgba(107,159,255,0); border-color: rgba(107,159,255,0.5); background: linear-gradient(135deg, rgba(36,89,227,0.3) 0%, rgba(12,27,42,0.6) 100%); }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .flow-node-icon { animation: none !important; }
  .flow-connector::after { animation: none !important; }
}
.flow-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 100px;
  flex: 1;
}
.flow-node-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(107,159,255,0.5);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(36,89,227,0.3) 0%, rgba(12,27,42,0.6) 100%);
  color: #9CBFFF;
  font-size: 28px;
  transition: box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(4px);
}
.flow-node-icon svg {
  width: 32px;
  height: 32px;
  stroke: #9CBFFF;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.flow-node-label {
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  font-weight: 500;
}
.flow-connector {
  width: 48px;
  height: 2px;
  margin: 0 2px;
  margin-bottom: 28px;
  flex-shrink: 0;
}

.infographic-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(107,159,255,0.25);
}
.infographic-footer-item {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.03em;
}

.ui-screenshot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.ui-screenshot {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.25);
  position: relative;
  background: #0f1d33;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4), 0 0 0 1px rgba(36,89,227,0.15);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.ui-screenshot:hover {
  border-color: rgba(36,89,227,0.5);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(36,89,227,0.3);
}
.ui-screenshot img {
  width: 100%; display: block;
  filter: brightness(1.15) contrast(1.05);
}
.ui-screenshot-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

/* === PHYSICAL SECURITY === */
/* Vault Architecture — Schematic Blueprint */
.vault-arch {
  position: relative;
  width: calc(100% + 48px);
  margin-left: -24px;
  margin-right: -24px;
  margin-top: 40px;
  margin-bottom: 32px;
  overflow: hidden;
  isolation: isolate;
}
.vault-arch::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background: url('img-physical-security.png') center / cover no-repeat;
  filter: grayscale(0.3) brightness(0.25) contrast(1.1);
}
.vault-arch::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,18,32,0.75) 0%, rgba(10,18,32,0.92) 100%);
}

/* Layer header — spans full width, left-aligned */
.vault-layer {
  position: relative; z-index: 2;
  padding: 0 clamp(28px, 4vw, 64px);
}
.vault-layer:first-child { padding-top: clamp(40px, 5vw, 64px); }
.vault-layer:last-child { padding-bottom: clamp(40px, 5vw, 64px); }

.vault-layer-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(20px, 2.5vw, 32px);
}
.vault-layer-number {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(36,89,227,0.1);
  border: 1px solid rgba(36,89,227,0.25);
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
}
.vault-layer-title {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(22px, 2vw, 30px);
  color: #fff;
  letter-spacing: -0.01em;
  margin: 0;
}
.vault-layer-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.08);
}

/* Item strip — wide 4-across horizontal grid */
.vault-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 28px);
}

.vault-tile {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: clamp(16px, 1.5vw, 24px);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  transition: background 0.2s, border-color 0.2s;
}
.vault-tile:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(36,89,227,0.25);
}

/* Photo thumbnail — circular */
.vault-tile-thumb {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(36,89,227,0.3);
  box-shadow: 0 0 16px rgba(36,89,227,0.1);
}
.vault-tile-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) brightness(0.8);
}

.vault-tile-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.vault-tile-body strong {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(16px, 1vw, 19px);
  color: #fff;
  line-height: 1.3;
}
.vault-tile-body span {
  font-size: clamp(14px, 0.85vw, 16px);
  color: rgba(255,255,255,0.45);
  line-height: 1.45;
}

/* Convergence seam between layers */
.vault-seam {
  position: relative; z-index: 2;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: clamp(20px, 2.5vw, 36px) clamp(28px, 4vw, 64px);
}
.vault-seam-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(36,89,227,0.5), transparent);
}
.vault-seam-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  white-space: nowrap;
  padding: 6px 16px;
  border: 1px solid rgba(36,89,227,0.3);
  border-radius: 999px;
  background: rgba(36,89,227,0.08);
}

@media (max-width: 960px) {
  .vault-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .vault-strip { grid-template-columns: 1fr; }
  .vault-tile-thumb { width: 44px; height: 44px; }
}

.locations {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  margin: 32px 0;
  text-align: center;
}
.location-name {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
  margin-top: 8px;
}
.location-desc {
  font-size: 18px;
  color: var(--ink-muted);
  margin-top: 4px;
}
.location-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

.service-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 24px;
}
.service-card h3 {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 12px;
}
.service-card p { font-size: 18px; line-height: 1.7; color: var(--ink-body); }

.trust-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
  margin-bottom: 48px;
}
.trust-bar-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}
.trust-bar-value {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
}
.trust-bar-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* === MANAGED SERVICES === */
.managed-services {
  padding-top: 64px;
  margin-top: 64px;
  border-top: 1px solid var(--border);
}
.managed-header {
  text-align: center;
  margin-bottom: 48px;
}
.managed-header .section-label { color: #0D6B1A; }
.managed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.managed-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 24px;
}
.managed-card-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #0D6B1A;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.managed-card h4 {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 16px;
}
.managed-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.managed-card li {
  font-size: 18px;
  color: var(--ink-body);
  padding: 4px 0 4px 14px;
  position: relative;
  line-height: 1.7;
}
.managed-card li::before {
  content: '\25AA';
  position: absolute;
  left: 0;
  color: #0D6B1A;
}

/* === GOVERNANCE HERO BAND === */
.gov-hero-band {
  position: relative;
  padding: clamp(80px, 10vw, 120px) 0 clamp(64px, 8vw, 96px);
  background: #0A1220;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.gov-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('img-governance.png') center center / cover no-repeat;
  filter: grayscale(0.5) brightness(0.3) contrast(1.1);
  opacity: 0.45;
}
.gov-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,18,32,0.7) 0%, rgba(10,18,32,0.85) 100%),
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(36,89,227,0.15), transparent 70%);
}

/* === GOVERNANCE === */
/* ── GOV OVERVIEW — Redesigned immersive layout ── */
.gov-overview {
  margin: 48px 0;
}
.gov-overview-header {
  margin-bottom: 40px;
}
.gov-overview-header h3 {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.gov-overview-header p {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-body);
  max-width: 600px;
}

/* ── Main feature: 60/40 split hero card ── */
.gov-feature-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}
.gov-feature-primary {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
}
.gov-feature-primary .gov-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55) contrast(1.15) saturate(1.1);
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.5s ease;
}
.gov-feature-primary:hover .gov-card-bg {
  transform: scale(1.04);
  filter: brightness(0.6) contrast(1.15) saturate(1.1);
}
.gov-feature-primary .gov-card-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,27,42,0.05) 0%, rgba(12,27,42,0.85) 70%);
  z-index: 1;
}
.gov-feature-primary .gov-card-content {
  position: relative;
  z-index: 2;
  padding: 40px;
}
.gov-feature-primary .gov-card-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
}
.gov-feature-primary .gov-card-title {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.2;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}
.gov-feature-primary .gov-card-desc {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
}
.gov-feature-primary .gov-card-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  transition: gap 0.25s ease;
}
.gov-feature-primary:hover .gov-card-action { gap: 10px; }
.gov-card-action svg { width: 14px; height: 14px; }

/* ── Right column: stacked duo ── */
.gov-feature-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gov-feature-secondary {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  flex: 1;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
}
.gov-feature-secondary .gov-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5) contrast(1.15) saturate(1.1);
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.5s ease;
}
.gov-feature-secondary:hover .gov-card-bg {
  transform: scale(1.04);
  filter: brightness(0.55) contrast(1.15) saturate(1.1);
}
.gov-feature-secondary .gov-card-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,27,42,0.05) 0%, rgba(12,27,42,0.8) 65%);
  z-index: 1;
}
.gov-feature-secondary .gov-card-content {
  position: relative;
  z-index: 2;
  padding: 28px 32px;
}
.gov-feature-secondary .gov-card-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
}
.gov-feature-secondary .gov-card-title {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.2;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.gov-feature-secondary .gov-card-desc {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255,255,255,0.75);
}
.gov-feature-secondary .gov-card-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  transition: gap 0.25s ease;
}
.gov-feature-secondary:hover .gov-card-action { gap: 10px; }

/* ── Bottom row: two equal cards with photos ── */
.gov-feature-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.gov-feature-bottom-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
}
.gov-feature-bottom-card .gov-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5) contrast(1.15) saturate(1.1);
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.5s ease;
}
.gov-feature-bottom-card:hover .gov-card-bg {
  transform: scale(1.04);
  filter: brightness(0.55) contrast(1.15) saturate(1.1);
}
.gov-feature-bottom-card .gov-card-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,27,42,0.0) 0%, rgba(12,27,42,0.82) 60%);
  z-index: 1;
}
.gov-feature-bottom-card .gov-card-content {
  position: relative;
  z-index: 2;
  padding: 32px;
}
.gov-feature-bottom-card .gov-card-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
}
.gov-feature-bottom-card .gov-card-title {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.2;
  color: #fff;
  margin-bottom: 8px;
}
.gov-feature-bottom-card .gov-card-desc {
  font-size: 17px;
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
}
.gov-feature-bottom-card .gov-card-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  transition: gap 0.25s ease;
}
.gov-feature-bottom-card:hover .gov-card-action { gap: 10px; }

/* === Navy tile variant for gov bento grid === */
.gov-card--navy .gov-card-bg { display: none; }
.gov-card--navy .gov-card-scrim { display: none; }
.gov-card--navy {
  background: #162240;
  border: 1px solid rgba(255,255,255,0.06);
}
.gov-card--navy:hover {
  border-color: rgba(198,255,58,0.25);
  background: #1A2A4D;
}

/* === 24/7 Monitoring Map === */
.aegis-section {
  background: #080E14;
  position: relative;
  overflow: hidden;
}
.aegis-map-fullbleed {
  position: relative;
  width: 100%;
  height: clamp(480px, 56vw, 680px);
  overflow: hidden;
  background:
    url('assets/img/world-map.svg') left top / 100% 161% no-repeat,
    #070C12;
  background-blend-mode: normal;
}
.aegis-map-fullbleed canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}
.aegis-map-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(8,14,20,0.7) 0%, rgba(8,14,20,0.35) 40%, rgba(8,14,20,0.05) 100%),
    linear-gradient(180deg, rgba(8,14,20,0.15) 0%, rgba(8,14,20,0.0) 30%, rgba(8,14,20,0.0) 70%, rgba(8,14,20,0.3) 100%);
  pointer-events: none;
}
.aegis-overlay-content {
  padding: clamp(64px, 8vw, 100px) 0;
  max-width: 520px;
}
.aegis-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #39FF14;
  margin-bottom: 20px;
}
.aegis-title {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(30px, 3.6vw, 48px);
  color: #fff;
  line-height: 1.12;
  margin-bottom: 16px;
  letter-spacing: -0.015em;
}
.aegis-subtitle {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
}
.aegis-stats-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.aegis-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.7);
  background: rgba(57,255,20,0.06);
  border: 1px solid rgba(57,255,20,0.18);
  padding: 8px 16px;
  border-radius: 999px;
}
.aegis-stat-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.aegis-stat-dot--green {
  background: #39FF14;
  box-shadow: 0 0 6px rgba(57,255,20,0.6);
}

@media (max-width: 960px) {
  .aegis-map-fullbleed { height: clamp(420px, 70vw, 560px); }
  .aegis-map-scrim {
    background:
      linear-gradient(180deg, rgba(8,14,20,0.85) 0%, rgba(8,14,20,0.4) 50%, rgba(8,14,20,0.7) 100%);
  }
  .aegis-overlay-content { max-width: 100%; }
}
@media (max-width: 480px) {
  .aegis-stats-inline { gap: 8px; }
  .aegis-stat-pill { font-size: 10px; padding: 6px 12px; }
}

/* === HOW IT WORKS — REDESIGNED === */
.hiw-track {
  position: relative;
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
/* Vertical rail connecting dots */
.hiw-rail {
  position: absolute;
  left: 27px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
  z-index: 0;
}
.hiw-rail-fill {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--blue) 0%, rgba(36,89,227,0.15) 100%);
  transform-origin: top;
}
/* Each card row */
.hiw-card {
  position: relative;
  display: grid;
  grid-template-columns: 56px 200px 1fr;
  gap: 0;
  z-index: 1;
  min-height: 180px;
}
/* Dot on the rail */
.hiw-card-marker {
  display: flex;
  justify-content: center;
  padding-top: 40px;
}
.hiw-card-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid var(--surface);
  box-shadow: 0 0 0 2px var(--blue);
  position: relative;
  z-index: 2;
}
.hiw-card-dot--final {
  background: var(--green);
  box-shadow: 0 0 0 2px var(--green);
}
/* Navy number block */
.hiw-card-numblock {
  background: #0A1220;
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.hiw-card-numblock::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 80%, rgba(36,89,227,0.12), transparent 70%),
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(57,255,20,0.04), transparent 60%);
  pointer-events: none;
}
.hiw-card-num {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 56px;
  letter-spacing: -0.03em;
  line-height: 1;
  color: rgba(255,255,255,0.12);
  position: relative;
  z-index: 1;
}
.hiw-card-icon {
  width: 40px; height: 40px;
  color: rgba(255,255,255,0.55);
  position: relative;
  z-index: 1;
}
/* Body content */
.hiw-card-body {
  padding: 28px 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-left: none;
  border-radius: 0 12px 12px 0;
}
.hiw-card-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.hiw-card-body h3 {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 10px;
}
.hiw-card-body p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-body);
  margin-bottom: 16px;
  max-width: 50ch;
}
.hiw-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hiw-card-tags span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: 5px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
}
/* Hover lift */
.hiw-card {
  transition: transform 0.25s ease;
}
.hiw-card:hover {
  transform: translateX(4px);
}

/* ── APEX & ATLAS Product Cards (Redesigned) ── */
.gov-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
.gov-product {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(36,89,227,0.15);
}
/* Dark header band */
.gov-product-head {
  background: #0A1220;
  padding: 28px 24px 24px;
  position: relative;
  overflow: hidden;
}
.gov-product-head::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.gov-product-head::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), rgba(36,89,227,0.2));
}
.gov-product-pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.gov-product-pill--green { background: rgba(13,107,26,0.2); color: #6FCF7C; border: 1px solid rgba(13,107,26,0.3); }
.gov-product-pill--cyan { background: rgba(11,114,133,0.2); color: #5EC4D4; border: 1px solid rgba(11,114,133,0.3); }
.gov-product-pill--neon { background: rgba(57,255,20,0.12); color: #7CFF6A; border: 1px solid rgba(57,255,20,0.35); }
.gov-product-name {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 28px);
  color: #fff;
  letter-spacing: 0.04em;
  position: relative; z-index: 1;
}
.gov-product-name .bracket { color: var(--blue); }
.gov-product-acronym {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 4px;
  position: relative; z-index: 1;
}
.gov-product-tagline {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
  position: relative; z-index: 1;
}
/* Light body area */
.gov-product-body {
  background: var(--surface);
  padding: 28px;
}
.gov-product-hook {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--ink);
  margin-bottom: 24px;
  line-height: 1.3;
}
/* 3-up capability cards */
.gov-cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gov-cap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.gov-cap:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(36,89,227,0.08);
}
.gov-cap-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  background: rgba(36,89,227,0.08);
  color: var(--blue);
}
.gov-cap-icon svg { width: 20px; height: 20px; }
.gov-cap-icon--alert { background: rgba(192,57,43,0.08); color: #C0392B; }
.gov-cap-icon--log { background: rgba(74,58,176,0.08); color: #4A3AB0; }
.gov-cap-icon--telem { background: rgba(11,114,133,0.08); color: #0B7285; }
.gov-cap-icon--people { background: rgba(36,89,227,0.08); color: var(--blue); }
.gov-cap-icon--lock { background: rgba(13,107,26,0.08); color: #0D6B1A; }
.gov-cap h4 {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 6px;
}
.gov-cap p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-body);
  margin: 0;
}

/* Governance Stack */
/* ── Governance Architecture Diagram ── */
.gov-arch {
  background: #162240;
  border-radius: 12px;
  padding: clamp(32px, 4vw, 56px);
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.gov-arch::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.gov-arch-title {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 36px);
  color: #fff;
  text-align: center;
  margin-bottom: 8px;
  position: relative; z-index: 1;
}
.gov-arch-subtitle {
  font-family: var(--font-body);
  font-size: 20px;
  color: rgba(255,255,255,0.55);
  text-align: center;
  margin-bottom: 32px;
  font-style: italic;
  position: relative; z-index: 1;
}
/* Agent box at top */
.gov-arch-agent {
  max-width: 280px;
  margin: 0 auto 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 16px 24px;
  text-align: center;
  position: relative; z-index: 1;
}
.gov-arch-agent h4 {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 22px;
  color: #fff;
  margin-bottom: 4px;
}
.gov-arch-agent p {
  font-family: var(--font-mono);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
}
/* Connector from agent to columns */
.gov-arch-connector {
  width: 1px;
  height: 24px;
  background: rgba(36,89,227,0.5);
  margin: 0 auto;
  position: relative; z-index: 1;
}
.gov-arch-connector-branch {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative; z-index: 1;
  margin-bottom: 12px;
  height: 24px;
}
.gov-arch-connector-branch::before {
  content: '';
  position: absolute;
  top: 0;
  left: calc(16.67%);
  right: calc(16.67%);
  height: 1px;
  background: rgba(36,89,227,0.5);
}
.gov-arch-connector-branch .branch-down {
  position: absolute;
  width: 1px;
  height: 24px;
  background: rgba(36,89,227,0.5);
}
.gov-arch-connector-branch .branch-down:nth-child(1) { left: calc(16.67%); background: rgba(11,114,133,0.6); }
.gov-arch-connector-branch .branch-down:nth-child(2) { left: 50%; background: rgba(255,255,255,0.2); }
.gov-arch-connector-branch .branch-down:nth-child(3) { right: calc(16.67%); background: rgba(36,89,227,0.6); }
/* Three columns */
.gov-arch-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  position: relative; z-index: 1;
}
.gov-arch-col {
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
/* Column photo headers */
.gov-arch-col-photo {
  height: 100px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.gov-arch-col-photo::after {
  content: '';
  position: absolute; inset: 0;
}
.gov-arch-col--apex .gov-arch-col-photo::after {
  background: linear-gradient(180deg, rgba(11,114,133,0.2) 0%, rgba(10,18,32,0.8) 100%);
}
.gov-arch-col--infra .gov-arch-col-photo::after {
  background: linear-gradient(180deg, rgba(10,18,32,0.3) 0%, rgba(10,18,32,0.75) 100%);
}
.gov-arch-col--atlas .gov-arch-col-photo::after {
  background: linear-gradient(180deg, rgba(36,89,227,0.2) 0%, rgba(10,18,32,0.8) 100%);
}
.gov-arch-col--apex .gov-arch-col-photo {
  background-image: url('./assets/img/cyber-intelligence-team.jpg');
  filter: grayscale(0.3) brightness(0.7);
}
.gov-arch-col--infra .gov-arch-col-photo {
  background-image: url('./assets/img/server-room-data-center.jpg');
  filter: grayscale(0.3) brightness(0.7);
}
.gov-arch-col--atlas .gov-arch-col-photo {
  background-image: url('./assets/img/woman-cybersecurity.jpg');
  filter: grayscale(0.3) brightness(0.7);
}
/* Column content */
.gov-arch-col-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.gov-arch-col--apex .gov-arch-col-body { background: rgba(11,114,133,0.15); border: 1px solid rgba(11,114,133,0.35); border-top: 3px solid #0B7285; border-radius: 0 0 8px 8px; }
.gov-arch-col--infra .gov-arch-col-body { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.10); border-top: 3px solid rgba(255,255,255,0.25); border-radius: 0 0 8px 8px; }
.gov-arch-col--atlas .gov-arch-col-body { background: rgba(36,89,227,0.12); border: 1px solid rgba(36,89,227,0.35); border-top: 3px solid #2459E3; border-radius: 0 0 8px 8px; }
.gov-arch-col-name {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(25px, 2.8vw, 31px);
  color: #fff;
  margin-bottom: 2px;
}
.gov-arch-col--apex .gov-arch-col-name { color: #5EC4D4; }
.gov-arch-col--atlas .gov-arch-col-name { color: #6B9FFF; }
.gov-arch-col-acronym {
  font-family: var(--font-mono);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
}
.gov-arch-col-tagline {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 20px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
}
.gov-arch-col--apex .gov-arch-col-tagline { color: #8DD8E3; }
.gov-arch-col--atlas .gov-arch-col-tagline { color: #9CBFFF; }
.gov-arch-col-list {
  list-style: none; padding: 0; margin: 0 0 16px;
}
.gov-arch-col-list li {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
  padding-left: 20px;
  position: relative;
  margin-bottom: 4px;
}
.gov-arch-col-list li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.35);
}
.gov-arch-col--apex .gov-arch-col-list li::before { color: #0B7285; }
.gov-arch-col--atlas .gov-arch-col-list li::before { color: #2459E3; }
.gov-arch-col-status {
  font-family: var(--font-mono);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
  margin-top: auto;
  font-style: italic;
}
/* Infra column centered items */
.gov-arch-infra-label {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  margin-bottom: 20px;
  font-style: italic;
}
.gov-arch-infra-item {
  text-align: center;
  margin-bottom: 16px;
}
.gov-arch-infra-item h4 {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 21px;
  color: #fff;
  margin-bottom: 2px;
}
.gov-arch-infra-item p {
  font-family: var(--font-mono);
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
/* Bottom bar */
.gov-arch-footer {
  margin-top: 16px;
  padding: 14px 24px;
  background: rgba(36,89,227,0.15);
  border: 1px solid rgba(36,89,227,0.3);
  border-radius: 8px;
  text-align: center;
  position: relative; z-index: 1;
}
.gov-arch-footer p {
  font-size: 25px;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-body);
}
.gov-arch-footer strong {
  color: #fff;
}
.gov-arch-footer em {
  font-style: italic;
  color: rgba(255,255,255,0.6);
}
/* Mobile: stack columns */
@media (max-width: 768px) {
  .gov-arch-columns { grid-template-columns: 1fr; }
  .gov-arch-connector-branch { display: none; }
  .gov-arch-col-photo { height: 72px; }
}

/* Horizontal governance flow row */
.gov-arch-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.gov-arch-row > .gov-arch-agent,
.gov-arch-row > .gov-flow-gate,
.gov-arch-row > .gov-flow-infra {
  margin: 0;
  max-width: none;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.gov-arch-row > .gov-arch-agent {
  flex: 0 1 200px;
  align-self: center;
}
.gov-arch-row > .gov-flow-infra {
  flex: 1 1 0;
  align-self: center;
}
.gov-arch-row > .gov-arch-connector {
  width: 32px;
  height: 1px;
  flex: 0 0 32px;
  align-self: center;
  margin: 0;
}
.gov-arch-row .gov-flow-gate-caps {
  flex-direction: column;
  gap: 8px;
}
.gov-arch-row .gov-flow-infra-items {
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
/* Narrow: flip back to vertical stack */
@media (max-width: 900px) {
  .gov-arch-row {
    flex-direction: column;
    align-items: stretch;
  }
  .gov-arch-row > .gov-arch-agent,
  .gov-arch-row > .gov-flow-gate,
  .gov-arch-row > .gov-flow-infra {
    flex: 0 0 auto;
    margin: 0 auto;
  }
  .gov-arch-row > .gov-arch-agent { max-width: 280px; }
  .gov-arch-row > .gov-flow-gate { max-width: 600px; width: 100%; }
  .gov-arch-row > .gov-flow-infra { max-width: 520px; width: 100%; }
  .gov-arch-row > .gov-arch-connector {
    width: 1px;
    height: 24px;
    flex: 0 0 24px;
    margin: 0 auto;
  }
  .gov-arch-row .gov-flow-gate-caps { flex-direction: row; flex-wrap: wrap; }
  .gov-arch-row .gov-flow-infra-items { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 600px) {
  .gov-arch-row .gov-flow-gate-caps { flex-direction: column; }
  .gov-arch-row .gov-flow-infra-items { flex-direction: column; }
}

/* ── Governance Flow Gates (merged Block 2+3) ── */
.gov-flow-gate {
  max-width: 600px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.gov-flow-gate-header {
  padding: 24px 28px 20px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.gov-flow-gate-header .gov-product-name {
  margin-top: 4px;
}
.gov-flow-gate-acronym {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 4px;
}
.gov-flow-gate-hook {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 22px);
  color: rgba(255,255,255,0.85);
  padding: 20px 28px 0;
  line-height: 1.3;
}
.gov-flow-gate-caps {
  display: flex;
  gap: 12px;
  padding: 16px 28px 20px;
  flex-wrap: wrap;
}
.gov-flow-cap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.gov-flow-gate--apex {
  border: 1px solid rgba(11,114,133,0.4);
}
.gov-flow-gate--apex .gov-flow-cap {
  background: rgba(11,114,133,0.12);
  color: #5EC4D4;
  border: 1px solid rgba(11,114,133,0.25);
}
.gov-flow-gate--atlas {
  border: 1px solid rgba(36,89,227,0.4);
}
.gov-flow-gate--atlas .gov-flow-cap {
  background: rgba(36,89,227,0.12);
  color: #6B9FFF;
  border: 1px solid rgba(36,89,227,0.25);
}
.gov-flow-gate--infra {
  border: 1px solid rgba(57,255,20,0.35);
  background: rgba(20,40,20,0.12);
}
.gov-flow-gate--infra .gov-flow-cap {
  background: rgba(57,255,20,0.10);
  color: #9BFF8A;
  border: 1px solid rgba(57,255,20,0.30);
}
.gov-flow-gate--infra .gov-product-name { color: #fff; }
.gov-flow-gate--infra .bracket { color: #39FF14; }
/* Photo band at top of a gate */
.gov-flow-gate-photo {
  height: 120px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.gov-flow-gate-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,18,32,0.15) 0%, rgba(10,18,32,0.85) 100%);
}
.gov-flow-gate--infra .gov-flow-gate-photo::after {
  background: linear-gradient(180deg, rgba(10,18,32,0.10) 0%, rgba(20,40,20,0.55) 60%, rgba(10,18,32,0.85) 100%);
}
.gov-flow-gate-status {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 28px 20px;
  margin: 0;
}

/* Infrastructure center band */
.gov-flow-infra {
  max-width: 520px;
  margin: 0 auto;
  padding: 20px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.gov-flow-infra h4 {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}
.gov-flow-infra-items {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.gov-flow-infra-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.gov-flow-infra-chip svg {
  color: rgba(255,255,255,0.4);
}

@media (max-width: 768px) {
  .gov-flow-gate { max-width: 100%; }
  .gov-flow-infra { max-width: 100%; }
  .gov-flow-gate-caps { flex-direction: column; }
  .gov-flow-infra-items { flex-direction: column; align-items: center; }
}

/* Legacy stack (keep for compat) */
.gov-stack {
  display: none;
}
.gov-stack-title {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 24px;
  text-align: center;
}
.gov-stack-layers { display: flex; flex-direction: column; gap: 0; }
.gov-stack-layer {
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: -1px;
}
.gov-stack-layer--atlas { background: #F0F7FF; border-color: rgba(36,89,227,0.2); }
.gov-stack-layer--agents { background: #F9FAFB; }
.gov-stack-layer--apex { background: #F0FBFA; border-color: rgba(11,114,133,0.2); }
.gov-stack-layer-pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(12,27,42,0.06);
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.gov-stack-layer-name {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 4px;
}
.gov-stack-layer-desc { font-size: 18px; color: var(--ink-body); line-height: 1.6; }
.gov-stack-foundation {
  padding: 20px 24px;
  background: var(--ink);
  border-radius: 8px;
  margin-top: 8px;
  text-align: center;
}
.gov-stack-foundation-label {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 13px;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.gov-stack-foundation-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.gov-stack-foundation-items span {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}

/* Platform Stack Grid — Dark Image Cards */
.foundation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.foundation-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
  cursor: default;
  transition: transform 0.3s ease;
}
.foundation-card:hover { transform: translateY(-4px); }
.foundation-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.3) brightness(0.45) contrast(1.1);
  transition: filter 0.4s ease, transform 0.4s ease;
}
.foundation-card:hover .foundation-card-bg {
  filter: grayscale(0.2) brightness(0.5) contrast(1.1);
  transform: scale(1.04);
}
.foundation-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,18,32,0.15) 0%, rgba(10,18,32,0.85) 55%, rgba(10,18,32,0.95) 100%);
  z-index: 1;
  pointer-events: none;
}
.foundation-card-content {
  position: relative;
  z-index: 2;
  padding: 24px 22px;
}
.foundation-card-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.foundation-card h4 {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 22px;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.foundation-card p { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.7); }
.foundation-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 2;
}
.foundation-card:nth-child(1) .foundation-card-accent { background: var(--blue); }
.foundation-card:nth-child(2) .foundation-card-accent { background: #0B7285; }
.foundation-card:nth-child(3) .foundation-card-accent { background: #4A3AB0; }
.foundation-card:nth-child(4) .foundation-card-accent { background: var(--blue); }
.foundation-card:nth-child(5) .foundation-card-accent { background: #0B7285; }
.foundation-card:nth-child(6) .foundation-card-accent { background: #4A3AB0; }

/* Color-tinted tiles (mix with photo tiles so the grid is not all black) */
.foundation-card--tint .foundation-card-bg { display: none; }
.foundation-card--tint::after { display: none; }
.foundation-card--navy { background: linear-gradient(160deg, #162240 0%, #0F1A33 100%); border: 1px solid rgba(36,89,227,0.18); }
.foundation-card--navy:hover { border-color: rgba(36,89,227,0.35); }
.foundation-card--cyan { background: linear-gradient(160deg, #0E2E36 0%, #0A2127 100%); border: 1px solid rgba(11,114,133,0.22); }
.foundation-card--cyan:hover { border-color: rgba(11,114,133,0.4); }
.foundation-card--violet { background: linear-gradient(160deg, #261D4D 0%, #1A143A 100%); border: 1px solid rgba(74,58,176,0.22); }
.foundation-card--violet:hover { border-color: rgba(74,58,176,0.4); }
.foundation-card--tint .foundation-card-eyebrow { color: rgba(255,255,255,0.6); }
@media (max-width: 900px) {
  .foundation-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .foundation-grid { grid-template-columns: 1fr; }
  .foundation-card { min-height: 220px; }
}

/* === IP PROTECTION CARD (AI Governance / APEX + ATLAS) === */
.ip-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 36px 40px 36px 44px;
  background: linear-gradient(160deg, #162240 0%, #0F1A33 100%);
  border: 1px solid rgba(36,89,227,0.22);
  border-radius: 12px;
  margin-top: 32px;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.ip-card:hover {
  border-color: rgba(36,89,227,0.55);
  transform: translateY(-2px);
}
.ip-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--blue) 0%, #4A3AB0 50%, #0B7285 100%);
}
.ip-card__glyph {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(36,89,227,0.18), rgba(74,58,176,0.14) 55%, rgba(11,114,133,0.18));
  border: 1px solid rgba(36,89,227,0.40);
  box-shadow: inset 0 0 20px rgba(36,89,227,0.10);
}
.ip-card__glyph svg { width: 44px; height: 44px; }
.ip-card__label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--blue);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.ip-card__title {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.25;
  color: #fff;
  margin-top: 8px;
}
.ip-card__meta {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.70);
  margin-top: 10px;
  max-width: 62ch;
}
.ip-card__products {
  display: inline-flex;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.ip-card__product-chip {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.88);
}
.ip-card__product-chip--apex { border-color: rgba(74,58,176,0.55); color: #B8ADE8; }
.ip-card__product-chip--atlas { border-color: rgba(11,114,133,0.65); color: #7FD4E1; }
.ip-card__filing {
  text-align: right;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  flex-shrink: 0;
}
.ip-card__filing strong {
  display: block;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
@media (max-width: 780px) {
  .ip-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px;
  }
  .ip-card__filing { text-align: left; }
}

/* === TI22 DARK SECTION === */
.ti22-section {
  background: var(--ink);
  color: #fff;
  padding: clamp(80px, 10vw, 128px) 0;
  position: relative;
  overflow: hidden;
}
.ti22-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(57,255,20,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(57,255,20,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.ti22-classification {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--neon-green);
  letter-spacing: 0.2em;
  margin-bottom: 32px;
}
.ti22-logo-text {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(48px, 6vw, 72px);
  color: #fff;
  line-height: 1;
}
.ti22-logo-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.3em;
  margin-top: 8px;
}
.ti22-divider {
  width: 48px;
  height: 2px;
  background: var(--neon-green);
  margin: 24px 0;
}
.ti22-headline {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(24px, 3vw, 36px);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}
.ti22-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 60ch;
  margin-bottom: 32px;
}

/* Ti22 Product Tabs */
.ti22-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}
.ti22-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  background: transparent;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all 0.2s;
}
.ti22-tab svg { width: 16px; height: 16px; flex-shrink: 0; }
.ti22-tab.active {
  background: var(--neon-green);
  color: var(--ink);
  border-color: var(--neon-green);
}
.ti22-tab:hover:not(.active) { border-color: rgba(57,255,20,0.4); color: var(--neon-green); }

.ti22-panels { position: relative; }
.ti22-panel { display: none; }
.ti22-panel.active { display: block; }

.ti22-panel-inner {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ti22-panel-hero {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  height: 240px;
  margin-bottom: 32px;
}
.ti22-panel-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.3) brightness(0.6);
  border-radius: 8px;
}
.ti22-panel-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,18,32,0.5) 0%, rgba(10,18,32,0.2) 100%);
  border-radius: 8px;
}
@media (max-width: 960px) {
  .ti22-panel-hero {
    height: 180px;
    margin-bottom: 24px;
  }
}
.ti22-product-acronym {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}
.ti22-product-name {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(28px, 3.2vw, 40px);
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.ti22-product-tagline {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.ti22-product-desc {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 55ch;
  margin-bottom: 24px;
}
.ti22-product-patent {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--neon-green);
  border: 1px solid rgba(57,255,20,0.3);
  border-radius: 4px;
  padding: 3px 10px;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.ti22-product-status {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 3px 10px;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  margin-left: 8px;
}

.ti22-capabilities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
  grid-column: 1 / -1 !important;
}
.ti22-cap-card {
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  background: rgba(255,255,255,0.02);
}
.ti22-cap-designator {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--neon-green);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.ti22-cap-card h4 {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 15px;
  color: #fff;
  margin-bottom: 8px;
}
.ti22-cap-card p { font-size: 18px; color: rgba(255,255,255,0.5); line-height: 1.6; }

.ti22-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 48px 0;
  text-align: center;
}
.ti22-stat-value {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--neon-green);
  line-height: 1;
}
.ti22-stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ── Ti22 Select Applications ── */
.ti22-use-cases {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.ti22-use-cases-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}
.ti22-use-cases-header h3 {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(22px, 2vw, 28px);
  color: #fff;
  white-space: nowrap;
}
.ti22-use-cases-header::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--blue);
}
.ti22-apps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  overflow: hidden;
}
.ti22-app-card {
  background: rgba(12,27,42,0.85);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ti22-app-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(36,89,227,0.15);
  border: 1px solid rgba(36,89,227,0.3);
  color: #9CBFFF;
}
.ti22-app-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ti22-app-card h4 {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  line-height: 1.3;
}
.ti22-app-card p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.55);
}
@media (max-width: 960px) {
  .ti22-apps-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .ti22-apps-grid { grid-template-columns: 1fr; }
}

.ti22-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}
.ti22-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 4px 12px;
  letter-spacing: 0.08em;
}
.ti22-badge--accent {
  color: var(--neon-green);
  border-color: rgba(57,255,20,0.3);
}

/* === TRUST & VALIDATION === */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.trust-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 24px;
}
.trust-card-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--blue);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.trust-card blockquote {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-body);
  margin: 0 0 16px;
  font-style: italic;
  border-left: 3px solid var(--blue);
  padding-left: 16px;
}
.trust-card-attribution {
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 16px;
}
.trust-card-attribution a { color: var(--blue); text-decoration: none; }
.trust-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.trust-card-list li {
  font-size: 13px;
  color: var(--ink-body);
  padding: 4px 0 4px 14px;
  position: relative;
  line-height: 1.5;
}
.trust-card-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #0D6B1A;
  font-size: 12px;
}

.cert-list { display: flex; flex-direction: column; }
.cert-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.cert-item:last-child { border-bottom: none; }
.cert-item-source {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  display: block;
}
.cert-item-source a { color: #0B7285; text-decoration: none; }
.cert-item-text {
  font-size: 13px;
  color: var(--ink-muted);
  display: block;
  margin-top: 2px;
}

/* === IP SECTION === */
/* === IP PORTFOLIO SECTION (technology class tiles) === */
/* 7 tiles: 4 on top row, 3 centered on bottom row (desktop) */
.ip-classes {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.ip-classes .ip-class:nth-child(-n+4) { grid-column: span 2; }
.ip-classes .ip-class:nth-child(5) { grid-column: 2 / span 2; }
.ip-classes .ip-class:nth-child(6) { grid-column: 4 / span 2; }
.ip-classes .ip-class:nth-child(7) { grid-column: 6 / span 2; }

.ip-class {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
  min-height: 210px;
}
.ip-class::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--ipc-accent, var(--blue));
  opacity: 0.9;
}
.ip-class:hover {
  transform: translateY(-3px);
  border-color: var(--ipc-accent, var(--blue));
  box-shadow: 0 14px 34px rgba(12,27,42,0.08);
}
.ip-class__glyph {
  width: 68px;
  height: 68px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--ipc-glyph-bg, rgba(36,89,227,0.08));
  border: 1px solid var(--ipc-glyph-border, rgba(36,89,227,0.22));
}
.ip-class__glyph svg { width: 42px; height: 42px; }
.ip-class__name {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  color: var(--ink);
  margin-top: auto;
}

.ip-class--blue   { --ipc-accent: #2459E3; --ipc-glyph-bg: rgba(36,89,227,0.08);  --ipc-glyph-border: rgba(36,89,227,0.22); }
.ip-class--cyan   { --ipc-accent: #0B7285; --ipc-glyph-bg: rgba(11,114,133,0.10); --ipc-glyph-border: rgba(11,114,133,0.28); }
.ip-class--violet { --ipc-accent: #4A3AB0; --ipc-glyph-bg: rgba(74,58,176,0.10);  --ipc-glyph-border: rgba(74,58,176,0.28); }

.ip-footnote {
  margin-top: 48px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-align: center;
}

@media (max-width: 1100px) {
  .ip-classes { grid-template-columns: repeat(3, 1fr); }
  .ip-classes .ip-class { grid-column: auto !important; }
}
@media (max-width: 900px) {
  .ip-classes { grid-template-columns: repeat(2, 1fr); }
  .ip-class { min-height: 180px; padding: 24px 22px; }
  .ip-class__glyph { width: 58px; height: 58px; }
  .ip-class__glyph svg { width: 36px; height: 36px; }
}
@media (max-width: 560px) {
  .ip-classes { grid-template-columns: 1fr; }
}

/* === LEADERSHIP (light) === */
/* ============================================================
   GRAVITY BAND — Third-Party Validation + Executive Team
   Defense-grade dark band. Asymmetric validation grid.
   Portrait band for leadership. Mono eyebrows, hairlines only.
   ============================================================ */

.corp-section--gravity {
  background: #050B13;
  color: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}
.corp-section--gravity::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(36, 89, 227, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 89, 227, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
  opacity: 0.9;
  mask-image: radial-gradient(ellipse at 30% 20%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 20%, #000 0%, transparent 75%);
}
.corp-section--gravity .container { position: relative; z-index: 1; }

.gravity-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(123, 163, 255, 0.95);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.gravity-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(123, 163, 255, 0.6);
}
.gravity-title {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 14px 0 18px;
}
.gravity-sub {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.58);
  margin: 0 0 48px;
  max-width: 56ch;
}

/* ---- THIRD-PARTY VALIDATION — asymmetric layout ---- */
.validation-split {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.validation-hero {
  padding: 56px 48px 56px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 520px;
}
.validation-hero__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(123, 163, 255, 0.8);
  margin-bottom: 24px;
}
.validation-hero__org {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 6px;
}
.validation-hero__attr {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 32px;
}
.validation-hero__quote {
  font-family: var(--font-headline);
  font-weight: 400;
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: -0.005em;
  margin: 0 0 32px;
  max-width: 42ch;
  position: relative;
  padding-left: 22px;
}
.validation-hero__quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: rgba(123, 163, 255, 0.7);
}
.validation-hero__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.validation-hero__tags {
  display: flex;
  gap: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.validation-hero__source {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(123, 163, 255, 0.9);
  text-decoration: none;
  border-bottom: 1px solid rgba(123, 163, 255, 0.3);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.validation-hero__source:hover {
  color: #fff;
  border-color: #fff;
}

.validation-stack {
  display: flex;
  flex-direction: column;
}
.validation-row {
  padding: 24px 0 24px 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: block;
  text-decoration: none;
  color: inherit;
  transition: background 0.25s ease, padding 0.25s ease;
  position: relative;
}
.validation-row:last-child { border-bottom: none; }
.validation-row:hover {
  background: rgba(123, 163, 255, 0.04);
  padding-left: 56px;
}
.validation-row__tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(123, 163, 255, 0.85);
  margin-bottom: 10px;
}
.validation-row__org {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 6px;
}
.validation-row__attr {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 10px;
}
.validation-row__excerpt {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.validation-row__arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.25s ease, transform 0.25s ease;
}
.validation-row:hover .validation-row__arrow {
  color: rgba(123, 163, 255, 1);
  transform: translateY(-50%) translateX(4px);
}
.validation-footnote {
  margin: 40px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

/* ---- LEADERSHIP — portrait band ---- */
.leadership-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.leader-cell {
  padding: 40px 32px 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background 0.3s ease;
}
.leader-cell:last-child { border-right: none; }
.leader-cell:hover { background: rgba(123, 163, 255, 0.03); }
.leader-cell__idx {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(123, 163, 255, 0.85);
  margin-bottom: 20px;
}
.leader-cell__photo {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1 / 1;
  background: #000;
  margin: 0 0 22px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 2px;
}
.leader-cell__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(1) contrast(1.05);
  transition: filter 0.45s ease, transform 0.6s ease;
  background: #000;
}
.leader-cell:hover .leader-cell__photo img {
  filter: grayscale(0.7) contrast(1.08);
  transform: scale(1.02);
}
.leader-cell__photo::after {
  content: none;
}
.leader-cell__name {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 6px;
}
.leader-cell__role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(123, 163, 255, 0.95);
  margin: 0 0 16px;
}
.leader-cell__bio {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* Responsive — keep shape, reflow */
@media (max-width: 1024px) {
  .validation-split { grid-template-columns: 1fr; }
  .validation-hero {
    padding: 48px 0;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    min-height: 0;
  }
  .validation-row { padding-left: 0; }
  .validation-row:hover { padding-left: 8px; }
  .leadership-band { grid-template-columns: repeat(2, 1fr); }
  .leader-cell:nth-child(2) { border-right: none; }
  .leader-cell:nth-child(1), .leader-cell:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}
@media (max-width: 640px) {
  .leadership-band { grid-template-columns: 1fr; }
  .leader-cell {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 32px 24px 28px;
  }
  .leader-cell:last-child { border-bottom: none; }
  .leader-cell__idx { margin-bottom: 14px; font-size: 10px; }
  .leader-cell__photo {
    max-width: 140px;
    margin: 0 0 18px;
  }
  .leader-cell__name { font-size: 20px; }
  .leader-cell__role { font-size: 10.5px; margin-bottom: 12px; }
  .leader-cell__bio { font-size: 13px; line-height: 1.55; }
}
.testimonial-source-link {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--blue);
  text-decoration: none;
  letter-spacing: 0.03em;
}


/* === PRESS === */
/* === PRESS (editorial) — featured lead + secondary grid === */
.press-editorial {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.press-lead {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px 56px 48px 0;
  border-right: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: background-color 0.2s ease;
  position: relative;
}
.press-lead:hover { background: rgba(36, 89, 227, 0.025); }
.press-lead__stamp {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 28px;
}
.press-lead__stamp-badge {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid var(--blue);
  color: var(--blue);
  border-radius: 2px;
  font-weight: 500;
}
.press-lead__title {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 24px 0;
}
.press-lead__excerpt {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-body);
  margin: 0 0 32px 0;
  max-width: 52ch;
}
.press-lead__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.press-lead__source { color: var(--blue); }
.press-lead__arrow {
  margin-left: auto;
  transition: transform 0.25s ease;
  color: var(--blue);
}
.press-lead:hover .press-lead__arrow { transform: translateX(4px); }

.press-secondary {
  display: flex;
  flex-direction: column;
}
.press-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 24px;
  align-items: start;
  padding: 28px 0 28px 40px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: background-color 0.2s ease, padding-left 0.25s ease;
}
.press-item:last-child { border-bottom: none; }
.press-item:hover {
  background: rgba(36, 89, 227, 0.025);
  padding-left: 48px;
}
.press-item__date {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  text-transform: uppercase;
  padding-top: 3px;
}
.press-item__body {
  min-width: 0;
}
.press-item__title {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 6px 0;
}
.press-item__source {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}
.press-item__arrow {
  color: var(--ink-muted);
  font-family: var(--font-mono);
  font-size: 14px;
  padding-top: 2px;
  transition: transform 0.25s ease, color 0.2s ease;
}
.press-item:hover .press-item__arrow {
  transform: translateX(4px);
  color: var(--blue);
}

/* Press editorial — responsive stacking */
@media (max-width: 960px) {
  .press-editorial { grid-template-columns: 1fr; }
  .press-lead {
    padding: 40px 24px 40px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .press-lead__title { font-size: clamp(26px, 5vw, 36px); }
  .press-lead__excerpt { font-size: 16px; }
  .press-item {
    padding: 24px 24px 24px 24px;
    grid-template-columns: 72px 1fr auto;
    gap: 16px;
  }
  .press-item:hover { padding-left: 28px; }
}
@media (max-width: 560px) {
  .press-lead {
    padding: 32px 20px 32px;
  }
  .press-lead__stamp { gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
  .press-lead__title { font-size: 26px; line-height: 1.15; }
  .press-lead__excerpt { font-size: 15px; margin-bottom: 24px; }
  .press-lead__meta { gap: 12px; flex-wrap: wrap; padding-top: 16px; font-size: 10px; }
  .press-lead__arrow { margin-left: auto; }
  .press-item {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 8px 12px;
    padding: 22px 20px;
    column-gap: 12px;
  }
  .press-item:hover { padding-left: 24px; }
  .press-item__date {
    grid-column: 1 / -1;
    grid-row: 1;
    padding-top: 0;
    margin-bottom: 2px;
  }
  .press-item__body {
    grid-column: 1;
    grid-row: 2;
  }
  .press-item__arrow {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
  }
  .press-item__title { font-size: 15px; }
}

/* === APPEARANCES — media tiles with thumbnails === */
.appearances-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 340px));
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
}
.appearance-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  transition: transform 0.25s ease;
}
.appearance-card:hover { transform: translateY(-3px); }

.appearance-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0a0e1a;
  margin-bottom: 18px;
  border: 1px solid var(--border);
}
.appearance-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.65, 0.2, 1), filter 0.4s ease;
  filter: contrast(1.02) saturate(0.95);
}
.appearance-card:hover .appearance-thumb img {
  transform: scale(1.04);
  filter: contrast(1.05) saturate(1.05);
}
.appearance-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 14, 26, 0) 45%, rgba(10, 14, 26, 0.55) 100%);
  pointer-events: none;
}
.appearance-thumb__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(10, 14, 26, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
}
.appearance-thumb__badge--video::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 6px solid var(--blue);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  margin-left: -2px;
}
.appearance-thumb__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.25s ease, background-color 0.25s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.appearance-thumb__play::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 18px solid var(--blue);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 5px;
}
.appearance-card:hover .appearance-thumb__play {
  transform: translate(-50%, -50%) scale(1.08);
  background: #fff;
}
.appearance-thumb__date {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.appearance-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.appearance-body__event {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}
.appearance-body__title {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
}
.appearance-body__speakers {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}
.appearance-body__speaker {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.4;
}
.appearance-body__speaker--mpch {
  color: var(--ink);
  font-weight: 500;
}
.appearance-body__speaker--mpch::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  transform: translateY(-1px);
}

/* === WHO WE SERVE (full-bleed dark-overlay cards) === */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.serve-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
  padding: 28px 24px 28px;
  background-color: #0C1B2A;
  background-size: cover;
  background-position: center;
  background-blend-mode: luminosity;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.serve-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 27, 42, 0.70) 0%, rgba(12, 27, 42, 0.85) 55%, rgba(12, 27, 42, 0.96) 100%);
  z-index: -1;
}
.serve-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(12, 27, 42, 0.22);
  border-color: rgba(36, 89, 227, 0.55);
}
.serve-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.serve-card__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7BA3FF;
  font-weight: 500;
}
.serve-card__title {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  color: #fff;
  margin: 2px 0 4px;
  letter-spacing: -0.01em;
}
.serve-card__desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}
@media (max-width: 1024px) {
  .serve-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .serve-grid { grid-template-columns: 1fr; }
  .serve-card { min-height: 340px; }
}

/* === FOOTER CORPORATE === */
.footer-corporate {
  background: var(--ink);
  color: #fff;
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
  max-width: 30ch;
}
.footer-ti22 {
  margin-top: 16px;
}
.footer-ti22-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--blue);
  letter-spacing: 0.2em;
}
.footer-ti22-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  margin-left: 8px;
}
.footer-nav-col h5 {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}
.footer-nav-col ul { list-style: none; padding: 0; margin: 0; }
.footer-nav-col li { margin-bottom: 8px; }
.footer-nav-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav-col a:hover { color: #fff; }

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-contact a:hover { color: #fff; }
.footer-contact svg { width: 14px; height: 14px; flex-shrink: 0; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}
.footer-certs {
  display: flex;
  gap: 12px;
}
.footer-cert {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
}

/* === SECTION LABEL (eyebrow above section titles) === */
.section-label {
  display: block;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(28px, 2.6vw, 52px);
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: clamp(18px, 1.15vw, 22px);
  line-height: 1.6;
  color: var(--ink-body);
  max-width: 70ch;
}

/* Section padding */
.corp-section {
  padding: clamp(48px, 6vw, 80px) 0;
  position: relative;
}
.corp-section--surface { background: var(--surface); }

/* Section image banners */
.section-image img {
  width: 100%;
  border-radius: 8px;
  display: block;
}
.section-image--short img { max-height: 400px; object-fit: cover; }
.section-image--medium img { max-height: 350px; object-fit: cover; }

/* === SCROLL REVEAL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Pill button style for CTAs */
.btn-corporate {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-corporate--primary {
  background: var(--ink);
  color: #fff;
}
.btn-corporate--primary:hover { background: #1a2d40; }
.btn-corporate--outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
}
.btn-corporate--outline:hover { border-color: var(--ink); }
.btn-corporate--light {
  background: #fff;
  color: var(--ink);
}
.btn-corporate--ghost-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-corporate--ghost-light:hover { border-color: #fff; }

/* === MOBILE NAVIGATION === */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: all 0.2s;
}
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 98;
}
.nav-backdrop.active { display: block; }

/* === WIDE SCREEN SCALING === */
@media (min-width: 1800px) {
  /* --- Nav --- */
  .nav-inner { height: clamp(64px, 4vw, 88px); }
  .logo { font-size: clamp(18px, 1.1vw, 26px); }
  .logo .bracket { font-size: clamp(26px, 1.6vw, 38px); }
  .nav-links a { font-size: clamp(14px, 0.85vw, 18px); }
  .nav-links { gap: clamp(32px, 2vw, 48px); }
  .nav-cta { font-size: clamp(13px, 0.8vw, 17px); height: clamp(36px, 2.2vw, 48px); padding: 0 clamp(18px, 1.2vw, 28px); }
  .nav-dropdown-menu a { font-size: clamp(13px, 0.8vw, 16px); }

  /* --- Hero --- */
  .hero-logo .hero-mark { font-size: clamp(48px, 5.4vw, 120px); }
  .hero-logo .hero-bracket { width: clamp(14px, 1.5vw, 32px); height: clamp(64px, 7vw, 140px); }
  .hero-bracket--l::after { box-shadow: 0 calc(clamp(64px, 7vw, 140px) - clamp(3px, 0.25vw, 4px)) 0 0 #39FF14; }
  .hero-bracket--r::after { box-shadow: 0 calc(clamp(64px, 7vw, 140px) - clamp(3px, 0.25vw, 4px)) 0 0 #39FF14; }
  .h-hero { font-size: clamp(40px, 4.2vw, 96px); }
  .hero .lede, .hero-lede-dark { font-size: clamp(18px, 1.1vw, 24px); max-width: 54ch; }
  .hero-telemetry span { font-size: clamp(10px, 0.65vw, 14px); }
  .hero-telemetry { gap: clamp(24px, 1.6vw, 40px); }
  .hero-meta { font-size: clamp(11px, 0.7vw, 14px); }
  .btn-lg { font-size: clamp(15px, 0.9vw, 20px); height: clamp(48px, 3vw, 60px); padding: 0 clamp(28px, 1.8vw, 40px); }

  /* --- Section titles / subtitles (global) --- */
  .section-title { font-size: clamp(28px, 2.2vw, 64px); }
  .section-subtitle { font-size: clamp(18px, 1.05vw, 24px); }
  .corp-section .eyebrow { font-size: clamp(11px, 0.7vw, 14px); }
  .corp-section { padding: clamp(48px, 4.5vw, 112px) 0; }

  /* --- Story tabs / quote --- */
  .story-tabs .story-tab { font-size: clamp(14px, 0.9vw, 18px); padding: clamp(10px, 0.7vw, 14px) clamp(20px, 1.3vw, 28px); }
  .story-quote { font-size: clamp(24px, 2.2vw, 56px); }
  .pillar-title { font-size: clamp(22px, 1.4vw, 32px); }
  .pillar-body { font-size: clamp(17px, 0.95vw, 20px); }
  .pillar-number { font-size: clamp(12px, 0.7vw, 15px); }
  .story-stat-number { font-size: clamp(36px, 2.6vw, 56px); }
  .story-stat-label { font-size: clamp(12px, 0.75vw, 16px); }

  /* --- Platform products --- */
  .product-panel-tag { font-size: clamp(11px, 0.7vw, 14px); }
  .product-panel-title { font-size: clamp(20px, 1.4vw, 30px); }
  .product-panel-desc { font-size: clamp(18px, 1.1vw, 22px); }
  .product-feature { font-size: clamp(18px, 1.05vw, 21px); }

  /* --- Ops Ledger (wide) --- */
  .ops-ledger-hero-value { font-size: clamp(56px, 5vw, 84px); }
  .ops-ledger-metric-value { font-size: clamp(32px, 2.6vw, 48px); }
  .ops-ledger-metric-label { font-size: clamp(10px, 0.6vw, 13px); }
  .ops-ledger-hero-sub { font-size: clamp(18px, 1vw, 20px); }
  .deploy-client { font-size: clamp(14px, 0.9vw, 18px); }
  .logo-cloud-label { font-size: clamp(11px, 0.7vw, 14px); }

  /* --- Platform in Action --- */
  .platform-action { padding: clamp(40px, 2.8vw, 64px) clamp(48px, 3.2vw, 72px); }
  .platform-action h3 { font-size: clamp(26px, 2vw, 40px); }
  .platform-action-subtitle { font-size: clamp(18px, 1.1vw, 22px); }

  /* --- Infographic cards --- */
  .infographic-grid { gap: clamp(16px, 1.1vw, 28px); }
  .info-stat-card { padding: clamp(20px, 1.3vw, 32px); }
  .info-stat-card h4 { font-size: clamp(14px, 0.9vw, 18px); }
  .info-stat-card p { font-size: clamp(12px, 0.8vw, 16px); }
  .infographic-flow-label { font-size: clamp(10px, 0.65vw, 13px); }

  /* --- Physical security / managed --- */
  .managed-card h4 { font-size: clamp(16px, 1vw, 22px); }
  .managed-card p { font-size: clamp(18px, 1.05vw, 21px); }
  .managed-card-eyebrow { font-size: clamp(10px, 0.65vw, 13px); }
  /* vault-arch handled by new schematic layout */
  .location-label { font-size: clamp(13px, 0.85vw, 17px); }
  .location-detail { font-size: clamp(12px, 0.75vw, 16px); }

  /* --- Foundation cards --- */
  .foundation-card h4 { font-size: clamp(20px, 1.4vw, 26px); }
  .foundation-card p { font-size: clamp(15px, 0.9vw, 18px); }

  /* --- AI Governance --- */
  .gov-product h4 { font-size: clamp(16px, 1vw, 22px); }
  .gov-product p { font-size: clamp(18px, 1.05vw, 21px); }
  .gov-arch-label { font-size: clamp(15px, 1vw, 20px); }

  /* --- Trust section --- */
  .trust-card blockquote { font-size: clamp(15px, 0.95vw, 20px); }
  .trust-card-label { font-size: clamp(11px, 0.7vw, 14px); }
  .trust-card-attribution { font-size: clamp(12px, 0.75vw, 16px); }
  .trust-card-list li { font-size: clamp(16px, 0.95vw, 19px); }
  .trust-bar-item { font-size: clamp(14px, 0.9vw, 18px); }
  .cert-card h4 { font-size: clamp(15px, 0.95vw, 20px); }
  .cert-card p { font-size: clamp(16px, 0.95vw, 19px); }

  /* --- Ti22 section --- */
  .ti22-section h2 { font-size: clamp(28px, 2.2vw, 56px); }
  .ti22-section .section-subtitle { font-size: clamp(18px, 1.05vw, 24px); }
  .ti22-tab { font-size: clamp(14px, 0.85vw, 18px); }
  .ti22-stat-value { font-size: clamp(28px, 2vw, 48px); }
  .ti22-stat-label { font-size: clamp(11px, 0.7vw, 14px); }
  .ti22-cap-title { font-size: clamp(18px, 1.05vw, 22px); }
  .ti22-cap-desc { font-size: clamp(18px, 1.05vw, 21px); }

  /* --- Leadership --- */
  .leader-card-name { font-size: clamp(16px, 1vw, 22px); }
  .leader-card-role { font-size: clamp(12px, 0.75vw, 16px); }
  .leader-card-bio { font-size: clamp(18px, 1.05vw, 21px); }

  /* --- Testimonials --- */
  .testimonial-card-quote p { font-size: clamp(15px, 0.95vw, 20px); }
  .testimonial-card-author strong { font-size: clamp(14px, 0.85vw, 18px); }
  .testimonial-card-author span { font-size: clamp(12px, 0.75vw, 16px); }
  .testimonial-card-context { font-size: clamp(11px, 0.7vw, 14px); }

  /* --- Press grid --- */
  .press-item-title { font-size: clamp(16px, 1vw, 22px); }
  .press-item-meta { font-size: clamp(12px, 0.75vw, 16px); }
  .press-item-desc { font-size: clamp(16px, 0.95vw, 20px); }
  .appearances-card h4 { font-size: clamp(15px, 0.95vw, 20px); }
  .appearances-card p { font-size: clamp(16px, 0.95vw, 19px); }

  /* --- Footer --- */
  .footer-col h4 { font-size: clamp(12px, 0.75vw, 16px); }
  .footer-col a { font-size: clamp(16px, 0.95vw, 19px); }
  .footer-bottom { font-size: clamp(12px, 0.75vw, 16px); }
  .footer-logo { font-size: clamp(14px, 0.85vw, 18px); }
  .footer-logo .bracket { font-size: clamp(20px, 1.2vw, 28px); }

  /* --- Buttons (global) --- */
  .btn-corporate { font-size: clamp(14px, 0.9vw, 18px); padding: clamp(14px, 0.9vw, 18px) clamp(28px, 1.8vw, 40px); }
  .btn { font-size: clamp(14px, 0.85vw, 18px); }

  /* --- Photo bands --- */
  .photo-band-quote { font-size: clamp(24px, 2.2vw, 48px); }
  .photo-band-eyebrow { font-size: clamp(11px, 0.7vw, 14px); }
  .photo-band-meta { font-size: clamp(11px, 0.7vw, 14px); }
}

/* === RESPONSIVE === */
@media (max-width: 960px) {
  .story-pillars { grid-template-columns: 1fr; }
  .story-pillar { padding: 28px; }
  .story-company-grid { grid-template-columns: 1fr; }
  .story-stats { grid-template-columns: repeat(3, 1fr); }
  .product-panel-inner { grid-template-columns: 1fr; }
  .ops-ledger { grid-template-columns: 1fr; }
  .ops-ledger-hero { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .gov-products { grid-template-columns: 1fr; }
  .gov-feature-hero { grid-template-columns: 1fr; }
  .gov-feature-primary { min-height: 360px; }
  .gov-feature-secondary { min-height: 260px; }
  .gov-feature-bottom { grid-template-columns: 1fr; }
  .gov-feature-bottom-card { min-height: 260px; }
  .hiw-card { grid-template-columns: 40px 1fr; }
  .hiw-card-numblock { display: none; }
  .hiw-rail { left: 19px; }
  .gov-cap-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
  .patent-grid { grid-template-columns: repeat(2, 1fr); }
  .ip-summary { grid-template-columns: repeat(2, 1fr); }
  .leadership-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .press-grid { grid-template-columns: repeat(2, 1fr); }
  .appearances-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
  .serve-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .vault-arch { border-radius: 0; }
  .vault-strip { grid-template-columns: repeat(2, 1fr); }
  .locations { grid-template-columns: 1fr; gap: 16px; }
  .location-divider { width: 48px; height: 1px; margin: 0 auto; }
  .managed-grid { grid-template-columns: 1fr; }
  .foundation-grid { grid-template-columns: repeat(2, 1fr); }
  .foundation-card { min-height: 240px; }
  .ti22-capabilities { grid-template-columns: 1fr; }
  .ti22-stats { grid-template-columns: repeat(2, 1fr); }
  .infographic-grid { grid-template-columns: 1fr; }
  .ui-screenshot-grid { grid-template-columns: 1fr; }

  /* Nav mobile */
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 80px 24px 24px;
    box-shadow: -4px 0 32px rgba(0,0,0,0.12);
    z-index: 99;
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links li { margin: 0; }
  .nav-links a { padding: 12px 0; display: block; }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0 16px;
    display: none;
  }
  .nav-links li.open .nav-dropdown-menu { display: block; }
}

@media (max-width: 640px) {
  .story-stats { grid-template-columns: repeat(2, 1fr); }
  .ops-ledger-grid { grid-template-columns: 1fr 1fr; }
  .leadership-grid { grid-template-columns: 1fr; }
  .press-grid { grid-template-columns: 1fr; }
  .serve-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .service-cards { grid-template-columns: 1fr; }
  .patent-grid { grid-template-columns: 1fr; }
  .ip-summary { grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 24px; }
  .ip-summary__value { font-size: 32px; }
  .trust-bar { grid-template-columns: 1fr; gap: 16px; }
  .trust-bar-sep { display: none; }
  .platform-action { padding: 24px; }
  .trust-grid { grid-template-columns: 1fr; }
  .appearances-grid { grid-template-columns: 1fr; }
  .corp-section { padding: clamp(48px, 6vw, 64px) 0; }
  .foundation-grid { grid-template-columns: 1fr; }
  .foundation-card { min-height: 200px; }
  .vault-strip { grid-template-columns: 1fr; }
  .vault-tile-thumb { width: 44px; height: 44px; }
}

/* Print safety */
@media print {
  .ti22-section, .photo-band, .hero-photo { break-inside: avoid; }
  .ti22-section::before { display: none; }
}

/* ── SCROLL ANIMATIONS ── */
.fade-in-section {
  opacity: 1;
  transform: none;
}

/* CSS scroll-driven animation (modern browsers) */
@supports (animation-timeline: view()) {
  .fade-in-section {
    opacity: 0;
    animation: revealFade linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 35%;
  }
  @keyframes revealFade {
    to { opacity: 1; }
  }
}

/* Fallback: IntersectionObserver adds .is-visible */
@supports not (animation-timeline: view()) {
  .fade-in-section {
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .fade-in-section.is-visible {
    opacity: 1;
  }
}

/* Staggered card reveals */
.stagger-cards .story-card,
.stagger-cards .managed-card,
.stagger-cards .security-card,
.stagger-cards .stack-card,
.stagger-cards .cert-item,
.stagger-cards .patent-card,
.stagger-cards .leader-card,
.stagger-cards .testimonial-card,
.stagger-cards .press-card,
.stagger-cards .appearance-card {
  opacity: 1;
}

@supports (animation-timeline: view()) {
  .stagger-cards .story-card,
  .stagger-cards .managed-card,
  .stagger-cards .security-card,
  .stagger-cards .stack-card,
  .stagger-cards .cert-item,
  .stagger-cards .patent-card,
  .stagger-cards .leader-card,
  .stagger-cards .testimonial-card,
  .stagger-cards .press-card,
  .stagger-cards .appearance-card {
    opacity: 0;
    animation: revealFade linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 40%;
  }
}

@supports not (animation-timeline: view()) {
  .stagger-cards .story-card,
  .stagger-cards .managed-card,
  .stagger-cards .security-card,
  .stagger-cards .stack-card,
  .stagger-cards .cert-item,
  .stagger-cards .patent-card,
  .stagger-cards .leader-card,
  .stagger-cards .testimonial-card,
  .stagger-cards .press-card,
  .stagger-cards .appearance-card {
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .stagger-cards .story-card.is-visible,
  .stagger-cards .managed-card.is-visible,
  .stagger-cards .security-card.is-visible,
  .stagger-cards .stack-card.is-visible,
  .stagger-cards .cert-item.is-visible,
  .stagger-cards .patent-card.is-visible,
  .stagger-cards .leader-card.is-visible,
  .stagger-cards .testimonial-card.is-visible,
  .stagger-cards .press-card.is-visible,
  .stagger-cards .appearance-card.is-visible {
    opacity: 1;
  }
}

/* Photo band parallax-lite (subtle scale on scroll) */
@supports (animation-timeline: view()) {
  .photo-band::before {
    animation: parallaxScale linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }
  @keyframes parallaxScale {
    from { transform: scale(1.08); }
    to   { transform: scale(1.0); }
  }
}

/* Nav hide on scroll down, show on scroll up */
.nav.nav-hidden {
  transform: translateY(-100%);
}
.nav {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .fade-in-section,
  .stagger-cards .story-card,
  .stagger-cards .managed-card,
  .stagger-cards .security-card,
  .stagger-cards .stack-card,
  .stagger-cards .cert-item,
  .stagger-cards .patent-card,
  .stagger-cards .leader-card,
  .stagger-cards .testimonial-card,
  .stagger-cards .press-card,
  .stagger-cards .appearance-card {
    opacity: 1 !important;
    animation: none !important;
    transition: none !important;
  }
  .photo-band::before {
    animation: none !important;
  }
}

/* ── Atlas / Gov feature cards (homepage) ── */
.gov-overview {
  margin: 48px 0;
}
.gov-overview-header {
  margin-bottom: 40px;
}
.gov-overview-header h3 {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.gov-overview-header p {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-body);
  max-width: 600px;
}

/* ── Main feature: 60/40 split hero card ── */
.gov-feature-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}
.gov-feature-primary {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
}
.gov-feature-primary .gov-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55) contrast(1.15) saturate(1.1);
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.5s ease;
}
.gov-feature-primary:hover .gov-card-bg {
  transform: scale(1.04);
  filter: brightness(0.6) contrast(1.15) saturate(1.1);
}
.gov-feature-primary .gov-card-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,27,42,0.05) 0%, rgba(12,27,42,0.85) 70%);
  z-index: 1;
}
.gov-feature-primary .gov-card-content {
  position: relative;
  z-index: 2;
  padding: 40px;
}
.gov-feature-primary .gov-card-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
}
.gov-feature-primary .gov-card-title {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.2;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}
.gov-feature-primary .gov-card-desc {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
}
.gov-feature-primary .gov-card-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  transition: gap 0.25s ease;
}
.gov-feature-primary:hover .gov-card-action { gap: 10px; }
.gov-card-action svg { width: 14px; height: 14px; }

/* ── Right column: stacked duo ── */
.gov-feature-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gov-feature-secondary {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  flex: 1;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
}
.gov-feature-secondary .gov-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5) contrast(1.15) saturate(1.1);
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.5s ease;
}
.gov-feature-secondary:hover .gov-card-bg {
  transform: scale(1.04);
  filter: brightness(0.55) contrast(1.15) saturate(1.1);
}
.gov-feature-secondary .gov-card-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,27,42,0.05) 0%, rgba(12,27,42,0.8) 65%);
  z-index: 1;
}
.gov-feature-secondary .gov-card-content {
  position: relative;
  z-index: 2;
  padding: 28px 32px;
}
.gov-feature-secondary .gov-card-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
}
.gov-feature-secondary .gov-card-title {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.2;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.gov-feature-secondary .gov-card-desc {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255,255,255,0.75);
}
.gov-feature-secondary .gov-card-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  transition: gap 0.25s ease;
}
.gov-feature-secondary:hover .gov-card-action { gap: 10px; }

/* ── Bottom row: two equal cards with photos ── */
.gov-feature-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.gov-feature-bottom-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
}
.gov-feature-bottom-card .gov-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5) contrast(1.15) saturate(1.1);
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.5s ease;
}
.gov-feature-bottom-card:hover .gov-card-bg {
  transform: scale(1.04);
  filter: brightness(0.55) contrast(1.15) saturate(1.1);
}
.gov-feature-bottom-card .gov-card-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,27,42,0.0) 0%, rgba(12,27,42,0.82) 60%);
  z-index: 1;
}
.gov-feature-bottom-card .gov-card-content {
  position: relative;
  z-index: 2;
  padding: 32px;
}
.gov-feature-bottom-card .gov-card-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
}
.gov-feature-bottom-card .gov-card-title {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.2;
  color: #fff;
  margin-bottom: 8px;
}
.gov-feature-bottom-card .gov-card-desc {
  font-size: 17px;
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
}
.gov-feature-bottom-card .gov-card-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  transition: gap 0.25s ease;
}
.gov-feature-bottom-card:hover .gov-card-action { gap: 10px; }

/* === Navy tile variant for gov bento grid === */
.gov-card--navy .gov-card-bg { display: none; }
.gov-card--navy .gov-card-scrim { display: none; }
.gov-card--navy {
  background: #162240;
  border: 1px solid rgba(255,255,255,0.06);
}
.gov-card--navy:hover {
  border-color: rgba(198,255,58,0.25);
  background: #1A2A4D;
}

/* ── Governance Architecture Flow (homepage) ── */
/* ── Governance Architecture Diagram ── */
.gov-arch {
  background: #162240;
  border-radius: 12px;
  padding: clamp(32px, 4vw, 56px);
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.gov-arch::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.gov-arch-title {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 36px);
  color: #fff;
  text-align: center;
  margin-bottom: 8px;
  position: relative; z-index: 1;
}
.gov-arch-subtitle {
  font-family: var(--font-body);
  font-size: 20px;
  color: rgba(255,255,255,0.55);
  text-align: center;
  margin-bottom: 32px;
  font-style: italic;
  position: relative; z-index: 1;
}
/* Agent box at top */
.gov-arch-agent {
  max-width: 280px;
  margin: 0 auto 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 16px 24px;
  text-align: center;
  position: relative; z-index: 1;
}
.gov-arch-agent h4 {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 22px;
  color: #fff;
  margin-bottom: 4px;
}
.gov-arch-agent p {
  font-family: var(--font-mono);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
}
/* Connector from agent to columns */
.gov-arch-connector {
  width: 1px;
  height: 24px;
  background: rgba(36,89,227,0.5);
  margin: 0 auto;
  position: relative; z-index: 1;
}
.gov-arch-connector-branch {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative; z-index: 1;
  margin-bottom: 12px;
  height: 24px;
}
.gov-arch-connector-branch::before {
  content: '';
  position: absolute;
  top: 0;
  left: calc(16.67%);
  right: calc(16.67%);
  height: 1px;
  background: rgba(36,89,227,0.5);
}
.gov-arch-connector-branch .branch-down {
  position: absolute;
  width: 1px;
  height: 24px;
  background: rgba(36,89,227,0.5);
}
.gov-arch-connector-branch .branch-down:nth-child(1) { left: calc(16.67%); background: rgba(11,114,133,0.6); }
.gov-arch-connector-branch .branch-down:nth-child(2) { left: 50%; background: rgba(255,255,255,0.2); }
.gov-arch-connector-branch .branch-down:nth-child(3) { right: calc(16.67%); background: rgba(36,89,227,0.6); }
/* Three columns */
.gov-arch-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  position: relative; z-index: 1;
}
.gov-arch-col {
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
/* Column photo headers */
.gov-arch-col-photo {
  height: 100px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.gov-arch-col-photo::after {
  content: '';
  position: absolute; inset: 0;
}
.gov-arch-col--apex .gov-arch-col-photo::after {
  background: linear-gradient(180deg, rgba(11,114,133,0.2) 0%, rgba(10,18,32,0.8) 100%);
}
.gov-arch-col--infra .gov-arch-col-photo::after {
  background: linear-gradient(180deg, rgba(10,18,32,0.3) 0%, rgba(10,18,32,0.75) 100%);
}
.gov-arch-col--atlas .gov-arch-col-photo::after {
  background: linear-gradient(180deg, rgba(36,89,227,0.2) 0%, rgba(10,18,32,0.8) 100%);
}
.gov-arch-col--apex .gov-arch-col-photo {
  background-image: url('./assets/img/cyber-intelligence-team.jpg');
  filter: grayscale(0.3) brightness(0.7);
}
.gov-arch-col--infra .gov-arch-col-photo {
  background-image: url('./assets/img/server-room-data-center.jpg');
  filter: grayscale(0.3) brightness(0.7);
}
.gov-arch-col--atlas .gov-arch-col-photo {
  background-image: url('./assets/img/woman-cybersecurity.jpg');
  filter: grayscale(0.3) brightness(0.7);
}
/* Column content */
.gov-arch-col-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.gov-arch-col--apex .gov-arch-col-body { background: rgba(11,114,133,0.15); border: 1px solid rgba(11,114,133,0.35); border-top: 3px solid #0B7285; border-radius: 0 0 8px 8px; }
.gov-arch-col--infra .gov-arch-col-body { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.10); border-top: 3px solid rgba(255,255,255,0.25); border-radius: 0 0 8px 8px; }
.gov-arch-col--atlas .gov-arch-col-body { background: rgba(36,89,227,0.12); border: 1px solid rgba(36,89,227,0.35); border-top: 3px solid #2459E3; border-radius: 0 0 8px 8px; }
.gov-arch-col-name {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(25px, 2.8vw, 31px);
  color: #fff;
  margin-bottom: 2px;
}
.gov-arch-col--apex .gov-arch-col-name { color: #5EC4D4; }
.gov-arch-col--atlas .gov-arch-col-name { color: #6B9FFF; }
.gov-arch-col-acronym {
  font-family: var(--font-mono);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
}
.gov-arch-col-tagline {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 20px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
}
.gov-arch-col--apex .gov-arch-col-tagline { color: #8DD8E3; }
.gov-arch-col--atlas .gov-arch-col-tagline { color: #9CBFFF; }
.gov-arch-col-list {
  list-style: none; padding: 0; margin: 0 0 16px;
}
.gov-arch-col-list li {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
  padding-left: 20px;
  position: relative;
  margin-bottom: 4px;
}
.gov-arch-col-list li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.35);
}
.gov-arch-col--apex .gov-arch-col-list li::before { color: #0B7285; }
.gov-arch-col--atlas .gov-arch-col-list li::before { color: #2459E3; }
.gov-arch-col-status {
  font-family: var(--font-mono);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
  margin-top: auto;
  font-style: italic;
}
/* Infra column centered items */
.gov-arch-infra-label {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  margin-bottom: 20px;
  font-style: italic;
}
.gov-arch-infra-item {
  text-align: center;
  margin-bottom: 16px;
}
.gov-arch-infra-item h4 {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 21px;
  color: #fff;
  margin-bottom: 2px;
}
.gov-arch-infra-item p {
  font-family: var(--font-mono);
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
/* Bottom bar */
.gov-arch-footer {
  margin-top: 16px;
  padding: 14px 24px;
  background: rgba(36,89,227,0.15);
  border: 1px solid rgba(36,89,227,0.3);
  border-radius: 8px;
  text-align: center;
  position: relative; z-index: 1;
}
.gov-arch-footer p {
  font-size: 25px;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-body);
}
.gov-arch-footer strong {
  color: #fff;
}
.gov-arch-footer em {
  font-style: italic;
  color: rgba(255,255,255,0.6);
}
/* Mobile: stack columns */
@media (max-width: 768px) {
  .gov-arch-columns { grid-template-columns: 1fr; }
  .gov-arch-connector-branch { display: none; }
  .gov-arch-col-photo { height: 72px; }
}

/* Horizontal governance flow row */
.gov-arch-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.gov-arch-row > .gov-arch-agent,
.gov-arch-row > .gov-flow-gate,
.gov-arch-row > .gov-flow-infra {
  margin: 0;
  max-width: none;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.gov-arch-row > .gov-arch-agent {
  flex: 0 1 200px;
  align-self: center;
}
.gov-arch-row > .gov-flow-infra {
  flex: 1 1 0;
  align-self: center;
}
.gov-arch-row > .gov-arch-connector {
  width: 32px;
  height: 1px;
  flex: 0 0 32px;
  align-self: center;
  margin: 0;
}
.gov-arch-row .gov-flow-gate-caps {
  flex-direction: column;
  gap: 8px;
}
.gov-arch-row .gov-flow-infra-items {
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
/* Narrow: flip back to vertical stack */
@media (max-width: 900px) {
  .gov-arch-row {
    flex-direction: column;
    align-items: stretch;
  }
  .gov-arch-row > .gov-arch-agent,
  .gov-arch-row > .gov-flow-gate,
  .gov-arch-row > .gov-flow-infra {
    flex: 0 0 auto;
    margin: 0 auto;
  }
  .gov-arch-row > .gov-arch-agent { max-width: 280px; }
  .gov-arch-row > .gov-flow-gate { max-width: 600px; width: 100%; }
  .gov-arch-row > .gov-flow-infra { max-width: 520px; width: 100%; }
  .gov-arch-row > .gov-arch-connector {
    width: 1px;
    height: 24px;
    flex: 0 0 24px;
    margin: 0 auto;
  }
  .gov-arch-row .gov-flow-gate-caps { flex-direction: row; flex-wrap: wrap; }
  .gov-arch-row .gov-flow-infra-items { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 600px) {
  .gov-arch-row .gov-flow-gate-caps { flex-direction: column; }
  .gov-arch-row .gov-flow-infra-items { flex-direction: column; }
}

/* ── Governance Flow Gates (merged Block 2+3) ── */
.gov-flow-gate {
  max-width: 600px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.gov-flow-gate-header {
  padding: 24px 28px 20px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.gov-flow-gate-header .gov-product-name {
  margin-top: 4px;
}
.gov-flow-gate-acronym {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 4px;
}
.gov-flow-gate-hook {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 22px);
  color: rgba(255,255,255,0.85);
  padding: 20px 28px 0;
  line-height: 1.3;
}
.gov-flow-gate-caps {
  display: flex;
  gap: 12px;
  padding: 16px 28px 20px;
  flex-wrap: wrap;
}
.gov-flow-cap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.gov-flow-gate--apex {
  border: 1px solid rgba(11,114,133,0.4);
}
.gov-flow-gate--apex .gov-flow-cap {
  background: rgba(11,114,133,0.12);
  color: #5EC4D4;
  border: 1px solid rgba(11,114,133,0.25);
}
.gov-flow-gate--atlas {
  border: 1px solid rgba(36,89,227,0.4);
}
.gov-flow-gate--atlas .gov-flow-cap {
  background: rgba(36,89,227,0.12);
  color: #6B9FFF;
  border: 1px solid rgba(36,89,227,0.25);
}
.gov-flow-gate--infra {
  border: 1px solid rgba(57,255,20,0.35);
  background: rgba(20,40,20,0.12);
}
.gov-flow-gate--infra .gov-flow-cap {
  background: rgba(57,255,20,0.10);
  color: #9BFF8A;
  border: 1px solid rgba(57,255,20,0.30);
}
.gov-flow-gate--infra .gov-product-name { color: #fff; }
.gov-flow-gate--infra .bracket { color: #39FF14; }
/* Photo band at top of a gate */
.gov-flow-gate-photo {
  height: 120px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.gov-flow-gate-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,18,32,0.15) 0%, rgba(10,18,32,0.85) 100%);
}
.gov-flow-gate--infra .gov-flow-gate-photo::after {
  background: linear-gradient(180deg, rgba(10,18,32,0.10) 0%, rgba(20,40,20,0.55) 60%, rgba(10,18,32,0.85) 100%);
}
.gov-flow-gate-status {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 28px 20px;
  margin: 0;
}

/* Infrastructure center band */
.gov-flow-infra {
  max-width: 520px;
  margin: 0 auto;
  padding: 20px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.gov-flow-infra h4 {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}
.gov-flow-infra-items {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.gov-flow-infra-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.gov-flow-infra-chip svg {
  color: rgba(255,255,255,0.4);
}

@media (max-width: 768px) {
  .gov-flow-gate { max-width: 100%; }
  .gov-flow-infra { max-width: 100%; }
  .gov-flow-gate-caps { flex-direction: column; }
  .gov-flow-infra-items { flex-direction: column; align-items: center; }
}

/* Legacy stack (keep for compat) */
.gov-stack {
  display: none;
}
.gov-stack-title {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 24px;
  text-align: center;
}
.gov-stack-layers { display: flex; flex-direction: column; gap: 0; }
.gov-stack-layer {
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: -1px;
}
.gov-stack-layer--atlas { background: #F0F7FF; border-color: rgba(36,89,227,0.2); }
.gov-stack-layer--agents { background: #F9FAFB; }
.gov-stack-layer--apex { background: #F0FBFA; border-color: rgba(11,114,133,0.2); }
.gov-stack-layer-pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(12,27,42,0.06);
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.gov-stack-layer-name {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 4px;
}
.gov-stack-layer-desc { font-size: 18px; color: var(--ink-body); line-height: 1.6; }
.gov-stack-foundation {
  padding: 20px 24px;
  background: var(--ink);
  border-radius: 8px;
  margin-top: 8px;
  text-align: center;
}
.gov-stack-foundation-label {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 13px;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.gov-stack-foundation-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.gov-stack-foundation-items span {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}

/* Platform Stack Grid — Dark Image Cards */
.foundation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.foundation-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
  cursor: default;
  transition: transform 0.3s ease;
}
.foundation-card:hover { transform: translateY(-4px); }
.foundation-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.3) brightness(0.45) contrast(1.1);
  transition: filter 0.4s ease, transform 0.4s ease;
}
.foundation-card:hover .foundation-card-bg {
  filter: grayscale(0.2) brightness(0.5) contrast(1.1);
  transform: scale(1.04);
}
.foundation-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,18,32,0.15) 0%, rgba(10,18,32,0.85) 55%, rgba(10,18,32,0.95) 100%);
  z-index: 1;
  pointer-events: none;
}
.foundation-card-content {
  position: relative;
  z-index: 2;
  padding: 24px 22px;
}
.foundation-card-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.foundation-card h4 {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 22px;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.foundation-card p { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.7); }
.foundation-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 2;
}
.foundation-card:nth-child(1) .foundation-card-accent { background: var(--blue); }
.foundation-card:nth-child(2) .foundation-card-accent { background: #0B7285; }
.foundation-card:nth-child(3) .foundation-card-accent { background: #4A3AB0; }
.foundation-card:nth-child(4) .foundation-card-accent { background: var(--blue); }
.foundation-card:nth-child(5) .foundation-card-accent { background: #0B7285; }
.foundation-card:nth-child(6) .foundation-card-accent { background: #4A3AB0; }

/* Color-tinted tiles (mix with photo tiles so the grid is not all black) */
.foundation-card--tint .foundation-card-bg { display: none; }
.foundation-card--tint::after { display: none; }
.foundation-card--navy { background: linear-gradient(160deg, #162240 0%, #0F1A33 100%); border: 1px solid rgba(36,89,227,0.18); }
.foundation-card--navy:hover { border-color: rgba(36,89,227,0.35); }
.foundation-card--cyan { background: linear-gradient(160deg, #0E2E36 0%, #0A2127 100%); border: 1px solid rgba(11,114,133,0.22); }
.foundation-card--cyan:hover { border-color: rgba(11,114,133,0.4); }
.foundation-card--violet { background: linear-gradient(160deg, #261D4D 0%, #1A143A 100%); border: 1px solid rgba(74,58,176,0.22); }
.foundation-card--violet:hover { border-color: rgba(74,58,176,0.4); }
.foundation-card--tint .foundation-card-eyebrow { color: rgba(255,255,255,0.6); }
@media (max-width: 900px) {
  .foundation-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .foundation-grid { grid-template-columns: 1fr; }
  .foundation-card { min-height: 220px; }
}

/* APEX gate — First Domain requirements list */
.gov-flow-gate-requirements {
  list-style: none;
  padding: 0;
  margin: 16px 0 20px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}
.gov-flow-gate-requirements li {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.82);
  padding-left: 14px;
  position: relative;
}
.gov-flow-gate-requirements li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #7FD4E1;
}
@media (max-width: 768px) {
  .gov-flow-gate-requirements {
    grid-template-columns: 1fr;
  }
}

/* ── Product Tabs (What We Build) ── */
.product-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.product-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-body);
  cursor: pointer;
  transition: all 0.2s;
}
.product-tab svg { width: 16px; height: 16px; flex-shrink: 0; }
.product-tab.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.product-tab:hover:not(.active) { border-color: var(--blue); color: var(--blue); }

.product-panels { position: relative; }
.product-panel { display: none; }
.product-panel.active { display: block; }

.product-panel-inner {
  background: #162240;
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 0;
}
.product-panel-header {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  min-height: 220px;
}
.product-panel-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.25) brightness(0.55) contrast(1.05);
  z-index: 0;
}
.product-panel-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12,27,42,0.88) 0%, rgba(12,27,42,0.3) 50%, rgba(12,27,42,0.15) 100%);
  z-index: 1;
}
.product-panel-header > * { position: relative; z-index: 2; }
/* Product-specific header images */
[data-product="kms"] .product-panel-header::before {
  background-image: url('./assets/img/i-5.jpeg');
}
[data-product="blockchain"] .product-panel-header::before {
  background-image: url('./assets/img/server-room-data-center.jpg');
}
[data-product="dr"] .product-panel-header::before {
  background-image: url('./assets/img/i-1.jpeg');
}
[data-product="managed"] .product-panel-header::before {
  background-image: url('./assets/img/cyber-intelligence-team.jpg');
}
[data-product="governance"] .product-panel-header::before {
  background-image: url('./assets/img/woman-cybersecurity.jpg');
}
[data-product="physical"] .product-panel-header::before {
  background-image: url('./assets/img/i-7.jpeg');
}

/* Physical Security — custom card-grid layout */
.phys-panel {
  background: #162240;
  border-radius: 12px;
  padding: 36px 32px;
}
.phys-panel-lead {
  margin-bottom: 28px;
}
.phys-panel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.phys-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.phys-card svg { color: var(--blue); flex-shrink: 0; }
.phys-card strong {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 18px;
  color: #fff;
}
.phys-card span {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
}
@media (max-width: 960px) {
  .phys-panel-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .phys-panel-grid { grid-template-columns: 1fr; }
}
/* Cross-links between product panels */
.product-panel-links {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.panel-xlink {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 15px;
  color: var(--blue);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.panel-xlink:hover { color: #fff; }
/* Light-panel variant (for panels with white content area) */
.product-panel-content .panel-xlink:hover { color: var(--blue-deep, #1B45B5); }
.panel-xlink-neon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #39FF14;
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.2s ease, gap 0.2s ease;
}
.panel-xlink-neon:hover {
  color: #5FFF4A;
  gap: 10px;
}
.product-panel-tagline {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.product-panel-title {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 34px);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0;
}
.product-panel-title .bracket { color: var(--blue); }
.product-panel-content {
  padding: 36px 32px;
  background: rgba(255,255,255,0.03);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-panel-desc {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
}
.product-panel-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-panel-features li {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  padding: 8px 0 8px 18px;
  position: relative;
  line-height: 1.5;
}
.product-panel-features li::before {
  content: '\25B8';
  position: absolute;
  left: 0;
  color: var(--blue);
}

/* === OPERATIONS LEDGER === */
.ops-ledger {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 40px;
  background: #162240;
  border-radius: 12px;
  overflow: hidden;
  min-height: 240px;
}
.ops-ledger-hero {
  padding: clamp(32px, 3vw, 56px) clamp(28px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.ops-ledger-hero-value {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(44px, 4.5vw, 72px);
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.ops-ledger-hero-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.ops-ledger-hero-sub {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
  max-width: 32ch;
}
.ops-ledger-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.ops-ledger-metric {
  padding: clamp(20px, 2vw, 32px) clamp(20px, 2vw, 32px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
/* subtle grid lines between the 4 metrics */
.ops-ledger-metric:nth-child(1),
.ops-ledger-metric:nth-child(2) {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ops-ledger-metric:nth-child(1),
.ops-ledger-metric:nth-child(3) {
  border-right: 1px solid rgba(255,255,255,0.06);
}
.ops-ledger-metric-value {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(26px, 2.4vw, 38px);
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.ops-ledger-metric-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.logo-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 12px 0;
}
.logo-cloud-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 8px;
}
.deploy-client {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink-muted);
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  white-space: nowrap;
}

/* === PLATFORM IN ACTION (always dark) === */
.platform-action {
  background: #162240;
  border-radius: 12px;
  padding: 40px 48px;
  margin-top: 32px;
  color: #fff;
}
.platform-action .eyebrow { color: rgba(255,255,255,0.65); }
.platform-action h3 {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 28px);
  color: #fff;
  margin-bottom: 8px;
}
.platform-action-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 55ch;
  margin-bottom: 24px;
}

.infographic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.info-stat-card {
  background: rgba(36,89,227,0.06);
  border: 1px solid rgba(36,89,227,0.15);
  border-top: 3px solid rgba(36,89,227,0.5);
  border-radius: 8px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.info-stat-card-value {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 15px;
  color: #6B9FFF;
  letter-spacing: 0.03em;
}
.info-stat-card-label {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.info-stat-card-desc {
  font-family: var(--font-mono);
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.infographic-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
  padding: 20px 0;
  flex-wrap: wrap;
  row-gap: 16px;
}

