:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --bg-card: #16161f;
  --fg: #e8e8ed;
  --fg-muted: #8888a0;
  --accent: #d4883a;
  --accent-glow: rgba(212, 136, 58, 0.15);
  --accent-light: #e8a85c;
  --danger: #e84545;
  --border: rgba(255,255,255,0.06);
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* HERO */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 80px 24px 60px;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,136,58,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,136,58,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

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

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--accent);
  border: 1px solid rgba(212,136,58,0.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
  background: var(--accent-glow);
}

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

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

.lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.7;
}

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

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

.hero-stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

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

/* PROBLEM */
.problem {
  padding: 100px 24px;
  background: var(--bg-elevated);
}

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

.problem h2,
.how h2,
.numbers h2,
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 48px;
  letter-spacing: -0.01em;
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.problem-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: border-color 0.2s;
}

.problem-card:hover {
  border-color: rgba(228,69,69,0.3);
}

.problem-icon {
  font-size: 1.4rem;
  color: var(--danger);
  margin-bottom: 16px;
  font-weight: 700;
}

.problem-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
}

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

/* HOW IT WORKS */
.how {
  padding: 100px 24px;
}

.how-inner {
  max-width: 700px;
  margin: 0 auto;
}

.pipeline {
  display: flex;
  flex-direction: column;
}

.pipe-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.pipe-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.4;
  min-width: 70px;
  line-height: 1;
  padding-top: 4px;
}

.pipe-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.pipe-content p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.pipe-connector {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  margin-left: 34px;
  opacity: 0.3;
}

/* NUMBERS */
.numbers {
  padding: 100px 24px;
  background: var(--bg-elevated);
}

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

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.number-block {
  padding: 36px 28px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
}

.number-block.highlight {
  border-color: rgba(212,136,58,0.25);
  background: linear-gradient(135deg, var(--accent-glow), var(--bg));
}

.number-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 8px;
}

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

/* CLOSING */
.closing {
  padding: 100px 24px;
  text-align: center;
}

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

.closing p {
  color: var(--fg-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.closing-bold {
  color: var(--fg) !important;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem !important;
}

/* FOOTER */
.site-footer {
  padding: 48px 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}

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

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

/* MOBILE */
@media (max-width: 600px) {
  .hero { min-height: 80vh; padding: 60px 20px 40px; }
  .hero-stat-row { gap: 20px; }
  .hero-stat-divider { display: none; }
  .pipe-step { flex-direction: column; gap: 12px; }
  .pipe-number { min-width: auto; font-size: 1.8rem; }
  .pipe-connector { margin-left: 0; height: 24px; }
  .problem, .how, .numbers, .closing { padding: 60px 20px; }
  .number-value { font-size: 1.8rem; }
}