﻿/* ============================================
   VISIONCTRL — ENTERPRISE AI WEBSITE
   Aesthetic: Palantir x Vercel x Apple
   ============================================ */

:root {
  --bg: #f6f6f4;
  --bg-elevated: #eef1f5;
  --bg-card: rgba(255,255,255,0.82);
  --bg-card-hover: rgba(255,255,255,0.96);
  --border: rgba(20,20,20,0.055);
  --border-strong: rgba(20,20,20,0.09);
  --text: #171717;
  --text-secondary: rgba(23,23,23,0.82);
  --text-tertiary: rgba(23,23,23,0.62);
  --text-quaternary: rgba(23,23,23,0.26);
  --accent: #e8196a;
  --accent-soft: rgba(200,16,106,0.06);
  --accent-glow: rgba(200,16,106,0.16);
  --critical: #d94040;
  --high: #c47a20;
  --medium: #b09010;
  --ok: #2ea84a;
  --info: #2a7ed4;

  --font-display: 'Spectral', 'Georgia', serif;
  --font-body: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Monaco, monospace;
}

/* ===== LIGHT MODE (permanent) ===== */

/* Ambient grid & glows */
.ambient-grid {
  background-image:
    linear-gradient(rgba(0,0,0,0.011) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.011) 1px, transparent 1px);
  opacity: 0.55;
}
.ambient-glow-1 {
  background: radial-gradient(circle, rgba(148,120,220,0.17) 0%, transparent 70%);
  opacity: 0.60;
  top: -280px; right: -160px;
  width: 1100px; height: 1100px;
}
.ambient-glow-2 {
  background: radial-gradient(circle, rgba(100,140,220,0.13) 0%, transparent 70%);
  opacity: 0.55;
  bottom: 20%; left: -180px;
  width: 900px; height: 900px;
}

/* Nav */
.nav {
  background: rgba(246,246,244,0.88);
  box-shadow: inset 0 -1px 0 rgba(20,20,20,0.04), 0 2px 16px rgba(0,0,0,0.04);
}
.nav--scrolled {
  background: rgba(246,246,244,0.97);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: inset 0 -1px 0 rgba(20,20,20,0.05), 0 8px 32px rgba(0,0,0,0.06);
}
.nav::after {
  background: linear-gradient(90deg, transparent 10%, rgba(148,120,220,0.10) 35%, rgba(20,20,20,0.04) 50%, rgba(148,120,220,0.08) 70%, transparent 90%);
}
.nav-links a { color: rgba(23,23,23,0.72); }
.nav-links a:hover { color: #171717; background: rgba(0,0,0,0.04); }
.nav-links a.active { color: rgba(23,23,23,0.90); background: rgba(0,0,0,0.03); }

/* Nav logo lockup */
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
  flex-shrink: 0;
}

.nav-logo-mark {
  height: 44px;
  width: auto;
  display: block;
}

.nav-logo-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  white-space: nowrap;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(15px, 1.6vw, 20px);
  letter-spacing: 0.06em;
}

.nav-logo-vision {
  color: #171717;
}

.nav-logo-ctrl {
  color: #171717;
}

/* Nav contact button */
.btn-nav-contact {
  background: #171717;
  border-color: rgba(23,23,23,0.7);
  color: #ffffff;
}
.btn-nav-contact:hover {
  background: #2a2d33;
  border-color: rgba(255,255,255,0.15);
  box-shadow: none;
}

/* Hero italic — charcoal-to-pink on light bg */
.hero-italic {
  background: linear-gradient(135deg, #171717 0%, #e8196a 50%, #c8125a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* Italic accent — light mode overrides for sections with light backgrounds */
.agentic .italic-accent {
  background: linear-gradient(135deg, #171717 0%, #e8196a 55%, #c8125a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.founders .italic-accent {
  background: linear-gradient(135deg, #171717 0%, #e8196a 55%, #c8125a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.usecases .italic-accent {
  background: linear-gradient(135deg, #2a2d33 0%, #e8196a 55%, #c8125a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Sections containing dark UI mockups — stay dark in both themes */
.infra {
  --bg: #11111f;
  --bg-elevated: #17172a;
  --bg-card: #1e1e33;
  --bg-card-hover: #24243c;
  --border: rgba(255,255,255,0.09);
  --border-strong: rgba(255,255,255,0.15);
  --text: #f0eff8;
  --text-secondary: rgba(240,239,248,0.68);
  --text-tertiary: rgba(240,239,248,0.45);
  --text-quaternary: rgba(240,239,248,0.28);
  background: #0f0f1e;
}


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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  letter-spacing: -0.016em;
  overflow-x: hidden;
  overflow-x: clip;
  overscroll-behavior-x: none;
  max-width: 100%;
}

.hero,
.how-v2,
.usecases,
.contact-section,
.final-cta {
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ===== AMBIENT BACKGROUND ===== */
.ambient-grid {
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.012) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
}

.ambient-glow-1 {
  width: 1100px; height: 1100px;
  top: -280px; right: -160px;
  background: radial-gradient(circle, rgba(148,120,220,0.17) 0%, transparent 70%);
  opacity: 0.60;
}

.ambient-glow-2 {
  width: 900px; height: 900px;
  bottom: 10%; left: -180px;
  background: radial-gradient(circle, rgba(100,140,210,0.13) 0%, transparent 70%);
  opacity: 0.55;
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0;
  background: rgba(248,246,242,0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(20,20,20,0.07);
  transition:
    background 300ms ease,
    border-color 300ms ease,
    box-shadow 300ms ease;
}
.nav--scrolled {
  background: rgba(248,246,242,0.96);
  border-bottom-color: rgba(20,20,20,0.10);
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}
.nav::after { display: none; }
.nav--scrolled::after { display: none; }

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo-mark {
  height: 72px;
}

.nav-links {
  display: flex;
  gap: 2px;
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 450;
  letter-spacing: -0.01em;
}

.nav-links a {
  padding: 6px 12px;
  border-radius: 7px;
  transition: color 160ms ease, background 160ms ease;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(0,0,0,0.04);
}

.nav-links a.active,
.nav-links a[aria-current="page"] {
  color: var(--text);
  background: rgba(0,0,0,0.03);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  margin-left: auto;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  background: var(--bg-card);
  color: var(--text);
  cursor: pointer;
  transition: background 200ms ease, border-color 200ms ease;
}

.nav-toggle:hover {
  background: var(--bg-card-hover);
}

.nav-toggle-bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 18px;
}

.nav-toggle-bars span {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 1px;
  transition: transform 220ms ease, opacity 220ms ease;
}

.nav.is-open .nav-toggle-bars span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav.is-open .nav-toggle-bars span:nth-child(2) {
  opacity: 0;
}

.nav.is-open .nav-toggle-bars span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  display: contents;
}

body.nav-scroll-lock {
  overflow: hidden;
}

body.nav-click-shield a,
body.nav-click-shield button {
  pointer-events: none;
}

#walkthrough {
  scroll-margin-top: 96px;
}

.nav-link-ghost {
  font-size: 13.5px;
  color: var(--text-secondary);
  transition: color 200ms ease;
}
.nav-link-ghost:hover { color: var(--text); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: all 200ms ease;
  position: relative;
  white-space: nowrap;
}

.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-lg { padding: 14px 26px; font-size: 15px; }

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
  font-weight: 600;
  box-shadow:
    0 4px 16px -4px rgba(200,16,106,0.28),
    inset 0 1px 0 rgba(255,255,255,0.18);
}

.btn-primary:hover {
  background: #d91474;
  transform: translateY(-1px);
  box-shadow:
    0 6px 20px -4px rgba(200,16,106,0.35),
    inset 0 1px 0 rgba(255,255,255,0.22);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border-color: var(--border-strong);
  box-shadow: none;
}

.btn-ghost:hover {
  background: var(--bg-card);
  color: var(--text);
  border-color: var(--border-strong);
  transform: translateY(-1px);
}

.btn-nav-contact {
  background: #171717;
  color: #ffffff;
  border-color: rgba(23,23,23,0.7);
  box-shadow: none;
}

.btn-nav-contact:hover {
  background: #2a2d33;
  border-color: rgba(255,255,255,0.15);
  box-shadow: none;
  transform: translateY(-1px);
}

.play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: rgba(23,23,23,0.06);
  border: 1px solid rgba(23,23,23,0.12);
  border-radius: 50%;
  font-size: 8px;
  padding-left: 2px;
  color: var(--text-secondary);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  z-index: 1;
  padding: 100px 0 180px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 720px 560px at 5% 75%, rgba(232,25,106,0.11) 0%, transparent 60%),
    radial-gradient(ellipse 900px 700px at 88% 15%, rgba(148,120,220,0.10) 0%, transparent 60%),
    #f8f6f2;
}
.hero::before {
  content: '';
  position: absolute;
  top: -8%; right: -8%;
  width: 1000px; height: 900px;
  background: radial-gradient(ellipse, rgba(200,100,160,0.10) 0%, rgba(148,120,220,0.09) 50%, transparent 75%);
  border-radius: 62% 38% 52% 48% / 44% 58% 42% 56%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.hero::before {
  background: radial-gradient(ellipse, rgba(232,25,106,0.16) 0%, rgba(148,120,220,0.10) 55%, transparent 78%);
  filter: blur(110px);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      #f8f6f2 0%,
      #f8f6f2 8%,
      rgba(248,246,242,0.96) 22%,
      rgba(248,246,242,0.70) 40%,
      rgba(248,246,242,0.20) 60%,
      rgba(248,246,242,0.04) 75%,
      transparent 88%),
    linear-gradient(to top, #f8f6f2 0%, rgba(248,246,242,0.70) 8%, transparent 18%),
    linear-gradient(to bottom, #f8f6f2 0%, transparent 10%);
  pointer-events: none;
  z-index: 2;
}


@media (max-width: 900px) {
}
@media (max-width: 720px) {
}

/* Operational scene — cinematic, biased right, clearly intentional */
.hero-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: url('assets/Near Miss.png') 78% 42% / cover no-repeat;
  opacity: 0.30;
  filter: blur(0.5px) saturate(0.60) contrast(1.08) brightness(0.94);
}

.hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: left;
  position: relative;
  z-index: 3;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  margin-bottom: 52px;
  backdrop-filter: blur(8px);
}

.status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 0 var(--ok);
  animation: pulse-dot 2s infinite;
}

.status-dot.small { width: 5px; height: 5px; }

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(74,222,128,0.7); }
  70% { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}

.hero-headline {
  font-family: var(--font-body);
  font-size: clamp(36px, 5.5vw, 80px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #171717;
  margin-bottom: 40px;
  max-width: 760px;
}

.hero-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.028em;
  background: linear-gradient(135deg, #f0196e 0%, #e8196a 50%, #c8125a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-sub {
  font-size: 21px;
  line-height: 1.60;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 72px;
  letter-spacing: -0.005em;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.hero-tagline {
  font-size: 18px;
  font-weight: 400;
  color: #171717;
  letter-spacing: -0.01em;
  margin: -20px 0 52px;
}

/* Hero CTA — crisp frosted glass so it reads on the light-left + image-right split */
.hero .btn-ghost {
  color: #e8196a;
  border-color: rgba(232,25,106,0.55);
  border-width: 1.5px;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 0 0 3px rgba(232,25,106,0.10);
  font-weight: 500;
}
.hero .btn-ghost:hover {
  background: rgba(255,255,255,0.96);
  border-color: rgba(232,25,106,0.80);
  color: #c8125a;
  box-shadow: 0 4px 24px -4px rgba(232,25,106,0.28), 0 0 0 4px rgba(232,25,106,0.12);
  transform: translateY(-1px);
}

/* ===== HERO BACKGROUND MOCKUP ===== */
.hero-bg-mockup {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 28%;
  width: 1020px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.12;
}

.hbm-panel {
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(20,20,20,0.09);
  border-radius: 20px;
  padding: 28px 28px 28px 28px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.hbm-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.hbm-logo-img {
  width: 26px; height: 26px;
  object-fit: contain;
  filter: invert(1);
}
.hbm-brand-name {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #171717;
}
.hbm-brand-name strong { color: var(--accent); }
.hbm-brand-tag {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.12em;
  color: rgba(23,23,23,0.42);
}

.hbm-title {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #171717;
  margin-bottom: 10px;
}
.hbm-rule {
  width: 24px; height: 2px;
  background: var(--accent);
  margin-bottom: 10px;
}
.hbm-desc {
  font-size: 12px;
  color: rgba(23,23,23,0.55);
  line-height: 1.5;
  margin-bottom: 16px;
}

.hbm-status-card {
  background: #f6f6f4;
  border: 1px solid rgba(20,20,20,0.07);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 14px;
}
.hbm-sc-label {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.12em;
  color: rgba(23,23,23,0.40);
  margin-bottom: 8px;
}
.hbm-sc-body {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hbm-sc-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
}
.hbm-sc-text {
  font-size: 12px;
  font-weight: 600;
  color: #171717;
  flex: 1;
}
.hbm-sc-pct {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  text-align: right;
  line-height: 1.1;
}
.hbm-sc-pct em {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 7.5px;
  letter-spacing: 0.10em;
  color: rgba(23,23,23,0.40);
  display: block;
}
.hbm-sc-sub {
  font-size: 10px;
  color: rgba(23,23,23,0.42);
  margin-top: 5px;
}

.hbm-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
}
.hbm-metric {
  background: #f6f6f4;
  border: 1px solid rgba(20,20,20,0.07);
  border-radius: 8px;
  padding: 10px 12px;
}
.hbm-metric-label {
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.12em;
  color: rgba(23,23,23,0.40);
  margin-bottom: 4px;
}
.hbm-metric-val {
  font-size: 20px;
  font-weight: 600;
  color: #171717;
  letter-spacing: -0.025em;
  line-height: 1.0;
}
.hbm-metric-delta {
  font-size: 9px;
  color: var(--accent);
  margin-top: 3px;
}

.hbm-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hbm-feed-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  color: rgba(23,23,23,0.50);
  padding: 6px 10px;
  background: #f6f6f4;
  border: 1px solid rgba(20,20,20,0.06);
  border-radius: 7px;
}
.hbm-feed-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.hbm-feed {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  flex: 1;
  min-height: 240px;
  background: #1a1a24;
}
.hbm-feed-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hbm-ts {
  position: absolute;
  top: 10px; left: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.06em;
}
.hbm-bb {
  position: absolute;
  border: 1.5px solid rgba(200,16,106,0.90);
  border-radius: 3px;
}
.hbm-bb-1 { width: 58px; height: 112px; top: 36%; left: 37%; }
.hbm-bb-2 { width: 50px; height: 100px; top: 30%; right: 12%; }

/* ===== HERO DASHBOARD ===== */
.hero-dashboard {
  position: relative;
  max-width: 1060px;
  margin: 100px auto 0;
}

.dashboard-frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid rgba(20,20,20,0.07);
  box-shadow:
    0 16px 48px -12px rgba(0,0,0,0.10),
    0 4px 16px -4px rgba(0,0,0,0.06);
}

/* Hero-only: atmospheric vignette over the video */
.hero .dashboard-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 40%, rgba(17,17,31,0.5) 100%),
    linear-gradient(to top, rgba(17,17,31,0.4) 0%, transparent 30%);
  pointer-events: none;
  z-index: 1;
}

.hero .scan-line { z-index: 2; }

.dashboard-chrome {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: rgba(20,20,24,0.9);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
}

.dashboard-dots {
  display: flex;
  gap: 6px;
}

.dashboard-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}

.dashboard-dots span:nth-child(1) { background: rgba(255,95,86,0.5); }
.dashboard-dots span:nth-child(2) { background: rgba(255,189,46,0.5); }
.dashboard-dots span:nth-child(3) { background: rgba(39,201,63,0.5); }

.dashboard-url {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: rgba(255,255,255,0.90);
  max-width: 460px;
  margin: 0 auto;
}

.live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse-dot-pink 1.8s infinite;
}

@keyframes pulse-dot-pink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.dashboard-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-tertiary);
  letter-spacing: 0.02em;
}

.dashboard-img {
  width: 100%;
  display: block;
}

.dashboard-video {
  object-fit: cover;
  filter: brightness(0.82) contrast(0.88) saturate(0.85);
}

.dashboard-ai-panel {
  background: rgba(235,242,255,0.97);
  border-top: 1px solid rgba(147,197,253,0.4);
  padding: 14px 20px 16px;
}

.dashboard-ai-header {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #2563eb;
  margin-bottom: 10px;
}

.dashboard-ai-findings {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dashboard-ai-findings li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: #1e40af;
  line-height: 1.45;
}

.dashboard-ai-findings li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3b82f6;
  flex-shrink: 0;
  margin-top: 4px;
}

.scan-line {
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.25;
  animation: scan-line-anim 9s linear infinite;
  pointer-events: none;
}

@keyframes scan-line-anim {
  0% { transform: translateY(40px); }
  100% { transform: translateY(700px); }
}

.thermal-blip {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse-blip 2.4s infinite;
  pointer-events: none;
}

@keyframes pulse-blip {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}

/* Floating cards over hero dashboard — intentionally dark on light bg */
.float-card {
  position: absolute;
  background: rgba(20,20,24,0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 12px 40px -8px rgba(0,0,0,0.22), 0 2px 8px rgba(0,0,0,0.08);
  z-index: 2;
  min-width: 180px;
  animation: float-card-in 900ms cubic-bezier(0.22,1,0.36,1) backwards;
  --text: #f0eff8;
  --text-secondary: rgba(240,239,248,0.68);
  --text-tertiary: rgba(240,239,248,0.45);
  --border: rgba(255,255,255,0.09);
}

.float-card-tl { top: 10%; left: -16px; animation-delay: 200ms; }
.float-card-tr { top: 12%; right: -160px; animation-delay: 400ms; min-width: 210px; }
.float-card-bl { bottom: 15%; left: -10px; animation-delay: 600ms; }
.float-card-br { bottom: 8%; right: -10px; animation-delay: 800ms; min-width: 200px; }

@keyframes float-card-in {
  0% { opacity: 0; transform: translateY(16px) scale(0.96); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.float-card-label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: var(--text-tertiary);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.float-card-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.float-card-value-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.float-card-value-lg {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  color: var(--text);
}
.float-card-value-lg span { font-size: 18px; color: var(--text-tertiary); margin-left: 2px; }

.spark {
  width: 60px; height: 18px;
  flex-shrink: 0;
}

.float-card-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-tertiary);
  margin-top: 4px;
}

.float-card-bar {
  margin-top: 8px;
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}
.float-card-bar-fill {
  height: 100%;
  width: 78%;
  background: linear-gradient(90deg, var(--accent), #ff8a4f);
  border-radius: 2px;
  animation: bar-grow 1.4s ease-out 1s backwards;
}
@keyframes bar-grow {
  from { width: 0; }
}

.float-card-pulse {
  position: relative;
  width: 24px; height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

.float-card-text {
  font-size: 11.5px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.float-card-text strong {
  color: var(--accent);
  font-weight: 500;
}

.float-card-findings {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.float-card-findings li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.45;
}

.float-card-findings li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--text-tertiary);
  flex-shrink: 0;
  margin-top: 4px;
}

.float-card-row {
  display: flex;
  gap: 14px;
  margin-top: 2px;
}

.mini-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.mini-stat-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}
.mini-stat-lbl {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.05em;
}
.mini-stat-lbl.crit { color: var(--critical); }
.mini-stat-lbl.high { color: var(--high); }
.mini-stat-lbl.med { color: var(--medium); }

/* ===== TRUST / SOCIAL PROOF ===== */
.trust {
  position: relative; z-index: 1;
  padding: 56px 0 72px;
  border-top: 1px solid var(--border);
}

.trust-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.trust-label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  color: var(--text-tertiary);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.trust-logo {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--text-secondary);
  letter-spacing: -0.01em;
  opacity: 0.8;
  transition: opacity 200ms ease;
}
.trust-logo:hover { opacity: 1; }

.trust-divider {
  width: 1px; height: 16px;
  background: var(--border-strong);
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.trust-stat {
  background: var(--bg);
  padding: 32px 24px;
  text-align: left;
  position: relative;
  transition: background 200ms ease;
}

.trust-stat:hover { background: var(--bg-card); }

.trust-stat-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  color: var(--text);
}

.trust-stat-unit {
  font-size: 28px;
  color: var(--text-tertiary);
  margin-left: 2px;
}

.trust-stat-lbl {
  font-size: 13px;
  color: var(--text-secondary);
  letter-spacing: -0.01em;
}

/* ===== SECTION HEAD ===== */
.section-head {
  max-width: 1320px;
  margin: 0 auto 72px;
  padding: 0 32px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--text-tertiary);
  margin-bottom: 40px;
  text-transform: uppercase;
}

.eyebrow {
  color: rgba(23,23,23,0.40);
}

.eyebrow.center { justify-content: center; }

.eyebrow-dot {
  width: 5px; height: 5px;
  background: rgba(23,23,23,0.28);
  border-radius: 50%;
  box-shadow: none;
  opacity: 0.55;
}

.section-title {
  font-size: clamp(38px, 5.2vw, 68px);
  font-weight: 500;
  line-height: 1.01;
  letter-spacing: -0.038em;
  max-width: 820px;
}

.italic-accent {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.005em;
}

.how-v2 .italic-accent {
  background: linear-gradient(135deg, #171717 0%, #e8196a 50%, #c8125a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  margin-top: 32px;
  line-height: 1.5;
}

/* ===== HOW IT WORKS ===== */
.how {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}
.how::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05) 30%, rgba(255,255,255,0.05) 70%, transparent);
  pointer-events: none;
}

.how-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
}

.how-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: all 300ms ease;
  animation: card-up 600ms ease-out backwards;
  animation-delay: calc(var(--i) * 100ms);
}

@keyframes card-up {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.how-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(20,20,20,0.03), transparent 60%);
  opacity: 0;
  transition: opacity 300ms ease;
  pointer-events: none;
}

.how-card:hover {
  border-color: rgba(20,20,20,0.12);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.how-card:hover::before { opacity: 1; }

.how-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-tertiary);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.how-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(23,23,23,0.05);
  border: 1px solid rgba(23,23,23,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  margin-bottom: 18px;
}
.how-icon svg { width: 18px; height: 18px; }

.how-title {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.how-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 16px;
}

.how-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.how-arrow {
  display: flex;
  align-items: center;
  color: var(--text-quaternary);
}
.how-arrow svg {
  width: 40px; height: 12px;
}

/* ===== USE CASE BENTO ===== */
.usecases {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  background: #eef1f5;
}
.usecases::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom, var(--bg) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* ===== DETECTION INFRA LABEL ===== */
/* Detection 2-col header */
.usecases-head {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px 80px;
  align-items: end;
  max-width: 1320px;
  margin: 0 auto 48px;
  padding: 0 32px;
}
.usecases-head-meta .section-sub {
  margin-top: 0;
  padding-bottom: 6px;
}

.detect-infra-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 28px;
}

.detect-infra-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(23,23,23,0.30);
  opacity: 0.60;
  display: inline-block;
  flex-shrink: 0;
}

/* ===== DETECTION GRID (compact thumbnails + prominent labels) ===== */
.detect-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
}

.detect-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 12px;
  cursor: default;
  border: 1px solid var(--border-strong);
  background: var(--bg-card);
  transition: transform 380ms cubic-bezier(0.22,1,0.36,1), box-shadow 380ms ease, border-color 300ms ease;
}

.detect-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -12px rgba(20,20,20,0.12);
  border-color: rgba(20,20,20,0.12);
  background: var(--bg-card-hover);
}

.detect-card-hero { grid-column: span 6; }
.detect-card-flank { grid-column: span 3; }
.detect-card-bottom { grid-column: span 3; }

/* Image strip — same atmospheric fade as .hero-scene */
.detect-media-wrap {
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  height: 60px;
  border-bottom: 1px solid var(--border);
  background: #eef1f5;
}

/* Soft colour bloom (mirrors .hero::before) */
.detect-media-wrap::before {
  content: '';
  position: absolute;
  inset: -20% -10%;
  background: radial-gradient(
    ellipse 90% 140% at 50% 40%,
    rgba(232,25,106,0.045) 0%,
    rgba(148,120,220,0.055) 45%,
    transparent 72%
  );
  filter: blur(14px);
  pointer-events: none;
  z-index: 2;
  opacity: 1;
  transition: opacity 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.detect-card-hero .detect-media-wrap { height: 64px; }
.detect-card-flank .detect-media-wrap { height: 52px; }

.detect-card-bottom .detect-media-wrap {
  height: 48px;
}

.detect-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  opacity: 0.52;
  transform: scale(1.1);
  filter: blur(0.65px) saturate(0.62) contrast(1.05) brightness(0.97);
  transition:
    transform 500ms cubic-bezier(0.22,1,0.36,1),
    filter 400ms ease,
    opacity 400ms ease;
}

/* Row 1 — light focal tweaks */
.detect-card-nearmiss .detect-media { object-position: center 58%; }
.detect-card-fire .detect-media { object-position: center 45%; }
.detect-card-ppe .detect-media { object-position: 72% 22%; }

/* Row 2 — same cover strip as row 1; pan down to keep subjects in frame */
.detect-card-bottom .detect-media {
  object-position: center 72%;
}

.detect-card-restricted .detect-media { object-position: center 78%; }
.detect-card-spill .detect-media { object-position: center 68%; }
.detect-card-waste .detect-media { object-position: center 82%; }
.detect-card-ergonomic .detect-media { object-position: center 75%; }

.detect-card:hover .detect-media {
  opacity: 0.95;
  transform: scale(1.04);
  filter: blur(0) saturate(0.82) contrast(1.02) brightness(1);
}

.detect-card:hover .detect-media-wrap::before {
  opacity: 0;
}

.detect-card:hover .detect-overlay {
  opacity: 0;
}

/* Fade imagery into card surface (mirrors .hero::after) */
.detect-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 1;
  transition: opacity 420ms cubic-bezier(0.22, 1, 0.36, 1);
  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,0.32) 0%,
      rgba(255,255,255,0.06) 28%,
      transparent 48%,
      rgba(255,255,255,0.38) 88%,
      rgba(255,255,255,0.88) 100%
    ),
    linear-gradient(
      to right,
      rgba(255,255,255,0.42) 0%,
      rgba(255,255,255,0.08) 20%,
      transparent 50%,
      rgba(255,255,255,0.08) 80%,
      rgba(255,255,255,0.42) 100%
    );
}

/* Label band — primary readable surface */
.detect-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 16px 15px;
  flex: 1;
  min-height: 0;
}

.detect-card-bottom .detect-card-body {
  padding: 12px 14px 13px;
  gap: 8px;
}

/* ===== RISK CLASSIFICATION BADGES ===== */
.detect-badge {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
}

.detect-badge-critical {
  background: rgba(255,70,70,0.10);
  border: 1px solid rgba(255,70,70,0.22);
  color: rgba(220,80,80,0.95);
}

.detect-badge-compliance {
  background: rgba(80,60,160,0.07);
  border: 1px solid rgba(80,60,160,0.18);
  color: rgba(80,60,160,0.85);
}

.detect-badge-high {
  background: rgba(200,120,0,0.08);
  border: 1px solid rgba(200,120,0,0.22);
  color: rgba(180,120,20,0.95);
}

.detect-badge-emerging {
  background: rgba(80,120,200,0.07);
  border: 1px solid rgba(80,120,200,0.18);
  color: rgba(80,120,200,0.90);
}

.detect-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.detect-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.88;
  color: var(--accent);
}

/* Scoped italic refinement for detection section */
.usecases-title {
  line-height: 0.96;
}

.usecases-title .italic-accent {
  font-size: 0.93em;
  background: linear-gradient(135deg, #e8196a 0%, #c8125a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== INFRA ===== */
.infra {
  position: relative;
  z-index: 1;
  padding: 160px 0;
  color: var(--text);
}
.infra::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 75%; height: 220px;
  background: radial-gradient(ellipse at 50% 0%, rgba(60,130,220,0.09) 0%, transparent 62%);
  pointer-events: none;
  z-index: 0;
}
.infra::after {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 560px; height: 700px;
  background: radial-gradient(ellipse at 50% 0%, rgba(60,130,220,0.08) 0%, transparent 58%);
  pointer-events: none;
  z-index: 0;
}

.infra-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.infra-left {}

.infra-text {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-top: 24px;
  margin-bottom: 32px;
  max-width: 480px;
}

.infra-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.infra-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-secondary);
  letter-spacing: -0.005em;
  transition: all 200ms ease;
}
.infra-tag:hover {
  background: var(--bg-elevated);
  border-color: rgba(200,16,106,0.3);
  color: var(--text);
}
.infra-tag-dot {
  width: 5px; height: 5px;
  background: var(--ok);
  border-radius: 50%;
}

.infra-diagram {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}

.infra-layer {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 22px 24px;
  position: relative;
  overflow: hidden;
}

.infra-layer-core {
  background: rgba(200,16,106,0.06);
  border-color: rgba(200,16,106,0.28);
  box-shadow: 0 4px 20px rgba(200,16,106,0.08);
}

.infra-layer-core::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  border-radius: 14px 14px 0 0;
  background: linear-gradient(90deg, transparent, rgba(200,16,106,0.5), transparent);
  pointer-events: none;
}

.infra-layer-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  margin-bottom: 6px;
}

.infra-layer-core .infra-layer-label { color: var(--accent); }

.infra-layer-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 14px;
  letter-spacing: -0.015em;
}

.infra-layer-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.infra-layer-items span {
  padding: 5px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  color: var(--text-secondary);
}

.infra-agent-flow {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.infra-agent-flow span {
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  background: rgba(200,16,106,0.07);
  border: 1px solid rgba(200,16,106,0.22);
  border-radius: 6px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.infra-agent-flow .arrow {
  color: var(--text-quaternary);
  font-family: var(--font-mono);
  background: none;
  border: none;
  padding: 0;
}

.infra-connector {
  position: relative;
  height: 16px;
  display: flex;
  justify-content: center;
}
.infra-connector::before {
  content: '';
  width: 1px;
  height: 16px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
}
.infra-pulse {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
  animation: drop-pulse 2.4s infinite ease-in-out;
}
@keyframes drop-pulse {
  0%, 100% { opacity: 0; transform: translate(-50%, -8px); }
  50% { opacity: 1; transform: translate(-50%, 0); }
}

/* Showcase head — sits inside the left column, above the platform image */
.showcase-head {
  margin-bottom: 28px;
}
.showcase-head .section-title {
  max-width: 480px;
}
.showcase-head .italic-accent {
  white-space: nowrap;
}

/* ===== SHOWCASE ===== */
.showcase {
  --text: #111113;
  --text-secondary: rgba(17,17,19,0.68);
  --text-tertiary: rgba(17,17,19,0.45);
  --border: rgba(0,0,0,0.09);
  --border-strong: rgba(0,0,0,0.13);
  --bg: #eaeaed;
  --bg-card: #e4e4e8;
  --bg-elevated: #f4f4f6;
  position: relative;
  z-index: 1;
  padding: 140px 0;
  background: #f3f4f6;
  color: var(--text);
}
.showcase::before,
.showcase::after {
  display: none;
}
.showcase .italic-accent {
  background: linear-gradient(135deg, #111113 0%, #e8196a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.showcase-stage {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 36px;
  align-items: start;
}

.showcase-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 0;
}

.showcase-frame { height: 100%; }
.showcase-frame .dashboard-img { width: 100%; height: 100%; object-fit: contain; background: #0d0d10; }

.showcase-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.showcase-frame-sm {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.showcase-frame-sm .dashboard-img { object-fit: cover; min-height: 240px; }


.showcase-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(20,20,20,0.07);
  box-shadow:
    0 2px 8px rgba(0,0,0,0.04),
    0 8px 32px rgba(0,0,0,0.05);
}

.showcase-feature {
  background: transparent;
  padding: 22px 26px;
  border-bottom: 1px solid rgba(20,20,20,0.06);
  transition: background 220ms ease;
}
.showcase-feature:last-child { border-bottom: none; }
.showcase-feature:hover { background: rgba(20,20,20,0.025); }

.showcase-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-tertiary);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.showcase-feature h4 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 5px;
  letter-spacing: -0.01em;
  color: #111013;
}

.showcase-feature p {
  font-size: 13px;
  color: rgba(17,16,19,0.58);
  line-height: 1.5;
}

/* ===== AGENTIC ===== */
.agentic {
  position: relative;
  z-index: 1;
  padding: 160px 0;
  background: #ece8f4;
  overflow: hidden;
}

.agentic::before {
  content: '';
  position: absolute;
  top: -10%; right: -8%;
  width: 700px; height: 700px;
  background: radial-gradient(ellipse at 80% 20%, rgba(148,120,220,0.24) 0%, transparent 60%);
  filter: blur(80px);
  pointer-events: none;
}
.agentic::after {
  content: '';
  position: absolute;
  bottom: -5%; left: 5%;
  width: 500px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(100,140,210,0.10) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}

.agentic-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.2fr 0.85fr;
  position: relative;
  z-index: 1;
  gap: 64px;
  align-items: center;
  position: relative;
}

.agentic-content .section-title {
  margin-bottom: 24px;
}

.agentic-text {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 520px;
}

.agentic-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.agentic-point {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
}

.agentic-point:last-child { border-bottom: 1px solid var(--border); }

.agentic-point-icon {
  color: var(--text-secondary);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.agentic-point h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.agentic-point p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ORCHESTRATION */
.orchestration {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  overflow: hidden;
}

.orchestration::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.orch-svg-wrap {
  position: relative;
  width: 100%;
}

.orch-svg {
  width: 100%;
  height: auto;
  max-height: 540px;
}

.orch-paths path {
  fill: none;
  stroke: rgba(20,20,20,0.14);
  stroke-width: 1;
  stroke-dasharray: 3 3;
}

.orch-node rect {
  fill: rgba(20,20,24,0.9);
  stroke: var(--border-strong);
  stroke-width: 1;
}

.orch-node text {
  fill: #f0eff8;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
}

.orch-node text.orch-meta {
  fill: rgba(240,239,248,0.55);
  font-size: 9px;
}

.orch-core rect {
  fill: rgba(200,16,106,0.08);
  stroke: var(--accent);
  stroke-width: 1.5;
}

.orch-core-label {
  fill: var(--accent) !important;
  font-family: var(--font-mono);
  font-size: 12px !important;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.orch-core-meta {
  fill: rgba(200,16,106,0.65) !important;
  font-family: var(--font-mono);
  font-size: 9.5px !important;
  letter-spacing: 0.04em;
}

.flow-dot {
  fill: var(--accent);
  filter: drop-shadow(0 0 4px var(--accent));
}

.flow-dot-out { fill: #4ade80; filter: drop-shadow(0 0 4px #4ade80); }

/* ===== ROI ===== */
.roi {
  position: relative;
  z-index: 1;
  padding: 120px 0;
  background: var(--bg-elevated);
}
.roi::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom, var(--bg) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.roi::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.roi-grid {
  max-width: 1320px;
  margin: 0 auto 56px;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 20px;
}

.roi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: all 300ms ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.05);
}

.roi-card:hover {
  border-color: rgba(20,20,20,0.12);
  background: var(--bg-card-hover);
  box-shadow: 0 8px 32px -8px rgba(0,0,0,0.10);
}

.roi-card-feature {
  grid-column: span 1;
  grid-row: span 2;
  background: rgba(20,20,20,0.03);
  border-color: var(--border-strong);
  display: flex;
  flex-direction: column;
}

.roi-card-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  margin-bottom: 16px;
}

.roi-card-feature .roi-card-label { color: var(--text-secondary); }

.roi-card-num {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 12px;
}

.roi-card-num span {
  font-size: 40px;
  color: var(--text-tertiary);
  margin-left: 4px;
}

.roi-card-feature .roi-card-num { color: var(--accent); font-size: 120px; }
.roi-card-feature .roi-card-num span { font-size: 56px; color: rgba(200,16,106,0.50); }

.roi-card-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 280px;
}

.roi-card-spark {
  margin-top: auto;
  padding-top: 20px;
}
.roi-card-spark svg {
  width: 100%;
  height: 50px;
}

/* ===== TESTIMONIAL ===== */
.testimonial-section {
  padding: 140px 0;
  position: relative;
  z-index: 1;
}
.testimonial-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 70%; height: 180px;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.05) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.testimonial-section::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 560px;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.028) 0%, transparent 58%);
  pointer-events: none;
  z-index: 0;
}

.testimonial {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
}

.testimonial-quote {
  position: relative;
}

.testimonial-org-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  opacity: 0.60;
  margin-left: auto;
  filter: brightness(0);
}

.testimonial-mark {
  font-family: var(--font-display);
  font-size: 96px;
  color: var(--text-tertiary);
  line-height: 0.7;
  position: absolute;
  top: 32px; left: 56px;
  opacity: 0.35;
}

.testimonial-quote p {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-top: 36px;
  margin-bottom: 36px;
  font-style: italic;
}
.testimonial-quote p em {
  color: var(--text);
  font-style: italic;
  font-weight: 500;
}

.testimonial-attr {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
}

.testimonial-name {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.testimonial-role {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--text-tertiary);
  letter-spacing: -0.005em;
  margin-top: 2px;
}

.testimonial-stats {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: none;
  border-radius: 0 20px 20px 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.testimonial-stat {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.testimonial-stat:last-child { border-bottom: none; padding-bottom: 0; }

.ts-num {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
  color: var(--text);
  margin-bottom: 4px;
}
.ts-num span {
  font-size: 22px;
  color: var(--text-tertiary);
  margin-left: 2px;
}

.ts-lbl {
  font-size: 13px;
  color: var(--text-secondary);
  letter-spacing: -0.005em;
}

/* ===== TESTIMONIAL SECTION ===== */
.testimonial-section {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  background: #ffffff;
  overflow: hidden;
  color: #111113;
}
.testimonial-inner .eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 3.5vw, 44px);
  letter-spacing: -0.03em;
  line-height: 1.0;
  text-transform: none;
  color: var(--text);
  margin-bottom: 28px;
  display: block;
}
.testimonial-inner .eyebrow-dot {
  display: none;
}

.testimonial-section::before,
.testimonial-section::after {
  display: none;
}

.testimonial-ambient {
  display: none;
}

.testimonial-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.testimonial-card {
  position: relative;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(20,20,20,0.06);
  border-radius: 16px;
  padding: 36px 44px 30px;
  margin: 32px 0 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.05), 0 1px 4px rgba(0,0,0,0.04);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20,20,20,0.07), transparent);
}

.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 0.6;
  color: #e8196a;
  display: block;
  margin-bottom: 14px;
  user-select: none;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: -0.01em;
  color: #111113;
  margin-bottom: 28px;
}

.testimonial-attr {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(0,0,0,0.09);
}

.testimonial-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0,0,0,0.10);
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}

.testimonial-attr-info { text-align: left; }

.testimonial-name {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #111113;
}

.testimonial-role {
  font-size: 14px;
  color: rgba(17,17,19,0.52);
  margin-top: 3px;
}

.testimonial-divider {
  width: 1px;
  height: 44px;
  background: rgba(0,0,0,0.12);
  flex-shrink: 0;
}

.testimonial-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  opacity: 0.70;
  filter: brightness(0);
  flex-shrink: 0;
}

.testimonial-tags {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  background: rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 4px;
  color: rgba(17,17,19,0.6);
  color: var(--text-tertiary);
}

.testimonial-context {
  font-size: 14px;
  color: rgba(17,17,19,0.45);
  letter-spacing: -0.005em;
  margin-top: 8px;
}

/* ===== FOUNDERS / LEADERSHIP ===== */
.founders {
  position: relative;
  z-index: 1;
  padding: 80px 0 80px;
  background: #f4f2ee;
  border-top: 1px solid rgba(20,20,20,0.06);
}
.founders::before {
  content: '';
  position: absolute;
  top: -80px; right: 0;
  width: 600px; height: 500px;
  background: radial-gradient(ellipse at 80% 20%, rgba(232,25,106,0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.founders::after { display: none; }

.founders-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 1;
}

.founders-head {
  text-align: left;
  margin-bottom: 72px;
  max-width: 560px;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(20,20,20,0.10);
}

.founder-card {
  display: flex;
  flex-direction: column;
  padding: 40px 48px 40px 0;
  border-right: 1px solid rgba(20,20,20,0.08);
  position: relative;
  transition: background 300ms ease;
}
.founder-card:last-child { border-right: none; }
.founder-card:not(:first-child) { padding-left: 48px; }

.founder-card:hover { background: rgba(232,25,106,0.02); }

.founder-photo-wrap {
  width: 180px;
  height: 220px;
  overflow: hidden;
  margin-bottom: 28px;
  border-radius: 4px;
  flex-shrink: 0;
}

.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  filter: grayscale(100%) contrast(1.06) brightness(0.96);
  transition: filter 500ms ease, transform 500ms cubic-bezier(0.22,1,0.36,1);
}

.founder-card:hover .founder-photo {
  filter: grayscale(60%) contrast(1.06) brightness(1.00);
  transform: scale(1.02);
}

.founder-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.founder-meta {
  margin-bottom: 12px;
}

.founder-name {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #111113;
  margin-bottom: 4px;
  line-height: 1.1;
}

.founder-role {
  font-size: 12px;
  font-weight: 400;
  color: #e8196a;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.founder-bio {
  font-size: 14px;
  color: rgba(17,17,19,0.62);
  line-height: 1.55;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}


/* ===== FINAL CTA ===== */
.final-cta {
  position: relative;
  z-index: 1;
  padding: 60px 0;
  overflow: hidden;
  background: #eef1f5;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 60% 0%, rgba(148,120,220,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 100%, rgba(100,140,210,0.08) 0%, transparent 55%);
  pointer-events: none;
}

.final-cta::before {
  display: none;
}

.final-cta-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
  position: relative;
}

.final-headline {
  font-size: clamp(44px, 6.5vw, 88px);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.038em;
  margin-bottom: 28px;
}

.final-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 48px;
  line-height: 1.60;
}
.final-headline {
  color: #171717;
}
.final-sub {
  color: rgba(23,23,23,0.60);
}
.final-cta .italic-accent {
  background: linear-gradient(135deg, #171717 0%, #e8196a 55%, #c8125a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.final-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.final-contact {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.80);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 32px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.04);
}

.final-contact-item {
  text-align: left;
  padding: 0 20px;
}

.final-contact-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

.fc-label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.fc-value {
  font-size: 14px;
  color: var(--text);
  letter-spacing: -0.01em;
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 1;
  padding: 44px 0 0;
  background: #e8e6e2;
  border-top: 1px solid rgba(20,20,20,0.07);
  color: #171717;
}
.footer-tag {
  color: rgba(23,23,23,0.58);
}
.footer-col-label {
  color: rgba(23,23,23,0.36);
}
.footer-col a {
  color: rgba(23,23,23,0.58);
}
.footer-col a:hover {
  color: #171717;
}
.footer-bottom {
  border-top: 1px solid rgba(20,20,20,0.08);
}
.footer-bottom-inner {
  color: rgba(23,23,23,0.38);
}
.footer-logo {
  filter: none;
  opacity: 0.85;
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 80px;
  padding-bottom: 32px;
}

.footer-brand {}

.footer-logo {
  height: 160px;
  margin-bottom: 20px;
}

.footer-tag {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
  max-width: 360px;
  margin-bottom: 24px;
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-tertiary);
  letter-spacing: 0.04em;
  padding: 8px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 100px;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer-col a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 200ms ease;
  width: max-content;
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}

.footer-bottom-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-tertiary);
  letter-spacing: 0.02em;
}

/* ===== OPERATIONAL FLOW ===== */
.ops-flow {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}
.ops-flow::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05) 30%, rgba(255,255,255,0.05) 70%, transparent);
  pointer-events: none;
}

.ops-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

.ops-stages {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0 12px;
  align-items: start;
}

/* Stage card */
.ops-stage {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 300ms ease, transform 300ms cubic-bezier(0.22,1,0.36,1), box-shadow 300ms ease;
}
.ops-stage:hover {
  border-color: rgba(200,16,106,0.28);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -8px rgba(0,0,0,0.35);
}

/* Visual panel */
.ops-visual {
  position: relative;
  height: 250px;
  background: #080810;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

/* Camera label */
.ops-cam-label {
  position: absolute;
  top: 12px; left: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  z-index: 4;
}

/* SVG scene */
.ops-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Subtle background grid for non-scene panels */
.ops-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}

/* Corner frame brackets */
.ops-corner {
  position: absolute;
  width: 10px; height: 10px;
  z-index: 4;
  pointer-events: none;
}
.ops-corner-tl { top: 8px; left: 8px; border-top: 1.5px solid rgba(200,16,106,0.45); border-left: 1.5px solid rgba(200,16,106,0.45); }
.ops-corner-tr { top: 8px; right: 8px; border-top: 1.5px solid rgba(200,16,106,0.45); border-right: 1.5px solid rgba(200,16,106,0.45); }
.ops-corner-bl { bottom: 8px; left: 8px; border-bottom: 1.5px solid rgba(200,16,106,0.45); border-left: 1.5px solid rgba(200,16,106,0.45); }
.ops-corner-br { bottom: 8px; right: 8px; border-bottom: 1.5px solid rgba(200,16,106,0.45); border-right: 1.5px solid rgba(200,16,106,0.45); }

/* Scan line */
.ops-scan-line {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,16,106,0.7) 30%, rgba(200,16,106,0.9) 50%, rgba(200,16,106,0.7) 70%, transparent);
  animation: ops-scan 5s linear infinite;
  pointer-events: none;
  z-index: 5;
}
@keyframes ops-scan {
  0%   { top: 0%; opacity: 0; }
  4%   { opacity: 1; }
  96%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* Detection box pulses */
.ops-box-a { animation: ops-box-pulse 3.5s ease-in-out infinite; }
.ops-box-b { animation: ops-box-pulse 3.5s ease-in-out infinite 0.6s; }
@keyframes ops-box-pulse {
  0%, 100% { opacity: 0.65; }
  50%       { opacity: 1; }
}

/* Exclusion zone breathe */
.ops-zone { animation: ops-zone-breathe 4s ease-in-out infinite; }
@keyframes ops-zone-breathe {
  0%, 100% { opacity: 0.8; }
  50%       { opacity: 0.4; }
}

/* Thermal pulse */
.ops-thermal-g { animation: ops-thermal 2.8s ease-in-out infinite; }
@keyframes ops-thermal {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50%       { transform: scale(1.5); opacity: 0.3; }
}

/* UNDERSTAND panel */
.ops-visual-understand {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.ops-alert-card {
  position: relative;
  z-index: 2;
  width: 100%;
  background: rgba(12,12,18,0.96);
  border: 1px solid rgba(200,16,106,0.35);
  border-radius: 10px;
  padding: 14px 16px;
  box-shadow: 0 0 40px rgba(200,16,106,0.08), inset 0 1px 0 rgba(255,255,255,0.04);
}

.ops-alert-header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.ops-alert-icon {
  font-size: 15px;
  color: var(--accent);
  line-height: 1;
  animation: ops-icon-pulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
  margin-top: 1px;
}
@keyframes ops-icon-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.45; }
}

.ops-alert-title {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.1em;
  font-weight: 600;
}
.ops-alert-time {
  font-family: var(--font-mono);
  font-size: 8.5px;
  color: var(--text-tertiary);
  margin-top: 3px;
  letter-spacing: 0.04em;
}
.ops-sev-badge {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  padding: 3px 7px;
  border-radius: 4px;
  background: rgba(255,79,79,0.12);
  color: var(--critical);
  border: 1px solid rgba(255,79,79,0.3);
  white-space: nowrap;
  flex-shrink: 0;
}

.ops-alert-desc {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 10px;
}

.ops-metric-block {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.ops-metric-label {
  font-family: var(--font-mono);
  font-size: 8px;
  color: var(--text-tertiary);
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}
.ops-metric-bar-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.ops-metric-bar {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}
.ops-metric-fill {
  height: 100%;
  width: 32%;
  background: linear-gradient(90deg, var(--critical), var(--accent));
  border-radius: 2px;
  animation: ops-bar-grow 1.8s ease-out 0.5s backwards;
}
@keyframes ops-bar-grow { from { width: 0; } }

.ops-metric-val {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--critical);
  white-space: nowrap;
}
.ops-metric-note {
  font-family: var(--font-mono);
  font-size: 8.5px;
  color: var(--text-tertiary);
}

.ops-findings { display: flex; flex-direction: column; gap: 5px; }
.ops-finding {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 8.5px;
  color: var(--text-tertiary);
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.ops-finding-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
  opacity: 0.7;
}

/* RESPOND panel */
.ops-visual-respond {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
}

.ops-notif {
  background: rgba(14,14,20,0.95);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.ops-notif-1 { animation: ops-slide-in 500ms ease-out backwards; }
.ops-notif-2 { animation: ops-slide-in 500ms ease-out 250ms backwards; }
@keyframes ops-slide-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ops-notif-chip {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(200,16,106,0.3);
  border-radius: 4px;
  padding: 3px 6px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 1px;
}
.ops-chip-sms {
  color: #4f9fff;
  background: rgba(79,159,255,0.1);
  border-color: rgba(79,159,255,0.25);
}

.ops-notif-title {
  font-size: 11px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}
.ops-notif-sub {
  font-family: var(--font-mono);
  font-size: 8.5px;
  color: var(--text-tertiary);
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.ops-esc-track {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 10px 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.ops-esc-step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.03em;
  padding: 4px 0;
}
.ops-esc-done  { color: var(--ok); }
.ops-esc-active { color: var(--accent); }

.ops-esc-dot-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  padding-top: 2px;
}
.ops-esc-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.ops-esc-line {
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,0.1);
  margin-top: 3px;
}
.ops-esc-pulse {
  box-shadow: 0 0 0 0 currentColor;
  animation: ops-esc-ring 1.5s infinite;
}
@keyframes ops-esc-ring {
  0%   { box-shadow: 0 0 0 0 rgba(200,16,106,0.5); }
  70%  { box-shadow: 0 0 0 5px rgba(200,16,106,0); }
  100% { box-shadow: 0 0 0 0 rgba(200,16,106,0); }
}

/* RESOLVE panel */
.ops-visual-resolve {
  display: flex;
  align-items: flex-start;
  padding: 16px;
}
.ops-evidence {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ops-evidence-hdr {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ops-evidence-id {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-tertiary);
  letter-spacing: 0.1em;
}
.ops-evidence-closed {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--ok);
  letter-spacing: 0.06em;
}
.ops-evidence-thumb {
  position: relative;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 6px;
  height: 68px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ops-evidence-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,16,106,0.07), rgba(79,159,255,0.05));
}
.ops-play-btn {
  position: relative;
  z-index: 1;
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  padding-left: 2px;
  color: var(--text-secondary);
}
.ops-thumb-dur {
  position: absolute;
  bottom: 6px; right: 8px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(255,255,255,0.5);
}
.ops-thumb-cam {
  position: absolute;
  bottom: 6px; left: 8px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(255,255,255,0.35);
}

.ops-timeline-wrap { display: flex; flex-direction: column; gap: 4px; }
.ops-tl-bar {
  position: relative;
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: visible;
}
.ops-tl-fill {
  height: 100%;
  width: 62%;
  background: linear-gradient(90deg, var(--accent), rgba(200,16,106,0.45));
  border-radius: 2px;
  animation: ops-tl-grow 2s ease-out 0.8s backwards;
}
@keyframes ops-tl-grow { from { width: 0; } }
.ops-tl-marker {
  position: absolute;
  top: 50%;
  left: 62%;
  transform: translate(-50%, -50%);
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  border: 1.5px solid #080810;
  box-shadow: 0 0 6px var(--accent);
}
.ops-tl-labels {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 8px;
  color: var(--text-tertiary);
}

.ops-ev-rows { display: flex; flex-direction: column; gap: 5px; }
.ops-ev-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.02em;
}
.ops-ev-row span:first-child { color: var(--text-tertiary); }
.ops-ev-row span:last-child  { color: var(--text-secondary); }
.ops-ev-link { color: var(--accent) !important; }

/* Content area */
.ops-content {
  padding: 22px 24px 26px;
}
.ops-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.ops-title {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--text);
}
.ops-text {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 16px;
}
.ops-meta {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.07em;
  color: var(--text-tertiary);
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

/* ===== HOW IT WORKS V2 ===== */
.how-v2 {
  position: relative;
  z-index: 1;
  padding: 80px 0 80px;
  background: var(--bg);
  background-image: radial-gradient(ellipse at 75% 20%, rgba(148,120,220,0.06) 0%, transparent 52%);
}
.how-v2::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 85%; height: 200px;
  background: radial-gradient(ellipse at 50% 0%, rgba(148,120,220,0.08) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.how-v2::after {
  content: '';
  position: absolute;
  bottom: -60px; left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 220px;
  background: radial-gradient(ellipse at center, rgba(148,120,220,0.06) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.how-v2-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}

/* Left column */
.how-v2-steps {
  position: sticky;
  top: 96px;
}
.how-v2-steps .eyebrow { margin-bottom: 24px; }
.how-v2-steps .section-title { margin-bottom: 0; }
/* Right column — platform visual: stays dark (product UI mockup) */
.how-v2-visual {
  position: relative;
  padding: 100px 130px 20px 10px;
  --bg: #11111f;
  --bg-elevated: #17172a;
  --bg-card: #1e1e33;
  --bg-card-hover: #24243c;
  --border: rgba(255,255,255,0.09);
  --border-strong: rgba(255,255,255,0.15);
  --text: #f0eff8;
  --text-secondary: rgba(240,239,248,0.68);
  --text-tertiary: rgba(240,239,248,0.45);
  --text-quaternary: rgba(240,239,248,0.28);
}

/* Camera decoration — bottom right of how section */
.how-camera {
  position: absolute;
  bottom: -20px;
  right: -30px;
  width: 200px;
  pointer-events: none;
  z-index: 4;
  mix-blend-mode: multiply;
  opacity: 0.82;
  filter: saturate(0.85) brightness(1.05);
  mask-image: linear-gradient(to left, black 40%, rgba(0,0,0,0.6) 70%, transparent 92%),
              linear-gradient(to top, black 50%, rgba(0,0,0,0.5) 78%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, black 40%, rgba(0,0,0,0.6) 70%, transparent 92%),
                      linear-gradient(to top, black 50%, rgba(0,0,0,0.5) 78%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-composite: source-in;
}

/* AI Analysis sits above the frame */
.how-v2-visual .float-card-tr { top: 8px; right: -120px; min-width: 210px; }
/* Thermal sits below the frame, bottom-left */
.how-v2-visual .float-card-tl { top: auto; bottom: -10px; left: 0; }

.how-v2-sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 20px 0 48px;
  max-width: 460px;
}

.how-v2-list { display: flex; flex-direction: column; }

.how-v2-step {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  padding: 22px 0 22px 16px;
  border-bottom: 1px solid var(--border);
  border-left: 2px solid transparent;
  transition: border-left-color 220ms ease, padding-left 220ms ease;
  cursor: default;
}
.how-v2-step:first-child { border-top: 1px solid var(--border); }
.how-v2-step:hover { border-left-color: var(--accent); padding-left: 22px; }

.how-v2-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.08em;
  padding-top: 3px;
}
.how-v2-step-title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  color: var(--text);
}
.how-v2-step-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* Right column — diagram card */
.how-v2-diag-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.how-v2-diag-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.016) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Flow nodes */
.how-v2-node {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 250ms ease, box-shadow 250ms ease;
}
.how-v2-node:hover {
  border-color: var(--border-strong);
  box-shadow: 0 6px 20px -6px rgba(0,0,0,0.5);
}

.how-v2-node-core {
  background: linear-gradient(135deg, rgba(200,16,106,0.08), rgba(200,16,106,0.02));
  border-color: rgba(200,16,106,0.3);
  box-shadow: 0 0 0 1px rgba(200,16,106,0.07), 0 8px 28px -8px rgba(200,16,106,0.18);
}
.how-v2-node-core:hover {
  border-color: rgba(200,16,106,0.5);
  box-shadow: 0 0 0 1px rgba(200,16,106,0.12), 0 12px 36px -8px rgba(200,16,106,0.28);
}

.how-v2-node-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
}
.how-v2-node-icon svg { width: 16px; height: 16px; }

.how-v2-icon-core {
  background: rgba(200,16,106,0.1);
  border-color: rgba(200,16,106,0.3);
  color: var(--accent);
}

.how-v2-node-info { flex: 1; min-width: 0; }
.how-v2-node-title {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 3px;
}
.how-v2-node-sub {
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: var(--text-tertiary);
  letter-spacing: 0.03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.how-v2-node-tag {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px 10px;
  white-space: nowrap;
}
.how-v2-tag-live {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--accent);
  background: var(--accent-soft);
  border-color: rgba(200,16,106,0.25);
}
.how-v2-tag-ok {
  color: var(--ok);
  background: rgba(74,222,128,0.08);
  border-color: rgba(74,222,128,0.2);
}

/* Pipe connector */
.how-v2-pipe {
  position: relative;
  height: 40px;
  display: flex;
  justify-content: center;
  z-index: 1;
}
.how-v2-pipe::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, rgba(200,16,106,0.4), rgba(200,16,106,0.15));
}
.how-v2-pipe-dot {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent-glow);
  animation: how-pipe-travel 3.0s ease-in-out infinite;
}
@keyframes how-pipe-travel {
  0%   { top: 0; opacity: 0; }
  6%   { opacity: 0.8; }
  92%  { opacity: 0.8; }
  100% { top: 100%; opacity: 0; }
}

/* ===== (OLD ops-flow connector — kept for reference) ===== */
/* Connector arrow */
.ops-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-quaternary);
  margin-top: 125px;
}
.ops-connector svg { width: 28px; height: 10px; }

/* ===== CONTACT SECTION ===== */
.contact-section {
  --text: #000000;
  --text-secondary: rgba(0,0,0,0.85);
  --text-tertiary: rgba(0,0,0,0.7);
  --text-quaternary: rgba(0,0,0,0.4);
  --border: rgba(0,0,0,0.09);
  --border-strong: rgba(0,0,0,0.13);
  --bg: #eaeaed;
  --bg-card: #f5f5f7;
  --bg-elevated: #f4f4f6;
  position: relative;
  z-index: 1;
  padding: 160px 0;
  overflow: hidden;
  background: #ffffff;
  color: #000000;
}
.contact-section .italic-accent {
  background: linear-gradient(135deg, #000000 0%, #e8196a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact-section::before {
  display: none;
}
.contact-section::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6%;
  transform: translateY(-50%);
  width: 680px;
  height: 680px;
  background: radial-gradient(ellipse at center, rgba(148,120,220,0.08) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.contact-ambient {
  display: none;
}

/* Form inputs — light mode defaults, dark mode has dark inputs */
.contact-form-card .form-input,
.contact-form-card .form-select,
.contact-form-card .form-textarea {
  background-color: rgba(255,255,255,0.80);
  border-color: rgba(20,20,20,0.09);
  color: #171717;
}
.contact-form-card .form-input::placeholder,
.contact-form-card .form-textarea::placeholder {
  color: rgba(23,23,23,0.70);
}
.contact-form-card .form-input:hover,
.contact-form-card .form-select:hover,
.contact-form-card .form-textarea:hover {
  border-color: rgba(20,20,20,0.16);
  background-color: rgba(255,255,255,0.95);
}
.contact-form-card .form-label {
  color: #171717;
}
/* Browser autofill override */
.contact-form-card .form-input:-webkit-autofill,
.contact-form-card .form-input:-webkit-autofill:hover,
.contact-form-card .form-input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #f8f8f6 inset;
  -webkit-text-fill-color: #171717;
  caret-color: #171717;
  border-color: rgba(20,20,20,0.09);
}
.contact-form-card .form-select {
  color-scheme: light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(23,23,23,0.62)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
  padding-right: 36px;
}
.contact-form-card .form-select option {
  background: #ffffff;
  color: #171717;
}
.contact-form-card .form-select:focus {
  border-color: rgba(20,20,20,0.22);
  background-color: rgba(255,255,255,0.95);
  box-shadow: 0 0 0 3px rgba(20,20,20,0.08);
}

.contact-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: start;
}

/* ---- Left column ---- */
.contact-left {
  position: sticky;
  top: 100px;
}

.contact-headline {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}

.contact-sub {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 36px;
}

.contact-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
  border-top: 1px solid var(--border);
}

.contact-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
  color: var(--text-secondary);
  letter-spacing: -0.005em;
  transition: color 180ms ease;
}
.contact-feature:hover { color: var(--text); }

.contact-feature-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(23,23,23,0.28);
  box-shadow: none;
  flex-shrink: 0;
  opacity: 0.55;
}

.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.contact-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-tertiary);
  letter-spacing: -0.005em;
}
.contact-meta-item svg { flex-shrink: 0; opacity: 0.6; }

.contact-trust-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: var(--text-tertiary);
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255,255,255,0.02);
  line-height: 1.6;
}

/* ---- Right column: form card ---- */
.contact-form-card {
  --text: #171717;
  --text-secondary: rgba(23,23,23,0.68);
  --text-tertiary: rgba(23,23,23,0.44);
  --text-quaternary: rgba(23,23,23,0.28);
  --border: rgba(20,20,20,0.07);
  --border-strong: rgba(20,20,20,0.11);
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(20,20,20,0.06);
  border-radius: 20px;
  padding: 28px 36px 32px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: #171717;
  box-shadow:
    0 8px 32px rgba(0,0,0,0.06),
    0 2px 8px rgba(0,0,0,0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(148,120,220,0.22), transparent);
  box-shadow: none;
}

.contact-form-header {
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.contact-form-title {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 7px;
}

.contact-form-sub {
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.55;
}

/* Form layout */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 12px;
}
.form-row + .form-group,
.form-row .form-group { margin-bottom: 0; }
.form-group:last-of-type { margin-bottom: 0; margin-top: 8px; }
.form-group-phone { gap: 8px; }
.phone-row {
  display: grid;
  grid-template-columns: minmax(7rem, 9rem) 1fr;
  gap: 8px;
}

.form-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  text-transform: uppercase;
}

.form-required { color: var(--accent); }

.form-input,
.form-select,
.form-textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-quaternary); }

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(200,16,106,0.55);
  background: rgba(200,16,106,0.04);
  box-shadow: 0 0 0 3px rgba(200,16,106,0.08);
}

.form-input.invalid,
.form-select.invalid,
.form-textarea.invalid {
  border-color: rgba(255,79,79,0.5);
  box-shadow: 0 0 0 3px rgba(255,79,79,0.07);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(245,245,247,0.3)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  color: var(--text);
}

.form-textarea {
  resize: vertical;
  min-height: 108px;
  line-height: 1.55;
}

/* Submit button */
.form-submit {
  width: 100%;
  margin-top: 12px;
  padding: 14px 24px;
  background: var(--accent);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: opacity 200ms ease, transform 200ms ease, box-shadow 200ms ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 12px -3px rgba(200,16,106,0.22);
}
.form-submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 5px 16px -3px rgba(200,16,106,0.28);
}
.form-submit:active { transform: translateY(0); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-submit-spinner {
  display: none;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.form-submit.loading .form-submit-text,
.form-submit.loading .form-submit-arrow { display: none; }
.form-submit.loading .form-submit-spinner { display: block; }

.form-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-tertiary);
  text-align: center;
  line-height: 1.55;
  letter-spacing: -0.003em;
}

/* Success state */
.form-success[hidden] { display: none; }
.form-success {
  text-align: center;
  padding: 40px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.form-success-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4ade80;
  margin-bottom: 4px;
}
.form-success h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.form-success p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 360px;
}

/* Error state */
.form-error[hidden] { display: none; }
.form-error {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255,79,79,0.07);
  border: 1px solid rgba(255,79,79,0.25);
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
}
.form-error svg { flex-shrink: 0; color: #ff4f4f; margin-top: 1px; }
.form-error a { color: var(--accent); text-decoration: underline; }

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

/* Tablet — 1100px */
@media (max-width: 1100px) {
  :root { --nav-height: 72px; }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
  }

  body {
    padding-top: var(--nav-height);
  }

  #walkthrough {
    scroll-margin-top: calc(var(--nav-height) + 16px);
  }

  .nav-inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    grid-auto-rows: auto;
    column-gap: 10px;
    row-gap: 12px;
    height: auto;
    min-height: var(--nav-height);
    padding: 0 20px;
    align-items: center;
  }

  .nav-logo-mark { height: 48px; }
  .nav-logo-wordmark { font-size: clamp(14px, 1.8vw, 17px); }

  .nav-toggle {
    display: inline-flex;
    position: relative;
    z-index: 220;
    touch-action: manipulation;
  }

  .nav-cta {
    margin-left: 0;
  }

  .nav-menu {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    padding: 0 0 16px;
    position: relative;
    z-index: 105;
  }

  .nav.is-open {
    background: #f6f6f4;
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    max-height: 100dvh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav.is-open .nav-inner {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "logo toggle"
      "menu menu"
      "cta cta";
  }

  .nav.is-open .nav-logo { grid-area: logo; }
  .nav.is-open .nav-toggle { grid-area: toggle; justify-self: end; }
  .nav.is-open .nav-menu { grid-area: menu; }

  .nav.is-open .nav-menu {
    display: block;
    background: #f6f6f4;
  }

  .nav.is-open .nav-cta {
    grid-area: cta;
    justify-self: center;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 4px 0 12px;
    position: relative;
    z-index: 210;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    width: 100%;
    padding: 12px;
    background: #ffffff;
    border: 1px solid rgba(20,20,20,0.12);
    border-radius: 12px;
    box-shadow: 0 16px 40px -12px rgba(20,20,20,0.16);
  }

  .nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 190;
    background: rgba(246,246,244,0.94);
    -webkit-tap-highlight-color: transparent;
    touch-action: none;
  }

  body.nav-menu-open .nav-backdrop {
    display: block;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 12px 14px;
    font-size: 16px;
    border-radius: 8px;
  }

  .nav--scrolled .nav-inner {
    min-height: var(--nav-height);
  }

  body { touch-action: pan-y; }
  .ambient-glow { display: none; }
  .float-card { display: none; }
  .how-v2-visual {
    padding-right: 20px;
    overflow: hidden;
  }

  /* Contact */
  .contact-inner { grid-template-columns: 1fr; gap: 56px; }
  .contact-left { position: static; }

  /* Hero */
  .hero-inner { padding: 0 24px; }
  .hero-headline { font-size: clamp(28px, 4.5vw, 56px); }
  .hero-dashboard { margin-top: 64px; }

  /* How it works */
  .how-v2-inner { grid-template-columns: 1fr; gap: 56px; }
  .how-v2-steps { position: static; }
  .ops-stages { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .ops-connector { display: none; }

  /* Detection grid */
  .detect-card-hero { grid-column: span 12; }
  .detect-card-flank { grid-column: span 6; }
  .detect-card-bottom { grid-column: span 6; }
  .detect-card-hero .detect-media-wrap { height: 56px; }
  .detect-card-flank .detect-media-wrap { height: 48px; }
  .detect-card-bottom .detect-media-wrap { height: 44px; }

  /* Infrastructure */
  .infra-inner { grid-template-columns: 1fr; gap: 40px; }

  /* Agentic */
  .agentic-inner { grid-template-columns: 1fr; gap: 60px; }

  /* Showcase */
  .showcase-stage { grid-template-columns: 1fr; }
  .showcase-main { grid-template-columns: 1fr; }
  .showcase-features { grid-template-columns: repeat(2, 1fr); }

  /* Trust strip */
  .trust-strip-quote { font-size: 14px; }
  .trust-strip-rule { display: none; }

  /* Founders — uniform padding + centered content (desktop uses asymmetric columns) */
  .founders-grid { grid-template-columns: repeat(2, 1fr); max-width: 700px; margin: 0 auto; }
  .founder-card,
  .founder-card:not(:first-child) {
    padding: 32px 24px;
    border-right: none;
    align-items: center;
    text-align: center;
  }
  .founder-photo-wrap { margin-left: auto; margin-right: auto; }
  .founder-card:last-child { grid-column: span 2; max-width: 340px; margin-left: auto; margin-right: auto; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: repeat(4, 1fr); }
}

/* Mobile — 720px */
@media (max-width: 720px) {
  :root { --nav-height: 64px; }

  /* Nav */
  .nav-inner {
    min-height: var(--nav-height);
    padding: 0 16px;
    gap: 10px;
  }

  .nav-logo-mark { height: 38px; }
  .nav-logo-wordmark { display: none; }

  .nav-cta .btn {
    padding: 10px 14px;
    font-size: 13px;
  }

  .nav-cta .nav-link-ghost { display: none; }

  /* Hero */
  .hero { padding: 88px 0 56px; }
  .hero-scene { opacity: 0.16; filter: blur(1px) saturate(0.50) contrast(1.05) brightness(0.96); }
  .hero-inner { padding: 0 16px; }
  .hero-headline { font-size: clamp(22px, 7vw, 40px); text-align: left; letter-spacing: -0.02em; }
  .hero-sub,
  .hero-tagline { font-size: 16px; text-align: left; line-height: 1.55; max-width: none; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-dashboard { display: none; }
  .float-card { display: none; }

  /* Section heads */
  .section-head { margin-bottom: 52px; padding: 0 20px; }
  .section-title { font-size: clamp(28px, 7vw, 44px); }
  .usecases-head { grid-template-columns: 1fr; gap: 16px; padding: 0 20px; }
  .showcase-head .section-title { max-width: 100%; }

  /* How it works */
  .how-v2 { padding: 64px 0 72px; }
  .how-v2-inner { padding: 0 20px; gap: 40px; }
  .how-v2-sub { margin-bottom: 32px; }
  .ops-flow { padding: 64px 0; }
  .ops-inner { padding: 0 20px; }
  .ops-stages { grid-template-columns: 1fr; gap: 12px; }
  .ops-visual { height: 220px; }

  /* Use cases — hide image strips; icon + label only */
  .usecases { padding: 56px 16px; }
  .usecases .section-head { margin-bottom: 28px; padding: 0; }
  .detect-grid { padding: 0; gap: 6px; }
  .detect-card-hero,
  .detect-card-flank,
  .detect-card-bottom { grid-column: span 12; }
  .detect-media-wrap { display: none; }
  .detect-card-body {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 10px;
    padding: 12px 14px;
  }
  .detect-badge { flex-shrink: 0; }
  .detect-label {
    flex: 1 1 140px;
    font-size: 14px;
    min-width: 0;
  }
  .detect-icon { width: 18px; height: 18px; }

  /* Testimonial */
  .testimonial-section { padding: 56px 0; }
  .testimonial-inner { padding: 0 16px; }
  .testimonial-card { padding: 24px 20px 22px; margin: 20px 0; }
  .testimonial-quote { font-size: 16px; text-align: left; }
  .testimonial-attr {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .testimonial-divider { display: none; }
  .testimonial-logo { align-self: flex-start; max-height: 40px; }

  /* Infrastructure */
  .infra { padding: 80px 20px; }
  .infra-layers { gap: 10px; }
  .infra-layer { padding: 18px 20px; }

  /* Agentic */
  .agentic { padding: 80px 20px; }
  .agentic-inner { grid-template-columns: 1fr; gap: 40px; }
  .agentic-visual { display: none; }

  /* Showcase */
  .showcase { padding: 80px 20px; }
  .showcase-main { grid-template-columns: 1fr; }
  .showcase-features { grid-template-columns: 1fr; gap: 12px; }
  .showcase-img-wrap { border-radius: 12px; }

  /* Trust strip */
  .trust-strip-inner { flex-direction: column; align-items: flex-start; gap: 16px; padding: 24px 20px; }
  .trust-strip-quote { font-size: 14px; }
  .trust-strip-logo { height: 38px; }

  /* Founders */
  .founders { padding: 80px 20px; }
  .founders-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .founder-card,
  .founder-card:not(:first-child) {
    padding: 32px 20px;
    align-items: center;
    text-align: center;
  }
  .founder-photo-wrap { margin-left: auto; margin-right: auto; }
  .founder-card:last-child { grid-column: span 1; max-width: 100%; margin-left: auto; margin-right: auto; }

  /* Contact */
  .contact-section { padding: 88px 0; }
  .contact-inner { padding: 0 20px; gap: 48px; }
  .contact-form-card { padding: 28px 24px 32px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .phone-row { grid-template-columns: 1fr; }

  /* Final CTA */
  .final-cta { padding: 88px 20px; }
  .final-headline { font-size: clamp(28px, 7vw, 44px); }
  .final-ctas { flex-direction: column; align-items: center; gap: 12px; }
  .final-ctas .btn { width: 100%; max-width: 340px; justify-content: center; }

  /* Inner wrappers — tighten horizontal padding */
  .nav-inner,
  .hero-inner,
  .how-grid,
  .detect-grid,
  .infra-inner,
  .agentic-inner,
  .showcase-stage,
  .testimonial,
  .founders-inner,
  .contact-inner,
  .final-cta-inner,
  .footer-inner { padding-left: 20px; padding-right: 20px; }

  /* Footer */
  .footer { padding: 60px 0 32px; }
  .footer-inner { gap: 32px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }

  /* Touch targets */
  .btn { min-height: 44px; }
  .filter-chip { min-height: 40px; display: inline-flex; align-items: center; }

  /* Long labels */
  .detect-label span { line-height: 1.3; }
}

/* Small phones */
@media (max-width: 400px) {
  .nav-cta .btn-nav-contact { padding: 10px 12px; font-size: 12px; }
  .footer-cols { grid-template-columns: 1fr; }
}
