:root {
  --bg: #0e0e11;
  --bg-surface: #16161a;
  --bg-card: #1c1c21;
  --fg: #f0ede8;
  --fg-muted: #8a8693;
  --accent: #F5A623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --border: rgba(255,255,255,0.08);
  --font-display: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 8vw;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(245,166,35,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.lede {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 48px;
}

.hero-meta {
  display: flex;
  gap: 40px;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.meta-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}

.meta-label {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* DISPATCH MOCK */
.hero-visual {
  position: relative;
}

.dispatch-mock {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
}

.mock-header {
  background: #111115;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}

.mock-dots {
  display: flex;
  gap: 6px;
}

.mock-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2a2a30;
}

.mock-title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
}

.mock-map {
  position: relative;
  height: 220px;
  background: #0a0a0e;
  overflow: hidden;
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.unit {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.unit-pulse {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(245,166,35,0.25);
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.5); opacity: 0; }
}

.unit-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #000;
  position: relative;
  z-index: 1;
}

.unit-info {
  font-size: 10px;
  color: var(--fg-muted);
  white-space: nowrap;
}

.unit-status {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
}

.unit-1 { top: 30%; left: 25%; }
.unit-1 .unit-status { background: rgba(34,197,94,0.2); color: #22c55e; }

.unit-2 { top: 55%; left: 55%; }
.unit-2 .unit-status { background: rgba(245,166,35,0.2); color: var(--accent); }

.unit-3 { top: 70%; left: 35%; }
.unit-3 .unit-status { background: rgba(59,130,246,0.2); color: #60a5fa; }

.alert-pill {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.4);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 10px;
  font-weight: 600;
  color: #ef4444;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.alert-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef4444;
  animation: blink 1s ease infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.mock-channels {
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ch-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
}

.ch-name { color: var(--fg-muted); flex: 1; }
.ch-live {
  background: rgba(34,197,94,0.15);
  color: #22c55e;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 2px 6px;
  border-radius: 4px;
}
.ch-lat { color: #3a3a44; font-size: 10px; }
.ch-idle { opacity: 0.4; }
.ch-idle-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3a3a44;
}

.mock-footer {
  background: #0a0a0e;
  padding: 10px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: #3a3a44;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* MANIFESTO */
.manifesto {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 8vw;
}

.manifesto-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 60px;
  align-items: start;
}

.manifesto-number {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  padding-top: 8px;
}

.manifesto-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.manifesto-text p {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 680px;
}

.manifesto-text p + p { margin-top: 16px; }

/* HOW IT WORKS */
.how-it-works {
  padding: 100px 8vw;
}

.section-header {
  max-width: 1400px;
  margin: 0 auto 64px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-number {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.workflow {
  max-width: 1400px;
  margin: 0 auto 64px;
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.workflow-step {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}

.step-icon {
  margin-bottom: 20px;
}

.workflow-step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.workflow-step p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

.workflow-arrow {
  padding-top: 40px;
  flex-shrink: 0;
}

.capabilities-row {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cap-item {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 18px;
}

/* OUTCOMES */
.outcomes {
  padding: 100px 8vw;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.outcomes-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.outcome-card {
  padding: 48px 40px;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.outcome-metric {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.outcome-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
  line-height: 1.4;
}

.outcome-note {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* CLOSING */
.closing {
  padding: 120px 8vw;
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.closing-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  line-height: 1.1;
}

.closing-inner p {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
}

.closing-inner p + p { margin-top: 20px; }

/* DISPATCH CONSOLE SECTION */
.dispatch-section {
  padding: 100px 8vw;
}

.dispatch-inner { max-width: 1400px; margin: 0 auto; }

.dispatch-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 60px;
}

.dispatch-headline-block { flex: 1; }

.dispatch-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.1;
}

.dispatch-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Multi-monitor mock */
.dispatch-showcase { margin-bottom: 48px; }

.monitor-row {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 12px;
  margin-bottom: 16px;
}

.monitor-stack { display: flex; flex-direction: column; gap: 12px; }

.monitor-screen {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

.monitor-chrome {
  background: #111115;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}

.monitor-small .monitor-chrome { padding: 8px 14px; }

.screen-body { padding: 14px; }
.alerts-body, .poi-body { padding: 12px 14px; }

/* Dispatch map in monitor */
.dispatch-map {
  position: relative;
  height: 220px;
  background: #0a0a0e;
  overflow: hidden;
  border-radius: 6px;
}

.dispatch-unit {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

.du-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #000;
}

.du-label { font-size: 10px; color: var(--fg-muted); white-space: nowrap; }

.du-status {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 2px 5px;
  border-radius: 3px;
  text-transform: uppercase;
}

.du-1 { top: 28%; left: 18%; }
.du-2 { top: 52%; left: 52%; }
.du-3 { top: 70%; left: 38%; }

.available { background: rgba(34,197,94,0.2); color: #22c55e; }
.busy { background: rgba(245,166,35,0.2); color: var(--accent); }
.scene { background: rgba(59,130,246,0.2); color: #60a5fa; }

/* Geofence rings */
.geofence-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(34,197,94,0.25);
  pointer-events: none;
}

.gf-1 { width: 180px; height: 180px; top: 15%; left: 12%; }
.gf-2 { width: 120px; height: 120px; top: 48%; left: 42%; border-color: rgba(245,166,35,0.25); }

.track-trail {
  position: absolute;
  top: 30%; left: 20%;
  width: 80px;
  height: 60px;
  border-left: 2px dashed rgba(245,166,35,0.3);
  border-bottom: 2px dashed rgba(245,166,35,0.3);
  border-radius: 0 0 0 8px;
}

/* Dispatch tabs */
.dispatch-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.disp-tab {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--fg-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.disp-tab.active { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }

.tab-count {
  background: rgba(34,197,94,0.2);
  color: #22c55e;
  font-size: 9px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 4px;
}

.tab-busy { background: rgba(245,166,35,0.2); color: var(--accent); }
.tab-scene { background: rgba(59,130,246,0.2); color: #60a5fa; }

/* Alert items */
.alert-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  margin-bottom: 8px;
}

.alert-sos { border-color: rgba(239,68,68,0.4); background: rgba(239,68,68,0.08); }
.alert-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 7px;
  border-radius: 4px;
  background: rgba(239,68,68,0.2);
  color: #ef4444;
  flex-shrink: 0;
}

.alert-badge.geo { background: rgba(245,166,35,0.2); color: var(--accent); }
.alert-badge.msg { background: rgba(59,130,246,0.2); color: #60a5fa; }

.alert-content { flex: 1; }
.alert-title { font-size: 11px; font-weight: 600; color: var(--fg); }
.alert-time { font-size: 10px; color: #3a3a44; margin-top: 2px; }

.quick-reply-btn {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  color: var(--fg-muted);
  cursor: pointer;
  flex-shrink: 0;
}

/* POI rows */
.poi-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 11px;
}

.poi-row:last-child { border-bottom: none; }
.poi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}
.poi-blue { background: #60a5fa; }
.poi-red { background: #ef4444; }
.poi-dim { background: #3a3a44; }

.poi-name { color: var(--fg-muted); flex: 1; }
.poi-count { color: #3a3a44; font-size: 10px; }

/* Web badge */
.web-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #22c55e;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 100px;
  padding: 8px 18px;
  margin-bottom: 48px;
}

/* Dispatch callouts */
.dispatch-callouts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.dc-callout {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.dc-icon { flex-shrink: 0; }

.dc-text {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.dc-text strong { color: var(--fg); }

/* LONE WORKER SECTION */
.lone-worker {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 8vw;
}

.lw-inner { max-width: 1400px; margin: 0 auto; }

.lw-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 64px;
}

.lw-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.lw-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 600px;
}

/* SOS flow */
.sos-flow {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 64px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.sos-step {
  flex: 1;
  min-width: 160px;
  text-align: center;
}

.sos-icon-wrap { margin-bottom: 16px; }

.sos-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.sos-circle.sos-red { background: #ef4444; }

.sos-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 8px;
}

.sos-step-label {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}

.sos-step-desc {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.55;
}

.sos-arrow {
  padding-top: 20px;
  flex-shrink: 0;
}

/* LW features */
.lw-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-bottom: 48px;
}

.lw-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.lw-feat-icon { flex-shrink: 0; }

.lw-feat-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}

.lw-feat-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Compliance badges */
.compliance-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.compliance-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 18px;
}

/* ANDROID APP SECTION */
.android-section { padding: 100px 8vw; }
.android-inner { max-width: 1400px; margin: 0 auto; }

.android-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 64px;
}

.android-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.android-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 600px;
}

/* Android layout */
.android-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 40px;
}

/* Device frame */
.device-panel { display: flex; flex-direction: column; align-items: center; gap: 20px; }

.device-frame {
  width: 220px;
  background: #111115;
  border: 2px solid #2a2a30;
  border-radius: 28px;
  padding: 12px 10px 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}

.device-notch {
  width: 60px;
  height: 6px;
  background: #1c1c21;
  border-radius: 3px;
  margin: 0 auto 10px;
}

.device-screen {
  background: #0a0a0e;
  border-radius: 18px;
  overflow: hidden;
  padding: 12px;
}

.app-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.app-logo {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #000;
  flex-shrink: 0;
}

.app-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--fg);
}

.app-status {
  font-size: 9px;
  color: #22c55e;
}

.app-signal { display: flex; align-items: flex-end; gap: 2px; margin-left: auto; }

.signal-bar {
  width: 3px;
  height: 6px;
  background: #2a2a30;
  border-radius: 1px;
}

.signal-bar:nth-child(1) { height: 6px; }
.signal-bar:nth-child(2) { height: 9px; }
.signal-bar:nth-child(3) { height: 12px; }
.signal-bar:nth-child(4) { height: 15px; }
.signal-bar.active { background: #22c55e; }

.app-map-preview {
  position: relative;
  height: 110px;
  background: #080810;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}

.app-map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 20px 20px;
}

.app-unit-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.app-pulse {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(245,166,35,0.25);
  animation: pulse 2s ease-out infinite;
  top: -4px;
  left: -4px;
}

.app-marker-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid #0a0a0e;
  position: relative;
  z-index: 1;
}

.app-teammate {
  position: absolute;
  font-size: 8px;
  color: var(--fg-muted);
  background: rgba(0,0,0,0.7);
  padding: 2px 5px;
  border-radius: 4px;
  bottom: 6px;
  left: 6px;
}

.app-tm-2 { left: auto; right: 6px; }

.app-ptt-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #16161a;
  border-radius: 10px;
  padding: 8px 12px;
  margin-bottom: 8px;
}

.ptt-btn {
  width: 48px;
  height: 28px;
  background: var(--accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #000;
}

.ptt-label { font-size: 10px; color: var(--fg-muted); }

.app-bottom-nav {
  display: flex;
  justify-content: space-around;
  padding-top: 6px;
  border-top: 1px solid var(--border);
}

.nav-item { display: flex; align-items: center; justify-content: center; }

.device-home-bar {
  width: 60px;
  height: 4px;
  background: #2a2a30;
  border-radius: 2px;
  margin: 12px auto 0;
}

.device-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.d-chip {
  font-size: 11px;
  font-weight: 500;
  color: var(--fg-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 12px;
}

/* Android features */
.android-features { display: flex; flex-direction: column; gap: 2px; }

.af-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.af-icon { flex-shrink: 0; padding-top: 2px; }

.af-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}

.af-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.enterprise-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--fg-muted);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 12px 24px;
  max-width: fit-content;
}

/* FOOTER */
.page-footer {
  border-top: 1px solid var(--border);
  padding: 64px 8vw 40px;
}

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

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-logo {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: #000;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
}

.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }

.footer-badge {
  font-size: 11px;
  font-weight: 500;
  color: var(--fg-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 12px;
}

.footer-nav-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer-nav-group { display: flex; flex-direction: column; gap: 10px; }

.footer-nav-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3a3a44;
  margin-bottom: 4px;
}

.footer-nav-link {
  font-size: 14px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-nav-link:hover { color: var(--fg); }

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

.footer-copy { font-size: 13px; color: #3a3a44; }

.footer-build { font-size: 13px; color: #3a3a44; }

/* ===========================
   NAVIGATION
   =========================== */
.top-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 14, 17, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 8vw;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-mark {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: #000;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.15s;
}

.nav-link:hover { color: var(--fg); }

.nav-cta {
  font-size: 13px;
  font-weight: 600;
  color: #000;
  background: var(--accent);
  border-radius: 8px;
  padding: 9px 20px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: opacity 0.15s;
  flex-shrink: 0;
}

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

/* ===========================
   PUSHCOMM HERO
   =========================== */
.hero-pushcomm {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 8vw 100px;
  position: relative;
}

.hero-pushcomm::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(245,166,35,0.05) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(245,166,35,0.03) 0%, transparent 40%);
  pointer-events: none;
}

.hero-pushcomm-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-pushcomm-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 16px;
  margin-bottom: 28px;
  width: fit-content;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34,197,94,0.6);
  animation: badge-pulse 2s ease infinite;
}

@keyframes badge-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}

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

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.btn-primary {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #000;
  background: var(--accent);
  border-radius: 10px;
  padding: 13px 28px;
  text-decoration: none;
  transition: opacity 0.15s;
  display: inline-block;
}

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

.btn-secondary {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--fg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 28px;
  text-decoration: none;
  transition: border-color 0.15s;
  display: inline-block;
}

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

.btn-ghost {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 13px 0;
  transition: color 0.15s;
  display: inline-block;
}

.btn-ghost:hover { color: var(--fg); }

.hero-meta-row {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hm-item { display: flex; flex-direction: column; gap: 3px; }

.hm-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.hm-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}

.hm-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* ===========================
   HERO VISUAL — Dispatch Frame
   =========================== */
.hero-visual-wrap { position: relative; z-index: 1; }

.dispatch-frame {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
}

.df-topbar {
  background: #0f0f14;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}

.df-dots { display: flex; gap: 6px; }
.df-dots span { width: 10px; height: 10px; border-radius: 50%; background: #2a2a30; }

.df-title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  flex: 1;
}

.df-status {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.df-status--green { color: #22c55e; }

.df-map {
  position: relative;
  height: 230px;
  background: #09090e;
  overflow: hidden;
}

.df-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* Geofence rings */
.df-gf {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(34,197,94,0.2);
  pointer-events: none;
}

.df-gf-1 { width: 160px; height: 160px; top: 20%; left: 20%; }
.df-gf-2 { width: 110px; height: 110px; top: 50%; left: 50%; border-color: rgba(245,166,35,0.2); }

/* Units */
.df-unit {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.df-u1 { top: 28%; left: 25%; }
.df-u2 { top: 62%; left: 55%; }
.df-u3 { top: 50%; left: 38%; }

.df-pulse {
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(245,166,35,0.22);
  animation: pulse 2.2s ease-out infinite;
}

.df-pin {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #000;
  position: relative;
  z-index: 1;
}

.df-info { display: flex; flex-direction: column; gap: 3px; }
.df-name { font-size: 10px; color: var(--fg-muted); white-space: nowrap; }

.df-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  width: fit-content;
}

.df-avail { background: rgba(34,197,94,0.18); color: #22c55e; }
.df-busy { background: rgba(245,166,35,0.18); color: var(--accent); }
.df-scene { background: rgba(59,130,246,0.18); color: #60a5fa; }

/* SOS alert */
.df-sos {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.35);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 10px;
  font-weight: 600;
  color: #ef4444;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.df-sos-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef4444;
  animation: blink 1s ease infinite;
}

/* Track trail */
.df-trail {
  position: absolute;
  top: 30%;
  left: 24%;
  width: 70px;
  height: 55px;
  border-left: 2px dashed rgba(245,166,35,0.25);
  border-bottom: 2px dashed rgba(245,166,35,0.25);
  border-radius: 0 0 0 8px;
  pointer-events: none;
}

/* Channels */
.df-channels {
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.df-ch {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
}

.df-ch-name { color: var(--fg-muted); flex: 1; }

.df-ch-live {
  background: rgba(34,197,94,0.15);
  color: #22c55e;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 2px 6px;
  border-radius: 4px;
}

.df-ch-lat { color: #3a3a44; font-size: 10px; }
.df-ch-idle { opacity: 0.4; }
.df-ch-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3a3a44;
}

.df-footer {
  background: #09090e;
  padding: 10px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: #3a3a44;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ===========================
   SECTION LABELS (shared)
   =========================== */
.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.sl-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.sl-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ===========================
   TCO COMPARISON
   =========================== */
.tco-section {
  padding: 100px 8vw;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.tco-inner { max-width: 1400px; margin: 0 auto; }

.tco-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.1;
}

.tco-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 56px;
  max-width: 520px;
}

.tco-table-wrap {
  overflow-x: auto;
  margin-bottom: 32px;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.tco-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.tco-table thead { background: var(--bg-card); }

.tco-table th {
  padding: 24px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: bottom;
}

.tco-th-main { min-width: 160px; }

.tco-th-pushcomm {
  background: rgba(245,166,35,0.04);
}

.tco-th-pushcomm .th-logo-mark {
  background: var(--accent);
  color: #000;
}

.th-logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 8px;
}

.th-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 4px;
}

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

.tco-table tbody tr { border-bottom: 1px solid var(--border); }
.tco-table tbody tr:last-child { border-bottom: none; }

.tco-table td {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--fg-muted);
}

.tco-label {
  font-weight: 500;
  color: var(--fg) !important;
  min-width: 180px;
}

.tco-pushcomm { color: var(--accent) !important; font-weight: 600; }
.tco-highlight { font-weight: 700; }

.tco-check { color: #22c55e !important; font-weight: 600; }
.tco-fail { color: #3a3a44 !important; }
.tco-mid { color: var(--fg-muted) !important; }
.tco-cross { color: var(--fg-muted); text-decoration: line-through; }

.tco-row-section td {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3a3a44 !important;
  padding: 18px 20px 8px;
  background: var(--bg-card);
}

.tco-row-total td { padding: 12px 20px; }

.tco-row-3yr td {
  background: var(--bg-card);
  border-top: 2px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.tco-big {
  font-family: var(--font-display);
  font-size: 22px !important;
  font-weight: 800;
  color: var(--accent) !important;
}

.tco-row-savings td {
  background: var(--bg-card);
  font-size: 12px;
  color: #22c55e;
}

.tco-savings-note { color: var(--fg-muted) !important; }

.tco-footnote {
  font-size: 13px;
  color: #3a3a44;
  line-height: 1.6;
  max-width: 780px;
  margin-bottom: 40px;
}

.tco-cta-row {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

/* ===========================
   CORE FEATURES
   =========================== */
.core-features { padding: 100px 8vw; }

.cf-inner { max-width: 1400px; margin: 0 auto; }

.cf-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
  line-height: 1.1;
}

.cf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.cf-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.cf-card:hover { border-color: rgba(255,255,255,0.12); }

.cf-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border: 1px solid rgba(245,166,35,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.cf-card-body { flex: 1; }

.cf-card-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}

.cf-card-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .hero-pushcomm-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual-wrap { display: none; }
  .hero-headline { font-size: 52px; }
  .cf-grid { grid-template-columns: repeat(2, 1fr); }
  .dispatch-callouts { grid-template-columns: 1fr; }
  .android-layout { grid-template-columns: 1fr; }
  .monitor-row { grid-template-columns: 1fr; }
  .lw-features { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}

@media (max-width: 640px) {
  .hero-pushcomm { padding: 60px 6vw 80px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-meta-row { gap: 20px; }
  .cf-grid { grid-template-columns: 1fr; }
  .tco-cta-row { flex-direction: column; align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 24px; }
  .workflow { flex-direction: column; }
  .workflow-arrow { display: none; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-meta { flex-wrap: wrap; gap: 24px; }
  .live-demo-inner { grid-template-columns: 1fr; }
  .ds-inner { grid-template-columns: 1fr; }
}

/* ===========================
   CLOSING SECTION
   =========================== */
.closing {
  padding: 100px 8vw;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 32px;
}

.closing p {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 20px;
}

/* ===========================
   LIVE DEMO CTA
   =========================== */
.live-demo-section {
  padding: 100px 8vw;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.live-demo-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.live-demo-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.demo-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 16px;
  margin-bottom: 28px;
  width: fit-content;
}

.demo-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34,197,94,0.6);
  animation: badge-pulse 2s ease infinite;
}

.live-demo-section h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
}

.demo-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 32px;
}

.demo-promises {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.promise-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
}

.demo-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #000;
  background: var(--accent);
  border-radius: 12px;
  padding: 16px 36px;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.15s;
  margin-bottom: 16px;
}

.demo-cta-btn:hover { opacity: 0.88; transform: translateY(-1px); }

.demo-hint {
  font-size: 13px;
  color: #3a3a44;
}

/* Demo console preview */
.demo-console-preview {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

.dcp-header {
  background: #0f0f14;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}

.dcp-dots { display: flex; gap: 6px; }
.dcp-dots span { width: 10px; height: 10px; border-radius: 50%; background: #2a2a30; }

.dcp-title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  flex: 1;
  text-align: center;
}

.dcp-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #22c55e;
}

.dcp-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: badge-pulse 1.5s ease infinite;
}

.dcp-body {
  display: grid;
  grid-template-columns: 100px 1fr;
  height: 220px;
}

.dcp-sidebar {
  background: var(--bg-card);
  border-right: 1px solid var(--border);
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dcp-chan {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  cursor: default;
}

.dcp-chan.active { background: var(--accent-dim); border-left: 2px solid var(--accent); }

.dcp-chan-name { font-size: 11px; color: var(--fg-muted); }
.dcp-chan-count { font-size: 10px; color: #3a3a44; }

.dcp-map-area {
  position: relative;
  background: #09090e;
  overflow: hidden;
}

.dcp-map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 24px 24px;
}

.dcp-units {
  position: absolute;
  inset: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px;
  align-content: flex-start;
}

.dcp-unit {
  font-size: 10px;
  font-weight: 700;
  color: var(--fg-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
}

.dcp-feed {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15,15,20,0.95);
  border-top: 1px solid var(--border);
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dcp-msg {
  font-size: 10px;
  color: var(--fg-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===========================
   EARLY ACCESS / BETA
   =========================== */
.early-access-section {
  padding: 100px 8vw;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}

.ea-inner { max-width: 800px; margin: 0 auto; text-align: center; }

.ea-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.early-access-section h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 20px;
}

.ea-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 48px;
}

.ea-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
  text-align: left;
}

.ea-benefit {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.ea-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--accent-dim);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.ea-benefit-text { display: flex; flex-direction: column; gap: 4px; }

.ea-benefit-text strong {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
}

.ea-benefit-text span {
  font-size: 14px;
  color: var(--fg-muted);
}

.ea-cta-btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #000;
  background: var(--accent);
  border-radius: 10px;
  padding: 14px 32px;
  text-decoration: none;
  transition: opacity 0.15s;
  margin-bottom: 16px;
}

.ea-cta-btn:hover { opacity: 0.85; }

.ea-note { font-size: 13px; color: #3a3a44; }

/* ===========================
   DATA SOVEREIGNTY / SECURITY
   =========================== */
.data-sovereignty-section {
  padding: 100px 8vw;
  background: var(--bg);
}

.ds-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.ds-left { position: sticky; top: 80px; }

.ds-left .section-number {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.data-sovereignty-section h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px;
}

.ds-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 440px;
}

.ds-right {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ds-card {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.ds-card-wide { width: 100%; }

.ds-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}

.ds-card > p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-left: 32px;
}

.ds-targets {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
  margin-left: 32px;
}

.ds-target { display: flex; align-items: flex-start; gap: 12px; }

.ds-target-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 6px;
  padding: 4px 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

.ds-target-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.55;
}