:root {
  --bg: #0e1a12;
  --surface: #152318;
  --surface-2: #1a2e1f;
  --fg: #f5f0e8;
  --fg-muted: #b8b0a4;
  --accent: #f59e0b;
  --accent-dim: #d97706;
  --border: rgba(245, 240, 232, 0.08);
}

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

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

/* NAVBAR */
.navbar {
  padding: 22px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.3px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 400;
}
.nav-tagline::before {
  content: '— ';
}

/* HERO */
.hero {
  position: relative;
  padding: 96px 48px 88px;
  overflow: hidden;
}
.hero-bg-texture {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 10% 50%, rgba(245,158,11,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  max-width: 820px;
}
.hero-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-lede {
  font-size: 19px;
  color: var(--fg-muted);
  max-width: 620px;
  line-height: 1.65;
  margin-bottom: 56px;
  font-weight: 300;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.stat-number {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.5px;
}
.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin: 0 40px;
}

/* PILLARS */
.pillars {
  padding: 80px 48px;
  border-top: 1px solid var(--border);
}
.pillars-inner { max-width: 900px; }
.pillars-heading {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.5px;
  margin-bottom: 52px;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pillar-icon {
  width: 48px;
  height: 48px;
  background: var(--surface-2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 18px;
}
.pillar h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--fg);
}
.pillar p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* SERVICES */
.services {
  padding: 80px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.services-inner { max-width: 1060px; }
.services-heading {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 40px;
}
.services-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2px;
}
.service-card {
  background: var(--surface-2);
  padding: 32px;
  border-radius: 0;
}
.service-card--main {
  background: rgba(245,158,11,0.06);
  border: 1px solid rgba(245,158,11,0.15);
}
.service-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  background: rgba(245,158,11,0.12);
  padding: 3px 8px;
  border-radius: 3px;
  margin-bottom: 16px;
}
.service-tag--alt {
  color: var(--fg-muted);
  background: rgba(245,240,232,0.06);
}
.service-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--fg);
}
.service-card p {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-list li {
  font-size: 13px;
  color: var(--fg-muted);
  padding-left: 16px;
  position: relative;
}
.service-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  opacity: 0.5;
  font-size: 11px;
}
.service-price {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.service-cta-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}
.service-cta-link:hover {
  color: var(--accent-dim);
}

/* PROOF */
.proof {
  padding: 80px 48px;
}
.proof-inner { max-width: 800px; }
.proof-badge {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.proof-heading {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--fg);
  margin-bottom: 40px;
  line-height: 1.2;
}
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.proof-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.proof-check {
  width: 28px;
  height: 28px;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}
.proof-item p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* CLOSING */
.closing {
  padding: 88px 48px;
  border-top: 1px solid var(--border);
}
.closing-inner { max-width: 700px; }
.closing-heading {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  font-weight: 300;
}

/* FOOTER */
.footer {
  padding: 32px 48px;
  border-top: 1px solid var(--border);
}
.footer-inner { max-width: 800px; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
}
.footer-sep { color: var(--fg-muted); }
.footer-desc { font-size: 14px; color: var(--fg-muted); }

/* MOBILE */
@media (max-width: 768px) {
  .navbar { padding: 18px 24px; }
  .hero { padding: 60px 24px 56px; }
  .hero-headline { letter-spacing: -1px; }
  .hero-stats { flex-direction: column; gap: 20px; align-items: flex-start; }
  .hero-stat-divider { display: none; }
  .pillars { padding: 56px 24px; }
  .pillars-grid { grid-template-columns: 1fr; gap: 28px; }
  .services { padding: 56px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .proof { padding: 56px 24px; }
  .proof-grid { grid-template-columns: 1fr; }
  .closing { padding: 56px 24px; }
  .closing-heading { font-size: 32px; letter-spacing: -0.5px; }
  .footer { padding: 24px; }
}