:root {
  color-scheme: dark;
  --background: #001f27;
  --surface: #082e38;
  --text: #eef4f1;
  --muted: #b7cac8;
  --accent: #9fe3ce;
  --line: #43626a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.65;
  background: var(--background);
  color: var(--text);
}
* { box-sizing: border-box; }
body { margin: 0; }
.page { max-width: 52rem; margin: auto; padding: 1.5rem clamp(1rem, 4vw, 3rem); }
a { color: var(--accent); text-underline-offset: .2em; overflow-wrap: anywhere; }
a:hover { text-decoration-thickness: .15em; }
a:focus-visible { outline: 3px solid var(--accent); outline-offset: 5px; }
header, footer { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
header { padding-bottom: 1.4rem; border-bottom: 1px solid var(--line); }
.brand, nav, .eyebrow, .review-note, footer { font-family: system-ui, sans-serif; }
.brand { font-weight: 750; text-decoration: none; }
main { padding-top: 1.5rem; }
h1 { font-size: clamp(2.4rem, 7vw, 4.2rem); font-weight: 500; line-height: 1.12; letter-spacing: -.035em; margin: 1rem 0 1.5rem; }
h2 { font-size: 1.4rem; line-height: 1.3; margin: 2.25rem 0 .7rem; }
p { margin: .8rem 0; }
li { margin: .65rem 0; }
ul { padding-left: 1.35rem; }
.intro { font-size: 1.22rem; }
.eyebrow { color: var(--accent); font-size: .8rem; letter-spacing: .07em; text-transform: uppercase; margin-top: 2.5rem; }
.review-note { font-size: .85rem; background: var(--surface); border-left: 3px solid var(--accent); padding: .8rem 1rem; }
footer { color: var(--muted); font-size: .8rem; margin-top: 3rem; padding: 1.5rem 0; border-top: 1px solid var(--line); }
.skip-link { position: absolute; top: -10rem; left: 1rem; background: var(--surface); padding: .6rem; z-index: 1; }
.skip-link:focus { top: .5rem; }
::selection { background: var(--accent); color: var(--background); }
@media print {
  :root { color-scheme: light; background: white; color: black; }
  a { color: black; }
  .page { max-width: none; padding: 0; }
  .review-note { background: transparent; border-color: black; }
}
