:root {
  color-scheme: light;
  --ink: #151513;
  --muted: #5e655f;
  --line: #d9ded7;
  --paper: #fbfaf6;
  --band: #efeee7;
  --accent: #2d6b55;
  --accent-dark: #164332;
  --gold: #c89a3d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: rgba(251, 250, 246, 0.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  height: 64px;
  justify-content: space-between;
  padding: 0 32px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-header.compact {
  position: static;
}

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

.brand-mark {
  background: linear-gradient(135deg, var(--accent), var(--gold));
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.5);
  height: 24px;
  width: 24px;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

nav a:hover {
  color: var(--ink);
}

.hero {
  align-items: end;
  background:
    linear-gradient(180deg, rgba(16, 20, 18, 0.16), rgba(16, 20, 18, 0.75)),
    url("/assets/hero.png") center / cover,
    #233328;
  display: grid;
  min-height: calc(100vh - 64px);
  padding: 64px 32px 72px;
  position: relative;
}

.hero::after {
  background: var(--paper);
  bottom: 0;
  content: "";
  height: 18px;
  left: 0;
  position: absolute;
  right: 0;
}

.hero-content {
  color: white;
  min-width: 0;
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(64px, 12vw, 142px);
  line-height: 0.9;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(32px, 5vw, 58px);
  letter-spacing: 0;
  line-height: 1;
}

h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.lede {
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.16;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  border-radius: 6px;
  display: inline-flex;
  font-weight: 760;
  min-height: 48px;
  padding: 14px 18px;
  text-decoration: none;
}

.button.primary {
  background: var(--paper);
  color: var(--ink);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: white;
}

.band {
  border-bottom: 1px solid var(--line);
  padding: 78px 32px;
}

.section-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  margin: 0 auto;
  max-width: 1120px;
}

.body-copy,
.price-panel {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.feature-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--line);
}

.feature-grid article {
  background: var(--paper);
  min-height: 260px;
  padding: 36px 32px;
}

.feature-grid p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.pricing-band {
  background: var(--band);
}

.price-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
}

.price-panel a {
  color: var(--accent-dark);
  font-weight: 750;
}

.site-footer {
  align-items: center;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  padding: 34px 24px;
}

.site-footer span {
  color: var(--ink);
  font-weight: 760;
}

.site-footer a {
  text-decoration: none;
}

.legal {
  margin: 0 auto;
  max-width: 820px;
  padding: 72px 32px 96px;
}

.legal h1 {
  color: var(--ink);
  font-size: clamp(42px, 7vw, 76px);
}

.legal h2 {
  font-size: 26px;
  margin-top: 40px;
}

.legal p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.updated {
  border-bottom: 1px solid var(--line);
  padding-bottom: 28px;
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px 18px;
    height: auto;
    justify-content: flex-start;
    padding: 18px 20px;
  }

  nav {
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
  }

  nav a {
    font-size: 13px;
  }

  .hero {
    min-height: 640px;
    padding: 44px 22px 58px;
  }

  .hero-content,
  .lede {
    max-width: 100%;
  }

  .lede {
    font-size: 20px;
    line-height: 1.25;
    max-width: 28ch;
  }

  h1 {
    font-size: clamp(44px, 13vw, 54px);
  }

  h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .section-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .band {
    padding: 54px 22px;
  }
}
