:root {
  color-scheme: light;
  --bg: #fff8ef;
  --surface: #ffffff;
  --ink: #142033;
  --muted: #5d6878;
  --line: #e7ddcf;
  --sun: #ffc83d;
  --leaf: #2f8f6b;
  --blue: #3867d6;
  --shadow: 0 18px 48px rgba(20, 32, 51, 0.1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 200, 61, 0.2), rgba(255, 248, 239, 0) 360px),
    var(--bg);
  line-height: 1.6;
}

a {
  color: #2556bd;
  text-decoration-color: rgba(37, 86, 189, 0.35);
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-color: currentColor;
}

.site-shell {
  width: min(100% - 32px, 920px);
  margin: 0 auto;
}

.site-header {
  padding: 28px 0 18px;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid #172238;
  border-radius: 10px;
  background: var(--sun);
  box-shadow: 4px 4px 0 #172238;
  font-weight: 900;
}

.brand-copy {
  display: grid;
  gap: 0;
}

.brand-name {
  font-size: 1.02rem;
  font-weight: 850;
  letter-spacing: 0;
}

.brand-tagline {
  color: var(--muted);
  font-size: 0.88rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.94rem;
  font-weight: 700;
}

.hero,
.document {
  margin: 34px 0 48px;
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  gap: 28px;
}

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

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2rem, 6vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

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

.policy-card {
  display: grid;
  gap: 12px;
  min-height: 180px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  text-decoration: none;
}

.policy-card:hover {
  border-color: rgba(37, 86, 189, 0.45);
}

.policy-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: #eaf2ff;
  color: var(--blue);
  font-weight: 900;
}

.policy-card strong {
  font-size: 1.2rem;
}

.policy-card span {
  color: var(--muted);
}

.document {
  max-width: 840px;
}

.doc-meta {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.document h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
}

.document h2 {
  margin: 38px 0 10px;
  font-size: 1.36rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.document p,
.document li {
  color: #263449;
  font-size: 1rem;
}

.document ul {
  padding-left: 1.25rem;
}

.note {
  margin: 26px 0;
  padding: 18px;
  border-left: 5px solid var(--sun);
  border-radius: 8px;
  background: #fff4cf;
}

.footer {
  padding: 0 0 36px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

@media (max-width: 700px) {
  .site-shell {
    width: min(100% - 24px, 920px);
  }

  .nav-row,
  .footer-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
  }

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

  .hero,
  .document {
    margin-top: 22px;
    padding: 22px;
  }
}
