:root {
  --bg: #0c0b0f;
  --bg-elevated: #16141c;
  --fg: #e8e4ef;
  --fg-muted: #9b95a8;
  --accent: #c8a2ff;
  --accent-dim: #7c5daa;
  --border: #2a2533;
  --radius: 12px;
}

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

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

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

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

.hero-tag {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 28px;
}

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

.hero-accent {
  position: absolute;
  top: -120px;
  right: -180px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(200,162,255,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* ---- PROCESS ---- */
.process {
  padding: 100px 32px;
  border-top: 1px solid var(--border);
}

.process-inner {
  max-width: 960px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 56px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.process-step {
  padding: 32px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

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

.process-step h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  margin-bottom: 12px;
}

.process-step p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ---- PROOF ---- */
.proof {
  padding: 100px 32px;
  border-top: 1px solid var(--border);
}

.proof-inner {
  max-width: 960px;
  margin: 0 auto;
}

.proof-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.proof-card {
  padding: 36px 28px;
  border-left: 2px solid var(--accent-dim);
}

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

.proof-card p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ---- CLOSING ---- */
.closing {
  padding: 120px 32px;
  border-top: 1px solid var(--border);
  text-align: center;
}

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

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
  color: #fff;
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--fg-muted);
}

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

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

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}

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

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .process-grid,
  .proof-columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero {
    min-height: auto;
    padding: 60px 20px 80px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .process,
  .proof {
    padding: 60px 20px;
  }

  .closing {
    padding: 80px 20px;
  }

  .closing h2 {
    font-size: 28px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .hero-accent {
    width: 300px;
    height: 300px;
    top: -60px;
    right: -80px;
  }
}