:root {
  --bg: #0d1117;
  --bg-2: #111827;
  --bg-3: #1f2937;
  --amber: #f59e0b;
  --amber-dim: rgba(245, 158, 11, 0.15);
  --amber-border: rgba(245, 158, 11, 0.25);
  --red: #ef4444;
  --orange: #f97316;
  --green: #10b981;
  --slate: #6b7280;
  --text: #f9fafb;
  --text-dim: #9ca3af;
  --text-muted: #6b7280;
}

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

body {
  font-family: 'Figtree', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === HERO === */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  border-bottom: 1px solid var(--bg-3);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
}

.grid-line {
  position: absolute;
  background: var(--bg-3);
}
.grid-line.h { left: 0; right: 0; height: 1px; }
.grid-line.v { top: 0; bottom: 0; width: 1px; }
.grid-line.h:nth-child(1) { top: 25%; }
.grid-line.h:nth-child(2) { top: 50%; }
.grid-line.h:nth-child(3) { top: 75%; }
.grid-line.v:nth-child(4) { left: 25%; }
.grid-line.v:nth-child(5) { left: 50%; }
.grid-line.v:nth-child(6) { left: 75%; }

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 28px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 24px;
}

.highlight {
  color: var(--amber);
  display: inline-block;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 480px;
  margin-bottom: 48px;
}

.hero-sub em {
  color: var(--amber);
  font-style: normal;
  font-weight: 600;
}

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

.stat {}

.stat-num {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* === MAP === */
.hero-map {}

.map-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--amber-border);
  background: var(--bg-2);
}

.nl-map {
  padding: 20px;
}

.nl-map svg {
  width: 100%;
  height: auto;
  display: block;
}

.map-overlay-panel {
  background: rgba(13, 17, 23, 0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--amber-border);
  padding: 20px;
}

.panel-header {
  margin-bottom: 16px;
}

.live-badge {
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--amber);
  background: var(--amber-dim);
  border: 1px solid var(--amber-border);
  padding: 4px 10px;
  border-radius: 4px;
}

.panel-regions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

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

.region-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.region-row.critical .region-dot { background: var(--red); }
.region-row.warning .region-dot { background: var(--orange); }
.region-row.ok .region-dot { background: var(--green); }

.region-name {
  flex: 1;
  font-size: 13px;
  color: var(--text-dim);
}

.region-status {
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 4px;
}

.region-row.critical .region-status { background: rgba(239,68,68,0.15); color: var(--red); }
.region-row.warning .region-status { background: rgba(249,115,22,0.15); color: var(--orange); }
.region-row.ok .region-status { background: rgba(16,185,129,0.15); color: var(--green); }

.panel-upgrade {}

.upgrade-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.upgrade-timing {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.upgrade-bar {
  height: 4px;
  background: var(--bg-3);
  border-radius: 2px;
  overflow: hidden;
}

.upgrade-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--amber), var(--green));
  border-radius: 2px;
  transition: width 1s ease;
}

/* === SHARED SECTION STYLES === */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
}

.section-label {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
  max-width: 700px;
  margin-bottom: 64px;
}

/* === HOW IT WORKS === */
.how-it-works {
  background: var(--bg-2);
  border-top: 1px solid var(--bg-3);
  border-bottom: 1px solid var(--bg-3);
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  padding: 0 40px 0 0;
}

.step-num {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

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

.step h3 {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.step p {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.7;
}

.step-connector {
  width: 60px;
  flex-shrink: 0;
  align-self: center;
  height: 1px;
  background: linear-gradient(90deg, var(--amber-border), transparent);
  margin: 0 20px;
  margin-top: -40px;
}

/* === WHO FOR === */
.who-for {
  background: var(--bg);
}

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

.audience-card {
  background: var(--bg-2);
  border: 1px solid var(--bg-3);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.3s;
}

.audience-card:hover {
  border-color: var(--amber-border);
}

.audience-icon {
  color: var(--amber);
  margin-bottom: 20px;
}

.audience-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.audience-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 20px;
}

.audience-tag {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--bg-3);
  padding: 6px 12px;
  border-radius: 6px;
  display: inline-block;
}

/* === MANIFESTO === */
.manifesto {
  background: var(--bg-2);
  border-top: 1px solid var(--bg-3);
  border-bottom: 1px solid var(--bg-3);
}

.manifesto-content {
  max-width: 800px;
}

.manifesto-quote {
  font-family: 'Sora', sans-serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 40px;
}

.manifesto-divider {
  width: 80px;
  height: 3px;
  background: var(--amber);
  border-radius: 2px;
  margin-bottom: 40px;
}

.manifesto-body p {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 680px;
}

/* === GRID SIGNALS === */
.grid-signals {
  background: var(--bg);
}

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

.signal-card {
  background: var(--bg-2);
  border: 1px solid var(--bg-3);
  border-radius: 12px;
  padding: 28px;
}

.signal-icon {
  margin-bottom: 16px;
}

.signal-card h4 {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.signal-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 12px;
}

.signal-meta {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.03em;
}

/* === CLOSING === */
.closing {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--bg-3);
  text-align: center;
}

.closing .section-inner {
  padding: 100px 40px;
}

.closing-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 20px;
}

.closing-sub {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 48px;
}

.cta-badge {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  background: var(--amber-dim);
  border: 1px solid var(--amber-border);
  padding: 12px 28px;
  border-radius: 8px;
}

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--bg-3);
  padding: 40px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-meta p {
  font-size: 13px;
  color: var(--text-muted);
  text-align: right;
}

/* === MOBILE === */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero { padding: 60px 0 80px; }
  .section-inner { padding: 60px 24px; }
  .audience-grid { grid-template-columns: 1fr; }
  .signals-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; gap: 40px; }
  .step-connector { display: none; }
  .hero-stats { gap: 24px; }
  .stat-num { font-size: 22px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-meta p { text-align: center; }
}