:root {
  color-scheme: light;
  --ink: #102235;
  --muted: #53677a;
  --line: #d5e0e6;
  --surface: #f4f8f9;
  --accent: #11887e;
  --sun: #f39a00;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
}

a { color: var(--accent); }

.topbar {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.brand img {
  display: block;
  width: 220px;
  max-width: 48vw;
  height: 44px;
  object-fit: contain;
  object-position: left center;
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar__actions a { font-weight: 700; text-decoration: none; }

select {
  min-height: 42px;
  padding: 0 34px 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
}

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

.policy-hero { padding: 72px 0 38px; border-bottom: 1px solid var(--line); }
.eyebrow { margin: 0 0 10px; color: var(--sun); font-size: 0.82rem; font-weight: 800; text-transform: uppercase; }
h1 { margin: 0; font-size: clamp(2.2rem, 5vw, 4.2rem); line-height: 1.08; }
.lead { max-width: 760px; margin: 20px 0 8px; color: var(--muted); font-size: 1.18rem; }
.effective { margin: 0; color: var(--muted); font-size: 0.93rem; }

.policy { padding: 42px 0 72px; }
.policy section { padding: 26px 0; border-bottom: 1px solid var(--line); }
.policy h2 { margin: 0 0 10px; font-size: 1.35rem; }
.policy p { margin: 8px 0; }
.policy ul { margin: 12px 0 0; padding-left: 22px; }
.policy li + li { margin-top: 8px; }
.notice { padding: 18px 20px; border-left: 4px solid var(--accent); background: var(--surface); }

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  padding: 26px 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 650px) {
  .topbar { align-items: flex-start; }
  .topbar__actions { align-items: flex-end; flex-direction: column-reverse; gap: 8px; }
  .brand img { width: 170px; }
  .policy-hero { padding-top: 48px; }
}
