:root {
  --bg: #0c0c0e;
  --bg-elevated: #141418;
  --fg: #e8e6e1;
  --fg-muted: #8a8880;
  --accent: #d4a853;
  --accent-dim: rgba(212, 168, 83, 0.12);
  --border: rgba(255, 255, 255, 0.06);
  --radius: 12px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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 {
  padding: 120px 24px 100px;
  max-width: 900px;
  margin: 0 auto;
}

.hero-inner {
  position: relative;
}

.hero-label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 84px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 28px;
}

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

.lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--fg-muted);
  max-width: 580px;
  margin-bottom: 56px;
}

.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: 32px;
  font-weight: 700;
  color: var(--fg);
}

.stat-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
}

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

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

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

.process h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 64px;
  color: var(--fg);
}

.phases {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.phase {
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  transition: border-color 0.3s ease;
}

.phase:hover {
  border-color: rgba(212, 168, 83, 0.25);
}

.phase-marker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.phase-number {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 4px 10px;
  border-radius: 6px;
}

.phase-duration {
  font-size: 13px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.phase h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg);
}

.phase p {
  color: var(--fg-muted);
  line-height: 1.65;
}

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

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

.proof h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 64px;
  color: var(--fg);
}

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

.case {
  padding: 32px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s ease;
}

.case:hover {
  border-color: rgba(212, 168, 83, 0.25);
}

.case-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 16px;
}

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

.case p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

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

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: var(--fg);
}

.closing h2 .accent {
  color: var(--accent);
}

.closing-text {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 40px;
}

.closing-locations {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}

.loc-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

/* Footer */
.site-footer {
  padding: 40px 24px;
  border-top: 1px solid var(--border);
}

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

.footer-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--fg-muted);
}

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

/* Responsive */
@media (max-width: 600px) {
  .hero {
    padding: 80px 20px 60px;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-divider {
    display: none;
  }

  .lede {
    font-size: 17px;
  }

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

  .closing {
    padding: 80px 20px;
    text-align: left;
  }

  .closing-locations {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .phase {
    padding: 24px;
  }

  .case {
    padding: 24px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}