:root {
  color-scheme: light;
  --ink: #171b1f;
  --muted: #58616b;
  --paper: #fbfaf6;
  --panel: #ffffff;
  --soft: #f1ece3;
  --line: #ddd5c8;
  --accent: #41695a;
  --accent-strong: #24473b;
  --warm: #9f6530;
  --shadow: 0 18px 50px rgba(23, 27, 31, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, rgba(241, 236, 227, 0.9), rgba(251, 250, 246, 0.95) 360px),
    var(--paper);
  color: var(--ink);
}

a {
  color: var(--accent-strong);
  font-weight: 750;
  text-underline-offset: 3px;
}

.policy-shell {
  min-height: 100vh;
}

.policy-hero {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 74px 0 44px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(2.55rem, 8vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.lede {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2.2vw, 1.32rem);
  line-height: 1.58;
}

.updated {
  margin: 0;
  color: #6f6559;
  font-size: 0.94rem;
  font-weight: 700;
}

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

.summary-band article {
  min-height: 210px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.82);
}

.summary-band span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 850;
}

.summary-band h2,
.policy-content h2 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.summary-band p,
.policy-content p,
.policy-content li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}

.policy-content {
  width: min(960px, calc(100% - 36px));
  margin: 0 auto;
  padding: 56px 0 72px;
}

.policy-content > article,
.note {
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.policy-content > article:first-child {
  padding-top: 0;
}

.split-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.split-list > div,
.path-grid > div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

h3 {
  margin-bottom: 12px;
  color: var(--accent-strong);
  font-size: 1rem;
  letter-spacing: 0;
}

ul {
  margin: 0;
  padding-left: 1.15rem;
}

li + li {
  margin-top: 10px;
}

.check-list {
  padding-left: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.76em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--warm);
}

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

.path-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-strong);
  font-size: 1rem;
}

.path-grid p {
  margin: 0;
  font-size: 0.94rem;
}

.resources ul {
  display: grid;
  gap: 10px;
  padding-left: 0;
  list-style: none;
}

.resources li {
  margin: 0;
}

.note {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: #403831;
  line-height: 1.65;
}

.note strong {
  color: var(--ink);
}

@media (max-width: 780px) {
  .policy-hero {
    width: min(100% - 28px, 620px);
    padding: 48px 0 34px;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 4.2rem);
  }

  .summary-band,
  .split-list,
  .path-grid {
    grid-template-columns: 1fr;
  }

  .summary-band article {
    min-height: 0;
    padding: 24px 18px;
  }

  .policy-content {
    width: min(100% - 28px, 620px);
    padding: 40px 0 56px;
  }

  .policy-content > article,
  .note {
    padding-block: 26px;
  }

  .split-list > div,
  .path-grid > div {
    padding: 18px;
  }
}

@media (max-width: 390px) {
  .policy-hero,
  .policy-content {
    width: calc(100% - 22px);
  }

  h1 {
    font-size: 2.35rem;
  }
}
