:root {
  --bg: #0c0c0e;
  --bg-elevated: #16161a;
  --fg: #ececec;
  --fg-muted: #9a9a9f;
  --accent: #f5a623;
  --accent-soft: rgba(245, 166, 35, 0.12);
  --coral: #ff6b6b;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-w: 1120px;
  --gap: clamp(1rem, 4vw, 2.5rem);
}

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

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

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; }

/* HERO */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem var(--gap) 4rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(245,166,35,0.08) 0%, transparent 70%);
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 0.45em 1.2em;
  border-radius: 100px;
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  max-width: 800px;
  margin-bottom: 1.5rem;
}

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

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--fg-muted);
  max-width: 580px;
  margin: 0 auto 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 640px;
  width: 100%;
}

.hero-card {
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 1.5rem 1rem;
  text-align: center;
}

.hero-card-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.hero-card-label {
  display: block;
  font-size: 0.78rem;
  color: var(--fg-muted);
  margin-top: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* PROBLEM */
.problem {
  padding: 6rem var(--gap);
  background: var(--bg-elevated);
}

.problem-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.problem h2 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  text-align: center;
  max-width: 740px;
  margin: 0 auto 3.5rem;
}

.strike {
  text-decoration: line-through;
  color: var(--coral);
  text-decoration-thickness: 3px;
}

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

.problem-col {
  padding: 2rem;
  border-radius: 16px;
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.04);
}

.problem-col-mid {
  border-color: rgba(255,255,255,0.04);
}

.problem-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.problem-col h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

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

/* FEATURES */
.features {
  padding: 6rem var(--gap);
}

.features-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.features h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 3.5rem;
  max-width: 550px;
}

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

.feature {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.feature:first-child {
  border-top: 1px solid rgba(255,255,255,0.06);
}

.feature-marker {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  min-width: 40px;
  padding-top: 0.15rem;
}

.feature-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  max-width: 520px;
}

/* NUMBERS */
.numbers {
  padding: 6rem var(--gap);
  background: var(--bg-elevated);
}

.numbers-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.numbers-header h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  text-align: center;
  margin-bottom: 3rem;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.number-card {
  text-align: center;
  padding: 2rem 1rem;
}

.number-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.number-desc {
  display: block;
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* CLOSING */
.closing {
  padding: 7rem var(--gap);
  text-align: center;
  background: radial-gradient(ellipse 60% 40% at 50% 100%, rgba(245,166,35,0.06) 0%, transparent 70%);
}

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

.closing h2 {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  margin-bottom: 1.5rem;
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.closing-tagline {
  color: var(--accent) !important;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem !important;
}

/* FOOTER */
.footer {
  padding: 2.5rem var(--gap);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: var(--max-w);
  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-copy {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 320px;
  }
  .problem-cols {
    grid-template-columns: 1fr;
  }
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature {
    flex-direction: column;
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: auto;
    padding-top: 4rem;
  }
  .numbers-grid {
    grid-template-columns: 1fr;
  }
}