:root {
  color-scheme: light;
  --ink: #20242a;
  --muted: #626b75;
  --line: #dfe4e8;
  --paper: #fbfaf7;
  --surface: #ffffff;
  --blue: #1f5f8b;
  --blue-dark: #164565;
  --gold: #c58b35;
  --soft-blue: #edf5f9;
  --soft-gold: #fff7e8;
}

* {
  box-sizing: border-box;
}

html {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--paper);
  color: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  line-height: 1.6;
}

a {
  color: var(--blue-dark);
}

.site-header,
.site-footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.brand {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0;
}

.brand span {
  color: var(--blue);
  font-weight: 400;
}

.header-note,
.back-link,
.site-footer {
  color: var(--muted);
  font-size: 0.88rem;
}

.back-link {
  text-decoration: none;
}

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

.hero {
  max-width: 780px;
  padding: 96px 0 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  line-height: 1.15;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 700;
}

h2 {
  margin: 0 0 18px;
  font-size: 1.4rem;
}

.lede {
  max-width: 690px;
  margin: 28px 0 24px;
  color: var(--muted);
  font-size: 1.2rem;
}

.status-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-dark);
  font-size: 0.94rem;
  font-weight: 700;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3a9364;
  box-shadow: 0 0 0 5px #e2f2e9;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding-bottom: 72px;
}

.panel {
  min-height: 230px;
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.panel p {
  margin: 0 0 14px;
  color: var(--muted);
}

.panel p:last-child {
  margin-bottom: 0;
}

.accent-panel {
  border-color: #eadbbf;
  background: var(--soft-gold);
}

.link-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 36px 0 52px;
  border-top: 1px solid var(--line);
}

.link-band h2 {
  margin: 0;
}

.policy-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.button-link,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 9px 14px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.button-link {
  border: 1px solid var(--blue);
  background: var(--blue);
  color: #fff;
}

.button-link:hover,
.button-link:focus-visible {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
}

.text-link {
  color: var(--blue-dark);
}

.site-footer {
  padding: 22px 0 30px;
  border-top: 1px solid var(--line);
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
}

.policy-page {
  max-width: 820px;
  padding: 74px 0 88px;
}

.policy-page h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

.policy-intro {
  max-width: 700px;
  margin: 24px 0 18px;
  color: var(--muted);
  font-size: 1.12rem;
}

.policy-meta {
  display: inline-block;
  margin-bottom: 54px;
  padding: 7px 12px;
  background: var(--soft-blue);
  color: var(--blue-dark);
  font-size: 0.86rem;
  font-weight: 700;
}

.policy-section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.policy-section h2 {
  font-size: 1.2rem;
}

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

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

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

.policy-section ul {
  margin: 0 0 14px;
  padding-left: 22px;
}

@media (max-width: 700px) {
  .site-header,
  .site-footer,
  .link-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header,
  .site-footer,
  main {
    width: min(100% - 28px, 1120px);
  }

  .header-note {
    display: none;
  }

  .hero {
    padding: 64px 0 52px;
  }

  h1 {
    font-size: 2.7rem;
  }

  .content-grid {
    grid-template-columns: 1fr;
    padding-bottom: 52px;
  }

  .panel {
    min-height: auto;
    padding: 26px;
  }

  .link-band {
    gap: 22px;
    padding-bottom: 42px;
  }

  .policy-links {
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
  }

  .policy-page {
    padding: 54px 0 64px;
  }

  .policy-meta {
    margin-bottom: 32px;
  }
}
