:root {
  --bg: #0D0D0D;
  --bg-alt: #141414;
  --surface: #1A1A1A;
  --accent: #D4820A;
  --accent-dim: rgba(212, 130, 10, 0.15);
  --text: #F0EDE6;
  --text-muted: rgba(240, 237, 230, 0.55);
  --text-dim: rgba(240, 237, 230, 0.3);
  --border: rgba(240, 237, 230, 0.1);
  --serif: 'Source Serif 4', Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* ── HERO ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 60px 60px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

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

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

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

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

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

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 8vw, 108px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 28px;
}

.hero-lede {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 48px;
  font-weight: 300;
}

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

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 16px;
  border-left: 1px solid var(--accent);
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
  max-width: 90px;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pcb-art {
  width: 360px;
  height: 360px;
}

.pcb-svg {
  width: 100%;
  height: 100%;
}

/* ── SECTION SHARED ───────────────────────────────── */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-inner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 48px;
  line-height: 1;
}

/* ── WHY ──────────────────────────────────────────── */
.why {
  padding: 100px 0;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 48px;
}

.why-card {
  background: var(--bg-alt);
  padding: 40px 36px;
}

.why-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--accent);
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}

.why-card h3 {
  font-family: 'Source Serif 4', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.why-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

.honest-note {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--accent-dim);
  border: 1px solid rgba(212, 130, 10, 0.2);
  padding: 24px 28px;
}

.honest-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.honest-note p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.honest-note strong {
  color: var(--accent);
  font-weight: 600;
}

/* ── DISTRICTS ─────────────────────────────────────── */
.districts {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}

.district-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.map-container {
  background: var(--surface);
  border: 1px solid var(--border);
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.district-list-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.district-item {
  border-bottom: 1px solid var(--border);
  padding-bottom: 28px;
}

.district-item:last-child { border-bottom: none; padding-bottom: 0; }

.district-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}

.district-header h4 {
  font-family: 'Source Serif 4', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.district-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.district-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* ── PREP ──────────────────────────────────────────── */
.prep {
  padding: 100px 0;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.prep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.prep-col { display: flex; flex-direction: column; gap: 0; }

.prep-item {
  display: flex;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.prep-item:last-child { border-bottom: none; }

.prep-check { flex-shrink: 0; margin-top: 2px; }

.prep-item h4 {
  font-family: 'Source Serif 4', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.prep-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}

.apps-box {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
  height: 100%;
}

.apps-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.apps-list { display: flex; flex-direction: column; gap: 20px; }

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

.app-name {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
}

.app-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  font-weight: 300;
}

/* ── CLOSING ───────────────────────────────────────── */
.closing {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}

.closing-content { max-width: 680px; }

.closing-rule {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 40px;
}

.closing p {
  font-size: 20px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-weight: 300;
}

.closing-signature {
  margin-top: 48px;
}

.sig-line {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.08em;
  color: var(--accent);
}

/* ── FOOTER ────────────────────────────────────────── */
.footer {
  padding: 40px 0;
}

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

.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--text);
  display: block;
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 300;
}

.footer-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 900px) {
  .hero { padding: 60px 32px 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .section-inner { padding: 0 32px; }
  .why { padding: 72px 0; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .district-grid { grid-template-columns: 1fr; }
  .map-container { height: 280px; }
  .prep-grid { grid-template-columns: 1fr; }
  .district-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 600px) {
  .hero { padding: 48px 24px 40px; }
  .section-inner { padding: 0 24px; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 28px 24px; }
  .hero h1 { font-size: 52px; }
  .closing p { font-size: 17px; }
}