:root { color-scheme: light; --ink: #182638; --muted: #526173; --line: #dce3ec; --blue: #123f8f; --paper: #fff; --wash: #f5f7fa; }
* { box-sizing: border-box; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 17px/1.65 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
a { color: var(--blue); text-underline-offset: .2em; }
a:hover { text-decoration-thickness: 2px; }
a:focus-visible { outline: 3px solid var(--blue); outline-offset: 5px; border-radius: 2px; }
.wrap { width: min(100% - 48px, 900px); margin-inline: auto; }
.skip { position: absolute; top: -100px; left: 16px; padding: 10px; background: white; z-index: 2; }
.skip:focus { top: 10px; }
header { border-bottom: 1px solid var(--line); }
header .wrap { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { font-weight: 850; font-size: 30px; letter-spacing: -.05em; text-decoration: none; }
.brand small { display: block; margin-top: -8px; font-size: 10px; letter-spacing: .15em; font-weight: 650; color: var(--muted); }
nav { display: flex; flex-wrap: wrap; gap: 10px 22px; font-size: 14px; }
nav a { color: var(--muted); text-decoration: none; }
nav a[aria-current="page"] { color: var(--blue); text-decoration: underline; }
main { padding-block: 58px 64px; }
.eyebrow { color: var(--blue); font-size: 12px; letter-spacing: .12em; font-weight: 700; text-transform: uppercase; margin: 0 0 12px; }
h1 { max-width: 800px; font-size: clamp(32px, 5vw, 52px); letter-spacing: -.035em; line-height: 1.14; margin: 0 0 24px; font-weight: 720; overflow-wrap: break-word; }
h2 { font-size: 22px; line-height: 1.3; letter-spacing: -.02em; margin: 34px 0 12px; }
p { margin: 0 0 16px; }
.lead { max-width: 760px; font-size: 21px; color: var(--muted); }
.meta, .note { color: var(--muted); font-size: 14px; }
.intro { padding-bottom: 28px; border-bottom: 1px solid var(--line); margin-bottom: 30px; }
.features { list-style: none; padding: 0; margin: 30px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 26px 40px; }
.features li { border-top: 2px solid var(--line); padding-top: 14px; }
.features strong { display: block; margin-bottom: 6px; }
.features span { font-size: 15px; color: var(--muted); }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin: 28px 0; }
.button { display: inline-block; background: var(--blue); color: white; border-radius: 6px; padding: 12px 20px; font-size: 15px; font-weight: 650; text-decoration: none; }
.contact { padding: 22px 24px; background: var(--wash); border-left: 3px solid var(--blue); margin: 24px 0; overflow-wrap: anywhere; }
.contact p:last-child { margin-bottom: 0; }
address { font-style: normal; }
ol, ul { padding-left: 24px; }
li { margin-bottom: 10px; }
footer { border-top: 1px solid var(--line); padding-block: 28px 38px; font-size: 13px; color: var(--muted); }
footer p { margin-bottom: 8px; }
footer nav { margin-top: 18px; font-size: 13px; }
@media (max-width: 600px) {
  .wrap { width: calc(100% - 36px); }
  header .wrap { align-items: flex-start; flex-direction: column; gap: 18px; padding-block: 20px; }
  nav { gap: 10px 16px; font-size: 13px; }
  main { padding-block: 36px 44px; }
  .lead { font-size: 19px; }
  .features { grid-template-columns: 1fr; gap: 16px; }
  .contact { padding: 18px; }
}
@media print { header, .actions, .skip { display: none; } body { font-size: 11pt; } .wrap { width: 100%; } main { padding: 0; } h1 { font-size: 26pt; } h2 { break-after: avoid; } }
