:root {
  --bg: #F5F0EB;
  --fg: #1A1A1A;
  --accent: #C4573B;
  --muted: #7A7067;
  --surface: #EBE6DF;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 2rem 6rem;
  position: relative;
  overflow: hidden;
}
.hero__inner { max-width: 820px; }
.hero__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.75rem;
}
.hero__sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
  font-weight: 300;
}
.hero__accent {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 35vw;
  height: 70vh;
  background: var(--accent);
  opacity: 0.06;
  border-radius: 2px;
  pointer-events: none;
}

/* Proof */
.proof {
  background: var(--fg);
  color: var(--bg);
  padding: 5rem 2rem;
}
.proof__inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
.proof__stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 2rem;
}
.proof__number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  color: var(--bg);
}
.proof__label {
  font-size: 0.8rem;
  color: rgba(245,240,235,0.55);
  line-height: 1.5;
  max-width: 160px;
}
.proof__divider {
  width: 1px;
  height: 80px;
  background: rgba(245,240,235,0.15);
  flex-shrink: 0;
}

/* Playbook */
.playbook {
  padding: 8rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.playbook__header { margin-bottom: 4rem; }
.playbook__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 500;
}
.playbook__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.playbook__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--surface);
  border: 1px solid var(--surface);
  border-radius: 2px;
  overflow: hidden;
}
.playbook__card {
  background: var(--bg);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.playbook__icon {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.playbook__card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}
.playbook__card-body {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Closer */
.closer {
  background: var(--fg);
  color: var(--bg);
  padding: 8rem 2rem;
}
.closer__inner { max-width: 720px; margin: 0 auto; }
.closer__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--bg);
  margin-bottom: 1.5rem;
}
.closer__body {
  font-size: 1rem;
  color: rgba(245,240,235,0.6);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 3rem;
}
.closer__rule {
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 1.5rem;
}
.closer__tagline {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,240,235,0.35);
}

/* Footer */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--surface);
}
.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: 0.25rem;
}
.footer__desc {
  font-size: 0.8rem;
  color: var(--muted);
}
.footer__copy {
  font-size: 0.75rem;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 6rem 1.5rem 4rem; }
  .hero__sub { font-size: 1rem; }
  .proof__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .proof__divider { display: none; }
  .proof__stat { padding: 0; align-items: center; }
  .playbook { padding: 5rem 1.5rem; }
  .playbook__grid { grid-template-columns: 1fr; }
  .closer { padding: 5rem 1.5rem; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
}