:root {
  color-scheme: light;
  --paper: #f8f6f1;
  --paper-deep: #eee8dc;
  --ink: #111310;
  --muted: #666960;
  --line: rgba(17, 19, 16, 0.12);
  --green: #3c965c;
  --orange: #e87826;
  --white: rgba(255, 255, 255, 0.76);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 8%, rgba(107, 177, 123, 0.18), transparent 29rem),
    radial-gradient(circle at 5% 75%, rgba(232, 120, 38, 0.13), transparent 26rem),
    var(--paper);
  min-height: 100vh;
}

a { color: inherit; }

.shell {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 750;
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.nav-links {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--ink); }

.hero {
  padding: 110px 0 105px;
  max-width: 850px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  padding: 11px 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

h1 {
  margin: 30px 0 24px;
  max-width: 820px;
  font-size: clamp(56px, 9vw, 108px);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.lede {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-bottom: 110px;
}

.card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 18px 60px rgba(38, 35, 28, 0.07);
  backdrop-filter: blur(22px);
}

.card .number {
  color: var(--orange);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.card h2 {
  margin: 42px 0 12px;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.card p, .prose p, .prose li {
  color: var(--muted);
  line-height: 1.65;
}

.page-header {
  padding: 84px 0 46px;
  border-bottom: 1px solid var(--line);
}

.page-header h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(48px, 8vw, 88px);
}

.page-header p { color: var(--muted); }

.prose {
  max-width: 760px;
  padding: 54px 0 110px;
}

.prose h2 {
  margin: 48px 0 12px;
  font-size: 27px;
  letter-spacing: -0.03em;
}

.prose h2:first-child { margin-top: 0; }
.prose ul { padding-left: 22px; }

.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 750;
  text-decoration: none;
}

footer {
  border-top: 1px solid var(--line);
  padding: 26px 0 38px;
  color: var(--muted);
  font-size: 13px;
}

footer .shell {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

footer a { text-decoration: none; }

@media (max-width: 760px) {
  .shell { width: min(100% - 28px, 1080px); }
  nav { align-items: flex-start; }
  .nav-links { gap: 13px; flex-wrap: wrap; justify-content: flex-end; }
  .hero { padding: 74px 0 72px; }
  .cards { grid-template-columns: 1fr; padding-bottom: 72px; }
  .card { min-height: auto; }
  .card h2 { margin-top: 28px; }
  footer .shell { flex-direction: column; }
}
