/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,700;12..96,800&family=Libre+Franklin:wght@300;400;500&display=swap');

/* Variables */
:root {
  --bg: #F8F5F0;
  --bg-alt: #F0EBE3;
  --fg: #1A1714;
  --fg-muted: #6B6358;
  --accent: #D4620B;
  --accent-dark: #A84E09;
  --border: #DDD8CF;
  --section-pad: 80px;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248,245,240,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 0.875rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }

/* Hero */
.hero {
  padding: 80px 32px 60px;
  background: var(--bg);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-kicker {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero-headline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 20px;
}
.hero-lede {
  font-size: 1.125rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-pillars { display: flex; flex-direction: column; gap: 12px; }
.pillar {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.9375rem;
  color: var(--fg);
  font-weight: 500;
}
.pillar-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
  min-width: 20px;
}
.pillar-label { border-bottom: 1px solid var(--border); padding-bottom: 2px; }

/* Hero visual - orbital system */
.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border);
}
.ring-1 { width: 60%; height: 60%; animation: pulse 4s ease-in-out infinite; }
.ring-2 { width: 80%; height: 80%; animation: pulse 4s ease-in-out infinite 0.5s; }
.ring-3 { width: 100%; height: 100%; animation: pulse 4s ease-in-out infinite 1s; }
@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1); }
}
.orbit-core {
  position: absolute;
  width: 80px;
  height: 80px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(212,98,11,0.3);
}
.core-inner { display: flex; align-items: center; justify-content: center; }
.orbit-label {
  position: absolute;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}
.label-1 { top: 12%; left: 50%; transform: translateX(-50%); }
.label-2 { bottom: 20%; right: 5%; }
.label-3 { top: 50%; left: 4%; transform: translateY(-50%); }

/* Hero stats */
.hero-stats {
  max-width: 1100px;
  margin: 56px auto 0;
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.stat { padding: 28px 40px; flex: 1; text-align: center; }
.stat-value {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.03em;
}
.stat-label {
  display: block;
  font-size: 0.8125rem;
  color: var(--fg-muted);
  margin-top: 4px;
  line-height: 1.4;
}
.stat-sep {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* Sections shared */
.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-headline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 48px;
}

/* How it works */
.howitworks {
  padding: var(--section-pad) 32px;
  background: var(--bg-alt);
}
.howitworks-inner { max-width: 1100px; margin: 0 auto; }
.steps { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; }
.step { position: relative; }
.step-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}
.step-body h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.step-body p { font-size: 0.9375rem; color: var(--fg-muted); line-height: 1.65; }

/* Features */
.features { padding: var(--section-pad) 32px; background: var(--bg); }
.features-inner { max-width: 1100px; margin: 0 auto; }
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
.feature-card {
  padding: 32px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,23,20,0.06);
}
.feature-icon { margin-bottom: 20px; }
.feature-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.feature-card p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.6; }

/* Outcomes */
.outcomes {
  padding: var(--section-pad) 32px;
  background: var(--fg);
}
.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.outcomes .section-label { color: rgba(248,245,240,0.5); }
.outcomes .section-headline { color: var(--bg); }
.outcomes-body { font-size: 1rem; color: rgba(248,245,240,0.65); line-height: 1.7; margin-bottom: 32px; font-weight: 300; }
.outcome-list { display: flex; flex-direction: column; gap: 16px; }
.outcome { display: flex; align-items: flex-start; gap: 14px; }
.outcome-check {
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.outcome p { font-size: 0.9375rem; color: rgba(248,245,240,0.8); line-height: 1.5; }

/* Outcome card */
.outcome-card {
  background: rgba(248,245,240,0.06);
  border: 1px solid rgba(248,245,240,0.12);
  border-radius: 8px;
  padding: 40px;
  position: relative;
}
.outcome-quote-mark {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--accent);
  margin-bottom: -20px;
}
.outcome-quote {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 1.0625rem;
  color: rgba(248,245,240,0.9);
  line-height: 1.7;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 28px;
}
.outcome-attribution { display: flex; align-items: center; gap: 14px; }
.attr-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212,98,11,0.3);
  flex-shrink: 0;
}
.attr-name { font-size: 0.875rem; font-weight: 500; color: var(--bg); }
.attr-role { font-size: 0.8125rem; color: rgba(248,245,240,0.5); }

/* Closing */
.closing {
  padding: 80px 32px;
  background: var(--accent);
}
.closing-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.closing h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--bg);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.closing p { font-size: 1rem; color: rgba(248,245,240,0.8); line-height: 1.7; font-weight: 300; }

/* Footer */
.footer { padding: 40px 32px; background: var(--bg-alt); border-top: 1px solid var(--border); }
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.footer-tagline { font-size: 0.8125rem; color: var(--fg-muted); margin-top: 2px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 0.8125rem; color: var(--fg-muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--fg); }
.footer-copy { font-size: 0.8125rem; color: var(--fg-muted); }

/* Responsive */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 280px; }
  .hero-stats { flex-direction: column; }
  .stat-sep { width: 60px; height: 1px; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .features-grid { grid-template-columns: 1fr; }
  .outcomes-inner { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}