:root {
  --bg: #0d0f0e;
  --bg-alt: #151917;
  --fg: #e8e4de;
  --fg-muted: #9a9590;
  --accent: #c8a96e;
  --accent-light: #dfc899;
  --accent-dark: #8b7340;
  --green: #4a7c59;
  --green-light: #5e9a70;
  --surface: #1a1d1b;
  --border: #2a2e2c;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

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

.hero-inner {
  max-width: 820px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-dark);
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 28px;
  color: var(--fg);
}

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

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

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

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

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

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

.hero-texture {
  position: absolute;
  top: 0;
  right: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at 70% 50%, rgba(200, 169, 110, 0.06) 0%, transparent 70%);
  z-index: 1;
}

/* HOW IT WORKS / PIPELINE */
.how-it-works {
  padding: 100px 40px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.section-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 48px;
}

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

.pipeline-step {
  flex: 1;
  padding: 32px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.step-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-dark);
  opacity: 0.5;
  margin-bottom: 12px;
}

.pipeline-step h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg);
}

.pipeline-step p {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

.pipeline-arrow {
  display: flex;
  align-items: center;
  padding-top: 60px;
  color: var(--accent-dark);
  flex-shrink: 0;
}

/* NUMBERS */
.numbers {
  padding: 80px 40px;
}

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

.number-card {
  text-align: center;
  padding: 48px 24px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg);
}

.big-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}

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

/* ADVANTAGES */
.advantages {
  padding: 100px 40px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.advantage {
  padding: 36px;
  border-left: 3px solid var(--accent-dark);
  background: var(--surface);
  border-radius: 0 4px 4px 0;
}

.adv-icon {
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.advantage h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}

.advantage p {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* CLOSING */
.closing {
  padding: 120px 40px;
  text-align: center;
}

.closing-content {
  max-width: 680px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--fg);
}

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

.closing-tagline {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--accent) !important;
  font-size: 1.1rem !important;
  margin-top: 24px !important;
  letter-spacing: 0.5px;
}

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

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

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

.footer-detail {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 4px;
}

.footer-contact {
  font-size: 0.85rem;
  color: var(--accent-dark);
}

/* MOBILE */
@media (max-width: 900px) {
  .pipeline {
    flex-direction: column;
  }
  .pipeline-arrow {
    transform: rotate(90deg);
    padding-top: 0;
    justify-content: center;
  }
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .advantages-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 80px 24px 60px;
    min-height: auto;
  }
  .hero-stats {
    gap: 20px;
  }
  .stat-divider {
    display: none;
  }
  .how-it-works, .numbers, .advantages, .closing {
    padding: 60px 24px;
  }
  .numbers-grid {
    grid-template-columns: 1fr;
  }
  .pipeline-step {
    padding: 24px 20px;
  }
  .advantage {
    padding: 24px;
  }
  .site-footer {
    padding: 36px 24px;
  }
}