:root {
  color-scheme: light;
  --ink: #18211c;
  --muted: #627069;
  --paper: #f7faf7;
  --surface: #ffffff;
  --line: #dce5df;
  --accent: #176b45;
  --accent-soft: #dff3e8;
}

* { box-sizing: border-box; }

html { background: var(--paper); }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(100, 202, 149, 0.18), transparent 32rem),
    var(--paper);
  font: 16px/1.7 ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: var(--accent); }

.shell {
  width: min(100% - 40px, 780px);
  margin: 0 auto;
  padding: 44px 0 36px;
}

.compact { min-height: 100vh; display: flex; flex-direction: column; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  color: white;
  background: var(--accent);
}

header, .hero { padding: 88px 0 46px; }
.hero { flex: 1; padding-top: clamp(100px, 18vh, 180px); }

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.55rem, 8vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.policy h1 { font-size: clamp(2.5rem, 7vw, 4.5rem); }

.lead {
  max-width: 680px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2.6vw, 1.3rem);
  line-height: 1.55;
}

.updated { margin: 20px 0 0; color: var(--muted); font-size: 0.92rem; }

.button {
  display: inline-block;
  margin-top: 28px;
  padding: 12px 18px;
  border-radius: 12px;
  color: white;
  background: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

article {
  padding: 12px 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 60px rgba(35, 66, 48, 0.08);
}

article section { padding: 30px 0; border-bottom: 1px solid var(--line); }
article section:last-child { border-bottom: 0; }

h2 { margin: 0 0 12px; font-size: 1.35rem; line-height: 1.3; }
p { margin: 12px 0 0; }
ul { margin: 12px 0 0; padding-left: 24px; }
li + li { margin-top: 8px; }

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  .shell { width: min(100% - 28px, 780px); padding-top: 26px; }
  header { padding: 64px 0 34px; }
  article { padding: 4px 20px; border-radius: 18px; }
  footer { flex-direction: column; gap: 4px; }
}

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