/* ═══════════════════════════════════════════════════════════════
   OPTES G1 — Product Demo Page
   Design system aligned with /frontend/src/style.css
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Core palette (match Vue app) */
  --bg-primary: #080c16;
  --bg-secondary: #0e1525;
  --bg-card: #131c30;
  --bg-card-hover: #182642;
  --bg-inset: #0b1020;
  --bg-overlay: rgba(8, 12, 22, 0.92);

  --text-primary: #edf1f7;
  --text-secondary: #94a3bc;
  --text-tertiary: #6b7f99;
  --text-inverse: #080c16;

  --accent: #22b8e0;
  --accent-2: #3B9EFF;
  --accent-dim: rgba(34, 184, 224, 0.12);
  --accent-glow: rgba(34, 184, 224, 0.25);

  --magenta: #ff4a80;
  --purple: #b45cff;
  --critical: #f04060;
  --warning: #f5a623;
  --success: #34c77b;
  --info: #5b9cf5;

  --border: #1e2d45;
  --border-subtle: #172338;
  --border-accent: rgba(34, 184, 224, 0.25);

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-2xl: 32px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(34, 184, 224, 0.18);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', ui-monospace, monospace;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  font-feature-settings: "kern", "ss01", "cv01";
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
code { font-family: var(--font-mono); font-size: 0.85em; }

.skip-link {
  position: absolute; top: -48px; left: 12px; z-index: 1000;
  background: var(--accent); color: var(--bg-primary);
  padding: 8px 16px; border-radius: var(--radius); font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

/* ─── CONTAINER ─────────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ─── SCROLL PROGRESS ───────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 50%, var(--purple) 100%);
  z-index: 101;
  width: 0%;
  box-shadow: 0 0 12px rgba(34, 184, 224, 0.5);
  transition: width 0.15s var(--ease);
}

/* ─── NAV ───────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  background: var(--bg-overlay);
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.3s var(--ease);
}
.nav-inner {
  max-width: 1440px; margin: 0 auto; padding: 14px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo { width: 32px; height: 32px; flex-shrink: 0; }
.nav-brand-name {
  display: inline-block;
  font-weight: 800; font-size: 15px; letter-spacing: 0.04em;
  color: var(--text-primary);
  line-height: 1;
}
.nav-jump-cta {
  font-size: 13px;
  padding: 9px 16px;
}
.nav-links {
  display: flex; align-items: center; gap: 28px;
}
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-secondary);
  transition: color 0.2s;
  position: relative; padding: 6px 0;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { display: flex; gap: 8px; align-items: center; }

/* ─── HAMBURGER + MOBILE MENU ───────────────────────────────── */
.nav-burger {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.nav-burger:hover { background: var(--bg-card); border-color: var(--accent); }
.nav-burger span {
  display: block;
  width: 18px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
  transform-origin: center;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 4px;
  background: rgba(8, 12, 22, 0.98);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-top: 1px solid var(--border-subtle);
  animation: mobileMenuIn 0.25s var(--ease);
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  padding: 14px 4px;
  font-size: 16px; font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  border-bottom: 1px solid var(--border-subtle);
  transition: color 0.2s var(--ease), padding-left 0.2s var(--ease);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a:hover { color: var(--text-primary); padding-left: 8px; }
.mobile-menu-cta {
  margin-top: 12px;
  justify-content: center;
  padding: 14px 18px !important;
  font-weight: 700 !important;
  text-align: center;
  color: var(--text-inverse) !important;
  border-bottom: none !important;
}
.mobile-menu-cta:hover { padding-left: 18px !important; }
@keyframes mobileMenuIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
body.menu-open { overflow: hidden; }

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 11px 20px;
  border-radius: 12px;
  font-family: inherit; font-weight: 600; font-size: 14px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.2s var(--ease);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn svg {
  transition: transform 0.25s var(--ease);
}
.btn:hover svg { transform: translateX(3px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #061018;
  box-shadow: 0 6px 18px rgba(34, 184, 224, 0.35), inset 0 1px 0 rgba(255,255,255,0.25);
  font-weight: 700;
}
.btn-primary::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s var(--ease);
  z-index: 1;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(34, 184, 224, 0.55), inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:active { transform: translateY(0); box-shadow: 0 3px 10px rgba(34, 184, 224, 0.4); }
.btn-primary > * { position: relative; z-index: 2; }
.btn-ghost {
  background: rgba(255,255,255,0.02);
  color: var(--text-primary);
  border-color: var(--border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(34, 184, 224, 0.06);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.btn-ghost:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.btn-lg { padding: 14px 26px; font-size: 15px; border-radius: 14px; }
.btn-xl { padding: 18px 32px; font-size: 17px; border-radius: 16px; letter-spacing: 0.01em; }

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 32px 60px;
  display: flex; align-items: center;
  overflow: hidden;
  background: radial-gradient(ellipse at top, rgba(34, 184, 224, 0.1) 0%, transparent 60%), var(--bg-primary);
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0.45;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(34, 184, 224, 0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(34, 184, 224, 0.07) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, #000 10%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 10%, transparent 75%);
}
.hero-glow {
  position: absolute; top: 10%; left: 50%; transform: translateX(-50%);
  width: 1100px; height: 1100px;
  background: radial-gradient(circle, rgba(34, 184, 224, 0.18) 0%, transparent 50%);
  filter: blur(100px);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1440px; margin: 0 auto; width: 100%;
}

/* Split layout: copy + device */
.hero-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 72px;
}
.hero-copy { text-align: left; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: rgba(34, 184, 224, 0.08);
  border: 1px solid rgba(34, 184, 224, 0.25);
  border-radius: 100px;
  font-size: 13px; font-weight: 500; color: var(--accent);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--success);
  box-shadow: 0 0 0 0 rgba(52, 199, 123, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52, 199, 123, 0.6); }
  50% { box-shadow: 0 0 0 8px rgba(52, 199, 123, 0); }
}
.hero-title {
  font-size: clamp(2.25rem, 5.2vw, 4.75rem);
  font-weight: 900; letter-spacing: -0.045em; line-height: 1.02;
  margin-bottom: 28px;
}
.hero-title .grad-cyan,
.hero-title .grad-magenta { white-space: nowrap; }
.grad-cyan {
  background: linear-gradient(135deg, #22b8e0 0%, #3B9EFF 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: inline-block;
}
.grad-magenta {
  background: linear-gradient(135deg, #ff4a80 0%, #b45cff 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: inline-block;
}
.grad-fade { color: var(--text-tertiary); font-weight: 500; }

.hero-sub {
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 40px;
}
.hero-sub strong { color: var(--text-primary); font-weight: 600; }

.hero-cta {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex; align-items: center; gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}
.trust-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.15em;
  color: var(--text-tertiary); text-transform: uppercase;
}
.trust-logos {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.trust-pill {
  padding: 4px 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  font-size: 12px; font-weight: 600;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

/* Device mockup on the right */
.hero-visual {
  position: relative;
  display: grid; place-items: center;
}
.device-frame {
  position: relative;
  width: 420px; max-width: 100%;
  padding: 16px;
  background: linear-gradient(145deg, rgba(19, 28, 48, 0.95) 0%, rgba(11, 16, 32, 0.98) 100%);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(34, 184, 224, 0.15),
    0 0 100px rgba(34, 184, 224, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  z-index: 3;
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
  transform-style: preserve-3d;
  animation: deviceFloat 6s ease-in-out infinite;
}
@keyframes deviceFloat {
  0%, 100% { transform: perspective(1200px) rotateY(-6deg) rotateX(2deg) translateY(0); }
  50% { transform: perspective(1200px) rotateY(-6deg) rotateX(2deg) translateY(-8px); }
}
.device-chrome {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px;
  margin-bottom: 12px;
}
.device-label {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  color: var(--accent);
}
.device-state {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; color: var(--success);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}
.state-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
  animation: pulse 2s infinite;
}
.device-screen {
  position: relative;
  aspect-ratio: 1;
  background: radial-gradient(circle at center, rgba(34, 184, 224, 0.04) 0%, rgba(8, 12, 22, 0.98) 70%);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}
.device-radar { width: 100%; height: 100%; }
.device-sweep {
  transform-origin: 100px 100px;
  animation: deviceSweep 4s linear infinite;
}
@keyframes deviceSweep {
  to { transform: rotate(360deg); }
}
.device-blips circle {
  filter: drop-shadow(0 0 4px #22b8e0);
}
.device-threat {
  filter: drop-shadow(0 0 8px #f04060);
  animation: threatPulse 1.5s infinite;
}
@keyframes threatPulse {
  0%, 100% { r: 5; }
  50% { r: 7; }
}

.device-hud-top {
  position: absolute; top: 14px; left: 14px; right: 14px;
  display: flex; gap: 8px; justify-content: space-between;
  pointer-events: none;
}
.hud-stat {
  padding: 4px 10px;
  background: rgba(8, 12, 22, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  font-size: 10px; font-weight: 600; color: var(--text-secondary);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}
.hud-stat .hud-num {
  color: var(--accent); font-weight: 800; margin-right: 4px;
}
.hud-stat.critical {
  color: var(--critical); border-color: rgba(240, 64, 96, 0.35);
  background: rgba(240, 64, 96, 0.1);
}
.hud-stat.critical .hud-num { color: var(--critical); }

.device-hud-bottom {
  position: absolute; bottom: 14px; left: 14px; right: 14px;
  display: flex; flex-direction: column; gap: 4px;
  padding: 8px 10px;
  background: rgba(8, 12, 22, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  pointer-events: none;
}
.hud-bar {
  display: grid; grid-template-columns: 32px 1fr;
  align-items: center; gap: 8px;
}
.hud-bar span {
  font-family: var(--font-mono); font-size: 9px;
  color: var(--text-tertiary); font-weight: 600;
}
.hud-bar-track {
  height: 4px; background: var(--bg-inset);
  border-radius: 2px; overflow: hidden;
}
.hud-bar-fill {
  height: 100%; width: var(--w);
  background: var(--c);
  border-radius: 2px;
  box-shadow: 0 0 6px var(--c);
  animation: hudPulse 3s ease-in-out infinite;
}
@keyframes hudPulse {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

.device-toast {
  position: absolute;
  left: -24px; bottom: 60px;
  display: flex; gap: 10px; align-items: center;
  padding: 12px 14px;
  min-width: 260px;
  backdrop-filter: blur(16px);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  z-index: 4;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.device-toast.toast-out { opacity: 0; transform: translateY(6px) scale(0.97); }

/* Variants — color palette per severity */
.device-toast[data-variant="critical"] {
  background: rgba(240, 64, 96, 0.12);
  border: 1px solid rgba(240, 64, 96, 0.4);
}
.device-toast[data-variant="critical"] .toast-icon { background: rgba(240, 64, 96, 0.2); color: var(--critical); }
.device-toast[data-variant="critical"] .toast-body strong { color: var(--critical); }

.device-toast[data-variant="warning"] {
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.4);
}
.device-toast[data-variant="warning"] .toast-icon { background: rgba(245, 166, 35, 0.2); color: var(--warning); }
.device-toast[data-variant="warning"] .toast-body strong { color: var(--warning); }

.device-toast[data-variant="info"] {
  background: rgba(91, 156, 245, 0.12);
  border: 1px solid rgba(91, 156, 245, 0.4);
}
.device-toast[data-variant="info"] .toast-icon { background: rgba(91, 156, 245, 0.2); color: var(--info); }
.device-toast[data-variant="info"] .toast-body strong { color: var(--info); }

.device-toast[data-variant="ok"] {
  background: rgba(52, 199, 123, 0.12);
  border: 1px solid rgba(52, 199, 123, 0.4);
}
.device-toast[data-variant="ok"] .toast-icon { background: rgba(52, 199, 123, 0.2); color: var(--success); }
.device-toast[data-variant="ok"] .toast-body strong { color: var(--success); }

.toast-icon {
  width: 32px; height: 32px; border-radius: 8px;
  flex-shrink: 0;
  display: grid; place-items: center;
}
.toast-icon svg { width: 16px; height: 16px; }
.toast-body { min-width: 0; flex: 1; }
.toast-body strong {
  display: block; font-size: 12px; font-weight: 700; margin-bottom: 2px;
}
.toast-body small {
  display: block;
  font-size: 10px; color: var(--text-secondary);
  font-family: var(--font-mono);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* Orbital rings behind device (contained) */
.hero-visual {
  overflow: visible;
}
.orbital-ring {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid;
  pointer-events: none;
  z-index: 0;
}
.orbital-ring.r1 {
  width: 500px; height: 500px;
  border-color: rgba(34, 184, 224, 0.18);
  animation: orbit 30s linear infinite;
}
.orbital-ring.r2 {
  width: 600px; height: 600px;
  border-color: rgba(34, 184, 224, 0.1);
  border-style: dashed;
  animation: orbit 60s linear infinite reverse;
}
.orbital-ring.r3 {
  width: 700px; height: 700px;
  border-color: rgba(34, 184, 224, 0.06);
  animation: orbit 90s linear infinite;
}
@keyframes orbit {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
.orbital-ring::before {
  content: '';
  position: absolute; top: 50%; left: -4px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  transform: translateY(-50%);
}
.orbital-ring.r2::before { background: var(--success); box-shadow: 0 0 12px var(--success); left: auto; right: -4px; }
.orbital-ring.r3::before { background: var(--purple); box-shadow: 0 0 12px var(--purple); top: 0; left: 50%; transform: translateX(-50%); }

.hero-stats {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px;
  padding: 0;
}
.hero-stat {
  --c: var(--accent);
  padding: 20px 18px 18px;
  position: relative;
  background: linear-gradient(170deg, rgba(19,28,48,0.85) 0%, rgba(11,16,32,0.85) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  overflow: hidden;
  isolation: isolate;
}
.hero-stat::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 0% 0%, color-mix(in srgb, var(--c) 14%, transparent) 0%, transparent 60%);
  z-index: -1;
  opacity: 0.7;
  transition: opacity 0.3s var(--ease);
}
.hero-stat::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c), transparent);
  opacity: 0.6;
}
.hero-stat:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--c) 45%, var(--border));
  box-shadow: 0 12px 32px rgba(0,0,0,0.3), 0 0 0 1px color-mix(in srgb, var(--c) 20%, transparent) inset;
}
.hero-stat:hover::before { opacity: 1; }
.hero-stat-icon {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--c);
  margin-bottom: 12px;
  opacity: 0.9;
}
.hero-stat-icon svg { width: 100%; height: 100%; }
.hero-stat-value {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 800; letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--c) 120%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
  margin-bottom: 6px;
  font-family: var(--font-mono);
}
.hero-stat-label {
  font-size: 10.5px; color: var(--text-primary); font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 6px;
}
.hero-stat-sub {
  font-size: 11px; color: var(--text-tertiary); font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 11px; color: var(--text-tertiary); letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px; background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 2s infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── SECTIONS ──────────────────────────────────────────────── */
.section {
  padding: 96px 0;
  position: relative;
}
.section-head {
  text-align: center; max-width: 800px; margin: 0 auto 56px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 6px 14px; border-radius: 100px;
  background: rgba(34, 184, 224, 0.08);
  border: 1px solid rgba(34, 184, 224, 0.15);
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.1;
  margin-bottom: 16px;
}
.section-lede {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--text-secondary); line-height: 1.6;
}

/* ─── THE GAP ───────────────────────────────────────────────── */
.section-gap {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}
.gap-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 30%, rgba(240, 64, 96, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 85% 70%, rgba(245, 166, 35, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.gap-intro {
  text-align: center;
  max-width: 760px; margin: 0 auto 72px;
  position: relative; z-index: 1;
}
.gap-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900; letter-spacing: -0.04em; line-height: 1.05;
  margin-top: 16px;
}
.gap-lede {
  margin-top: 20px;
  font-size: clamp(1rem, 1.6vw, 1.175rem);
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 640px; margin-left: auto; margin-right: auto;
}
.gap-numbers {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1200px; margin: 0 auto;
  position: relative; z-index: 1;
}
.gap-num-card {
  --c: var(--critical);
  padding: 36px 26px 28px;
  text-align: left;
  background: linear-gradient(170deg, rgba(19,28,48,0.7) 0%, rgba(11,16,32,0.7) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  animation: gapReveal 0.7s var(--ease) forwards;
  animation-delay: calc(var(--reveal-idx, 0) * 0.12s + 0.1s);
}
.gap-num-card[data-reveal="0"] { --reveal-idx: 0; }
.gap-num-card[data-reveal="1"] { --reveal-idx: 1; }
.gap-num-card[data-reveal="2"] { --reveal-idx: 2; }
.gap-num-card[data-reveal="3"] { --reveal-idx: 3; }
@keyframes gapReveal {
  to { opacity: 1; transform: translateY(0); }
}
.gap-num-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--c) 18%, transparent), transparent 55%);
  opacity: 0.6; transition: opacity 0.35s;
  pointer-events: none;
}
.gap-num-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c), transparent);
  opacity: 0.85;
}
.gap-num-card:hover {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--c) 55%, var(--border));
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.45),
              0 0 0 1px color-mix(in srgb, var(--c) 25%, transparent) inset,
              0 0 60px color-mix(in srgb, var(--c) 18%, transparent);
}
.gap-num-card:hover::before { opacity: 1; }
.gap-num-card:hover .gn-big {
  animation: gapPulse 1.6s var(--ease) infinite;
}
@keyframes gapPulse {
  0%, 100% { filter: drop-shadow(0 4px 24px color-mix(in srgb, var(--c) 40%, transparent)); }
  50%      { filter: drop-shadow(0 4px 40px color-mix(in srgb, var(--c) 70%, transparent)); }
}
.gap-num-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--c);
  padding: 4px 10px;
  background: color-mix(in srgb, var(--c) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--c) 30%, transparent);
  border-radius: 100px;
  margin-bottom: 20px;
}
.gap-num-value {
  display: flex; align-items: baseline; justify-content: flex-start;
  font-family: var(--font-mono);
  font-weight: 900; letter-spacing: -0.05em;
  margin-bottom: 18px;
  line-height: 0.9;
}
.gn-prefix {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--text-secondary);
  margin-right: 4px;
  opacity: 0.8;
}
.gn-big {
  font-size: clamp(4rem, 8vw, 6.25rem);
  background: linear-gradient(135deg, var(--c) 0%, color-mix(in srgb, var(--c) 50%, white) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 4px 24px color-mix(in srgb, var(--c) 35%, transparent));
  transition: filter 0.35s var(--ease);
  font-variant-numeric: tabular-nums;
}
.gn-suffix {
  font-size: clamp(1.25rem, 2.4vw, 1.875rem);
  color: var(--text-secondary);
  margin-left: 6px;
}
.gap-num-label {
  font-size: 14.5px; font-weight: 500;
  color: var(--text-primary); line-height: 1.45;
  margin-bottom: 16px;
  letter-spacing: -0.005em;
}
.gap-num-source {
  font-family: var(--font-mono); font-size: 10.5px;
  color: var(--text-tertiary); letter-spacing: 0.08em;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
  text-transform: uppercase;
}
@media (prefers-reduced-motion: reduce) {
  .gap-num-card { animation: none; opacity: 1; transform: none; }
  .gap-num-card:hover .gn-big { animation: none; }
}

.gap-answer {
  max-width: 820px; margin: 80px auto 0;
  text-align: center;
  position: relative; z-index: 1;
}
.gap-answer-line {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  margin: 0 auto 32px;
  border-radius: 2px;
}
.gap-answer p {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  line-height: 1.55;
  color: var(--text-secondary);
  font-weight: 400;
}
.gap-answer strong {
  color: var(--accent);
  font-weight: 700;
}

/* ─── HOW IT WORKS ──────────────────────────────────────────── */
.section-howitworks {
  padding: 120px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.howsteps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1200px; margin: 0 auto;
  position: relative;
}
.howstep {
  position: relative;
  padding: 40px 32px;
  text-align: center;
}
.hs-num {
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 700; letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 24px;
  opacity: 0.8;
}
.hs-icon {
  width: 80px; height: 80px;
  margin: 0 auto 20px;
  padding: 16px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(34, 184, 224, 0.1) 0%, rgba(59, 158, 255, 0.05) 100%);
  border: 1px solid rgba(34, 184, 224, 0.25);
  color: var(--accent);
  display: grid; place-items: center;
  position: relative;
  z-index: 1;
  transition: all 0.3s var(--ease);
}
.hs-icon svg { width: 100%; height: 100%; }
.howstep:hover .hs-icon {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 32px rgba(34, 184, 224, 0.25);
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(34, 184, 224, 0.18) 0%, rgba(59, 158, 255, 0.1) 100%);
}
.hs-line {
  position: absolute;
  top: calc(40px + 12px + 24px + 40px);
  left: 50%; right: -50%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(34, 184, 224, 0.1) 100%);
  z-index: 0;
}
.hs-line::after {
  content: '';
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 6px solid rgba(34, 184, 224, 0.3);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}
.hs-line-end { display: none; }
.hs-title {
  font-size: 1.25rem; font-weight: 800; letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.howstep p {
  font-size: 13px; color: var(--text-secondary);
  line-height: 1.55;
}

/* ─── AT A GLANCE ───────────────────────────────────────────── */
.section-glance { background: var(--bg-secondary); border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }

.glance-panel {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(19,28,48,0.6) 0%, rgba(11,16,32,0.6) 100%);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 16px 28px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.glance-list {
  display: flex; flex-direction: column;
  margin: 0; padding: 0;
}
.glance-row {
  --c: var(--accent);
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  gap: 24px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.2s var(--ease);
  position: relative;
}
.glance-row:last-child { border-bottom: none; }
.glance-row:hover { background: rgba(255,255,255,0.015); }
.glance-row::before {
  content: '';
  position: absolute; left: -28px; top: 50%;
  width: 3px; height: 0;
  background: var(--c);
  border-radius: 0 3px 3px 0;
  transform: translateY(-50%);
  transition: height 0.3s var(--ease);
}
.glance-row:hover::before { height: 60%; }
.glance-row dt {
  display: flex; align-items: center; gap: 12px;
  margin: 0;
}
.glance-icon {
  width: 36px; height: 36px;
  flex: 0 0 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--c) 14%, transparent);
  color: var(--c);
  border: 1px solid color-mix(in srgb, var(--c) 28%, transparent);
  border-radius: 10px;
}
.glance-icon svg { width: 20px; height: 20px; display: block; }
.glance-label {
  font-size: 14px; font-weight: 800; letter-spacing: 0.01em;
  color: var(--text-primary);
  text-transform: none;
}
.glance-row dd {
  margin: 0;
  font-size: 15px; line-height: 1.55;
  color: var(--text-secondary);
}
.glance-row dd strong, .glance-row dd em {
  color: var(--text-primary); font-weight: 600;
}
.glance-row dd em { color: var(--c); font-style: italic; font-weight: 600; }
@media (max-width: 720px) {
  .glance-panel { padding: 4px 20px; margin: 0 -4px; border-radius: 18px; }
  .glance-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px 0;
  }
  .glance-row dd { font-size: 14px; }
  .glance-row::before { left: -20px; }
}

/* ─── DATA SOVEREIGNTY ──────────────────────────────────────── */
.section-sovereignty {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(52, 199, 123, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 50%, rgba(34, 184, 224, 0.08) 0%, transparent 55%),
    var(--bg-primary);
}
.section-sovereignty::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(52, 199, 123, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, #000 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 20%, transparent 70%);
  pointer-events: none;
}
.sov-wrap { max-width: 1100px; margin: 0 auto; }
.sov-header { text-align: center; margin-bottom: 56px; }
.sov-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: rgba(52, 199, 123, 0.08);
  border: 1px solid rgba(52, 199, 123, 0.25);
  border-radius: 100px;
  font-size: 13px; font-weight: 600; color: var(--success);
  margin-bottom: 24px;
}
.sov-quote {
  font-size: clamp(1.75rem, 5vw, 3.5rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.15;
  margin-bottom: 24px;
}
.sov-quote em { font-style: italic; color: var(--success); }
.quote-mark {
  display: inline-block;
  color: var(--accent);
  font-size: 1em;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 400;
  line-height: 1;
  opacity: 0.55;
  transform: translateY(0.12em);
}
.quote-mark-open { margin-right: 0.08em; }
.quote-mark-close { margin-left: 0.08em; }
.sov-sub {
  font-size: 1.125rem; color: var(--text-secondary); line-height: 1.7;
  max-width: 800px; margin: 0 auto;
}
.sov-sub em { color: var(--text-primary); font-style: italic; font-weight: 600; }

.sov-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.sov-item {
  --c: var(--accent);
  position: relative;
  padding: 28px 22px 22px;
  background: linear-gradient(170deg, rgba(19,28,48,0.92) 0%, rgba(11,16,32,0.92) 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  overflow: hidden;
  isolation: isolate;
}
.sov-item::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--c) 16%, transparent) 0%, transparent 55%);
  z-index: -1;
  opacity: 0.75;
  transition: opacity 0.3s var(--ease);
}
.sov-item::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c), transparent);
  opacity: 0.8;
}
.sov-item:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--c) 55%, var(--border));
  box-shadow: 0 20px 48px rgba(0,0,0,0.4), 0 0 0 1px color-mix(in srgb, var(--c) 25%, transparent) inset;
}
.sov-item:hover::before { opacity: 1; }
.sov-num {
  position: absolute; top: 18px; right: 20px;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--c);
  opacity: 0.55;
}
.sov-item-icon {
  width: 56px; height: 56px; margin-bottom: 18px;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--c) 12%, var(--bg-inset));
  border: 1px solid color-mix(in srgb, var(--c) 30%, transparent);
  border-radius: 14px;
  color: var(--c);
  position: relative;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.sov-item:hover .sov-item-icon {
  transform: rotate(-4deg) scale(1.05);
  background: color-mix(in srgb, var(--c) 22%, var(--bg-inset));
}
.sov-item-icon svg { width: 30px; height: 30px; display: block; }
.sov-body { display: flex; flex-direction: column; gap: 8px; }
.sov-item h3 {
  font-size: 17px; font-weight: 800; letter-spacing: -0.01em;
  color: var(--text-primary);
  margin: 0;
}
.sov-item p {
  font-size: 13px; color: var(--text-secondary); line-height: 1.55;
  margin: 0;
}
.sov-tag {
  margin-top: 8px; padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--c);
  text-transform: uppercase;
}

/* ─── THREE RF LAYERS ───────────────────────────────────────── */
.layers-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px;
  margin-bottom: 80px;
}
.layer-card {
  position: relative;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  transition: all 0.3s var(--ease);
  color: var(--text-primary);
  overflow: hidden;
}
.layer-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 120px;
  background: radial-gradient(ellipse at top, color-mix(in srgb, var(--c) 20%, transparent) 0%, transparent 70%);
  pointer-events: none;
}
.layer-card:hover {
  transform: translateY(-4px);
  border-color: var(--c);
  box-shadow: 0 24px 48px rgba(0,0,0,0.3), 0 0 0 1px var(--c);
}
.layer-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; position: relative;
}
.layer-num {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.15em; font-weight: 600;
  color: var(--c); text-transform: uppercase;
}
.layer-band {
  padding: 4px 10px; border-radius: 6px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  background: color-mix(in srgb, var(--c) 12%, transparent);
  color: var(--c);
  border: 1px solid color-mix(in srgb, var(--c) 25%, transparent);
}
.layer-viz {
  height: 80px; margin: 0 -32px 24px;
  background: linear-gradient(180deg, transparent 0%, color-mix(in srgb, var(--c) 6%, transparent) 100%);
  border-top: 1px solid color-mix(in srgb, var(--c) 15%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--c) 15%, transparent);
  color: var(--c);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.wave-svg {
  width: 100%; height: 100%;
  filter: drop-shadow(0 0 4px currentColor);
}
.wave-path {
  animation: waveFlow 3s linear infinite;
  stroke-dasharray: 200;
}
.wave-path-2 {
  animation: waveFlow 4s linear infinite reverse;
}
@keyframes waveFlow {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -400; }
}
.layer-title {
  font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.layer-range {
  font-size: 13px; color: var(--text-secondary); margin-bottom: 16px;
}
.layer-range strong { color: var(--c); font-weight: 700; }
.layer-desc {
  font-size: 14px; line-height: 1.6; color: var(--text-secondary);
  margin-bottom: 20px;
}
.layer-value {
  padding: 16px;
  background: var(--bg-inset);
  border-radius: var(--radius);
  border-left: 3px solid var(--c);
  margin-bottom: 20px;
}
.value-label {
  display: block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  color: var(--c); text-transform: uppercase; margin-bottom: 6px;
}
.layer-value p {
  font-size: 13px; line-height: 1.6; color: var(--text-primary);
}
.layer-value strong { color: var(--c); }
.layer-modules {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.layer-modules code {
  padding: 4px 8px; border-radius: 6px;
  background: var(--bg-inset);
  font-size: 11px; color: var(--text-tertiary);
  border: 1px solid var(--border-subtle);
}

/* ─── FUSION DIAGRAM ────────────────────────────────────────── */
.fusion {
  padding: 48px; border-radius: var(--radius-2xl);
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border-subtle);
  margin-top: 24px;
}
.fusion-head {
  text-align: center; margin-bottom: 48px;
}
.fusion-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800;
  letter-spacing: -0.02em; margin-bottom: 12px;
}
.fusion-head p {
  color: var(--text-secondary); max-width: 700px; margin: 0 auto;
}

.fusion-diagram {
  display: grid; grid-template-columns: 1fr 40px 1fr 40px 1fr;
  gap: 0; align-items: stretch;
  margin-bottom: 48px;
}
.fusion-col { display: flex; flex-direction: column; gap: 8px; }
.fusion-col-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  color: var(--text-tertiary); text-transform: uppercase;
  margin-bottom: 4px; text-align: center;
}
.fusion-node {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  color: var(--text-primary);
  transition: all 0.3s var(--ease);
  border-left: 3px solid var(--c);
}
.fusion-node:hover { transform: translateX(4px); background: var(--bg-card-hover); }
.fusion-node svg {
  width: 20px; height: 20px; color: var(--c); flex-shrink: 0;
}
.fusion-node strong {
  display: block; font-size: 13px; font-weight: 700;
}
.fusion-node span {
  display: block; font-size: 11px; color: var(--text-tertiary);
}

.fusion-bridge {
  display: grid; place-items: center;
  color: var(--accent);
}
.fusion-bridge svg { width: 100%; height: 100%; }

.fusion-engine { justify-content: center; }
.fusion-engine-box {
  padding: 24px;
  background: linear-gradient(135deg, rgba(240, 64, 96, 0.08) 0%, rgba(180, 92, 255, 0.08) 100%);
  border: 1px solid rgba(240, 64, 96, 0.2);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
}
.engine-top, .engine-bottom {
  font-size: 11px; font-weight: 600; color: var(--text-tertiary);
  letter-spacing: 0.1em;
}
.engine-core {
  padding: 24px 0;
  display: grid; place-items: center;
}
.engine-ring {
  width: 120px; height: 120px; border-radius: 50%;
  background: conic-gradient(from 0deg, var(--critical), var(--purple), var(--accent), var(--critical));
  padding: 3px;
  animation: spin 8s linear infinite;
}
.engine-inner {
  width: 100%; height: 100%; border-radius: 50%;
  background: var(--bg-secondary);
  display: grid; place-items: center;
  animation: spin 8s linear infinite reverse;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.engine-num {
  font-size: 36px; font-weight: 900; color: var(--critical);
  line-height: 1;
}
.engine-txt {
  font-size: 10px; color: var(--text-secondary);
  text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px;
}

.fusion-channel {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  border-right: 3px solid var(--c);
  transition: all 0.3s var(--ease);
}
.fusion-channel:hover { transform: translateX(-4px); background: var(--bg-card-hover); }
.fusion-channel > span {
  font-family: var(--font-mono); font-weight: 700; font-size: 11px;
  color: var(--c); padding: 4px 6px;
  background: color-mix(in srgb, var(--c) 12%, transparent);
  border-radius: 4px;
}
.fusion-channel strong {
  display: block; font-size: 13px; font-weight: 700;
}
.fusion-channel small {
  display: block; font-size: 11px; color: var(--text-tertiary);
}

.threat-tiers {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px;
}
.tier {
  display: flex; gap: 16px; align-items: center;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  border-left: 4px solid var(--c);
}
.tier-bar {
  width: 8px; height: 40px; border-radius: 4px;
  background: var(--c);
  box-shadow: 0 0 12px var(--c);
}
.tier-meta { flex: 1; }
.tier-meta strong {
  display: block; font-size: 14px; font-weight: 800; color: var(--c);
  letter-spacing: 0.05em;
}
.tier-meta span {
  display: block; font-family: var(--font-mono); font-size: 11px;
  color: var(--text-tertiary);
}
.tier p {
  font-size: 11px; color: var(--text-secondary); line-height: 1.4;
}

/* ─── PERFORMANCE ───────────────────────────────────────────── */
.section-perf {
  background:
    radial-gradient(ellipse at center top, rgba(34, 184, 224, 0.04) 0%, transparent 60%),
    var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.perf-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px;
}
.perf-card {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
  position: relative; overflow: hidden;
}
.perf-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(34, 184, 224, 0.08), transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  pointer-events: none;
}
.perf-card:hover::after { opacity: 1; }
.perf-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-glow);
}
.perf-value {
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 12px;
  font-weight: 800; letter-spacing: -0.03em;
}
.perf-num {
  font-size: 2.25rem; line-height: 1;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.perf-unit {
  font-size: 1rem; color: var(--text-secondary); font-weight: 600;
}
.perf-label {
  font-size: 14px; font-weight: 700; margin-bottom: 4px;
}
.perf-note {
  font-size: 12px; color: var(--text-tertiary); line-height: 1.4;
}

/* ─── RESILIENCE — compact comparison matrix ─────────────────── */
.resil-matrix {
  max-width: 1100px; margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.resil-mhead,
.resil-row {
  display: grid;
  grid-template-columns: 1.2fr 1.3fr 2.4fr;
  align-items: center;
  gap: 18px;
  padding: 12px 20px;
}
.resil-mhead {
  padding-top: 11px; padding-bottom: 11px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-subtle);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-tertiary);
}
.resil-row {
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.2s var(--ease);
  min-height: 74px;
}
.resil-row:last-child { border-bottom: none; }
.resil-row:hover { background: var(--bg-card-hover); }

.resil-attack { line-height: 1.25; }
.resil-attack strong {
  display: block;
  font-size: 14px; font-weight: 700;
  color: var(--text-primary);
}
.resil-attack small {
  display: block;
  font-size: 11.5px; color: var(--text-tertiary);
  margin-top: 2px;
}

.resil-meter {
  display: flex; align-items: center; gap: 10px;
}
.meter-num {
  font-size: 1.35rem; font-weight: 800; line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--success);
  min-width: 48px;
}
.meter-num small {
  font-size: 0.6em; font-weight: 600; opacity: 0.65;
  margin-left: 1px;
}
.resil-row[data-score="5"] .meter-num { color: var(--warning); }
.resil-row[data-score="4"] .meter-num,
.resil-row[data-score="3"] .meter-num,
.resil-row[data-score="2"] .meter-num { color: var(--critical); }

.meter-bar {
  display: flex; gap: 3px;
  flex: 1;
}
.meter-bar .seg {
  flex: 1;
  height: 18px;
  border-radius: 3px;
  background: rgba(52, 199, 123, 0.22);
  border: 1px solid rgba(52, 199, 123, 0.45);
}
.meter-bar .seg.detects {
  background: rgba(245, 166, 35, 0.22);
  border-color: rgba(245, 166, 35, 0.55);
  animation: segPulse 2.4s infinite;
}
.meter-bar .seg.down {
  background: rgba(240, 64, 96, 0.22);
  border-color: rgba(240, 64, 96, 0.55);
}
.meter-bar .seg.reduced {
  background: rgba(91, 156, 245, 0.22);
  border-color: rgba(91, 156, 245, 0.55);
}

.resil-outcome p {
  margin: 0 0 6px;
  font-size: 13px; line-height: 1.45;
  color: var(--text-primary);
}
.resil-tags {
  display: flex; gap: 5px; flex-wrap: wrap;
}
.tag {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 2px 8px 2px 7px;
  border-radius: 100px;
  font-size: 10.5px; font-weight: 700;
  color: var(--text-secondary);
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  line-height: 1.3;
}
.tag em {
  font-style: normal; font-weight: 700;
  font-size: 9.5px; letter-spacing: 0.05em; text-transform: uppercase;
  opacity: 0.9;
}
.tag.detects { color: var(--warning); border-color: rgba(245, 166, 35, 0.35); background: rgba(245, 166, 35, 0.08); }
.tag.detects em { color: var(--warning); }
.tag.down { color: var(--critical); border-color: rgba(240, 64, 96, 0.35); background: rgba(240, 64, 96, 0.08); }
.tag.down em { color: var(--critical); }
.tag.reduced { color: var(--info); border-color: rgba(91, 156, 245, 0.35); background: rgba(91, 156, 245, 0.08); }
.tag.reduced em { color: var(--info); }
.tag.clean { color: var(--success); border-color: rgba(52, 199, 123, 0.35); background: rgba(52, 199, 123, 0.08); padding: 2px 10px; }

@keyframes segPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.35); }
  50%      { box-shadow: 0 0 0 3px rgba(245, 166, 35, 0); }
}

@media (max-width: 820px) {
  .resil-mhead { display: none; }
  .resil-matrix { border-radius: var(--radius); }
  .resil-row {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "attack  meter"
      "outcome outcome";
    gap: 8px 12px;
    padding: 12px 14px;
    min-height: 0;
  }
  .resil-attack { grid-area: attack; }
  .resil-attack strong { font-size: 13.5px; }
  .resil-attack small { font-size: 11px; }

  .resil-meter {
    grid-area: meter;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
  }
  .meter-num { font-size: 1.05rem; min-width: 0; }
  .meter-bar { width: 132px; flex: none; gap: 2px; }
  .meter-bar .seg { height: 10px; border-radius: 2px; }

  .resil-outcome { grid-area: outcome; }
  .resil-outcome p { font-size: 12.5px; line-height: 1.4; margin-bottom: 4px; }
  .resil-tags { gap: 4px; }
  .tag { font-size: 10px; padding: 2px 7px 2px 6px; }
  .tag em { font-size: 9px; }
}

/* ─── PULL QUOTE ────────────────────────────────────────────── */
.section-pullquote {
  padding: 120px 0;
  position: relative;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}
.section-pullquote::before,
.section-pullquote::after {
  content: '';
  position: absolute;
  left: 50%; transform: translateX(-50%);
  width: 1px; height: 48px;
  background: linear-gradient(var(--accent), transparent);
}
.section-pullquote::before { top: 0; }
.section-pullquote::after { bottom: 0; background: linear-gradient(transparent, var(--accent)); }

.pq-figure {
  max-width: 960px; margin: 0 auto;
  text-align: center;
  padding: 0 24px;
  position: relative;
}
.pq-mark {
  width: 52px; height: 40px; margin: 0 auto 28px;
  color: var(--accent);
  opacity: 0.55;
  display: flex; align-items: center; justify-content: center;
}
.pq-mark svg { width: 100%; height: 100%; display: block; }
.pq-text {
  font-size: clamp(1.5rem, 3.5vw, 2.75rem);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 32px;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-style: italic;
}
.pq-hl {
  background: linear-gradient(120deg, rgba(240, 64, 96, 0.15) 0%, rgba(240, 64, 96, 0.25) 100%);
  padding: 0 6px;
  border-bottom: 2px solid var(--critical);
  color: var(--critical);
  font-weight: 500;
}
.pq-hl-warm {
  background: linear-gradient(120deg, rgba(245, 166, 35, 0.15) 0%, rgba(245, 166, 35, 0.3) 100%);
  border-bottom-color: var(--warning);
  color: var(--warning);
}
.pq-warm .pq-mark { color: var(--warning); }
.pq-caption {
  display: flex; flex-direction: column; gap: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  max-width: 560px; margin: 0 auto;
}
.pq-caption strong {
  font-size: 14px; font-weight: 700; letter-spacing: 0.05em;
  color: var(--accent);
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-style: normal;
}
.pq-caption span {
  font-size: 13px; color: var(--text-tertiary);
  line-height: 1.5;
}

/* ─── CASE STUDIES ──────────────────────────────────────────── */
.section-cases { background: var(--bg-primary); }
.case-card {
  padding: 48px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-2xl);
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}
.case-guthrie {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(240, 64, 96, 0.05) 100%);
  border-color: rgba(240, 64, 96, 0.2);
}
.case-guthrie::before {
  content: ''; position: absolute; top: 0; left: 0; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(240, 64, 96, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.case-header { margin-bottom: 24px; }
.case-tag {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(240, 64, 96, 0.12);
  color: var(--critical);
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 6px;
  margin-bottom: 12px;
}
.case-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800; letter-spacing: -0.02em; line-height: 1.1;
  margin-bottom: 12px;
}
.case-meta {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: var(--text-tertiary);
}
.case-meta span {
  display: inline-flex; align-items: center; gap: 6px;
}

.case-summary { margin-bottom: 48px; }
.case-summary p {
  font-size: 15px; color: var(--text-secondary);
  line-height: 1.7; margin-bottom: 12px;
}
.case-summary strong { color: var(--text-primary); }
.case-status {
  padding: 12px 16px;
  background: rgba(240, 64, 96, 0.08);
  border-left: 3px solid var(--critical);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 14px !important;
  color: var(--critical) !important;
  font-weight: 600;
}

/* Timeline */
.timeline { margin-bottom: 48px; }
.timeline-title {
  font-size: 14px; font-weight: 700;
  color: var(--text-primary); margin-bottom: 48px;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.timeline-track {
  position: relative;
  height: 260px;
  padding: 0 60px;
  margin-bottom: 16px;
}
.timeline-line {
  position: absolute; top: 50%; left: 60px; right: 60px; height: 2px;
  background: linear-gradient(to right, var(--success) 0%, var(--critical) 22%, var(--warning) 50%, var(--warning) 78%, var(--critical) 100%);
  border-radius: 2px;
  transform: translateY(-50%);
}
.timeline-event {
  position: absolute;
  top: 0; bottom: 0;
  left: calc(60px + (100% - 120px) * var(--offset) / 100);
  width: 1px;
}
.timeline-event .te-dot {
  position: absolute; top: 50%; left: 0; transform: translate(-50%, -50%);
  width: 16px; height: 16px; border-radius: 50%;
  z-index: 2;
  border: 3px solid var(--bg-secondary);
}
.te-dot.ok { background: var(--success); box-shadow: 0 0 12px var(--success); }
.te-dot.warn { background: var(--warning); box-shadow: 0 0 12px var(--warning); }
.te-dot.critical { background: var(--critical); box-shadow: 0 0 16px var(--critical); animation: dotPulse 2s infinite; }
@keyframes dotPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.2); }
}

/* Label column — stacked card above OR below the track line */
.timeline-event::before {
  content: '';
  position: absolute;
  left: 0; width: 1px;
  background: color-mix(in srgb, var(--text-tertiary) 30%, transparent);
}
/* Odd events (1st, 3rd, 5th…) — labels ABOVE */
.timeline-event:nth-child(odd)::before {
  bottom: 50%; top: 32px;
}
.timeline-event:nth-child(odd) .te-label-card {
  position: absolute; bottom: calc(50% + 36px); left: 0;
  transform: translateX(-50%);
}
/* Even events — labels BELOW */
.timeline-event:nth-child(even)::before {
  top: 50%; bottom: 32px;
}
.timeline-event:nth-child(even) .te-label-card {
  position: absolute; top: calc(50% + 36px); left: 0;
  transform: translateX(-50%);
}
.te-label-card {
  min-width: 120px;
  padding: 8px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  text-align: center;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}
.te-time {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 700;
  color: var(--accent);
  margin-bottom: 2px;
}
.te-label {
  display: block;
  font-size: 12px; font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.te-detail {
  display: block;
  font-size: 11px;
  color: var(--text-tertiary);
}

.gap-banner {
  margin-top: 48px;
  display: flex; gap: 20px; align-items: center;
  padding: 20px 24px;
  background: rgba(240, 64, 96, 0.08);
  border: 1px solid rgba(240, 64, 96, 0.25);
  border-radius: var(--radius-lg);
}
.gap-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(240, 64, 96, 0.15);
  color: var(--critical);
  display: grid; place-items: center;
}
.gap-icon svg { width: 24px; height: 24px; }
.gap-banner strong {
  display: block; font-size: 16px; font-weight: 800; color: var(--critical);
  margin-bottom: 4px;
}
.gap-banner p {
  font-size: 13px; color: var(--text-secondary); line-height: 1.5;
}
.gap-banner em { color: var(--text-primary); font-style: italic; font-weight: 600; }

/* ─── FAILURE → CAPABILITY · COVER-FLOW CAROUSEL ───────────── */
.fc-wrap {
  margin-top: 40px;
  position: relative;
}
.fc-head {
  display: flex; align-items: center; justify-content: center;
  max-width: 760px; margin: 0 auto 20px;
  padding: 0 8px;
  gap: 16px;
  text-align: center;
}
.fc-head h4 {
  font-size: 13px; font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.fc-controls {
  display: flex; flex-direction: column; align-items: center;
  gap: 14px;
  margin-top: 8px;
}
.fc-nav { display: flex; gap: 12px; }
.fc-btn {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.fc-btn:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}
.fc-btn:active { transform: translateY(0); }
.fc-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.fc-stage {
  position: relative;
  perspective: 1400px;
  padding: 24px 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.fc-track {
  display: flex;
  gap: 0;
  padding: 16px 0;
  transition: transform 0.5s var(--ease);
  will-change: transform;
  justify-content: flex-start;
}
.fc-track.no-transition { transition: none; }

.fc-card {
  flex: 0 0 min(420px, 78vw);
  margin: 0 12px;
  padding: 28px 24px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  transform: rotateY(var(--tilt, -32deg)) scale(var(--s, 0.82));
  transform-origin: center center;
  opacity: var(--op, 0.5);
  filter: brightness(var(--bright, 0.72));
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease), filter 0.5s var(--ease), box-shadow 0.5s var(--ease);
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto 1fr;
  gap: 12px;
  text-align: center;
}
.fc-card.is-center {
  --tilt: 0deg;
  --s: 1;
  --z: 0px;
  --op: 1;
  --blur: 0px;
  --bright: 1;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px var(--border-accent) inset;
  z-index: 3;
}
.fc-card.is-near {
  --tilt: -18deg;
  --s: 0.9;
  --z: -30px;
  --op: 0.78;
  --blur: 0.4px;
  --bright: 0.85;
  z-index: 2;
}
.fc-card.is-near.is-right { --tilt: 18deg; }
.fc-card.is-center.is-right,
.fc-card.is-center.is-left { /* overridden by is-center */ }
.fc-card:not(.is-center):not(.is-near).is-right { --tilt: 32deg; }

.fc-index {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--accent);
  opacity: 0.7;
}
.fc-half { display: flex; flex-direction: column; gap: 4px; align-items: center; text-align: center; }
.fc-chip {
  display: inline-block;
  padding: 3px 9px; font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 4px;
}
.fc-chip-fail { background: rgba(240, 64, 96, 0.14); color: var(--critical); border: 1px solid rgba(240, 64, 96, 0.35); }
.fc-chip-cap { background: rgba(52, 199, 123, 0.14); color: var(--success); border: 1px solid rgba(52, 199, 123, 0.35); }
.fc-half strong {
  display: block; font-size: 16px; font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
}
.fc-half small {
  display: block; font-size: 12.5px; color: var(--text-tertiary);
  line-height: 1.45;
}
.fc-fail strong { color: var(--text-primary); }
.fc-cap strong { color: var(--text-primary); }

.fc-split {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 6px 0;
}
.fc-split::before {
  content: '→';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 14px; font-weight: 600;
  color: var(--accent);
}

.fc-dots {
  display: flex; gap: 8px; justify-content: center;
}
.fc-dot {
  width: 8px; height: 8px; border-radius: 50%;
  border: none; padding: 0;
  background: var(--border);
  cursor: pointer;
  transition: background 0.2s var(--ease), width 0.3s var(--ease);
}
.fc-dot:hover { background: var(--text-tertiary); }
.fc-dot.is-active {
  background: var(--accent);
  width: 24px; border-radius: 100px;
  box-shadow: 0 0 8px var(--accent-glow);
}
.fc-dot:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

@media (max-width: 720px) {
  .fc-stage {
    mask-image: none;
    -webkit-mask-image: none;
    padding: 16px 0;
  }
  .fc-card {
    flex: 0 0 min(300px, 80vw);
    margin: 0 8px;
    padding: 20px 18px 18px;
  }
  .fc-card.is-near { --tilt: 0deg; --s: 0.9; --op: 0.4; --bright: 0.7; }
  .fc-card:not(.is-center):not(.is-near) { --op: 0; }
  .fc-head h4 { font-size: 12px; }
  .fc-half strong { font-size: 15px; line-height: 1.2; }
  .fc-half small { font-size: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .fc-card { transition: none; filter: none; }
}

/* Duo / solo case cards */
.case-duo {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px;
}
.case-solo {
  max-width: 760px;
  margin: 0 auto;
}
.case-mini { padding: 32px; margin-bottom: 0; }
.case-mini p {
  font-size: 14px; color: var(--text-secondary); line-height: 1.6;
  margin-bottom: 16px;
}
.case-capability {
  padding: 16px;
  background: rgba(34, 184, 224, 0.06);
  border: 1px solid rgba(34, 184, 224, 0.2);
  border-radius: var(--radius);
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
}
.case-capability strong { color: var(--accent); }

/* Inline quote inside a case-mini card */
.inline-quote {
  position: relative;
  padding: 16px 16px 16px 42px;
  margin-bottom: 16px;
  background: rgba(240, 64, 96, 0.06);
  border-left: 3px solid var(--critical);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.inline-quote > svg {
  position: absolute; left: 14px; top: 18px;
  color: var(--critical);
  opacity: 0.7;
}
.inline-quote p {
  font-family: 'Georgia', serif;
  font-size: 14px !important;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.55;
  margin: 0 0 8px 0 !important;
}
.inline-quote cite {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-tertiary);
  font-style: normal;
  letter-spacing: 0.02em;
}

/* FTC quote inside Verkada card */
.ic-ftc {
  padding: 12px 14px;
  margin-bottom: 14px;
  background: rgba(240, 64, 96, 0.06);
  border-left: 3px solid var(--critical);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: 12px;
  color: var(--text-primary);
  line-height: 1.5;
}
.ic-ftc em {
  color: var(--critical);
  font-weight: 600;
  font-style: italic;
}
.ic-ftc span {
  display: block;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 10px;
  color: var(--text-tertiary);
  letter-spacing: 0.02em;
}

/* ─── THREAT SCORE ──────────────────────────────────────────── */
.section-threat {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.threat-flex {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start;
}
.threat-intro .section-title { text-align: left; }

.score-final {
  display: flex; gap: 20px; align-items: center;
  padding: 24px;
  background: rgba(240, 64, 96, 0.06);
  border: 1px solid rgba(240, 64, 96, 0.2);
  border-radius: var(--radius-lg);
  margin-top: 32px;
}
.score-ring {
  position: relative;
  width: 120px; height: 120px; flex-shrink: 0;
}
.score-ring svg { width: 100%; height: 100%; }
.score-ring-progress {
  animation: ringFill 1.5s var(--ease-spring) forwards;
}
@keyframes ringFill {
  from { stroke-dashoffset: 339.3; }
}
.score-ring-label {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.score-big {
  font-size: 2.5rem; font-weight: 900;
  color: var(--critical); line-height: 1;
}
.score-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
  color: var(--critical); margin-top: 4px;
}
.score-outcome strong {
  display: block; font-size: 15px; font-weight: 700; color: var(--critical);
  margin-bottom: 6px;
}
.score-outcome p {
  font-size: 13px; color: var(--text-secondary); line-height: 1.5;
}
.score-outcome em { color: var(--text-primary); font-style: italic; }

.threat-breakdown {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
}
.breakdown-head {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 1.5fr 0.5fr;
  gap: 16px;
  padding: 12px 16px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  color: var(--text-tertiary); text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.breakdown-row {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 1.5fr 0.5fr;
  gap: 16px; align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-subtle);
}
.breakdown-row:last-child { border-bottom: 1px solid var(--border); }
.br-signal {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px; font-weight: 600;
}
.br-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c);
  box-shadow: 0 0 8px var(--c);
}
.br-weight, .br-score {
  font-family: var(--font-mono);
  font-size: 14px; font-weight: 700;
  text-align: center;
}
.br-score { color: var(--accent); font-size: 16px; }
.br-bar {
  position: relative;
  height: 24px;
  background: var(--bg-inset);
  border-radius: 6px;
  overflow: hidden;
  display: flex; align-items: center;
}
.br-fill {
  position: absolute; inset: 0; right: auto;
  background: linear-gradient(90deg, transparent 0%, var(--c) 100%);
  border-radius: 6px;
  animation: barFill 1.2s var(--ease) forwards;
  transform-origin: left;
}
@keyframes barFill {
  from { transform: scaleX(0); }
}
.br-bar span {
  position: relative; z-index: 2;
  padding-left: 10px;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600;
  color: var(--text-primary);
}

.breakdown-sum {
  padding: 20px 16px 8px;
  font-size: 13px; color: var(--text-secondary);
  line-height: 1.8;
}
.breakdown-sum div { padding: 4px 0; }
.breakdown-sum strong { color: var(--text-primary); font-weight: 700; }
.sum-critical {
  margin-top: 8px;
  padding: 8px 12px !important;
  background: rgba(240, 64, 96, 0.1);
  border-radius: 6px;
  color: var(--critical) !important;
}
.sum-critical strong { color: var(--critical) !important; }

/* ─── INDUSTRY ──────────────────────────────────────────────── */
.industry-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px;
}
.industry-card {
  display: flex; flex-direction: column;
  padding: 28px;
  background: linear-gradient(180deg, var(--bg-card) 0%, rgba(19,28,48,0.7) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
  position: relative; overflow: hidden;
}
.industry-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--critical); opacity: 0.5;
}
.industry-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
  box-shadow: 0 24px 48px rgba(0,0,0,0.3);
}
.industry-card:hover::before { opacity: 1; }

.ic-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
}
.ic-logo {
  display: inline-block;
  padding: 4px 10px;
  font-family: var(--font-mono); font-size: 11px;
  font-weight: 700; letter-spacing: 0.05em;
  background: var(--bg-inset);
  color: var(--text-tertiary);
  border-radius: 4px;
  border: 1px solid var(--border-subtle);
}
.ic-severity {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 3px 8px; border-radius: 4px;
}
.ic-severity span {
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 6px currentColor;
}
.ic-severity.critical { color: var(--critical); background: rgba(240,64,96,0.12); }
.ic-severity.high { color: var(--warning); background: rgba(245,166,35,0.12); }
.ic-severity.medium { color: var(--info); background: rgba(91,156,245,0.12); }

.ic-date {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text-tertiary);
  margin-bottom: 14px;
}
.industry-card h3 {
  font-size: 19px; font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.industry-card p {
  font-size: 13px; color: var(--text-secondary); line-height: 1.6;
  margin-bottom: 16px;
}
.industry-card em { color: var(--text-primary); font-style: italic; }

.ic-covered {
  display: flex; gap: 6px; flex-wrap: wrap;
  padding-bottom: 16px; margin-bottom: 16px;
  border-bottom: 1px dashed var(--border-subtle);
}
.ic-chip {
  padding: 3px 8px; border-radius: 100px;
  font-size: 10px; font-weight: 600;
  color: var(--text-tertiary);
  background: var(--bg-inset);
  border: 1px solid var(--border-subtle);
  letter-spacing: 0.02em;
}
.industry-answer {
  margin-top: auto;
  display: flex; flex-direction: column; gap: 4px;
  padding: 12px 14px;
  background: rgba(34, 184, 224, 0.06);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.industry-answer strong {
  color: var(--accent);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
}

/* ─── COMPETITIVE — scorecard matrix ─────────────────────────── */
.vs-matrix {
  max-width: 1080px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.vs-row {
  display: grid;
  grid-template-columns: 1fr 160px 200px;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.25s var(--ease);
}
.vs-row:last-child { border-bottom: 0; }
.vs-row:not(.vs-row-head):hover {
  background: rgba(34, 184, 224, 0.03);
}
.vs-row-head {
  background: linear-gradient(90deg, rgba(34, 184, 224, 0.05) 0%, rgba(240, 64, 96, 0.04) 100%);
  border-bottom: 1.5px solid var(--border);
  padding: 18px 24px;
}
.vs-row-highlight {
  background: linear-gradient(90deg, rgba(52, 199, 123, 0.04) 0%, rgba(240, 64, 96, 0.04) 100%);
}

.vs-feat-head {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-tertiary);
}

.vs-feat {
  display: flex; align-items: center; gap: 14px;
  min-width: 0;
}
.vs-feat-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(34, 184, 224, 0.1);
  border: 1px solid rgba(34, 184, 224, 0.25);
  color: var(--accent);
  flex-shrink: 0;
}
.vs-feat-icon svg { width: 20px; height: 20px; }
.vs-feat-icon-warm {
  background: rgba(245, 166, 35, 0.1);
  border-color: rgba(245, 166, 35, 0.3);
  color: var(--warning);
}
.vs-feat-text { min-width: 0; }
.vs-feat-text strong {
  display: block;
  font-size: 15px; font-weight: 800;
  color: var(--text-primary);
  line-height: 1.3;
  letter-spacing: -0.005em;
}
.vs-feat-text span {
  display: block;
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-top: 3px;
}
.vs-feat-text em {
  color: var(--text-primary);
  font-style: italic;
}

.vs-col {
  display: flex; flex-direction: column;
  align-items: center; gap: 3px;
  text-align: center;
}
.vs-col-name {
  font-size: 13px; font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.005em;
}
.vs-col-us .vs-col-name {
  background: linear-gradient(135deg, var(--success), var(--accent));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.vs-col-tag {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.15em;
  color: var(--text-tertiary);
  text-transform: uppercase;
}

.vs-cell {
  display: flex; justify-content: center; align-items: center;
}
.vs-yes {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(52, 199, 123, 0.18);
  border: 1.5px solid rgba(52, 199, 123, 0.5);
  color: var(--success);
  display: grid; place-items: center;
  font-size: 17px; font-weight: 900;
  box-shadow: 0 4px 14px rgba(52, 199, 123, 0.18);
}
.vs-no {
  font-family: var(--font-mono);
  font-size: 22px; font-weight: 300;
  color: var(--text-tertiary);
  opacity: 0.55;
  line-height: 1;
}
.vs-pill-them {
  display: inline-flex; align-items: center;
  padding: 6px 12px;
  background: rgba(240, 64, 96, 0.08);
  border: 1px solid rgba(240, 64, 96, 0.25);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 700;
  color: var(--critical);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.vs-price {
  display: inline-flex; align-items: baseline; gap: 1px;
  padding: 8px 14px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.vs-price small {
  font-size: 10.5px;
  font-weight: 600;
  opacity: 0.75;
  margin-left: 1px;
}
.vs-price-us {
  background: rgba(52, 199, 123, 0.18);
  border: 1.5px solid rgba(52, 199, 123, 0.5);
  color: var(--success);
  font-size: 15px;
  box-shadow: 0 4px 14px rgba(52, 199, 123, 0.18);
}
.vs-price-them {
  background: rgba(240, 64, 96, 0.08);
  border: 1px solid rgba(240, 64, 96, 0.25);
  color: var(--critical);
  font-size: 13px;
}

/* ─── VS Tally ──────────────────────────────────────────────── */
.vs-tally {
  max-width: 640px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.vs-tally::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at left center, rgba(52, 199, 123, 0.06) 0%, transparent 50%),
              radial-gradient(ellipse at right center, rgba(240, 64, 96, 0.05) 0%, transparent 50%);
  pointer-events: none;
}
.vs-tally > * { position: relative; }
.vs-tally-side {
  display: flex; flex-direction: column;
  align-items: center; gap: 6px;
  text-align: center;
}
.vs-tally-num {
  font-family: var(--font-mono);
  font-size: clamp(44px, 8vw, 60px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}
.vs-tally-num small {
  font-size: 0.42em;
  opacity: 0.5;
  font-weight: 700;
  margin-left: 2px;
}
.vs-tally-us .vs-tally-num {
  background: linear-gradient(135deg, var(--success) 0%, var(--accent) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 16px rgba(52, 199, 123, 0.25));
}
.vs-tally-them .vs-tally-num {
  color: var(--text-tertiary);
  opacity: 0.55;
}
.vs-tally-label {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-secondary);
}
.vs-tally-vs {
  font-family: var(--font-mono);
  font-size: 13px; font-weight: 700;
  color: var(--text-tertiary);
  letter-spacing: 0.2em;
  opacity: 0.6;
}

/* Tablet: tighten spacing */
@media (max-width: 900px) {
  .vs-row {
    grid-template-columns: 1fr 80px 80px;
    gap: 14px;
    padding: 18px 18px;
  }
  .vs-row-head { padding: 16px 18px; }
  .vs-col-name { font-size: 11px; }
  .vs-col-tag { font-size: 9px; }
  .vs-feat-text strong { font-size: 14px; }
  .vs-feat-text span { font-size: 12px; }
  .vs-yes { width: 30px; height: 30px; font-size: 15px; }
  .vs-price { padding: 6px 10px; }
  .vs-price-us { font-size: 13px; }
  .vs-price-them { font-size: 11.5px; }
}

/* Mobile: stack feature on top, us/them side-by-side below */
@media (max-width: 640px) {
  .vs-matrix { border-radius: var(--radius-md); }
  .vs-row-head { display: none; }
  .vs-row {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "feat feat"
      "us them";
    gap: 10px 10px;
    padding: 18px 16px;
  }
  .vs-feat { grid-area: feat; gap: 12px; }
  .vs-cell-us { grid-area: us; }
  .vs-cell-them { grid-area: them; }
  .vs-cell {
    padding: 10px 12px;
    border-radius: 10px;
    gap: 8px;
    justify-content: space-between;
  }
  .vs-cell::before {
    content: attr(data-label);
    font-family: var(--font-mono);
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--text-tertiary);
  }
  .vs-cell-us {
    background: rgba(52, 199, 123, 0.08);
    border: 1px solid rgba(52, 199, 123, 0.25);
  }
  .vs-cell-them {
    background: rgba(240, 64, 96, 0.04);
    border: 1px solid rgba(240, 64, 96, 0.15);
  }
  .vs-feat-icon { width: 36px; height: 36px; }
  .vs-feat-icon svg { width: 18px; height: 18px; }
  .vs-feat-text strong { font-size: 14px; }
  .vs-feat-text span { font-size: 12px; }

  .vs-tally {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 24px 20px;
    margin-top: 32px;
  }
  .vs-tally-vs { display: none; }
  .vs-tally-num { font-size: 40px; }
}

/* ─── legacy table styles kept for safety (unused on this page now) ── */
.section-competitive {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.compare-wrap { overflow-x: auto; border-radius: var(--radius-xl); }
.compare-scroll { min-width: 900px; }
.compare-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}
.compare-table th,
.compare-table td {
  padding: 14px 16px;
  text-align: center;
  font-size: 13px;
  border-bottom: 1px solid var(--border-subtle);
}
.compare-table th {
  background: var(--bg-secondary);
  font-weight: 700; font-size: 12px;
  color: var(--text-secondary);
  vertical-align: bottom;
}
.compare-table th.cap-col,
.compare-table td.cap-col,
.compare-table td:first-child {
  text-align: left;
  font-weight: 600;
}
.compare-table td:first-child { color: var(--text-primary); font-weight: 600; font-size: 13px; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--bg-card-hover); }

.us-col {
  background: linear-gradient(180deg, rgba(34, 184, 224, 0.06) 0%, rgba(34, 184, 224, 0.02) 100%);
  border-left: 1px solid rgba(34, 184, 224, 0.2);
  border-right: 1px solid rgba(34, 184, 224, 0.2);
}
.vendor-name {
  font-weight: 800; font-size: 14px; color: var(--accent);
  margin-bottom: 4px;
}
.vendor-badge {
  display: inline-block;
  padding: 2px 8px; border-radius: 4px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--accent); color: var(--bg-primary);
}

.yes, .no, .partial {
  display: inline-block;
  padding: 4px 10px; border-radius: 6px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.03em;
}
.yes {
  background: rgba(52, 199, 123, 0.12);
  color: var(--success);
  border: 1px solid rgba(52, 199, 123, 0.3);
}
.no {
  background: rgba(240, 64, 96, 0.08);
  color: var(--critical);
  border: 1px solid rgba(240, 64, 96, 0.25);
}
.partial {
  background: rgba(245, 166, 35, 0.1);
  color: var(--warning);
  border: 1px solid rgba(245, 166, 35, 0.25);
}

/* ─── DASHBOARD MOCKUPS ─────────────────────────────────────── */
.mockup-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.mockup {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s var(--ease);
  display: flex; flex-direction: column;
  grid-column: span 2;
}
.mockup:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-lg);
}
.mockup-main { grid-column: span 6; }

.mockup-chrome {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  background: var(--bg-inset);
  border-bottom: 1px solid var(--border-subtle);
}
.mockup-chrome .dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.mockup-chrome .dot.r { background: #ff5f56; }
.mockup-chrome .dot.y { background: #ffbd2e; }
.mockup-chrome .dot.g { background: #27c93f; }
.mockup-url {
  margin-left: 12px;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text-tertiary);
  letter-spacing: 0.02em;
}

.mockup-body {
  flex: 1;
  min-height: 220px;
  background: var(--bg-secondary);
  overflow: hidden;
}
.mockup-body.p-16 { padding: 16px; display: flex; flex-direction: column; gap: 8px; }

.radar-body {
  display: grid;
  grid-template-columns: 120px 1fr 200px;
  min-height: 360px;
}
.mockup-sidebar {
  padding: 12px 8px;
  background: var(--bg-inset);
  border-right: 1px solid var(--border-subtle);
  display: flex; flex-direction: column; gap: 2px;
}
.ms-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 11px; color: var(--text-secondary);
}
.ms-item.active {
  background: var(--accent-dim);
  color: var(--accent);
  font-weight: 600;
}
.ms-ico {
  width: 12px; height: 12px; border-radius: 3px;
  background: currentColor; opacity: 0.5;
}

.mockup-main-area {
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 20px;
  align-items: center;
}
.mockup-radar {
  width: 100%; aspect-ratio: 1;
  max-width: 300px; margin: 0 auto;
}
.radar-svg { width: 100%; height: 100%; }
.mockup-sweep {
  transform-origin: 150px 150px;
  animation: mockupSweep 4s linear infinite;
}
@keyframes mockupSweep {
  to { transform: rotate(360deg); }
}
.blip { animation: blipFade 4s infinite; }
.blip.b1 { animation-delay: 0s; }
.blip.b2 { animation-delay: 0.8s; }
.blip.b3 { animation-delay: 1.6s; }
.blip.b4 { animation-delay: 2.4s; }
.blip.b5 { animation-delay: 3.2s; }
@keyframes blipFade {
  0%, 100% { opacity: 0.3; }
  10% { opacity: 1; filter: drop-shadow(0 0 6px currentColor); }
}
.blip-critical {
  animation: blipCritical 1.5s infinite;
  filter: drop-shadow(0 0 12px #f04060);
}
@keyframes blipCritical {
  0%, 100% { r: 8; opacity: 1; }
  50% { r: 12; opacity: 0.6; }
}

.mockup-feed {
  display: flex; flex-direction: column; gap: 8px;
}
.mf-header {
  font-size: 10px; font-weight: 700; letter-spacing: 0.15em;
  color: var(--text-tertiary); text-transform: uppercase;
  margin-bottom: 4px;
}
.mf-event {
  display: flex; gap: 10px;
  padding: 8px 10px;
  background: var(--bg-card);
  border-radius: 6px;
  border-left: 3px solid var(--text-tertiary);
  font-size: 11px;
}
.mf-event.critical { border-left-color: var(--critical); background: rgba(240,64,96,0.06); }
.mf-event.warn { border-left-color: var(--warning); }
.mf-event.ok { border-left-color: var(--success); }
.mf-time {
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  color: var(--text-tertiary);
  width: 36px; flex-shrink: 0;
}
.mf-text strong { display: block; font-size: 11px; font-weight: 600; color: var(--text-primary); }
.mf-text small { display: block; font-size: 10px; color: var(--text-tertiary); margin-top: 2px; }

/* Event detail mockup */
.ev-header {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 8px;
}
.ev-score {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(240,64,96,0.15);
  border: 2px solid var(--critical);
  display: grid; place-items: center;
  font-size: 18px; font-weight: 800; color: var(--critical);
}
.ev-bars { display: flex; flex-direction: column; gap: 6px; }
.evb {
  display: grid; grid-template-columns: 90px 1fr 24px;
  align-items: center; gap: 8px;
}
.evb-label {
  font-family: var(--font-mono); font-size: 9px; color: var(--text-secondary);
}
.evb-bar {
  height: 10px; border-radius: 3px;
  background: var(--bg-inset);
  position: relative; overflow: hidden;
}
.evb-bar::before {
  content: ''; position: absolute; inset: 0;
  width: var(--w); background: var(--c);
  border-radius: 3px;
  box-shadow: 0 0 6px var(--c);
}
.evb-num {
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  color: var(--accent); text-align: right;
}

/* Devices mockup */
.dv-item {
  display: grid; grid-template-columns: 8px 1fr auto;
  align-items: center; gap: 10px;
  padding: 8px 10px;
  background: var(--bg-card);
  border-radius: 6px;
  border-left: 3px solid transparent;
}
.dv-item.flagged { background: rgba(245,166,35,0.05); border-left-color: var(--warning); }
.dv-item:has(.crit) { background: rgba(240,64,96,0.06); border-left-color: var(--critical); }
.dv-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c); box-shadow: 0 0 6px var(--c);
}
.dv-item strong {
  display: block; font-size: 11px; font-weight: 600; color: var(--text-primary);
}
.dv-item small {
  display: block; font-size: 10px; color: var(--text-tertiary); margin-top: 1px;
}
.dv-tag {
  padding: 2px 6px; border-radius: 4px;
  font-size: 9px; font-weight: 700; letter-spacing: 0.05em;
  background: rgba(52,199,123,0.12); color: var(--success);
  text-transform: uppercase;
}
.dv-tag.warn { background: rgba(245,166,35,0.15); color: var(--warning); }
.dv-tag.crit { background: rgba(240,64,96,0.15); color: var(--critical); }

/* RF body */
.rf-body { gap: 10px; }
.rf-band {
  padding: 8px;
  background: var(--bg-card);
  border-radius: 6px;
}
.rf-band small {
  display: block; font-size: 10px; font-weight: 600;
  color: var(--text-tertiary); margin-bottom: 4px;
  letter-spacing: 0.05em;
}
.rf-graph { width: 100%; height: 30px; }
.rf-detect {
  margin-top: auto;
  padding: 8px 10px;
  background: rgba(240,64,96,0.1);
  border: 1px solid rgba(240,64,96,0.3);
  border-radius: 6px;
  font-size: 10px;
  color: var(--critical);
  font-weight: 600;
  animation: cellPulse 2s infinite;
}

/* Export mockup */
.ex-src {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 10px;
  background: var(--bg-card);
  border-radius: 4px;
  font-size: 11px;
}
.ex-src span { color: var(--text-secondary); font-family: var(--font-mono); font-size: 10px; }
.ex-src small { font-weight: 700; color: var(--accent); font-size: 11px; }
.ex-btn {
  margin-top: auto;
  padding: 10px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: var(--bg-primary);
  border-radius: 6px;
  text-align: center;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.05em;
}

/* Chat mockup */
.chat-body { gap: 10px; }
.chat-msg {
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 11px;
  line-height: 1.5;
  max-width: 90%;
}
.chat-msg.user {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: var(--bg-primary);
  font-weight: 500;
}
.chat-msg.ai {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
}
.chat-ai-head {
  font-size: 9px; color: var(--accent);
  font-family: var(--font-mono);
  font-weight: 600; margin-bottom: 4px;
  letter-spacing: 0.05em;
}
.chat-input {
  margin-top: auto;
  padding: 8px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  display: flex; align-items: center; gap: 8px;
  font-size: 11px;
}
.chat-input > span:first-child { color: var(--accent); font-weight: 700; }
.chat-ph { flex: 1; color: var(--text-tertiary); }
.chat-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.5s infinite;
}

.mockup-caption {
  padding: 14px 16px;
  border-top: 1px solid var(--border-subtle);
}
.mockup-caption strong {
  display: block; font-size: 13px; font-weight: 700; color: var(--text-primary);
  margin-bottom: 2px;
}
.mockup-caption span { font-size: 11px; color: var(--text-tertiary); }

/* ─── TCO ───────────────────────────────────────────────────── */
.tco-grid {
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 32px; align-items: start;
}
.tco-full {
  max-width: 900px; margin: 0 auto;
}
.tco-chart-wrap {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
}
.tco-chart-title {
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--text-tertiary); margin-bottom: 24px;
}
.tco-bars { display: flex; flex-direction: column; gap: 16px; margin-bottom: 20px; }
.tco-bar-row {
  display: grid;
  grid-template-columns: 140px 1fr 80px;
  gap: 16px; align-items: center;
}
.tco-bar-name { font-size: 13px; font-weight: 600; }
.tco-bar-name.us { color: var(--accent); font-weight: 700; }
.tco-bar-name small {
  display: block; font-size: 11px; color: var(--text-tertiary); font-weight: 400;
}
.tco-bar {
  position: relative;
  height: 28px;
  background: var(--bg-inset);
  border-radius: 8px;
  overflow: hidden;
}
.tco-bar-fill {
  height: 100%;
  border-radius: 8px;
  transition: width 1s var(--ease-spring);
  background: linear-gradient(90deg, var(--critical) 0%, var(--warning) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}
.tco-bar-fill.us {
  background: linear-gradient(90deg, var(--success) 0%, var(--accent) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), 0 0 12px rgba(52, 199, 123, 0.3);
}
.tco-bar-value {
  font-family: var(--font-mono);
  font-size: 14px; font-weight: 700;
  text-align: right;
}
.tco-bar-value.us { color: var(--success); }
.tco-note {
  font-size: 11px; color: var(--text-tertiary); line-height: 1.5;
  padding-top: 16px; border-top: 1px solid var(--border-subtle);
}

.tco-options { display: flex; flex-direction: column; gap: 12px; }
.tco-option {
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  position: relative;
  transition: all 0.3s var(--ease);
}
.tco-option:hover {
  border-color: var(--border-accent);
  transform: translateX(4px);
}
.tco-option.recommended {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(34, 184, 224, 0.05) 100%);
}
.tco-opt-badge {
  position: absolute; top: -10px; left: 20px;
  padding: 3px 10px; border-radius: 4px;
  background: var(--accent); color: var(--bg-primary);
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase;
}
.tco-opt-header {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 8px;
}
.tco-opt-name { font-size: 14px; font-weight: 700; }
.tco-opt-price {
  font-family: var(--font-mono); font-size: 16px; font-weight: 800;
  color: var(--accent);
}
.tco-option p { font-size: 12px; color: var(--text-secondary); }

/* ─── DEPLOYMENT ────────────────────────────────────────────── */
.section-deploy { background: var(--bg-primary); }
.deploy-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px;
}
.deploy-card {
  position: relative;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  transition: all 0.3s var(--ease);
}
.deploy-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-lg);
}
.deploy-card.featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(34, 184, 224, 0.04) 100%);
}
.deploy-badge {
  position: absolute; top: -12px; left: 24px;
  padding: 4px 12px; border-radius: 4px;
  background: var(--accent); color: var(--bg-primary);
  font-size: 10px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase;
}
.deploy-num {
  display: inline-block;
  width: 40px; height: 40px;
  line-height: 40px; text-align: center;
  border-radius: 12px;
  background: var(--bg-inset);
  font-weight: 800; font-size: 18px;
  color: var(--accent);
  margin-bottom: 16px;
}
.deploy-card.featured .deploy-num {
  background: var(--accent); color: var(--bg-primary);
}
.deploy-card h3 {
  font-size: 20px; font-weight: 800;
  letter-spacing: -0.02em; margin-bottom: 16px;
}
.deploy-card ul {
  list-style: none; margin-bottom: 20px;
  padding: 16px;
  background: var(--bg-inset);
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
}
.deploy-card li {
  font-size: 13px; color: var(--text-secondary); line-height: 1.8;
  padding-left: 20px; position: relative;
}
.deploy-card li::before {
  content: '▸'; position: absolute; left: 0;
  color: var(--accent);
}
.deploy-card li strong { color: var(--text-primary); }
.deploy-price {
  font-size: 13px; color: var(--text-tertiary); margin-bottom: 12px;
}
.deploy-price span {
  font-family: var(--font-mono);
  font-size: 28px; font-weight: 900;
  color: var(--success);
  margin-right: 4px;
}
.deploy-what {
  font-size: 13px; color: var(--text-secondary); line-height: 1.6;
}

/* ─── COMPLIANCE ────────────────────────────────────────────── */
.section-compliance {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.trust-grid {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 20px;
}
.trust-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.trust-item:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--success) 45%, var(--border));
  background: var(--bg-card-hover);
}
.trust-check {
  flex: 0 0 28px;
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--success);
  background: rgba(52, 199, 123, 0.14);
  border: 1px solid rgba(52, 199, 123, 0.35);
  border-radius: 50%;
  margin-top: 2px;
}
.trust-check svg { width: 14px; height: 14px; display: block; }
.trust-item > div { flex: 1; min-width: 0; }
.trust-item strong {
  display: block;
  font-size: 14px; font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
  line-height: 1.25;
}
.trust-item small {
  display: block;
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
}
@media (max-width: 900px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .trust-grid { grid-template-columns: 1fr; }
}

.legal-callout {
  display: flex; gap: 20px;
  padding: 24px;
  background: rgba(245, 166, 35, 0.06);
  border: 1px solid rgba(245, 166, 35, 0.25);
  border-radius: var(--radius-lg);
}
.legal-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 12px;
  background: rgba(245, 166, 35, 0.15);
  color: var(--warning);
  display: grid; place-items: center;
}
.legal-icon svg { width: 24px; height: 24px; }
.legal-callout strong {
  display: block; color: var(--warning); font-size: 14px; font-weight: 700;
  margin-bottom: 6px;
}
.legal-callout p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ─── LIMITATIONS ───────────────────────────────────────────── */
.limits-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px;
}
.limit-card {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
}
.limit-card:hover { border-color: var(--border-accent); }
.limit-card h4 {
  font-size: 15px; font-weight: 700;
  color: var(--warning);
  margin-bottom: 12px;
}
.limit-card p {
  font-size: 13px; color: var(--text-secondary); line-height: 1.6;
  margin-bottom: 8px;
}
.limit-card p:last-child { margin-bottom: 0; }
.limit-card strong {
  display: inline-block;
  color: var(--text-primary); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-right: 6px;
}

/* ─── VERIFY ────────────────────────────────────────────────── */
.section-verify { padding: 64px 0; }
.verify-card {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: center;
  padding: 48px;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-2xl);
}
.verify-left h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 800; letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.verify-left p { color: var(--text-secondary); }
.verify-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.vs {
  padding: 16px;
  background: var(--bg-inset);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  text-align: center;
}
.vs-num {
  font-family: var(--font-mono);
  font-size: 1.5rem; font-weight: 800;
  color: var(--accent); line-height: 1;
  margin-bottom: 6px;
}
.vs-lbl {
  font-size: 10px; color: var(--text-tertiary);
  letter-spacing: 0.05em; text-transform: uppercase;
}

/* ─── FINAL CTA ─────────────────────────────────────────────── */
.section-cta {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse at center, rgba(34, 184, 224, 0.12) 0%, transparent 60%),
    var(--bg-primary);
}
.cta-bg {
  position: absolute; inset: 0;
  pointer-events: none;
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: ctaFloat 12s ease-in-out infinite;
}
.cta-orb-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  top: -100px; left: -100px;
}
.cta-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--purple) 0%, transparent 70%);
  bottom: -150px; right: -150px;
  animation-delay: -4s;
}
.cta-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--success) 0%, transparent 70%);
  top: 30%; right: 20%;
  animation-delay: -8s;
  opacity: 0.2;
}
@keyframes ctaFloat {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(30px, -20px); }
  66% { transform: translate(-20px, 20px); }
}

.cta-card {
  position: relative; z-index: 1;
  max-width: 780px; margin: 0 auto;
  padding: 72px 56px;
  background: linear-gradient(145deg, rgba(19, 28, 48, 0.9) 0%, rgba(11, 16, 32, 0.95) 100%);
  border: 1px solid rgba(34, 184, 224, 0.25);
  border-radius: var(--radius-2xl);
  text-align: center;
  backdrop-filter: blur(20px);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(34, 184, 224, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.cta-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: rgba(34, 184, 224, 0.08);
  border: 1px solid rgba(34, 184, 224, 0.25);
  border-radius: 100px;
  font-size: 13px; font-weight: 500; color: var(--accent);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}
.cta-card h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900; letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.cta-card p {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.55;
  max-width: 560px; margin: 0 auto 40px;
}
.cta-btns {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 32px;
}

/* Waitlist form */
.cta-form {
  display: flex; gap: 10px; max-width: 520px; margin: 0 auto 24px;
  flex-wrap: wrap;
}
.cta-form input[type="email"] {
  flex: 1; min-width: 220px;
  padding: 14px 18px;
  background: var(--bg-inset);
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--text-primary);
  font-family: inherit; font-size: 15px;
  transition: all 0.2s var(--ease);
}
.cta-form input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(34, 184, 224, 0.15);
  background: var(--bg-card);
}
.cta-form input[type="email"]::placeholder {
  color: var(--text-tertiary);
}
.cta-form.submitted { display: none; }
.cta-thanks {
  display: none;
  padding: 14px 20px;
  background: rgba(52, 199, 123, 0.1);
  border: 1px solid rgba(52, 199, 123, 0.35);
  border-radius: 14px;
  color: var(--success);
  font-weight: 600;
  max-width: 520px;
  margin: 0 auto 24px;
}
.cta-form.submitted + .cta-thanks { display: block; }

.cta-pledge-line {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  font-size: 12px; font-weight: 500;
  color: var(--text-tertiary);
  text-align: center;
  letter-spacing: 0.02em;
}

/* ─── FOOTER ────────────────────────────────────────────────── */
.footer {
  padding: 0 0 24px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
}

/* Download banner at top of footer */
.footer-download {
  background: linear-gradient(135deg, rgba(34, 184, 224, 0.1) 0%, rgba(59, 158, 255, 0.06) 100%);
  border-bottom: 1px solid var(--border-subtle);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.footer-download::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 100%, rgba(34, 184, 224, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.fd-wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.fd-left {
  display: flex; align-items: center; gap: 20px;
  min-width: 0;
}
.fd-icon {
  width: 64px; height: 64px; flex-shrink: 0;
  display: grid; place-items: center;
  background: rgba(34, 184, 224, 0.12);
  border: 1px solid rgba(34, 184, 224, 0.3);
  border-radius: 16px;
  color: var(--accent);
}
.fd-icon svg { width: 32px; height: 32px; }
.fd-left h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  font-weight: 800; letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.fd-left p {
  font-size: 13px; color: var(--text-secondary); line-height: 1.5;
}

/* Normal footer grid padding */
.footer .container { padding-top: 48px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 48px;
  padding-bottom: 40px; border-bottom: 1px solid var(--border-subtle);
}
.footer-brand {
  display: flex; gap: 12px; align-items: flex-start;
  color: var(--accent);
}
.footer-brand .nav-logo { width: 36px; height: 36px; }
.footer-brand strong {
  display: block; color: var(--text-primary);
  font-size: 16px; font-weight: 800; margin-bottom: 4px;
}
.footer-brand small {
  color: var(--text-tertiary);
  font-size: 12px;
}
.footer-col h5 {
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  color: var(--text-tertiary); text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 13px; color: var(--text-secondary);
  padding: 6px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-col small {
  font-size: 12px; color: var(--text-tertiary); line-height: 1.6;
}
.footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--text-tertiary);
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom code {
  padding: 2px 6px; border-radius: 4px;
  background: var(--bg-card); color: var(--accent);
}

/* ─── PDF OVERLAY ───────────────────────────────────────────── */
.pdf-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(8, 12, 22, 0.92);
  backdrop-filter: blur(20px);
  display: none; align-items: center; justify-content: center;
}
.pdf-overlay.active { display: flex; }
.pdf-card {
  padding: 48px 64px;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-2xl);
  text-align: center;
  min-width: 360px;
  box-shadow: var(--shadow-lg);
}
.pdf-spinner {
  width: 64px; height: 64px;
  margin: 0 auto 24px;
  border: 3px solid rgba(34, 184, 224, 0.15);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.pdf-status {
  font-size: 18px; font-weight: 700;
  margin-bottom: 20px;
}
.pdf-progress {
  height: 6px;
  background: var(--bg-inset);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 12px;
}
.pdf-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%);
  border-radius: 3px;
  width: 0%;
  transition: width 0.3s;
}
.pdf-detail {
  font-size: 12px; color: var(--text-tertiary);
  font-family: var(--font-mono);
}

/* ─── RESPONSIVE — comprehensive breakpoint system ──────────── */

/* Large desktop (1440+) — default */

/* Desktop to tablet transition (1024px) */
@media (max-width: 1200px) {
  .hero-split { gap: 40px; }
  .device-frame { width: 380px; }
  .orbital-ring.r3 { width: 620px; height: 620px; }
}

@media (max-width: 1024px) {
  /* Navigation */
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-inner { padding: 12px 20px; }
  .nav-jump-cta { display: none; }

  /* Hero — stack */
  .hero { padding: 120px 24px 64px; min-height: auto; }
  .hero-split {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-copy { text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta {
    justify-content: center;
    flex-wrap: wrap;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
  }
  .hero-cta .btn {
    flex: 1 1 200px;
    justify-content: center;
    min-width: 0;
  }
  .hero-cta .btn span {
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
  }
  .hero-trust { justify-content: center; flex-direction: column; gap: 12px; padding-top: 20px; }
  .hero-visual { order: -1; }
  .device-frame {
    width: 360px;
    transform: none;
    animation: none;
  }
  .device-toast { left: auto; right: -12px; bottom: 40px; min-width: 240px; }
  .orbital-ring.r1 { width: 460px; height: 460px; }
  .orbital-ring.r2 { width: 560px; height: 560px; }
  .orbital-ring.r3 { display: none; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }

  /* Section layouts */
  .fusion-diagram { grid-template-columns: 1fr; gap: 24px; }
  .fusion-bridge { display: none; }
  .threat-flex { grid-template-columns: 1fr; gap: 32px; }
  .verify-card { grid-template-columns: 1fr; gap: 32px; padding: 40px; }
  .verify-stats { grid-template-columns: repeat(4, 1fr); }
  .tco-grid { grid-template-columns: 1fr; }
  .howsteps { grid-template-columns: 1fr 1fr; row-gap: 48px; }
  .howstep:nth-child(2) .hs-line { display: none; }

  /* Mockups */
  .mockup-gallery { grid-template-columns: repeat(4, 1fr); }
  .mockup-main { grid-column: span 4; }
  .mockup:not(.mockup-main) { grid-column: span 2; }
  .radar-body { grid-template-columns: 1fr; min-height: 280px; }
  .mockup-sidebar { display: none; }
  .mockup-main-area { grid-template-columns: 1fr; padding: 16px; }
  .mockup-radar { max-width: 260px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .fd-wrap { flex-direction: column; gap: 24px; text-align: center; }
  .fd-left { flex-direction: column; text-align: center; gap: 16px; }
}

/* Tablet (768-1024) */
@media (max-width: 900px) {
  .howsteps { grid-template-columns: 1fr 1fr; row-gap: 56px; }
  .hs-line { display: none; }
  .layers-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr 1fr; }
  .gap-numbers { grid-template-columns: 1fr 1fr; gap: 16px; }
  .deploy-grid { grid-template-columns: 1fr; }
  /* glance-grid removed — now using .glance-panel list layout */
  .case-duo { grid-template-columns: 1fr; }
  .sov-grid { grid-template-columns: 1fr 1fr; }
  .limits-grid { grid-template-columns: 1fr 1fr; }
  .comp-grid { grid-template-columns: repeat(2, 1fr); }
  .perf-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
}

/* Small tablet / large phone (640-768) */
@media (max-width: 768px) {
  html { font-size: 15px; }
  .section { padding: 72px 0; }
  .section-head { margin-bottom: 40px; }
  .container { padding: 0 20px; }

  .hero { padding: 100px 20px 56px; }
  .hero-title { font-size: clamp(2rem, 9vw, 3.25rem); }
  .device-frame { width: 320px; padding: 12px; }
  .device-screen { border-radius: 14px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hero-stat { padding: 14px 14px 12px; }
  .hero-stat-icon { width: 22px; height: 22px; margin-bottom: 8px; }
  .hero-stat-value { font-size: 1.5rem; }
  .hero-stat-label { font-size: 10px; letter-spacing: 0.08em; }
  .hero-stat-sub { font-size: 10.5px; }

  /* Timeline: vertical */
  .timeline-track {
    height: auto; padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .timeline-line {
    left: 16px; right: auto; top: 0; bottom: 0;
    width: 2px; height: 100%;
    background: linear-gradient(to bottom, var(--success) 0%, var(--critical) 22%, var(--warning) 50%, var(--warning) 78%, var(--critical) 100%);
    transform: none;
  }
  .timeline-event {
    position: relative;
    top: auto; bottom: auto; left: 0 !important;
    width: 100%; padding-left: 44px;
    transform: none;
  }
  .timeline-event::before { display: none; }
  .timeline-event .te-dot {
    top: 16px; left: 16px; transform: none;
  }
  .timeline-event:nth-child(odd) .te-label-card,
  .timeline-event:nth-child(even) .te-label-card {
    position: relative;
    top: auto; bottom: auto; left: 0;
    transform: none;
    min-width: 0; width: 100%;
    text-align: left;
    white-space: normal;
  }

  /* How it works mobile tighter */
  .howstep { padding: 28px 20px; }

  /* Gap numbers */
  .gap-num-card { padding: 32px 20px; }
  .gn-big { font-size: clamp(3.5rem, 16vw, 5rem); }
}

/* Mobile (375-640) */
@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .nav-inner { padding: 12px 16px; }
  .nav-jump-cta span { display: none; }
  .nav-jump-cta { padding: 9px 10px; }
  .hero { padding: 100px 16px 48px; }
  .hero-title { font-size: clamp(1.75rem, 10vw, 2.75rem); }
  .device-frame { width: 100%; max-width: 320px; }
  .hero-cta {
    flex-direction: column; align-items: stretch;
    gap: 10px; width: 100%; max-width: 360px;
    margin: 0 auto 32px;
  }
  .hero-cta .btn {
    flex: 0 0 auto;
    width: 100%;
    justify-content: center;
    padding: 13px 18px;
    font-size: 14px;
  }
  .hero-cta .btn-lg { padding: 14px 20px; font-size: 15px; }
  .hero-cta .btn span { white-space: nowrap; overflow: visible; text-overflow: clip; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 8px; }

  .section { padding: 64px 0; }
  .case-card { padding: 24px 20px; }
  .fusion { padding: 20px; }
  .verify-card { padding: 24px 20px; }
  .cta-card { padding: 40px 24px; }

  /* Mockup grid — single column on phone */
  .mockup-gallery { grid-template-columns: 1fr; }
  .mockup-main, .mockup:not(.mockup-main) { grid-column: span 1; }

  /* Stats grid */
  .verify-stats { grid-template-columns: repeat(2, 1fr); }

  /* Threat score breakdown */
  .breakdown-head,
  .breakdown-row {
    grid-template-columns: 1fr 0.4fr 1.2fr 0.4fr;
    gap: 8px; padding: 10px 12px;
    font-size: 11px;
  }
  .br-signal { font-size: 11px; }

  /* Gap numbers — single col */
  .gap-numbers { grid-template-columns: 1fr; }

  /* How it works — single col */
  .howsteps { grid-template-columns: 1fr; }

  /* Industry cards — single col */
  .industry-grid { grid-template-columns: 1fr; }
  /* glance-grid removed */
  .sov-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .sov-item { padding: 22px 18px 18px; }
  .sov-item-icon { width: 48px; height: 48px; }
  .sov-item-icon svg { width: 26px; height: 26px; }
  .limits-grid { grid-template-columns: 1fr; }
  .comp-grid { grid-template-columns: 1fr 1fr; }
  .perf-grid { grid-template-columns: 1fr 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* CTA */
  .cta-btns .btn { width: 100%; }

  /* Pull quote */
  .pq-text { font-size: clamp(1.125rem, 5vw, 1.75rem); }

  /* Fusion tiers */
  .threat-tiers { grid-template-columns: 1fr 1fr; }

  /* Resilience table — keep horizontal scroll */
  .resilience-wrap { margin: 0 -16px; padding: 0 16px; }

  /* Compare table — keep horizontal scroll */
  .compare-wrap { margin: 0 -16px; padding: 0 16px; }

  /* TCO bars */
  .tco-bar-row { grid-template-columns: 100px 1fr 70px; gap: 10px; }
  .tco-bar-name { font-size: 12px; }
  .tco-bar-name small { font-size: 10px; }
  .tco-chart-wrap { padding: 20px; }

  /* Footer download banner */
  .fd-icon { width: 48px; height: 48px; }
  .fd-icon svg { width: 24px; height: 24px; }
}

/* Tiny phones (< 375) */
@media (max-width: 380px) {
  .hero-title { font-size: clamp(1.5rem, 11vw, 2.25rem); }
  .hero-eyebrow { font-size: 11px; padding: 6px 12px; }
  .hero-trust { display: none; }
  .sov-grid { grid-template-columns: 1fr; }
  .comp-grid { grid-template-columns: 1fr; }
  .perf-grid { grid-template-columns: 1fr; }
  .threat-tiers { grid-template-columns: 1fr; }
  .verify-stats { grid-template-columns: 1fr; }
}

/* ─── PDF PRINT MODE ────────────────────────────────────────── */
body.pdf-mode {
  background: #ffffff !important;
}
body.pdf-mode .nav,
body.pdf-mode .hero-scroll,
body.pdf-mode .pdf-overlay,
body.pdf-mode #downloadPdfBtn,
body.pdf-mode #heroPdfBtn,
body.pdf-mode #finalPdfBtn,
body.pdf-mode #themeToggle {
  display: none !important;
}
body.pdf-mode .hero {
  padding: 40px 32px !important;
  min-height: auto !important;
  page-break-after: always;
}
body.pdf-mode .hero-bg,
body.pdf-mode .hero-grid,
body.pdf-mode .hero-glow { display: none; }
body.pdf-mode .section { padding: 40px 0; page-break-inside: avoid; }
body.pdf-mode .case-card,
body.pdf-mode .fusion,
body.pdf-mode .verify-card,
body.pdf-mode .cta-card { page-break-inside: avoid; }

/* ─── REDUCED MOTION ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ─── FADE-IN ON SCROLL ─────────────────────────────────────── */
.will-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.will-fade.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ─── NAV SCROLLED STATE ────────────────────────────────────── */
.nav.scrolled {
  background: rgba(8, 12, 22, 0.96);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
/* ─── SELECTION ─────────────────────────────────────────────── */
::selection {
  background: rgba(34, 184, 224, 0.3);
  color: var(--text-primary);
}

/* ─── SCROLLBAR ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--bg-inset); }
::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 6px;
  border: 3px solid var(--bg-inset);
}
::-webkit-scrollbar-thumb:hover { background: var(--accent); }
