/* Variables */
:root {
  --bg: #0d0d0d;
  --bg-2: #111111;
  --bg-3: #161616;
  --fg: #f0ece4;
  --fg-muted: #8a847c;
  --accent: #f5a623;
  --accent-dim: #c4861c;
  --border: #222222;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-left: 4px;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(245,166,35,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-lede {
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 480px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  width: fit-content;
}
.stat {
  padding: 20px 32px;
  text-align: center;
}
.stat-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* Hero visual */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 420px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  overflow: hidden;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(245,166,35,0.08) 0%, transparent 70%);
}
.visual-grid {
  position: relative;
  width: 240px;
  height: 240px;
  margin-bottom: 32px;
}
.grid-line-h {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.6;
}
.grid-line-h.grid-line-1 { top: 25%; }
.grid-line-h.grid-line-2 { top: 50%; }
.grid-line-h.grid-line-3 { top: 75%; }
.grid-line-v {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--accent), transparent);
  opacity: 0.6;
}
.grid-line-v.grid-line-1 { left: 25%; }
.grid-line-v.grid-line-2 { left: 50%; }
.grid-line-v.grid-line-3 { left: 75%; }
.grid-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(245,166,35,0.6);
}
.dot-1 { top: 25%; left: 25%; }
.dot-2 { top: 50%; left: 50%; transform: translate(-50%, -50%); }
.dot-3 { top: 75%; left: 75%; }
.dot-4 { top: 25%; left: 75%; }
.dot-5 { top: 75%; left: 25%; }
.dot-6 { top: 50%; left: 25%; transform: translateY(-50%); }
.visual-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  position: relative;
}
.visual-sublabel {
  font-size: 12px;
  color: var(--fg-muted);
  text-align: center;
  line-height: 1.5;
  position: relative;
}

/* Sections shared */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 64px;
}

/* Pipeline */
.pipeline {
  padding: 100px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pipeline-chain {
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 8px;
}
.pipeline-node {
  flex: 0 0 200px;
  padding: 28px 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-right: 0;
}
.node-number {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.node-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--fg);
  margin-bottom: 10px;
}
.node-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.pipeline-arrow {
  display: flex;
  align-items: center;
  padding: 0 16px;
  flex: 0 0 auto;
  padding-top: 36px;
}

/* Divisions */
.divisions {
  padding: 100px 0;
}
.division-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.division-card {
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-2);
}
.division-a { border-top: 2px solid var(--accent); }
.division-b { border-top: 2px solid #8b5cf6; }
.division-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.division-a .division-tag { color: var(--accent); }
.division-b .division-tag { color: #a78bfa; }
.division-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--fg);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.division-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.division-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.division-features li {
  font-size: 13px;
  color: var(--fg-muted);
  padding-left: 18px;
  position: relative;
}
.division-a .division-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.division-b .division-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8b5cf6;
}

/* Moat */
.moat {
  padding: 100px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.moat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
}
.moat-item {}
.moat-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.moat-item h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--fg);
  margin-bottom: 10px;
}
.moat-item p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Closing */
.closing {
  padding: 120px 0;
}
.closing-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.closing-statement {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.6;
  color: var(--fg-muted);
  letter-spacing: -0.01em;
}

/* Footer */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--fg);
}
.footer-meta {
  font-size: 13px;
  color: var(--fg-muted);
}

/* ============================================
   PIPELINE DEMO — Live animated pipeline
   ============================================ */

.pdemo-section {
  padding: 100px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.pdemo-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(245,166,35,0.03) 0%, transparent 70%);
  pointer-events: none;
}
.pdemo-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border: 1px solid rgba(239,68,68,0.4);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #ef4444;
  text-transform: uppercase;
}
.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef4444;
  animation: pulse-red 1.4s ease-in-out infinite;
}
@keyframes pulse-red {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}
.pdemo-counters {
  display: flex;
  gap: 24px;
}
.counter-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.counter-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--fg);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  min-width: 60px;
}
.counter-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
}
.counter-val.accent { color: var(--accent); }
.counter-val.green { color: #22c55e; }

/* Agent pipeline row */
.agent-row {
  display: grid;
  grid-template-columns: 220px repeat(5, 1fr);
  align-items: center;
  gap: 0;
  margin: 40px 0 48px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.agent-label {
  padding: 24px 20px;
  border-right: 1px solid var(--border);
  background: var(--bg-3);
}
.agent-label-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--fg);
  margin-bottom: 4px;
  line-height: 1.3;
}
.agent-label-role {
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.03em;
}
.agent-cell {
  padding: 20px 16px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 100px;
  position: relative;
}
.agent-cell:last-child { border-right: none; }
.cell-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-display);
}
.icon-discovery { background: rgba(245,166,35,0.15); color: var(--accent); }
.icon-scout { background: rgba(168,85,247,0.15); color: #a855f7; }
.icon-architect { background: rgba(59,130,246,0.15); color: #60a5fa; }
.icon-guardrail { background: rgba(34,197,94,0.15); color: #22c55e; }
.icon-distribution { background: rgba(239,68,68,0.15); color: #f87171; }

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.spin-icon { animation: spin-slow 2.5s linear infinite; }
.cell-status {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--fg-muted);
  text-align: center;
}
.cell-status.active { color: #22c55e; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.blinking { animation: blink 1.2s ease-in-out infinite; }
.cell-number {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}
.cell-number.green { color: #22c55e; }

/* Clip birth animation */
.clip-birth {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.clip-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.step-box {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  border: 1px solid var(--border);
  background: var(--bg-2);
  position: relative;
}
@keyframes clip-progress {
  0% { box-shadow: 0 0 0 0 rgba(245,166,35,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(245,166,35,0); }
  100% { box-shadow: 0 0 0 0 rgba(245,166,35,0); }
}
.step-box.active {
  border-color: var(--accent);
  animation: clip-progress 1.5s ease-in-out infinite;
}
.step-label {
  font-size: 11px;
  color: var(--fg-muted);
  text-align: center;
  line-height: 1.4;
}
.step-label.active { color: var(--accent); font-weight: 600; }
.step-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
}
@keyframes pop-in {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}
.pop-in { animation: pop-in 0.4s ease-out forwards; }

.step-connector {
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

/* ============================================
   DIVISION SHOWROOM
   ============================================ */

.showroom {
  padding: 100px 0;
}
.showroom-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}
.showroom-toggle {
  display: flex;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.toggle-btn {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-display);
  border: none;
  background: transparent;
  color: var(--fg-muted);
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.toggle-btn.active {
  background: var(--accent);
  color: #000;
}
.showroom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.showroom-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-2);
}
.showroom-card-img {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  display: block;
}
.showroom-card-body {
  padding: 28px;
}
.showroom-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.card-streamers .showroom-tag { color: var(--accent); }
.card-truecrime .showroom-tag { color: #a78bfa; }
.showroom-caption {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--fg);
  margin-bottom: 12px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.showroom-meta {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.showroom-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill {
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.pill-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.card-truecrime .pill-dot { background: #a78bfa; }

/* ============================================
   PIPELINE BREAKDOWN
   ============================================ */

.pbreakdown {
  padding: 100px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.breakdown-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 64px;
}
.breakdown-card {
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.2s;
}
.breakdown-card:hover { border-color: var(--accent); }
.bcard-top {}
.bcard-num {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 10px;
}
.bcard-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--fg);
  margin-bottom: 8px;
  line-height: 1.3;
}
.bcard-role {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.bcard-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.bcard-icon.d1 { background: rgba(245,166,35,0.12); }
.bcard-icon.d2 { background: rgba(168,85,247,0.12); }
.bcard-icon.d3 { background: rgba(59,130,246,0.12); }
.bcard-icon.d4 { background: rgba(34,197,94,0.12); }
.bcard-icon.d5 { background: rgba(239,68,68,0.12); }

/* ============================================
   STATS BAR
   ============================================ */

.statsbar {
  padding: 64px 0;
  background: var(--bg);
}
.statsbar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.stat-item {
  padding: 40px 32px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-big {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  color: var(--accent);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.stat-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(245,166,35,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.cta-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}
.cta-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 48px;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--accent);
  color: #000;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--accent-dim); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s;
}
.btn-secondary:hover { border-color: var(--accent); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .division-grid { grid-template-columns: 1fr; }
  .moat-grid { grid-template-columns: 1fr; gap: 40px; }
  .pipeline-chain { flex-direction: column; gap: 12px; }
  .pipeline-arrow { display: none; }
  .navbar, .section-inner, .footer { padding-left: 24px; padding-right: 24px; }
  .hero { padding: 100px 24px 60px; }
  .agent-row { grid-template-columns: 1fr; }
  .agent-label { border-right: none; border-bottom: 1px solid var(--border); }
  .agent-cell { border-right: none; border-bottom: 1px solid var(--border); min-height: 80px; flex-direction: row; }
  .clip-birth { grid-template-columns: repeat(2, 1fr); gap: 24px; padding: 24px; }
  .breakdown-grid { grid-template-columns: 1fr 1fr; }
  .statsbar-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .showroom-header { flex-direction: column; align-items: flex-start; }
  .showroom-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero-stats { flex-direction: column; }
  .stat-divider { width: 100%; height: 1px; }
  .breakdown-grid { grid-template-columns: 1fr; }
  .statsbar-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .pdemo-counters { flex-wrap: wrap; gap: 16px; }
  .cta-btns { flex-direction: column; align-items: center; }
}
