:root {
  color-scheme: light;
  --bg: #fffaf0;
  --surface: #ffffff;
  --border: #fed7aa;
  --border-strong: #e4e4e7;
  --text: #18181b;
  --muted: #52525b;
  --accent: #b45309;
  --accent-soft: #9a3412;
  --dark: #18181b;
  --dark-text: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, sans-serif;
}

a {
  color: inherit;
}

.shell {
  width: min(72rem, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header,
.site-footer {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.site-footer {
  border-top: 1px solid var(--border);
  border-bottom: 0;
}

.header-row,
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 0;
}

.brand {
  font-weight: 700;
  text-decoration: none;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.nav a,
.muted-link {
  color: #44403c;
  font-weight: 500;
  text-decoration: none;
}

.hero {
  padding: 5rem 0 3.5rem;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  padding: 0.5rem 0.85rem;
  border: 1px solid #fdba74;
  border-radius: 999px;
  background: var(--surface);
  color: var(--accent-soft);
  font-size: 0.95rem;
  font-weight: 600;
}

h1 {
  margin: 1rem auto 0;
  max-width: 14ch;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

h2 {
  margin: 0.75rem 0 0;
  font-size: clamp(1.7rem, 4vw, 2.2rem);
  line-height: 1.15;
}

.lede,
.feature-copy,
.cta-copy {
  margin: 1.25rem auto 0;
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.875rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.3rem;
  border-radius: 0.9rem;
  text-decoration: none;
  font-weight: 600;
}

.button-primary {
  background: var(--accent);
  color: #ffffff;
}

.button-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid #d4d4d8;
}

.section {
  padding: 0 0 4rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 1rem;
}

.card {
  border: 1px solid var(--border-strong);
  border-radius: 1.5rem;
  background: var(--surface);
  padding: 1.5rem;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
}

.stat-label,
.section-label {
  margin-top: 0.5rem;
  color: #71717a;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-label {
  margin-top: 0;
  color: var(--accent);
  text-align: center;
}

.section-copy {
  max-width: 42rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.cta-panel {
  border-radius: 2rem;
  background: var(--dark);
  color: var(--dark-text);
  padding: 2rem;
  text-align: center;
}

.cta-panel .section-label {
  color: #fcd34d;
}

.cta-copy {
  color: #d4d4d8;
}

.button-dark {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-row {
  color: #71717a;
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .header-row,
  .footer-row {
    justify-content: center;
    text-align: center;
  }
}
