:root {
  --navy: #0f1729;
  --charcoal: #1a2238;
  --slate: #2a3654;
  --steel: #8892a8;
  --light: #c8cdd8;
  --white: #eef0f4;
  --amber: #e8a020;
  --amber-glow: #f0b840;
  --amber-dim: rgba(232, 160, 32, 0.15);
  --green: #34d399;
  --green-dim: rgba(52, 211, 153, 0.12);
  --red-dim: rgba(248, 113, 113, 0.12);
}

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

body {
  background: var(--navy);
  color: var(--light);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .hero-badge, .col-tag, .stat-num, .pricing-label, .city-status, .footer-brand {
  font-family: 'Space Grotesk', sans-serif;
}

.section-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── HERO ── */
.hero {
  position: relative;
  padding: 120px 24px 100px;
  overflow: hidden;
}

.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--amber);
  background: var(--amber-dim);
  padding: 6px 16px;
  border-radius: 4px;
  margin-bottom: 32px;
}

.hero h1 {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.hero-sub {
  font-size: 18px;
  color: var(--steel);
  max-width: 620px;
  margin-bottom: 56px;
  line-height: 1.7;
}

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

.stat-num {
  font-size: 32px;
  font-weight: 700;
  color: var(--amber);
  display: block;
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 13px;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--slate);
}

.hero-grid {
  position: absolute;
  top: 80px;
  right: 60px;
  display: grid;
  grid-template-columns: repeat(3, 24px);
  gap: 20px;
  opacity: 0.3;
  z-index: 1;
}

.grid-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--slate);
}

.grid-dot.active {
  background: var(--amber);
  box-shadow: 0 0 12px rgba(232, 160, 32, 0.4);
}

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: 100px 0;
  background: var(--charcoal);
}

.how-it-works h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 56px;
  letter-spacing: -0.8px;
}

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

.col-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--steel);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--slate);
}

.col-tag-amber {
  color: var(--amber);
  border-color: var(--amber-dim);
}

.steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--amber);
  min-width: 28px;
  padding-top: 2px;
}

.steps li div {
  font-size: 15px;
  color: var(--steel);
  line-height: 1.6;
}

.steps li strong {
  color: var(--white);
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
}

/* ── PRICING ── */
.pricing {
  padding: 100px 0;
}

.pricing h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.8px;
}

.pricing-sub {
  font-size: 17px;
  color: var(--steel);
  margin-bottom: 48px;
  max-width: 520px;
}

.pricing-example {
  background: var(--charcoal);
  border: 1px solid var(--slate);
  border-radius: 12px;
  max-width: 520px;
  overflow: hidden;
}

.pricing-header {
  padding: 20px 28px;
  border-bottom: 1px solid var(--slate);
}

.pricing-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--steel);
}

.pricing-breakdown {
  padding: 8px 0;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 28px;
  font-size: 15px;
  color: var(--light);
}

.pricing-val {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 18px;
}

.row-accent {
  background: var(--amber-dim);
  color: var(--amber-glow);
}

.row-accent .pricing-val {
  color: var(--amber);
  font-size: 22px;
}

.row-muted {
  color: var(--steel);
}

.row-muted .pricing-val {
  color: var(--steel);
}

.pricing-footer {
  padding: 18px 28px;
  border-top: 1px solid var(--slate);
}

.pricing-note {
  font-size: 13px;
  color: var(--steel);
  line-height: 1.5;
}

.pricing-note strong {
  color: var(--amber);
}

/* ── CITIES ── */
.cities {
  padding: 100px 0;
  background: var(--charcoal);
}

.cities h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.8px;
}

.cities-sub {
  font-size: 17px;
  color: var(--steel);
  margin-bottom: 48px;
  max-width: 520px;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.city-card {
  background: var(--navy);
  border: 1px solid var(--slate);
  border-radius: 10px;
  padding: 28px;
}

.city-active {
  border-color: var(--amber);
  box-shadow: 0 0 24px rgba(232, 160, 32, 0.08);
}

.city-status {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 12px;
  color: var(--steel);
}

.city-active .city-status {
  color: var(--green);
}

.city-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.city-detail {
  font-size: 14px;
  color: var(--steel);
  line-height: 1.5;
}

.cities-note {
  font-size: 14px;
  color: var(--steel);
  font-style: italic;
  max-width: 640px;
}

/* ── CLOSING ── */
.closing {
  padding: 120px 0;
}

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

.closing h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.8px;
}

.closing p {
  font-size: 16px;
  color: var(--steel);
  line-height: 1.7;
  margin-bottom: 20px;
}

.closing-emphasis {
  font-size: 18px;
  color: var(--amber);
  font-weight: 500;
  font-style: italic;
}

/* ── FOOTER ── */
.site-footer {
  padding: 40px 0;
  border-top: 1px solid var(--slate);
}

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

.footer-brand {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.5px;
}

.footer-links {
  font-size: 13px;
  color: var(--steel);
}

.footer-sep {
  margin: 0 8px;
  opacity: 0.4;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { padding: 80px 24px 60px; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
  .stat { text-align: center; flex: 1; min-width: 100px; }
  .two-col { grid-template-columns: 1fr; gap: 56px; }
  .cities-grid { grid-template-columns: 1fr; }
  .hero-grid { display: none; }
  .footer-content { flex-direction: column; gap: 12px; text-align: center; }
  .pricing-example { max-width: 100%; }
}