:root {
  color-scheme: light;
  --ink: #20231d;
  --muted: #64685d;
  --line: #dfe3d6;
  --paper: #fbfbf4;
  --soft: #f0f3e7;
  --leaf: #6f8f3f;
  --leaf-dark: #4b6429;
  --sun: #f39a54;
  --white: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 64px);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 76%, transparent);
  backdrop-filter: blur(18px);
}

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

.brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 28px);
  color: var(--muted);
  font-size: 15px;
}

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

nav a:hover,
.site-footer a:hover {
  color: var(--leaf-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(280px, 0.96fr);
  align-items: center;
  gap: clamp(32px, 6vw, 96px);
  min-height: calc(100svh - 72px);
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 64px) clamp(36px, 7vw, 72px);
}

.hero-copy {
  max-width: 680px;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(64px, 13vw, 156px);
  line-height: 0.88;
  letter-spacing: 0;
}

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

h3 {
  margin: 0 0 10px;
  font-size: 23px;
  line-height: 1.15;
}

.hero-text {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(21px, 3vw, 32px);
  line-height: 1.18;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}

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

.button.secondary {
  background: var(--white);
}

.hero-art {
  min-height: 360px;
  display: grid;
  place-items: center;
}

.hero-art img {
  width: min(100%, 520px);
  height: auto;
  filter: drop-shadow(0 26px 44px rgba(82, 94, 54, 0.18));
}

.section {
  padding: clamp(54px, 8vw, 110px) clamp(20px, 5vw, 64px);
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 720px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.feature {
  min-height: 190px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature p,
.privacy-band p,
.plain-list p,
.document p {
  color: var(--muted);
}

.split,
.privacy-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

.plain-list {
  display: grid;
  gap: 14px;
}

.plain-list p {
  margin: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.privacy-band {
  background: var(--soft);
}

.privacy-band > p {
  margin: 0;
  font-size: 22px;
}

.document {
  max-width: 860px;
  min-height: calc(100svh - 170px);
  padding: clamp(48px, 8vw, 92px) clamp(20px, 5vw, 64px);
}

.document h1 {
  margin-bottom: 26px;
  font-size: clamp(44px, 9vw, 84px);
}

.document h2 {
  margin-top: 38px;
  font-size: clamp(24px, 4vw, 36px);
}

.document a {
  color: var(--leaf-dark);
  font-weight: 700;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  align-items: center;
  padding: 26px clamp(20px, 5vw, 64px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero,
  .split,
  .privacy-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  .hero-art {
    min-height: 240px;
    justify-items: start;
  }

  .hero-art img {
    width: min(84vw, 420px);
  }

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

@media (max-width: 480px) {
  nav {
    width: 100%;
    justify-content: space-between;
  }

  .button {
    width: 100%;
  }
}
