:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #4b5563;
  --paper: #f8fafc;
  --card: #ffffff;
  --line: #dbe2ea;
  --accent: #f5c518;
  --accent-dark: #8a6800;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a {
  color: #075ea8;
}

a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: #0b111b;
  color: #ffffff;
}

.site-header__inner,
.page,
.site-footer__inner {
  width: min(100% - 2rem, 880px);
  margin-inline: auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand span {
  color: var(--accent);
}

.site-header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-header nav a {
  color: #e5e7eb;
  font-size: 0.9rem;
}

.page {
  padding-block: clamp(3rem, 8vw, 6rem);
}

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

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

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.2rem, 7vw, 4.4rem);
}

h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
}

.lede {
  max-width: 720px;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
}

.notice {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--accent);
  background: #fff9db;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.card,
.policy-section {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
  box-shadow: 0 12px 32px rgb(15 23 42 / 6%);
}

.card {
  padding: 1.5rem;
}

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

.policy {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

.policy-section {
  padding: clamp(1.25rem, 4vw, 2rem);
}

.policy-section > :last-child,
.card > :last-child {
  margin-bottom: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 640px) {
  .site-header__inner,
  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }

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