/* ===== VARIABLES ===== */
:root {
  --bg: #FDFCF8;
  --bg-alt: #F4F2EC;
  --dark: #0C0C0C;
  --ink: #111111;
  --mid: #6B6B6B;
  --accent: #F59E0B;
  --accent-dark: #D97706;
  --white: #FFFFFF;
  --border: #E5E3DC;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Figtree', system-ui, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3.5rem;
  --space-2xl: 6rem;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAV ===== */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-logo {
  width: 28px;
  height: 28px;
  background: var(--dark);
  color: var(--white);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
}
.nav-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--mid);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ===== HERO ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 5rem 2.5rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 420px;
  line-height: 1.65;
  margin-bottom: 2.5rem;
}
.hero-callout {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  width: fit-content;
}
.callout-left, .callout-right {
  padding: 1rem 1.5rem;
}
.callout-divider {
  width: 1px;
  height: 100%;
  background: var(--border);
}
.callout-stat {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
}
.callout-label {
  font-size: 0.72rem;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}

/* Hero Widget */
.hero-widget {
  background: var(--dark);
  color: var(--white);
  border-radius: 14px;
  padding: 2rem;
}
.widget-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 1.5rem;
}
.widget-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}
.widget-step:last-child { border-bottom: none; }
.widget-step--highlight { color: var(--accent); }
.step-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--mid);
  min-width: 24px;
  padding-top: 2px;
}
.widget-step--highlight .step-num { color: var(--accent); }

/* ===== SECTION LABEL ===== */
.section-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 3rem;
}

/* ===== PROOF ===== */
.proof {
  background: var(--bg-alt);
  padding: var(--space-2xl) 2.5rem;
}
.proof-header { max-width: 1200px; margin: 0 auto var(--space-xl); }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}
.proof-card {
  background: var(--bg);
  padding: 2rem 1.75rem;
}
.proof-stat {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
}
.proof-label {
  font-size: 0.82rem;
  color: var(--mid);
  line-height: 1.5;
}

/* ===== PROCESS ===== */
.process {
  padding: var(--space-2xl) 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.process-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.process-item {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 12px;
}
.process-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 1rem;
}
.process-item h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.process-item p {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.6;
}

/* ===== OUTCOMES ===== */
.outcomes {
  background: var(--dark);
  padding: var(--space-2xl) 2.5rem;
}
.outcomes-inner { max-width: 1200px; margin: 0 auto; }
.outcomes-headline {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 2.5rem;
}
.outcomes-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.outcome {
  padding: 2rem 2.25rem;
  background: rgba(255,255,255,0.03);
}
.outcome--before { background: rgba(255,255,255,0.02); }
.outcome--after { background: rgba(245,158,11,0.08); }
.outcome-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 1.25rem;
}
.outcome--after .outcome-tag { color: var(--accent); }
.outcome ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.outcome li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  padding-left: 1.25rem;
  position: relative;
}
.outcome--before li::before { content: '—'; position: absolute; left: 0; color: var(--mid); }
.outcome--after li::before { content: '+'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.outcomes-pricing {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
}
.pricing-tag {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.pricing-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: var(--space-2xl) 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 500;
  color: var(--dark);
  line-height: 1.45;
  max-width: 760px;
  margin: 0 auto 0.75rem;
  font-style: italic;
}
.manifesto-attribution {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 4rem;
}
.manifesto-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.pillar {
  background: var(--bg);
  padding: 2rem 1.5rem;
  text-align: left;
}
.pillar-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.6rem;
}
.pillar-body {
  font-size: 0.82rem;
  color: var(--mid);
  line-height: 1.55;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.5rem; }
.footer-logo {
  width: 24px;
  height: 24px;
  background: var(--dark);
  color: var(--white);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
}
.footer-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--mid);
  flex: 1;
  margin-left: 0.5rem;
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--mid);
  margin-left: auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 1.5rem 2rem; }
  .hero-right { order: -1; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .process-row { grid-template-columns: 1fr; }
  .manifesto-pillars { grid-template-columns: repeat(2, 1fr); }
  .outcomes-comparison { grid-template-columns: 1fr; }
  .nav-tagline { display: none; }
  .footer-inner { flex-wrap: wrap; }
  .footer-copy { margin-left: 0; width: 100%; }
}
@media (max-width: 600px) {
  .hero-headline { font-size: 2rem; }
  .proof-grid { grid-template-columns: 1fr; }
  .manifesto-pillars { grid-template-columns: 1fr; }
  .hero-callout { flex-direction: column; width: 100%; }
  .callout-divider { width: 100%; height: 1px; }
  .nav { padding: 1rem 1.25rem; }
  .footer { padding: 1.5rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .footer-copy { margin-left: 0; }
}