:root {
  --bg-deep: #020617;
  --bg-panel: #0a1428;
  --bg-panel-2: #0d1a33;
  --blue-700: #2563eb;
  --blue-400: #38bdf8;
  --blue-200: #bae6fd;
  --ink-0: #f5f9ff;
  --ink-1: #cbd7ec;
  --ink-2: #8ea0c2;
  --ink-3: #5c6b8a;
  --border-glow: rgba(56, 189, 248, 0.25);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-glow: 0 0 60px rgba(37, 99, 235, 0.25);
  --font-head: 'Space Grotesk', 'Manrope', sans-serif;
  --font-body: 'Manrope', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg-deep);
  color: var(--ink-1);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink-0);
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--blue-700);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 8px 0;
  z-index: 1000;
}
.skip-link:focus {
  left: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--blue-400);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 999px;
  padding: 13px 26px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn-solid {
  background: linear-gradient(135deg, var(--blue-700), #1d4ed8);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}
.btn-solid:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(37, 99, 235, 0.5); }
.btn-outline {
  background: rgba(255,255,255,0.02);
  color: var(--ink-0);
  border-color: rgba(148, 178, 220, 0.35);
}
.btn-outline:hover { border-color: var(--blue-400); background: rgba(56,189,248,0.08); transform: translateY(-2px); }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(2, 6, 23, 0.75);
  border-bottom: 1px solid rgba(56, 189, 248, 0.12);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink-0);
}
.brand-word span { color: var(--blue-400); }
.main-nav {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-2);
  transition: color 0.15s ease;
}
.main-nav a:hover { color: var(--blue-400); }
.header-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(148,178,220,0.3);
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink-0);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue-400);
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-400);
  box-shadow: 0 0 10px var(--blue-400);
}
.eyebrow-light { background: rgba(37,99,235,0.08); }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 15%, rgba(37, 99, 235, 0.35), transparent 45%),
    radial-gradient(circle at 15% 85%, rgba(56, 189, 248, 0.18), transparent 40%),
    linear-gradient(180deg, var(--bg-deep) 0%, #050b1c 100%);
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  font-weight: 700;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.08rem;
  color: var(--ink-1);
  max-width: 560px;
  margin-bottom: 32px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.trusted-row p {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  margin-bottom: 14px;
}
.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
}
.logo-row li {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-2);
  opacity: 0.85;
}

.hero-visual {
  position: relative;
  min-height: 480px;
}
.hero-photo-frame {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glow);
  box-shadow: var(--shadow-glow);
}
.hero-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,12,26,0.25) 0%, rgba(6,12,26,0.88) 100%),
    radial-gradient(circle at 50% 30%, rgba(37,99,235,0.3), transparent 65%);
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.constellation-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  filter: drop-shadow(0 0 30px rgba(37, 99, 235, 0.35));
}
.node-blink {
  animation: blink 2.4s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.pulse-line {
  stroke-dasharray: 6 10;
  animation: dash 3s linear infinite;
}
@keyframes dash {
  to { stroke-dashoffset: -160; }
}

.glass-card {
  position: absolute;
  background: rgba(10, 20, 40, 0.6);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-glow);
  width: 200px;
}
.stat-card-map { top: 6%; right: -2%; }
.stat-card-chart { bottom: 4%; left: -4%; }
.stat-card-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.stat-card-value {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink-0);
  margin: 10px 0 0;
}
.mini-map, .mini-chart { width: 100%; height: auto; }

/* Stats panel */
.stats-panel-section { padding: 0 0 100px; }
.glass-panel {
  background: linear-gradient(180deg, var(--bg-panel) 0%, var(--bg-panel-2) 100%);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-glow);
}
.panel-head { margin-bottom: 36px; }
.panel-head h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin-bottom: 8px; }
.panel-head p { color: var(--ink-2); margin: 0; }

.tile-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.stat-tile {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(148,178,220,0.12);
  border-radius: var(--radius-sm);
  padding: 20px 18px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.stat-tile:hover { border-color: var(--border-glow); transform: translateY(-3px); }
.tile-icon { display: inline-block; width: 30px; height: 30px; margin-bottom: 14px; }
.tile-icon svg { width: 100%; height: 100%; }
.tile-value { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--ink-0); margin: 0 0 4px; }
.tile-label { font-size: 0.82rem; color: var(--ink-2); margin: 0; }

.feature-panel {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: center;
  border-top: 1px solid rgba(148,178,220,0.14);
  padding-top: 36px;
}
.feature-panel-text h3 { font-size: 1.4rem; margin-bottom: 12px; }
.feature-panel-text p { color: var(--ink-2); margin: 0; }
.feature-panel-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.big-stat {
  background: rgba(37,99,235,0.08);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-sm);
  padding: 22px 18px;
}
.big-stat-value {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--blue-400);
  margin: 0 0 8px;
}
.big-stat-label { font-size: 0.82rem; color: var(--ink-2); margin: 0; }

/* Section head */
.section-head { max-width: 700px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.section-sub { color: var(--ink-2); font-size: 1.02rem; margin: 0 auto; }

/* Platform blocks */
.platform-section { padding: 40px 0 100px; }
.block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid rgba(148,178,220,0.1);
}
.platform-section .block:last-child { border-bottom: none; }
.block-reverse .block-visual { order: 2; }
.block-reverse .block-copy { order: 1; }

.block-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.block-photo {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glow);
  box-shadow: var(--shadow-glow);
}

.visual-panel {
  background: radial-gradient(circle at 30% 20%, rgba(37,99,235,0.25), transparent 60%), var(--bg-panel);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-glow);
}
.panel-chart { width: 100%; height: auto; }

.chip {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--blue-400);
  background: rgba(37,99,235,0.1);
  border: 1px solid var(--border-glow);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.block-copy h3 { font-size: 1.6rem; margin-bottom: 14px; }
.block-copy p { color: var(--ink-2); }
.check-list { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.94rem;
  color: var(--ink-1);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(56,189,248,0.15);
  border: 1px solid var(--blue-400);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 7px;
  width: 6px;
  height: 3px;
  border-left: 2px solid var(--blue-400);
  border-bottom: 2px solid var(--blue-400);
  transform: rotate(-45deg);
}

/* Case studies */
.case-studies { padding: 0 0 100px; }
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-card {
  background: var(--bg-panel);
  border: 1px solid rgba(148,178,220,0.14);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.case-card:hover { border-color: var(--border-glow); transform: translateY(-4px); }
.case-thumb {
  display: block;
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}
.case-client { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; color: var(--ink-0); margin-bottom: 4px; }
.case-sector { font-size: 0.8rem; color: var(--ink-3); margin-bottom: 16px; }
.case-result {
  display: inline-block;
  font-weight: 700;
  color: var(--blue-400);
  background: rgba(37,99,235,0.1);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
  margin-bottom: 16px;
}
.case-desc { font-size: 0.92rem; color: var(--ink-2); margin: 0; }

/* Pricing */
.pricing { padding: 0 0 100px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  background: var(--bg-panel);
  border: 1px solid rgba(148,178,220,0.14);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-featured {
  border-color: var(--blue-400);
  background: linear-gradient(180deg, rgba(37,99,235,0.12), var(--bg-panel) 60%);
  box-shadow: var(--shadow-glow);
  transform: scale(1.03);
}
.price-badge {
  position: absolute;
  top: -13px;
  left: 32px;
  background: var(--blue-700);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
}
.price-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.price-desc { font-size: 0.88rem; color: var(--ink-2); min-height: 44px; }
.price-value {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--ink-0);
  margin: 8px 0 24px;
}
.price-value span { font-size: 0.95rem; font-weight: 500; color: var(--ink-3); }
.price-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; flex: 1; }
.price-list li {
  font-size: 0.9rem;
  color: var(--ink-1);
  padding-left: 22px;
  position: relative;
}
.price-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue-400);
  font-weight: 700;
}

/* Leadership */
.leadership { padding: 0 0 100px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--bg-panel);
  border: 1px solid rgba(148,178,220,0.14);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.team-card:hover { border-color: var(--border-glow); transform: translateY(-4px); }
.avatar {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink-0);
  background: linear-gradient(135deg, var(--blue-700), #0a1428);
  border: 1px solid var(--border-glow);
}
.team-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.team-role { font-size: 0.82rem; color: var(--blue-400); font-weight: 700; margin-bottom: 14px; }
.team-bio { font-size: 0.86rem; color: var(--ink-2); margin: 0; }

/* Contact */
.contact { padding: 0 0 110px; }
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
}
.contact-details { display: flex; flex-direction: column; gap: 22px; margin-top: 32px; }
.contact-details li { display: flex; align-items: flex-start; gap: 14px; font-size: 0.92rem; }
.contact-icon {
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 10px;
  background: rgba(37,99,235,0.1);
  border: 1px solid var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-details strong { color: var(--ink-0); }
.contact-details a { color: var(--ink-1); }
.contact-details a:hover { color: var(--blue-400); }

.demo-form {
  background: var(--bg-panel);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-glow);
}
.demo-form h3 { font-size: 1.3rem; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-1);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(148,178,220,0.25);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--ink-0);
  font-family: var(--font-body);
  font-size: 0.94rem;
  transition: border-color 0.15s ease;
}
.field textarea { resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue-400);
  outline: none;
}
.field select option { background: var(--bg-panel); color: var(--ink-0); }

.error-msg {
  display: none;
  font-size: 0.8rem;
  color: #fca5a5;
  margin-top: 6px;
}
.field.invalid input,
.field.invalid select,
.field.invalid textarea { border-color: #f87171; }
.field.invalid .error-msg,
.checkbox-row.invalid + .error-msg { display: block; }

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--ink-2);
  margin-bottom: 4px;
  cursor: pointer;
}
.checkbox-row input { margin-top: 3px; accent-color: var(--blue-700); width: 16px; height: 16px; flex: none; }
.demo-form .btn { margin-top: 22px; }

.form-success {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(56,189,248,0.1);
  border: 1px solid var(--blue-400);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin-top: 20px;
}
.form-success svg { flex: none; margin-top: 2px; }
.success-title { font-weight: 700; color: var(--ink-0); margin: 0 0 4px; }
.form-success p:last-child { margin: 0; font-size: 0.9rem; color: var(--ink-2); }

/* Footer */
.site-footer {
  border-top: 1px solid rgba(148,178,220,0.12);
  padding: 64px 0 32px;
  background: #030a1a;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p { color: var(--ink-3); font-size: 0.86rem; margin-top: 14px; }
.footer-col h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-3); margin-bottom: 16px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col a, .footer-col span { font-size: 0.9rem; color: var(--ink-2); }
.footer-col a:hover { color: var(--blue-400); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(148,178,220,0.1);
  font-size: 0.8rem;
  color: var(--ink-3);
}

/* Responsive */
@media (max-width: 1080px) {
  .tile-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-panel { grid-template-columns: 1fr; }
  .feature-panel-stats { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .case-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 380px; margin-top: 24px; }
  .contact-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .site-header .header-inner { position: relative; }
  .main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(2,6,23,0.98);
    border-bottom: 1px solid var(--border-glow);
    padding: 20px 24px;
    gap: 18px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 720px) {
  .block { grid-template-columns: 1fr; gap: 28px; padding: 40px 0; }
  .block-reverse .block-visual { order: 1; }
  .block-reverse .block-copy { order: 2; }
  .case-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .tile-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-panel-stats { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .glass-panel { padding: 28px 20px; }
  .header-actions .btn-outline { display: none; }
}

@media (max-width: 480px) {
  .hero { padding: 64px 0 56px; }
  .hero-copy h1 { font-size: 2rem; }
  .stat-card-map, .stat-card-chart { position: static; width: 100%; margin-top: 16px; }
  .hero-visual { display: flex; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .node-blink, .pulse-line { animation: none; }
}
