:root {
  color-scheme: light;
  --ink: #182638;
  --muted: #4c5e72;
  --blue: #174ea6;
  --line: #dbe2ea;
  --paper: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 100%;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
}

* { box-sizing: border-box; }
body { margin: 0; min-height: 100vh; display: flex; flex-direction: column; }
a { color: var(--blue); text-underline-offset: 0.2em; }
a:hover { text-decoration-thickness: 0.14em; }
a:focus-visible { outline: 3px solid var(--blue); outline-offset: 5px; border-radius: 2px; }
p { margin: 0 0 1.25rem; }
h1, h2 { line-height: 1.2; letter-spacing: -0.025em; }
h1 { margin: 0 0 1.25rem; font-size: clamp(2.4rem, 5vw, 3.5rem); font-weight: 650; }
h2 { margin: 0 0 0.85rem; font-size: 1.35rem; font-weight: 650; }
section { margin-top: 2.5rem; }
code { font-family: ui-monospace, "SFMono-Regular", Consolas, monospace; font-size: 0.9em; overflow-wrap: anywhere; }
.container { width: calc(100% - 3rem); max-width: 64rem; margin-inline: auto; }
.site-header { border-bottom: 1px solid var(--line); }
.header-content { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-block: 1.35rem; }
.wordmark { color: var(--ink); font-size: 1.4rem; font-weight: 700; letter-spacing: -0.04em; text-decoration: none; }
nav a { display: inline-block; padding-block: 0.5rem; font-size: 1rem; }
.home, .policy { padding-block: clamp(2.5rem, 7vw, 5rem); flex: 1; font-size: 1.125rem; }
.home { max-width: 48rem; }
.home h1 { font-size: clamp(3rem, 8vw, 4.75rem); }
.eyebrow { color: var(--blue); font-size: 0.9rem; font-weight: 650; letter-spacing: 0.04em; }
.intro { font-size: clamp(1.2rem, 3vw, 1.5rem); line-height: 1.55; }
.primary-link { display: inline-block; margin-top: 1rem; padding: 0.8rem 1.15rem; border: 1px solid var(--blue); border-radius: 4px; font-weight: 600; text-decoration: none; }
.primary-link:hover { color: var(--paper); background: var(--blue); }
.primary-link span { margin-left: 0.45rem; }
.policy { max-width: 48rem; }
.effective-date { color: var(--muted); font-size: 1rem; }
.scope { border-left: 3px solid var(--line); padding-left: 1rem; }
.site-footer { border-top: 1px solid var(--line); color: var(--muted); font-size: 0.95rem; }
.footer-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem 1.5rem; padding-block: 1.4rem; }
.footer-content p { margin: 0; }
.skip-link { position: absolute; left: 1rem; top: -8rem; padding: 0.65rem 1rem; background: var(--paper); z-index: 1; }
.skip-link:focus { top: 0.75rem; }

@media (max-width: 30rem) {
  .container { width: calc(100% - 2rem); }
  .header-content { padding-block: 0.85rem; }
  .home, .policy { font-size: 1rem; }
  .primary-link { max-width: 100%; }
}

@media print {
  .site-header, .site-footer, .skip-link { display: none; }
  .container { width: 100%; max-width: none; }
  .home, .policy { padding-block: 0; }
  a { color: inherit; }
}
