:root {
  --bg: #0C0C0E;
  --bg-elevated: #141418;
  --bg-card: #1A1A20;
  --fg: #E8E6E1;
  --fg-muted: #8A8880;
  --accent: #E8A630;
  --accent-dim: #C4891C;
  --stripe: #E8A630;
  --border: #2A2A32;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

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

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 4rem 2rem 6rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(232,166,48,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.hero-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 2rem;
}

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

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.hero-btn-primary {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  background: var(--accent);
  color: #0C0C0E;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s;
}
.hero-btn-primary:hover { background: var(--accent-dim); }

.hero-btn-secondary {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  background: transparent;
  color: var(--fg);
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: border-color 0.15s;
}
.hero-btn-secondary:hover { border-color: var(--fg-muted); }

/* ===== CLOSING CTAs ===== */
.closing-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.closing-btn-primary {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--accent);
  color: #0C0C0E;
  padding: 0.65rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s;
}
.closing-btn-primary:hover { background: var(--accent-dim); }

.closing-btn-secondary {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  background: transparent;
  color: var(--fg);
  padding: 0.65rem 1.5rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: border-color 0.15s;
}
.closing-btn-secondary:hover { border-color: var(--fg-muted); }

.hero-stripe {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 60%);
}

/* ===== PROBLEM ===== */
.problem {
  padding: 8rem 2rem;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.problem-tag,
.features-tag,
.numbers-tag {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.problem-stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

.problem-text {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 700px;
  line-height: 1.8;
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
}

/* ===== FEATURES ===== */
.features {
  padding: 8rem 2rem;
}

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

.features-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.feature-item:first-child {
  border-top: 1px solid var(--border);
}

.feature-number {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-dim);
  padding-top: 0.15rem;
}

.feature-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.feature-content p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 600px;
}

/* ===== NUMBERS ===== */
.numbers {
  padding: 6rem 2rem;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.numbers-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.numbers-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.number-block {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.number-big {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.number-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* ===== CLOSING ===== */
.closing {
  padding: 10rem 2rem;
  text-align: left;
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 2rem;
}

.closing-text {
  font-size: 1.15rem;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 3rem;
}

.closing-location {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
}

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

.footer-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    padding: 3rem 1.5rem 4rem;
    min-height: 90vh;
  }

  .problem { padding: 5rem 1.5rem; }
  .features { padding: 5rem 1.5rem; }
  .numbers { padding: 4rem 1.5rem; }
  .closing { padding: 6rem 1.5rem; }

  .problem-grid,
  .numbers-row {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .feature-item {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 2rem 0;
  }

  .feature-number {
    font-size: 0.75rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .closing h2 br { display: none; }
  .hero h1 br { display: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .stat-number { font-size: 2.5rem; }
  .number-big { font-size: 2rem; }
}