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

:root {
  --bg: #08080a;
  --bg-elevated: #0e0e12;
  --bg-card: #111116;
  --bg-card-hover: #16161c;
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.14);
  --text: #ffffff;
  --text-secondary: rgba(255,255,255,0.85);
  --text-tertiary: rgba(255,255,255,0.6);
  --text-quaternary: rgba(255,255,255,0.38);
  --accent: #c8106a;
  --accent-soft: rgba(200,16,106,0.12);
  --accent-glow: rgba(200,16,106,0.45);
  --critical: #ff4f4f;
  --high: #ff8a4f;
  --medium: #ffd84f;
  --ok: #4ade80;
  --info: #4f9fff;

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

/* ===== LIGHT MODE ===== */
[data-theme="light"] {
  --bg: #f2f1f7;
  --bg-elevated: #eae9f0;
  --bg-card: #ffffff;
  --bg-card-hover: #f7f6fc;
  --border: rgba(0,0,0,0.08);
  --border-strong: rgba(0,0,0,0.13);
  --text: #0d0c14;
  --text-secondary: rgba(13,12,20,0.68);
  --text-tertiary: rgba(13,12,20,0.48);
  --text-quaternary: rgba(13,12,20,0.3);
  --accent-soft: rgba(200,16,106,0.07);
  --accent-glow: rgba(200,16,106,0.22);
}

/* Ambient grid & glows */
[data-theme="light"] .ambient-grid {
  background-image:
    linear-gradient(rgba(0,0,0,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.028) 1px, transparent 1px);
}
[data-theme="light"] .ambient-glow-1 {
  background: radial-gradient(circle, rgba(200,16,106,0.12) 0%, transparent 70%);
  opacity: 0.35;
}
[data-theme="light"] .ambient-glow-2 {
  background: radial-gradient(circle, rgba(100,79,255,0.08) 0%, transparent 70%);
  opacity: 0.35;
}

/* Nav */
[data-theme="light"] .nav {
  background: rgba(242,241,247,0.88);
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.06), 0 4px 20px rgba(0,0,0,0.06);
}
[data-theme="light"] .nav--scrolled {
  background: rgba(242,241,247,0.97);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.08), 0 12px 40px rgba(0,0,0,0.1), 0 0 0 1px rgba(200,16,106,0.07);
}
[data-theme="light"] .nav::after {
  background: linear-gradient(90deg, transparent 5%, rgba(200,16,106,0.22) 25%, rgba(0,0,0,0.06) 50%, rgba(200,16,106,0.18) 75%, transparent 95%);
}
[data-theme="light"] .nav-links a { color: rgba(13,12,20,0.56); }
[data-theme="light"] .nav-links a:hover { color: #0d0c14; background: rgba(0,0,0,0.05); }
[data-theme="light"] .nav-links a.active { color: rgba(13,12,20,0.82); background: rgba(0,0,0,0.04); }

/* Logo — white asset, invert to dark */
[data-theme="light"] .nav-logo img,
[data-theme="light"] .footer-logo { filter: brightness(0); }

/* Nav contact button */
[data-theme="light"] .btn-nav-contact {
  background: #0d0c14;
  border-color: rgba(200,16,106,0.6);
}

/* Hero italic — white start invisible on light bg */
[data-theme="light"] .hero-italic {
  background: linear-gradient(135deg, #0d0c14 0%, #c8106a 45%, #8b0a47 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Section alternation — slight tint so white sections still read as breaks */
[data-theme="light"] .testimonial-section { background: #ebe9f3; color: #111113; }
[data-theme="light"] .showcase { background: #ebe9f3; }
[data-theme="light"] .contact-section { background: #ebe9f3; color: #000000; }

/* Final CTA */
[data-theme="light"] .final-cta { background: var(--bg-elevated); }
[data-theme="light"] .final-cta-bg {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(200,16,106,0.1) 0%, transparent 45%),
    radial-gradient(ellipse at center, rgba(200,16,106,0.05) 0%, transparent 70%),
    linear-gradient(180deg, transparent 0%, rgba(234,233,240,0.9) 100%);
}

/* Footer */
[data-theme="light"] .footer { background: #e2e1e9; }

/* Theme toggle button */
.theme-toggle {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
  flex-shrink: 0;
}
.theme-toggle:hover {
  background: rgba(255,255,255,0.13);
  color: #ffffff;
  border-color: rgba(255,255,255,0.28);
}
[data-theme="light"] .theme-toggle {
  border-color: rgba(0,0,0,0.16);
  background: rgba(0,0,0,0.06);
  color: rgba(13,12,20,0.72);
}
[data-theme="light"] .theme-toggle:hover {
  background: rgba(0,0,0,0.10);
  color: #0d0c14;
  border-color: rgba(0,0,0,0.22);
}
.icon-sun  { display: block; }
.icon-moon { display: none; }
[data-theme="light"] .icon-sun  { display: none; }
[data-theme="light"] .icon-moon { display: block; }

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

html { scroll-behavior: smooth; }

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;
}

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(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

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

.ambient-glow-1 {
  width: 700px; height: 700px;
  top: -200px; right: -200px;
  background: radial-gradient(circle, rgba(255,79,216,0.18) 0%, transparent 70%);
}

.ambient-glow-2 {
  width: 600px; height: 600px;
  bottom: -200px; left: -200px;
  background: radial-gradient(circle, rgba(79,159,255,0.10) 0%, transparent 70%);
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 12px 0;
  background: rgba(8,7,12,0.90);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 4px 20px rgba(0,0,0,0.4);
  transition:
    padding 300ms cubic-bezier(0.22,1,0.36,1),
    background 300ms ease,
    box-shadow 300ms ease;
}
.nav--scrolled {
  padding: 8px 0;
  background: rgba(8,7,12,0.97);
  backdrop-filter: saturate(180%) blur(20px) brightness(0.9);
  -webkit-backdrop-filter: saturate(180%) blur(20px) brightness(0.9);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 12px 40px rgba(0,0,0,0.65),
    0 0 0 1px rgba(200,16,106,0.08);
}
.nav::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 5%,
    rgba(200,16,106,0.32) 25%,
    rgba(255,255,255,0.1) 50%,
    rgba(200,16,106,0.25) 75%,
    transparent 95%
  );
  pointer-events: none;
  transition: opacity 300ms ease;
}
.nav--scrolled::after {
  background: linear-gradient(90deg,
    transparent 5%,
    rgba(200,16,106,0.45) 25%,
    rgba(255,255,255,0.13) 50%,
    rgba(200,16,106,0.38) 75%,
    transparent 95%
  );
}

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

.nav-logo img {
  height: 46px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2px;
  font-size: 13.5px;
  color: var(--text-secondary);
  font-weight: 400;
  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(255,255,255,0.07);
}

.nav-links a.active,
.nav-links a[aria-current="page"] {
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.04);
}

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

.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);
  box-shadow:
    0 0 0 1px rgba(255,79,216,0.5),
    0 8px 24px -8px rgba(255,79,216,0.6),
    inset 0 1px 0 rgba(255,255,255,0.25);
}

.btn-primary:hover {
  background: #ff66dd;
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(255,79,216,0.7),
    0 12px 32px -8px rgba(255,79,216,0.7),
    inset 0 1px 0 rgba(255,255,255,0.3);
}

.btn-ghost {
  background: rgba(200,16,106,0.06);
  color: #ffffff;
  border-color: rgba(200,16,106,0.45);
  backdrop-filter: blur(12px);
  box-shadow:
    0 0 0 1px rgba(200,16,106,0.15),
    0 4px 20px -4px rgba(200,16,106,0.25),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.btn-ghost:hover {
  background: rgba(200,16,106,0.12);
  border-color: rgba(200,16,106,0.7);
  box-shadow:
    0 0 0 1px rgba(200,16,106,0.3),
    0 8px 28px -4px rgba(200,16,106,0.35),
    inset 0 1px 0 rgba(255,255,255,0.12);
  transform: translateY(-1px);
}

.btn-nav-contact {
  background: #000000;
  color: #ffffff;
  border-color: rgba(200,16,106,0.7);
  box-shadow: 0 0 0 1px rgba(200,16,106,0.2), 0 0 12px -2px rgba(200,16,106,0.2);
}

.btn-nav-contact:hover {
  background: rgba(200,16,106,0.08);
  border-color: rgba(200,16,106,1);
  box-shadow: 0 0 0 1px rgba(200,16,106,0.4), 0 0 18px -2px rgba(200,16,106,0.35);
  transform: translateY(-1px);
}

.play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: rgba(255,79,216,0.15);
  border: 1px solid rgba(255,79,216,0.35);
  border-radius: 50%;
  font-size: 8px;
  padding-left: 2px;
  color: var(--accent);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  z-index: 1;
  padding: 130px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  bottom: -120px; left: 50%;
  transform: translateX(-50%);
  width: 1000px; height: 640px;
  background: radial-gradient(ellipse at 50% 100%, rgba(200,16,106,0.22) 0%, rgba(200,16,106,0.06) 35%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

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

.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: 36px;
  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(46px, 7.2vw, 92px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.048em;
  margin-bottom: 32px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

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

.hero-sub {
  font-size: 22px;
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 760px;
  margin: 0 auto 44px;
  letter-spacing: -0.01em;
}

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

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

.dashboard-frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  box-shadow:
    0 40px 80px -20px rgba(0,0,0,0.6),
    0 20px 40px -20px rgba(200,16,106,0.12),
    0 0 0 1px rgba(255,255,255,0.02);
}

/* 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(8,8,10,0.55) 100%),
    linear-gradient(to top, rgba(8,8,10,0.45) 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: var(--text-secondary);
  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: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.4;
  animation: scan-line-anim 6s 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 */
.float-card {
  position: absolute;
  background: rgba(20,20,24,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5);
  z-index: 2;
  min-width: 180px;
  animation: float-card-in 800ms ease-out backwards;
}

.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(10px) scale(0.95); }
  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(--accent);
  flex-shrink: 0;
  margin-top: 4px;
  opacity: 0.7;
}

.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 48px;
  padding: 0 32px;
}

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

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

.eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
}

.section-title {
  font-size: clamp(34px, 4.5vw, 60px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.035em;
  max-width: 800px;
}

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

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

/* ===== HOW IT WORKS ===== */
.how {
  position: relative;
  z-index: 1;
  padding: 80px 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: 16px;
  align-items: stretch;
}

.how-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  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(20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.how-card:hover {
  border-color: rgba(255,79,216,0.3);
  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(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.how-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,79,216,0.08);
  border: 1px solid rgba(255,79,216,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  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:
    radial-gradient(ellipse at 8% 90%, rgba(255,100,20,0.08) 0%, transparent 45%),
    var(--bg-elevated);
}
.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: var(--accent);
  opacity: 0.55;
  display: inline-block;
  flex-shrink: 0;
}

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

.detect-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: default;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 380ms cubic-bezier(0.22,1,0.36,1), box-shadow 380ms ease, border-color 300ms ease;
}

.detect-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 20px 40px -12px rgba(0,0,0,0.55),
    0 0 0 1px rgba(200,16,106,0.22),
    0 0 28px -6px rgba(200,16,106,0.12);
  border-color: rgba(200,16,106,0.25);
}

.detect-card-hero {
  grid-column: span 6;
  aspect-ratio: 16 / 8;
}

.detect-card-flank {
  grid-column: span 3;
  aspect-ratio: 1 / 1;
}

.detect-card-bottom {
  grid-column: span 3;
  aspect-ratio: 5 / 3;
}

.detect-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.86) contrast(0.9) saturate(0.85);
  transition: transform 500ms cubic-bezier(0.22,1,0.36,1), filter 400ms ease;
}

.detect-card-ppe .detect-media {
  object-position: 80% 20%;
}

.detect-card:hover .detect-media {
  transform: scale(1.03);
  filter: brightness(0.92) contrast(0.92) saturate(0.9);
}

.detect-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.15) 40%,
    transparent 100%
  );
  pointer-events: none;
}

/* ===== RISK CLASSIFICATION BADGES ===== */
.detect-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 3;
  backdrop-filter: blur(8px);
}

.detect-badge-critical {
  background: rgba(255,70,70,0.12);
  border: 1px solid rgba(255,70,70,0.28);
  color: rgba(255,110,110,0.9);
}

.detect-badge-compliance {
  background: rgba(200,16,106,0.1);
  border: 1px solid rgba(200,16,106,0.28);
  color: rgba(220,80,140,0.9);
}

.detect-badge-high {
  background: rgba(255,140,0,0.1);
  border: 1px solid rgba(255,140,0,0.28);
  color: rgba(255,160,40,0.9);
}

.detect-badge-emerging {
  background: rgba(100,160,255,0.08);
  border: 1px solid rgba(100,160,255,0.2);
  color: rgba(130,180,255,0.85);
}


.detect-label {
  position: absolute;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  z-index: 3;
}

.detect-card-bottom .detect-label {
  font-size: 13px;
  bottom: 14px;
  left: 14px;
  gap: 8px;
}

.detect-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.9;
}

.detect-card-bottom .detect-icon {
  width: 17px;
  height: 17px;
}

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

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

/* ===== INFRA ===== */
.infra {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}
.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: 60px 0;
  background: #ffffff;
  color: var(--text);
}
.showcase::before,
.showcase::after {
  display: none;
}
.showcase .italic-accent {
  background: linear-gradient(135deg, #111113 0%, #c8106a 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: linear-gradient(150deg,
    rgba(255,255,255,0.82) 0%,
    rgba(200,16,106,0.07) 45%,
    rgba(255,235,245,0.78) 100%
  );
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(200,16,106,0.2);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 12px 40px rgba(200,16,106,0.1),
    0 4px 16px rgba(0,0,0,0.07);
}

.showcase-feature {
  background: transparent;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(200,16,106,0.1);
  transition: background 180ms ease;
}
.showcase-feature:last-child { border-bottom: none; }
.showcase-feature:hover { background: rgba(200,16,106,0.04); }

.showcase-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  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: 80px 0;
  background: var(--bg);
  overflow: hidden;
}

.agentic::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 800px;
  background: radial-gradient(ellipse at 50% 0%, rgba(200,16,106,0.14) 0%, rgba(200,16,106,0.04) 40%, transparent 65%);
  pointer-events: none;
}
.agentic::after {
  content: '';
  position: absolute;
  top: 55%; left: 20%;
  transform: translate(-50%, -50%);
  width: 500px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(120,40,200,0.05) 0%, transparent 60%);
  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(--accent);
  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(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 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(255,79,216,0.25);
  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: var(--text);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
}

.orch-node text.orch-meta {
  fill: var(--text-tertiary);
  font-size: 9px;
}

.orch-core rect {
  fill: rgba(255,79,216,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(255,79,216,0.7) !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: 80px 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: 14px;
}

.roi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all 300ms ease;
}

.roi-card:hover {
  border-color: rgba(255,79,216,0.25);
  background: var(--bg-card-hover);
}

.roi-card-feature {
  grid-column: span 1;
  grid-row: span 2;
  background:
    linear-gradient(135deg, rgba(255,79,216,0.08), rgba(255,79,216,0.02));
  border-color: rgba(255,79,216,0.3);
  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(--accent); }

.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(255,79,216,0.6); }

.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: 100px 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.85;
  margin-left: auto;
  filter: brightness(0) invert(1);
}

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

.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(--accent);
  font-style: italic;
}

.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 rgba(255,79,216,0.3);
}

.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: 60px 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(--accent);
  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: #f5f5f7;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 12px;
  padding: 28px 36px 24px;
  margin: 24px 0 16px;
}

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

.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 0.6;
  color: rgba(200,16,106,0.6);
  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: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.09);
}

.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(0,0,0,0.1);
  flex-shrink: 0;
}

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

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

.testimonial-role {
  font-size: 11.5px;
  color: rgba(17,17,19,0.5);
  margin-top: 2px;
}

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

.testimonial-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: 0.65;
  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 ===== */
.founders {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}
.founders::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80%; height: 190px;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,150,50,0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.founders::after {
  content: '';
  position: absolute;
  bottom: -60px; right: 5%;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse at 100% 100%, rgba(255,150,50,0.06) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

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

.founders-head {
  text-align: left;
  margin-bottom: 52px;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.founder-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: border-color 320ms ease, transform 320ms cubic-bezier(0.22,1,0.36,1), box-shadow 320ms ease;
}

.founder-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top center, rgba(255,79,216,0.07), transparent 65%);
  opacity: 0;
  transition: opacity 320ms ease;
  pointer-events: none;
}

.founder-card:hover {
  border-color: rgba(255,79,216,0.28);
  transform: translateY(-6px);
  box-shadow: 0 28px 56px -16px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,79,216,0.08);
}

.founder-card:hover::after {
  opacity: 1;
}

.founder-photo-wrap {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  position: relative;
}

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

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

.founder-info {
  padding: 24px 28px 28px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 2;
}

.founder-name {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 5px;
}

.founder-role {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(200,16,106,0.75);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.founder-bio {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.55;
  letter-spacing: -0.005em;
}

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

.final-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(200,16,106,0.12) 0%, transparent 45%),
    radial-gradient(ellipse at center, rgba(255,79,216,0.15) 0%, transparent 70%),
    linear-gradient(180deg, transparent 0%, rgba(8,8,10,0.8) 100%);
  pointer-events: none;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,79,216,0.2) 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(255,79,216,0.15) 1px, transparent 1px),
    radial-gradient(circle at 60% 20%, rgba(255,138,79,0.1) 1px, transparent 1px);
  background-size: 200px 200px, 150px 150px, 180px 180px;
  opacity: 0.5;
  pointer-events: none;
}

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

.final-headline {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}

.final-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.55;
}

.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(20,20,24,0.6);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 32px;
  backdrop-filter: blur(20px);
}

.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: 80px 0 0;
  background: #050507;
  border-top: 1px solid var(--border);
}

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

.footer-brand {}

.footer-logo {
  height: 56px;
  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 24px 48px -12px rgba(0,0,0,0.5);
}

/* 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 100px;
  background-image: radial-gradient(ellipse at 75% 20%, rgba(80,150,220,0.07) 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(200,16,106,0.11) 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(200,16,106,0.09) 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 */
.how-v2-visual {
  position: relative;
  padding: 100px 130px 20px 10px;
}

/* 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: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: how-pipe-travel 2.2s ease-in-out infinite;
}
@keyframes how-pipe-travel {
  0%   { top: 0; opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  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: 100px 0;
  overflow: hidden;
  background: #ffffff;
  color: #000000;
}
.contact-section .italic-accent {
  background: linear-gradient(135deg, #000000 0%, #c8106a 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(200,16,106,0.11) 0%, rgba(200,16,106,0.04) 40%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.contact-ambient {
  display: none;
}

/* Form inputs inside the dark card */
.contact-form-card .form-input,
.contact-form-card .form-select,
.contact-form-card .form-textarea {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.1);
  color: #ffffff;
}
.contact-form-card .form-input::placeholder,
.contact-form-card .form-textarea::placeholder {
  color: rgba(255,255,255,0.38);
}
.contact-form-card .form-input:hover,
.contact-form-card .form-select:hover,
.contact-form-card .form-textarea:hover {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.10);
}
/* Override browser autofill white flash */
.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 #1c1929 inset;
  -webkit-text-fill-color: #ffffff;
  caret-color: #ffffff;
  border-color: rgba(255,255,255,0.1);
}

.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: var(--accent);
  box-shadow: 0 0 6px var(--accent);
  flex-shrink: 0;
}

.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: #ffffff;
  --text-secondary: rgba(255,255,255,0.88);
  --text-tertiary: rgba(255,255,255,0.65);
  --text-quaternary: rgba(255,255,255,0.38);
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.11);
  background: #131020;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 20px;
  padding: 28px 36px 32px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.09),
    0 32px 80px rgba(0,0,0,0.28),
    0 8px 24px rgba(0,0,0,0.18),
    0 0 0 1px rgba(255,255,255,0.05);
}
.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, rgba(200,16,106,0.7) 15%, var(--accent) 45%, rgba(200,16,106,0.55) 75%, transparent 100%);
  box-shadow: 0 0 12px rgba(200,16,106,0.5);
}

.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-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-select option {
  background: #1a1a20;
  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 4px 20px -4px rgba(200,16,106,0.45);
}
.form-submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px -4px rgba(200,16,106,0.55);
}
.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) {
  .nav-links { display: none; }

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

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

  /* 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; aspect-ratio: 16 / 9; }
  .detect-card-flank { grid-column: span 6; aspect-ratio: 4 / 3; }
  .detect-card-bottom { grid-column: span 6; aspect-ratio: 4 / 3; }

  /* 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 */
  .founders-grid { grid-template-columns: repeat(2, 1fr); max-width: 700px; }
  .founder-card:last-child { grid-column: span 2; max-width: 340px; margin: 0 auto; }

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

/* Mobile — 720px */
@media (max-width: 720px) {
  /* Nav */
  .nav-cta .nav-link-ghost { display: none; }
  .nav-inner { padding: 0 20px; }

  /* Hero */
  .hero { padding: 72px 0 48px; }
  .hero-inner { padding: 0 20px; }
  .hero-headline { font-size: clamp(28px, 8vw, 44px); text-align: left; }
  .hero-sub { font-size: 16px; text-align: left; }
  .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: 40px; 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 */
  .usecases { padding: 64px 20px; }
  .detect-grid { padding: 0; gap: 6px; }
  .detect-card-hero { grid-column: span 12; aspect-ratio: 16 / 9; }
  .detect-card-flank { grid-column: span 12; aspect-ratio: 16 / 9; }
  .detect-card-bottom { grid-column: span 6; aspect-ratio: 4 / 3; }
  .detect-label { font-size: 14px; }
  .detect-card-bottom .detect-label { font-size: 12px; }

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

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

  /* Showcase */
  .showcase { padding: 64px 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: 64px 20px; }
  .founders-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .founder-card:last-child { grid-column: span 1; max-width: 100%; }

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

  /* Final CTA */
  .final-cta { padding: 72px 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; }
}
