:root {
  --bg: #0D0D1A;
  --surface: #16162A;
  --surface-2: #1E1E38;
  --accent: #F59E0B;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --teal: #14B8A6;
  --text: #F0F0F8;
  --text-muted: #8888A8;
  --border: rgba(255,255,255,0.07);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Figtree', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  color: var(--accent);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  padding: 80px 48px 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-overline {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--accent);
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
}

/* Painpoints */
.painpoints {
  padding: 80px 48px;
  background: var(--surface);
}
.painpoints-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--teal);
  margin-bottom: 16px;
}
.painpoints-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.2;
  margin-bottom: 48px;
  max-width: 640px;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pain-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}
.pain-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.pain-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
}
.pain-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* What We Do */
.whatwedo { padding: 80px 48px; }
.whatwedo-inner { max-width: 1200px; margin: 0 auto; }
.whatwedo-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 40px);
  margin-bottom: 12px;
}
.whatwedo-sub {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 48px;
  max-width: 540px;
}
.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cap-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}
.cap-number {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.cap-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.cap-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Outcomes */
.outcomes {
  padding: 80px 48px;
  background: var(--surface);
}
.outcomes-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.outcomes-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.2;
  margin-bottom: 20px;
}
.outcomes-body {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-top: 20px;
}
.outcome-row {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  gap: 16px;
  align-items: center;
}
.outcome-row:last-child { border-bottom: none; }
.outcome-metric {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--accent);
}
.outcome-change {
  font-size: 15px;
  font-weight: 600;
}
.outcome-desc {
  font-size: 13px;
  color: var(--text-muted);
}

/* Niches */
.niches { padding: 80px 48px; }
.niches-inner { max-width: 1200px; margin: 0 auto; }
.niches-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 48px;
  max-width: 560px;
}
.niche-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.niche-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}
.niche-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 16px;
}
.niche-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.niche-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Closing */
.closing {
  padding: 100px 48px;
  background: linear-gradient(135deg, var(--surface) 0%, #1A1530 100%);
  text-align: center;
}
.closing-inner { max-width: 800px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.25;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 17px;
  color: var(--text-muted);
}

/* Footer */
.footer {
  padding: 32px 48px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  color: var(--accent);
}
.footer-meta {
  font-size: 13px;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .outcomes-inner { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr 1fr; }
  .capability-grid { grid-template-columns: 1fr 1fr; }
  .niche-grid { grid-template-columns: 1fr 1fr; }
  .outcome-row { grid-template-columns: 90px 1fr; }
  .outcome-desc { display: none; }
}
@media (max-width: 600px) {
  .hero, .painpoints, .whatwedo, .outcomes, .niches, .closing, .footer { padding-left: 24px; padding-right: 24px; }
  .pain-grid, .capability-grid, .niche-grid { grid-template-columns: 1fr; }
  .nav { padding: 20px 24px; }
  .footer-inner { flex-direction: column; gap: 8px; }
}