:root {
  --bg: #0f0f0f;
  --surface: #1a1a1a;
  --surface-raised: #242424;
  --fg: #f0ede8;
  --fg-muted: #9a9590;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --border: rgba(240, 237, 232, 0.08);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* ── HERO ── */
.hero {
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-text h1 {
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 800;
  margin-bottom: 24px;
}

.hero-text h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-text .lede {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 440px;
  line-height: 1.7;
}

.hero-image {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.hero-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

.hero-stats {
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}

.stat {
  flex: 1;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 6px;
}

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

/* ── PLATFORMS ── */
.platforms {
  padding: 80px 0;
}

.platforms-header {
  max-width: 1200px;
  margin: 0 auto 48px;
  padding: 0 40px;
}

.platforms-header h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  margin-bottom: 12px;
}

.platforms-header p {
  color: var(--fg-muted);
  font-size: 16px;
}

.platform-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.platform-card {
  background: var(--bg);
  padding: 36px 28px;
  transition: background 0.2s;
}

.platform-card:hover {
  background: var(--surface);
}

.platform-icon {
  margin-bottom: 16px;
}

.platform-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.platform-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── OUTCOMES ── */
.outcomes {
  padding: 80px 0;
  background: var(--surface);
}

.outcomes-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.outcomes-image {
  position: relative;
}

.outcomes-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 4px;
}

.outcomes-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(8px);
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 12px;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.outcomes-text h2 {
  font-size: clamp(24px, 3vw, 40px);
  margin-bottom: 20px;
}

.outcomes-text > p {
  color: var(--fg-muted);
  margin-bottom: 32px;
  font-size: 16px;
}

.outcomes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.outcomes-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

/* ── PROCESS ── */
.process {
  padding: 80px 0;
}

.process-header {
  max-width: 1200px;
  margin: 0 auto 48px;
  padding: 0 40px;
}

.process-header h2 {
  font-size: clamp(24px, 3vw, 40px);
}

.process-steps {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.process-step {
  position: relative;
}

.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--accent-dim);
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}

.step-content h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── CLOSING ── */
.closing {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.closing-inner h2 {
  font-size: clamp(28px, 4vw, 56px);
  margin-bottom: 24px;
}

.closing-inner p {
  color: var(--fg-muted);
  font-size: 18px;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 40px;
}

.closing-tools {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.tool-tag {
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 500;
}

/* ── FOOTER ── */
footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

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

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  display: block;
  margin-bottom: 4px;
}

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

.footer-meta {
  font-size: 12px;
  color: var(--fg-muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner,
  .outcomes-inner {
    grid-template-columns: 1fr;
  }

  .hero-image { order: -1; }
  .hero-image img { height: 280px; }

  .platform-grid,
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .stat-divider { display: none; }
  .stat { min-width: 120px; }
}

@media (max-width: 600px) {
  .hero-inner,
  .platforms-header,
  .outcomes-inner,
  .process-header,
  .process-steps,
  .footer-inner {
    padding: 0 20px;
  }

  .hero { padding: 60px 0 40px; }
  .platforms, .outcomes, .process { padding: 60px 0; }
  .closing { padding: 60px 0; }

  .platform-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }

  .hero-stats { padding: 0 20px; }
}
