:root {
  --ink: #14211d;
  --muted: #5c6964;
  --paper: #f7f6f0;
  --surface: rgba(255, 255, 255, 0.76);
  --line: rgba(20, 33, 29, 0.13);
  --green: #176b50;
  --green-dark: #0e4b38;
  --lime: #cce96a;
  --shadow: 0 22px 70px rgba(25, 50, 41, 0.11);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 88% 8%, rgba(204, 233, 106, 0.42), transparent 28rem),
    radial-gradient(circle at 8% 80%, rgba(89, 183, 144, 0.18), transparent 32rem),
    var(--paper);
}

a {
  color: inherit;
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-weight: 750;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  color: white;
  background: var(--green);
  box-shadow: 0 8px 20px rgba(23, 107, 80, 0.2);
}

.site-nav {
  display: flex;
  gap: 8px;
}

.site-nav a {
  padding: 9px 13px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.75);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 56px;
  align-items: end;
  padding: 88px 0 112px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(204, 233, 106, 0.25);
}

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

h1 {
  max-width: 800px;
  margin-bottom: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.3rem, 8vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.lede {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.65;
}

.hero-card,
.content-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card {
  padding: 28px;
}

.hero-card .label {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-card h2 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.hero-card p {
  margin-bottom: 22px;
  color: var(--muted);
  line-height: 1.6;
}

.text-link {
  color: var(--green-dark);
  font-weight: 750;
  text-underline-offset: 4px;
}

.section {
  padding: 0 0 104px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 40px;
  margin-bottom: 36px;
  align-items: start;
}

.section-heading h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.section-heading p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

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

.feature {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
}

.feature-number {
  display: block;
  margin-bottom: 46px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.11em;
}

.feature h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.feature p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.privacy-hero {
  max-width: 820px;
  padding: 76px 0 54px;
}

.privacy-hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
}

.updated {
  color: var(--muted);
  font-size: 0.94rem;
}

.policy-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  gap: 56px;
  align-items: start;
  padding-bottom: 100px;
}

.policy-index {
  position: sticky;
  top: 24px;
  padding: 20px;
  border-left: 2px solid var(--lime);
}

.policy-index strong {
  display: block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.policy-index a {
  display: block;
  padding: 5px 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
}

.policy-index a:hover {
  color: var(--green-dark);
}

.content-card {
  padding: clamp(28px, 6vw, 58px);
}

.policy-section + .policy-section {
  padding-top: 34px;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.policy-section h2 {
  margin-bottom: 15px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.policy-section h3 {
  margin: 22px 0 8px;
  font-size: 1rem;
}

.policy-section p,
.policy-section li {
  color: var(--muted);
  line-height: 1.72;
}

.policy-section ul {
  padding-left: 21px;
}

.policy-section li + li {
  margin-top: 8px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 38px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--green-dark);
  text-underline-offset: 3px;
}

@media (max-width: 780px) {
  .shell {
    width: min(100% - 28px, 680px);
  }

  .site-header {
    padding: 20px 0;
  }

  .hero,
  .section-heading,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 38px;
    padding: 62px 0 84px;
  }

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

  .feature {
    min-height: 0;
  }

  .feature-number {
    margin-bottom: 26px;
  }

  .policy-index {
    position: static;
    display: none;
  }

  .policy-layout {
    gap: 0;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
