/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0D1B2A;
  --navy-mid: #162236;
  --navy-light: #1E3A5F;
  --gold: #E8A838;
  --gold-dim: rgba(232,168,56,0.15);
  --cream: #F8F7F4;
  --cream-warm: #F0EDE6;
  --text: #E8E4DC;
  --text-muted: #8A9BB5;
  --green: #4ADE80;
  --green-dim: rgba(74,222,128,0.12);
  --amber: #FBBF24;
  --blue-accent: #6DB3F2;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;
  --space-3xl: 128px;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--gold);
  color: var(--navy);
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,27,42,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0 var(--space-lg);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--cream); }

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  transition: opacity 0.2s !important;
}

.nav-cta:hover { opacity: 0.85; }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--space-3xl) var(--space-lg) var(--space-2xl);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(232,168,56,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,58,95,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,58,95,0.3) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  padding-top: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-dim);
  border: 1px solid rgba(232,168,56,0.25);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-lg);
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #f5b84a;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(232,168,56,0.3);
}

.btn-primary.btn-large {
  padding: 16px 36px;
  font-size: 1.0625rem;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 13px 22px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-muted);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.2s;
}

.btn-ghost:hover {
  color: var(--cream);
  border-color: rgba(255,255,255,0.2);
}

/* === DASHBOARD CARD === */
.dashboard-card {
  background: var(--navy-mid);
  border: 1px solid rgba(30,58,95,0.8);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow:
    0 0 0 1px rgba(232,168,56,0.08),
    0 24px 64px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}

.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-sm);
}

.dash-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.dash-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.08em;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: live-pulse 1.5s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.4); }
  50% { box-shadow: 0 0 0 5px rgba(74,222,128,0); }
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
}

.stat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 10px 12px;
}

.stat-label {
  font-size: 0.6875rem;
  color: var(--text-muted);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--cream);
  font-variant-numeric: tabular-nums;
}

.stat-value.accent { color: var(--gold); }
.stat-value.green { color: var(--green); }

.dash-rows {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: var(--space-sm);
}

.dash-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: 6px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
}

.row-name {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}

.row-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.badge {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 7px;
  border-radius: 4px;
}

.badge.recovery {
  background: rgba(232,168,56,0.15);
  color: var(--gold);
}

.badge.collected {
  background: var(--green-dim);
  color: var(--green);
}

.badge.new {
  background: rgba(109,179,242,0.15);
  color: var(--blue-accent);
}

.row-amount {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cream);
  font-variant-numeric: tabular-nums;
}

.dash-chart {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 12px;
}

.chart-label {
  font-size: 0.6875rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
  margin-bottom: 6px;
}

.bar-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  height: 100%;
  justify-content: flex-end;
}

.bar {
  width: 100%;
  background: linear-gradient(to top, rgba(232,168,56,0.5), rgba(232,168,56,0.2));
  border-radius: 3px 3px 0 0;
  transition: height 0.4s ease;
}

.bar.active {
  background: linear-gradient(to top, var(--gold), rgba(232,168,56,0.4));
  box-shadow: 0 0 12px rgba(232,168,56,0.3);
}

.bar-label {
  font-size: 0.5625rem;
  color: var(--text-muted);
}

.chart-pct {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--green);
  margin-top: 4px;
}

/* === PROOF STRIP === */
.proof-strip {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: var(--space-xl) var(--space-lg);
}

.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.proof-stat {
  flex: 1;
  text-align: center;
}

.proof-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.proof-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.proof-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.08);
}

/* === SHARED SECTION STYLES === */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 560px;
}

/* === FEATURES === */
.features {
  padding: var(--space-3xl) var(--space-lg);
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.feature-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: rgba(232,168,56,0.2);
  transform: translateY(-2px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === ROUTING === */
.routing {
  padding: var(--space-3xl) var(--space-lg);
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.routing-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.routing-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
  margin: var(--space-xl) 0;
  position: relative;
}

.routing-step {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  position: relative;
}

.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(232,168,56,0.2);
  line-height: 1;
  margin-bottom: 4px;
}

.step-body h4 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 6px;
}

.step-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.step-connector {
  position: absolute;
  top: 28px;
  right: -16px;
  width: 32px;
  height: 1px;
  background: linear-gradient(to right, rgba(232,168,56,0.3), rgba(232,168,56,0));
}

/* Routing demo card */
.routing-demo {
  margin-top: var(--space-xl);
}

.demo-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.demo-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  background: var(--navy);
  border: 1px solid rgba(232,168,56,0.15);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.demo-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.match-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.8125rem;
}

.match-row:last-child { border-bottom: none; }

.match-tag {
  color: var(--text-muted);
  font-size: 0.8125rem;
}

.match-val {
  color: var(--cream);
  font-weight: 500;
  font-size: 0.8125rem;
}

.match-row.highlight .match-tag,
.match-row.highlight .match-val {
  color: var(--gold);
  font-weight: 600;
}

.demo-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: rgba(232,168,56,0.05);
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(232,168,56,0.2);
}

.pending-badge {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold);
  text-align: center;
}

.demo-actions {
  display: flex;
  gap: 8px;
}

.btn-approve {
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 6px;
  padding: 9px 18px;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-approve:hover { opacity: 0.85; }

.btn-reroute {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 9px 18px;
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s;
}

.btn-reroute:hover { color: var(--cream); }

/* === GLOBAL === */
.global {
  padding: var(--space-3xl) var(--space-lg);
}

.global-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.world-map {
  width: 100%;
  height: auto;
}

.country-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--space-lg);
}

.chip {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  transition: all 0.2s;
}

.chip:hover {
  border-color: rgba(232,168,56,0.3);
  color: var(--cream);
}

/* === INDUSTRIES === */
.works {
  padding: var(--space-3xl) var(--space-lg);
  background: var(--cream);
}

.works-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.works .section-label {
  color: #8B5E3C;
}

.works .section-headline {
  color: var(--navy);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin: var(--space-xl) 0 var(--space-md);
}

.industry-card {
  background: white;
  border: 1px solid rgba(13,27,42,0.08);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(13,27,42,0.06);
}

.industry-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,27,42,0.12);
  border-color: rgba(232,168,56,0.3);
}

.ind-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.industry-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 6px;
}

.industry-card p {
  font-size: 0.875rem;
  color: #6B7280;
  line-height: 1.5;
}

.industries-link {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #8B5E3C;
  text-decoration: none;
  transition: color 0.2s;
}

.industries-link:hover { color: var(--navy); }

/* === TESTIMONIAL === */
.testimonial {
  padding: var(--space-3xl) var(--space-lg);
  background: var(--navy);
  text-align: center;
}

.testimonial-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.quote-mark {
  margin-bottom: var(--space-lg);
}

.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: var(--space-lg);
}

.quote-attr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.attr-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
}

.attr-role {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* === CLOSING === */
.closing {
  padding: var(--space-3xl) var(--space-lg);
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,168,56,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,168,56,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.closing-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.closing-sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-xl);
}

.closing-cta {
  margin-bottom: var(--space-md);
}

.closing-note {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* === FOOTER === */
.footer {
  background: #080F18;
  padding: var(--space-2xl) var(--space-lg) var(--space-lg);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: var(--space-lg);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 220px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.link-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.link-col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.link-col a:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: var(--space-md);
}

.footer-legal a {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover { color: var(--cream); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: var(--space-xl); padding-top: 100px; }
  .hero-visual { order: -1; }
  .hero-headline { font-size: clamp(1.75rem, 6vw, 2.5rem); }

  .features-grid { grid-template-columns: 1fr; }
  .routing-flow { grid-template-columns: repeat(2, 1fr); }
  .step-connector { display: none; }

  .global-inner { grid-template-columns: 1fr; }
  .world-map { max-height: 280px; }

  .industries-grid { grid-template-columns: repeat(2, 1fr); }

  .proof-inner { flex-direction: column; gap: var(--space-lg); }
  .proof-divider { width: 60px; height: 1px; }

  .footer-top { grid-template-columns: 1fr; gap: var(--space-xl); }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 12px; }
}

@media (max-width: 600px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .hero { padding: 80px var(--space-sm) var(--space-xl); }
  .dash-stats { grid-template-columns: 1fr 1fr; }
  .dash-stats > :last-child { grid-column: span 2; }
  .routing-flow { grid-template-columns: 1fr; }
  .demo-card { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .closing-cta .btn-primary { width: 100%; justify-content: center; }
}