:root {
  --bg-deep: #0a1628;
  --bg-mid: #0f2035;
  --bg-card: #142a42;
  --bg-warm: #1a1510;
  --fg: #e8e4dc;
  --fg-muted: #9ca8b8;
  --fg-dim: #5a6a7a;
  --accent: #e8c97a;
  --accent-glow: #f0d890;
  --teal: #2dd4bf;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

.accent { color: var(--accent); }

/* ====== HERO ====== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 6vw 60px;
  position: relative;
  background: linear-gradient(175deg, #0a1628 0%, #0c1e38 40%, #111a2e 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(232, 201, 122, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(232, 201, 122, 0.3);
  padding: 6px 16px;
  border-radius: 4px;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.lede {
  font-size: 1.2rem;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.7;
}

.hero-stat-row {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(232, 201, 122, 0.12);
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--fg-dim);
  margin-top: 4px;
  max-width: 180px;
}

/* ====== PROBLEM ====== */
.problem {
  padding: 120px 6vw;
  background: var(--bg-mid);
}

.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.problem-label,
.features-label,
.local-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}

.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  line-height: 1.2;
  max-width: 700px;
  margin-bottom: 56px;
}

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

.problem-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 12px;
  padding: 36px;
  transition: border-color 0.3s;
}

.problem-card:hover {
  border-color: rgba(232, 201, 122, 0.15);
}

.problem-icon {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-dim);
  margin-bottom: 16px;
}

.problem-card p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ====== FEATURES ====== */
.features {
  padding: 120px 6vw;
  background: var(--bg-deep);
}

.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.features h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 56px;
}

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

.feature-block {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 12px;
  padding: 40px;
  transition: border-color 0.3s;
}

.feature-block:hover {
  border-color: rgba(45, 212, 191, 0.2);
}

.feature-large {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(45, 212, 191, 0.04) 100%);
  border-color: rgba(45, 212, 191, 0.1);
}

.feature-tag {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.feature-block h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--fg-muted);
  line-height: 1.65;
}

.feature-large h3 {
  font-size: 1.15rem;
  color: var(--fg);
}

/* ====== LOCAL ====== */
.local {
  padding: 120px 6vw;
  background: linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-deep) 100%);
}

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

.local h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 24px;
}

.local-content p {
  color: var(--fg-muted);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.local-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 40px;
}

.local-detail {
  display: flex;
  flex-direction: column;
  padding: 20px 24px;
  background: var(--bg-card);
  border-radius: 8px;
  border-left: 3px solid var(--accent);
}

.detail-location {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
}

.detail-info {
  font-size: 0.9rem;
  color: var(--fg-dim);
  margin-top: 4px;
}

/* ====== CLOSING ====== */
.closing {
  padding: 140px 6vw;
  background: var(--bg-deep);
  text-align: center;
}

.closing-inner {
  max-width: 780px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 28px;
}

.closing-vision {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1.5;
}

/* ====== FOOTER ====== */
.site-footer {
  padding: 40px 6vw;
  border-top: 1px solid rgba(255,255,255,0.05);
  background: var(--bg-deep);
}

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

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-text {
  font-size: 0.85rem;
  color: var(--fg-dim);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 100px 24px 60px;
  }

  .hero-stat-row {
    flex-direction: column;
    gap: 24px;
  }

  .problem,
  .features,
  .local,
  .closing {
    padding: 80px 24px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .local-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .local-details {
    padding-top: 0;
  }

  .footer-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}