:root {
  --bg: #0d0d0f;
  --surface: #141418;
  --surface2: #1e1e24;
  --accent: #f5a623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --text: #f0ede8;
  --text-muted: #8a8794;
  --border: rgba(240, 237, 232, 0.08);
}

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

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

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--text);
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* HERO */
.hero {
  padding: 100px 48px 80px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 860px;
}
.hero-badge {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 6px 14px;
  border-radius: 3px;
  margin-bottom: 28px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 56px;
  font-weight: 300;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 32px;
}
.stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin-right: 32px;
}

/* SECTION LABEL */
.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

/* SERVICES */
.services {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}
.services-header {
  margin-bottom: 56px;
}
.services-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
  transition: border-color 0.2s;
}
.service-card:hover {
  border-color: rgba(245, 166, 35, 0.3);
}
.service-icon {
  font-size: 28px;
  margin-bottom: 16px;
}
.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* PHILOSOPHY */
.philosophy {
  padding: 80px 48px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.philosophy-inner {
  max-width: 720px;
}
.philosophy-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 16px;
  font-style: normal;
}
.philosophy-attr {
  font-size: 14px;
  color: var(--text-muted);
}

/* OUTCOMES */
.outcomes {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}
.outcomes-header {
  margin-bottom: 56px;
}
.outcomes-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
}
.outcome-number {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}
.outcome h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.outcome p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* CLOSING */
.closing {
  padding: 100px 48px;
  text-align: center;
  background: var(--surface);
}
.closing h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.closing p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}

/* FOOTER */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
}
.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.footer-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-copy {
  font-size: 12px;
  color: rgba(138, 135, 148, 0.5);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .nav-tagline { display: none; }
  .hero { padding: 64px 24px 56px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat { padding-right: 0; }
  .stat-sep { display: none; }
  .services { padding: 56px 24px; }
  .philosophy { padding: 56px 24px; }
  .outcomes { padding: 56px 24px; }
  .outcomes-grid { gap: 32px; }
  .closing { padding: 64px 24px; }
  .footer { padding: 32px 24px; }
}