:root {
  --bg: #0f1117;
  --bg-card: #1a1f2e;
  --bg-card-hover: #222838;
  --fg: #f0ece6;
  --fg-muted: #9ca3af;
  --accent: #0d9488;
  --accent-warm: #f59e0b;
  --border: rgba(255,255,255,0.08);
  --section-pad: 80px;
  --container: 1100px;
  --radius: 4px;
}

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

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

/* NAV */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15,17,23,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  display: none;
}
@media (min-width: 640px) { .nav-tagline { display: block; } }

/* SHARED SECTION STYLES */
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 20px;
}
.section-body {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 640px;
  line-height: 1.7;
}

/* HERO */
.hero {
  padding: 80px 24px 80px;
  max-width: var(--container);
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  gap: 60px;
  align-items: center;
}
@media (min-width: 860px) {
  .hero {
    padding: 100px 24px 100px;
  }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 7vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
}

/* FORECAST CARD */
.forecast-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.3);
}
.card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.card-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.metric-value {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.metric-label {
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.card-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* PROBLEM SECTION */
.problem {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--section-pad) 24px;
}
.problem-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.problem-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  margin-top: 60px;
  background: var(--border);
  border-radius: 6px;
  overflow: hidden;
}
@media (max-width: 600px) {
  .problem-stat-row { grid-template-columns: 1fr; }
}
.problem-stat {
  background: var(--bg-card);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-warm);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-desc {
  font-size: 14px;
  color: var(--fg-muted);
  max-width: 200px;
  line-height: 1.5;
}

/* SAFESPACE */
.safespace { padding: var(--section-pad) 24px; }
.safespace-inner { max-width: var(--container); margin: 0 auto; }
.safespace-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 56px;
  background: var(--border);
  border-radius: 6px;
  overflow: hidden;
}
@media (max-width: 640px) { .safespace-features { grid-template-columns: 1fr; } }
.sf-card {
  background: var(--bg);
  padding: 36px 32px;
}
.sf-icon {
  color: var(--accent);
  margin-bottom: 16px;
}
.sf-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}
.sf-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* OUTCOMES */
.outcomes {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--section-pad) 24px;
}
.outcomes-inner { max-width: var(--container); margin: 0 auto; }
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}
@media (max-width: 860px) { .outcomes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .outcomes-grid { grid-template-columns: 1fr; } }
.outcome-card { display: flex; flex-direction: column; gap: 12px; }
.outcome-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.outcome-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.4;
}
.outcome-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* CLIENTS */
.clients {
  padding: var(--section-pad) 24px;
  text-align: center;
}
.clients-inner { max-width: var(--container); margin: 0 auto; }
.client-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}
.client-badge {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 32px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg-card);
}
.client-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
}
.client-sector {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.clients-note {
  margin-top: 32px;
  font-size: 14px;
  color: var(--fg-muted);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* CLOSING */
.closing {
  padding: var(--section-pad) 24px;
  text-align: center;
}
.closing-inner { max-width: 680px; margin: 0 auto; }
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
}
.footer-tagline { font-size: 13px; color: var(--fg-muted); }
.footer-meta {
  display: flex;
  gap: 24px;
  font-size: 13px;
  color: var(--fg-muted);
}