:root {
  color-scheme: light;
  --paper: #f4efe3;
  --surface: #fffdf7;
  --ink: #1d2b24;
  --muted: #657068;
  --moss: #2f5d46;
  --line: rgba(47, 93, 70, 0.15);
  --shadow: 0 18px 50px rgba(37, 52, 43, 0.08);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(120, 155, 126, 0.18), transparent 34rem),
    var(--paper);
  line-height: 1.68;
}

a {
  color: var(--moss);
  font-weight: 650;
  text-underline-offset: 0.18em;
}

.shell {
  width: min(880px, calc(100% - 32px));
  margin: 0 auto;
  padding: 38px 0 72px;
}

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

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid var(--moss);
  border-radius: 10px;
  color: var(--moss);
  font-size: 20px;
}

.hero {
  padding: 54px 0 26px;
}

.eyebrow,
.effective-date {
  color: var(--moss);
  font-size: 0.84rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 760px;
  margin-top: 8px;
  font-size: clamp(2.2rem, 8vw, 4.7rem);
}

h2 {
  font-size: 1.25rem;
}

p,
li {
  color: var(--muted);
}

.lede {
  max-width: 700px;
  margin-top: 18px;
  font-size: 1.08rem;
}

.language-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 26px;
}

.language-picker button {
  appearance: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--ink);
  background: rgba(255, 253, 247, 0.76);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 650;
  cursor: pointer;
}

.language-picker button[aria-pressed="true"] {
  color: white;
  border-color: var(--moss);
  background: var(--moss);
}

.card,
.policy-section {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 247, 0.92);
  box-shadow: var(--shadow);
}

.policy-section {
  padding: 24px;
  margin: 14px 0;
}

.policy-section p:last-child,
.policy-section ul:last-child {
  margin-bottom: 0;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.card {
  display: block;
  min-height: 150px;
  padding: 24px;
  color: var(--ink);
  text-decoration: none;
}

.card p {
  margin-bottom: 0;
}

.fine-print {
  margin-top: 32px;
  color: var(--muted);
  font-size: 0.9rem;
}

[data-language][hidden] {
  display: none;
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 24px, 880px);
    padding-top: 24px;
  }

  .hero {
    padding-top: 38px;
  }

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

  .policy-section {
    padding: 20px;
  }
}
