/* ============================================================
   AgentWatch — Sci-Fi / Neon / Mission Control Theme
   ============================================================ */

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

:root {
  /* Core palette */
  --bg:        #060d1a;
  --bg-alt:    #081020;
  --bg-card:   #0b1525;
  --bg-card-2: #0e1d35;
  --fg:        #ddeeff;
  --fg-muted:  #4d7a9e;
  --fg-dim:    #1e3550;

  /* Neon cyan accents */
  --cyan:      #00f0ff;
  --cyan-dim:  #009bb5;
  --cyan-glow: rgba(0, 240, 255, 0.18);
  --cyan-glow-2: rgba(0, 240, 255, 0.06);
  --cyan-border: rgba(0, 240, 255, 0.22);

  /* Secondary colors */
  --green:  #00ff88;
  --red:    #ff4060;
  --amber:  #ffb020;
  --purple: #a855f7;

  /* Panel / surface */
  --panel:  #0a1422;
  --panel-border: rgba(0, 240, 255, 0.12);

  /* Border radius */
  --radius: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
}

/* ===== BASE ===== */
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== GLOBAL GRID BACKGROUND ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,240,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,240,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--cyan-border); border-radius: 3px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  background: rgba(6, 13, 26, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--cyan-border);
  box-shadow: 0 0 30px rgba(0,240,255,0.04);
}

/* Left: logo block */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Glowing play-icon logo */
.nav-logo {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--bg-card);
  border: 1px solid var(--cyan-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 12px;
  box-shadow:
    0 0 8px var(--cyan-glow),
    inset 0 0 8px var(--cyan-glow-2);
  text-shadow: 0 0 8px var(--cyan);
  /* scanline effect inside logo */
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,240,255,0.05) 3px,
    rgba(0,240,255,0.05) 4px
  );
}

.nav-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg);
}

.nav-tagline {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan-dim);
  font-family: 'IBM Plex Mono', monospace;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 100px 48px 80px;
  position: relative;
  overflow: hidden;
}

/* Background image with cyan overlay */
.hero::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  background-image: url('https://pub-629428d185ca4960a0a73c850d32294b.r2.dev/generated-images/company_174102/c32d9388-6812-42e9-aadf-0a6c34703d4a.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
  border-left: 1px solid var(--cyan-border);
}

.hero::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  background: linear-gradient(
    to right,
    rgba(6,13,26,0.92) 0%,
    rgba(6,13,26,0.75) 50%,
    rgba(6,13,26,0.5) 100%
  ),
  linear-gradient(
    to bottom,
    rgba(0,240,255,0.08) 0%,
    transparent 40%
  ),
  linear-gradient(
    to top,
    rgba(0,240,255,0.05) 0%,
    transparent 30%
  );
  border-left: 1px solid var(--cyan-border);
  z-index: 1;
}

/* Animated scan line */
.scan-line {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(0,240,255,0.4) 30%,
    rgba(0,240,255,0.8) 50%,
    rgba(0,240,255,0.4) 70%,
    transparent 100%
  );
  z-index: 1;
  animation: scan-down 6s linear infinite;
  pointer-events: none;
}

@keyframes scan-down {
  0%   { top: 64px; opacity: 0; }
  5%   { opacity: 1; }
  95%  { opacity: 1; }
  100% { top: 100vh; opacity: 0; }
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,240,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,240,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 28px;
  font-family: 'IBM Plex Mono', monospace;
}

.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan), 0 0 20px rgba(0,240,255,0.4);
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-accent { color: var(--cyan); text-shadow: 0 0 20px rgba(0,240,255,0.5); }

.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 36px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  font-size: 10px;
  font-weight: 500;
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid var(--cyan-border);
  border-radius: var(--radius);
  padding: 5px 12px;
  background: var(--cyan-glow);
  box-shadow: 0 0 12px rgba(0,240,255,0.08), inset 0 0 12px rgba(0,240,255,0.03);
}

/* ===== TRACE WIDGET (hero visual) ===== */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
}

.trace-widget {
  background: rgba(10, 20, 34, 0.9);
  border: 1px solid var(--cyan-border);
  border-radius: var(--radius-md);
  padding: 24px;
  min-width: 340px;
  backdrop-filter: blur(12px);
  box-shadow:
    0 0 0 1px rgba(0,240,255,0.05),
    0 0 30px rgba(0,240,255,0.06),
    inset 0 1px 0 rgba(0,240,255,0.1);
  /* holographic corner */
  position: relative;
}

.trace-widget::before {
  content: '';
  position: absolute;
  top: -1px; right: -1px;
  width: 40px; height: 40px;
  border-top: 2px solid var(--cyan);
  border-right: 2px solid var(--cyan);
  border-radius: 0 var(--radius-md) 0 0;
  box-shadow: 2px -2px 10px rgba(0,240,255,0.3);
}

.trace-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--cyan-border);
}

.trace-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
}

.trace-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--green);
  font-weight: 500;
  font-family: 'IBM Plex Mono', monospace;
}

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

.trace-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.trace-step {
  display: grid;
  grid-template-columns: 16px 1fr auto;
  align-items: center;
  gap: 12px;
}

.step-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--fg-dim);
  display: block;
  border: 1px solid var(--cyan-border);
}

.trace-step.done .step-dot {
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 6px var(--cyan-glow);
}
.trace-step.active .step-dot {
  background: var(--cyan-dim);
  border-color: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

.pulse {
  animation: pulse-ring 1.5s ease-out infinite;
}

@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(0,240,255,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(0,240,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,240,255,0); }
}

.step-label {
  font-size: 13px;
  font-weight: 500;
}

.trace-step.done .step-label { color: var(--fg-muted); }
.trace-step.active .step-label { color: var(--cyan); text-shadow: 0 0 8px rgba(0,240,255,0.4); }
.trace-step.pending .step-label { color: var(--fg-dim); }

.step-time {
  font-size: 11px;
  font-family: 'IBM Plex Mono', monospace;
  color: var(--fg-muted);
}

.trace-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--cyan-border);
}

.metric { text-align: center; }

.metric-val {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 2px;
  text-shadow: 0 0 10px rgba(0,240,255,0.3);
}

.metric-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-family: 'IBM Plex Mono', monospace;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats {
  border-top: 1px solid var(--cyan-border);
  border-bottom: 1px solid var(--cyan-border);
  padding: 48px;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(0,240,255,0.03) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.stats-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item { padding: 0 32px; }

.stat-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--cyan);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  text-shadow: 0 0 15px rgba(0,240,255,0.3);
}

.stat-desc {
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 400;
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--cyan-border),
    transparent
  );
}

/* ============================================================
   FEATURE SECTIONS (Observability / Compliance / Cost)
   ============================================================ */
.feature-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 48px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.alt-bg {
  background: var(--bg-alt);
}

.feature-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
  font-family: 'IBM Plex Mono', monospace;
}

.feature-heading {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.feature-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list li {
  font-size: 14px;
  color: var(--fg);
  padding-left: 20px;
  position: relative;
  font-weight: 400;
}

.feature-list li::before {
  content: '>';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-family: 'IBM Plex Mono', monospace;
}

/* ===== TRACE PANEL (Observability) ===== */
.trace-panel {
  background: var(--panel);
  border: 1px solid var(--cyan-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,240,255,0.05);
}

.panel-head {
  padding: 12px 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan-dim);
  background: rgba(0,240,255,0.04);
  border-bottom: 1px solid var(--cyan-border);
  font-family: 'IBM Plex Mono', monospace;
}

.trace-timeline { padding: 18px 20px 10px; }

.tl-bar {
  display: flex;
  height: 5px;
  border-radius: 3px;
  overflow: hidden;
  gap: 2px;
  margin-bottom: 8px;
}

.tl-seg {
  background: rgba(0,240,255,0.12);
  border-radius: 2px;
}

.tl-seg.primary { background: var(--cyan-dim); }
.tl-seg.accent  { background: var(--cyan); box-shadow: 0 0 4px var(--cyan); }

.tl-labels {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: var(--fg-muted);
  font-family: 'IBM Plex Mono', monospace;
}

.panel-logs {
  padding: 0 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.log-row {
  display: flex;
  gap: 12px;
  font-size: 11px;
  font-family: 'IBM Plex Mono', monospace;
  padding: 8px 10px;
  background: rgba(0,240,255,0.02);
  border-radius: var(--radius);
  border: 1px solid rgba(0,240,255,0.06);
}

.log-row.warn {
  background: rgba(255,64,96,0.06);
  border-color: rgba(255,64,96,0.12);
}

.log-time {
  color: var(--fg-muted);
  flex-shrink: 0;
  font-size: 9px;
}

.log-event { color: var(--fg); }
.log-row.warn .log-event { color: var(--red); }

/* ===== AUDIT PANEL (Compliance) ===== */
.audit-panel {
  background: var(--panel);
  border: 1px solid var(--cyan-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,240,255,0.05);
}

.audit-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan-dim);
  background: rgba(0,240,255,0.04);
  border-bottom: 1px solid var(--cyan-border);
  font-family: 'IBM Plex Mono', monospace;
}

.audit-count {
  font-family: 'IBM Plex Mono', monospace;
  color: var(--cyan);
}

.audit-entries {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.audit-entry {
  padding: 12px 14px;
  background: rgba(0,240,255,0.02);
  border-radius: var(--radius);
  border: 1px solid var(--cyan-border);
  border-left: 2px solid var(--cyan-dim);
}

.audit-entry:has(.atag.red)   { border-left-color: var(--red); }
.audit-entry:has(.atag.green) { border-left-color: var(--green); }
.audit-entry:has(.atag.amber) { border-left-color: var(--amber); }

.audit-date {
  font-size: 10px;
  font-family: 'IBM Plex Mono', monospace;
  color: var(--fg-muted);
  margin-bottom: 4px;
}

.audit-desc {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.5;
  margin-bottom: 8px;
}

.audit-desc strong { color: var(--fg); }

.audit-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.atag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 3px;
  background: rgba(0,240,255,0.08);
  color: var(--fg-muted);
  border: 1px solid rgba(0,240,255,0.12);
}

.atag.green { background: rgba(0,255,136,0.1); color: var(--green); border-color: rgba(0,255,136,0.2); }
.atag.red   { background: rgba(255,64,96,0.1); color: var(--red);   border-color: rgba(255,64,96,0.2); }
.atag.amber { background: rgba(255,176,32,0.1); color: var(--amber);  border-color: rgba(255,176,32,0.2); }
.atag.blue  { background: rgba(0,240,255,0.08); color: var(--cyan);   border-color: rgba(0,240,255,0.2); }

/* ===== COST PANEL ===== */
.cost-panel {
  background: var(--panel);
  border: 1px solid var(--cyan-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,240,255,0.05);
}

.cost-head {
  padding: 12px 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan-dim);
  background: rgba(0,240,255,0.04);
  border-bottom: 1px solid var(--cyan-border);
  font-family: 'IBM Plex Mono', monospace;
}

.cost-bars {
  padding: 20px 20px 12px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cost-row {
  display: grid;
  grid-template-columns: 130px 1fr 64px;
  align-items: center;
  gap: 14px;
}

.cost-agent {
  font-size: 11px;
  font-family: 'IBM Plex Mono', monospace;
  color: var(--fg-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cost-bar-wrap {
  height: 4px;
  background: rgba(0,240,255,0.06);
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(0,240,255,0.1);
}

.cost-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--cyan-dim), var(--cyan));
  border-radius: 3px;
  box-shadow: 0 0 6px rgba(0,240,255,0.3);
}

.cost-val {
  font-size: 12px;
  font-weight: 600;
  font-family: 'IBM Plex Mono', monospace;
  color: var(--cyan);
  text-align: right;
}

.cost-total {
  padding: 14px 20px;
  border-top: 1px solid var(--cyan-border);
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 12px;
  color: var(--fg-muted);
}

.total-val {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--cyan);
  text-shadow: 0 0 12px rgba(0,240,255,0.4);
}

.total-limit { font-size: 11px; }

.cost-alert {
  margin: 0 20px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255,176,32,0.06);
  border: 1px solid rgba(255,176,32,0.2);
  border-radius: var(--radius);
  font-size: 12px;
  color: var(--fg-muted);
}

.alert-icon {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--amber);
  color: #000;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ============================================================
   CLOSING SECTION
   ============================================================ */
.closing {
  padding: 100px 48px;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(0,240,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.closing::after {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--cyan-border));
}

.closing-inner { position: relative; z-index: 1; }

.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.closing-accent {
  color: var(--cyan);
  text-shadow: 0 0 20px rgba(0,240,255,0.4);
}

.closing-sub {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 48px;
}

.closing-pillars {
  display: flex;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid var(--cyan-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--panel);
  box-shadow: 0 0 20px rgba(0,240,255,0.05);
}

.pillar {
  flex: 1;
  padding: 24px 20px;
  font-size: 13px;
  color: var(--fg-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border-right: 1px solid var(--cyan-border);
}

.pillar:last-child { border-right: none; }

.pillar strong { color: var(--cyan); text-shadow: 0 0 8px rgba(0,240,255,0.3); }

.pillar-icon {
  font-size: 8px;
  color: var(--cyan);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--cyan-border);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 1;
  background: rgba(6,13,26,0.8);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-tag {
  font-size: 12px;
  color: var(--fg-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-family: 'IBM Plex Mono', monospace;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 100px;
  }
  .hero-visual { display: none; }
  .hero::after, .hero::before { display: none; }

  .feature-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .stat-divider { display: none; }

  .closing-pillars { flex-direction: column; }

  .nav { padding: 0 24px; }
  .footer { padding: 32px 24px; }

  .stats, .feature-section, .closing {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 500px) {
  .stats-row { grid-template-columns: 1fr; }
}