:root {
  color-scheme: light;
  --ink: #0a0a0a;
  --muted: #616161;
  --line: #d4d4d4;
  --green: #299447;
  --content: 980px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
body { margin: 0; color: var(--ink); background: #fff; }
a { color: inherit; text-underline-offset: 4px; }
a:focus-visible { outline: 3px solid var(--green); outline-offset: 4px; }
a[aria-current="page"] { text-decoration-thickness: 2px; }
.shell { width: min(var(--content), calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 100; padding: 11px 16px; color: #fff; background: var(--ink); font-weight: 800; text-decoration: none; transform: translateY(calc(-100% - 16px)); }
.skip-link:focus { transform: none; }
.site-header, .brand, .nav, .site-footer { display: flex; align-items: center; }
.site-header { justify-content: space-between; min-height: 76px; border-bottom: 1px solid var(--ink); }
.brand { gap: 12px; font-size: 20px; font-weight: 850; text-decoration: none; }
.nav { gap: 26px; }
.nav a, .site-footer a { display: inline-flex; align-items: center; min-height: 44px; font-weight: 700; }
main { padding-block: clamp(58px, 9vw, 104px); }
.support-intro, .page-intro { max-width: 760px; }
.eyebrow { margin: 0; color: var(--muted); font-size: 13px; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
h1 { margin: 14px 0 20px; font-size: clamp(52px, 8vw, 84px); line-height: .98; }
h2 { margin: 32px 0 12px; font-size: 26px; }
p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.65; }
p + p { margin-top: 14px; }
ul { margin: 14px 0 0; padding-left: 22px; }
li { margin-top: 10px; font-size: 17px; line-height: 1.55; }
.support-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 48px; }
.support-grid article { padding: 28px; border: 1px solid var(--line); }
.support-grid article h2 { margin-top: 0; }
.support-grid a { display: inline-flex; min-height: 44px; align-items: center; margin-top: 18px; font-weight: 800; }
.contact { margin-top: 44px; padding-top: 34px; border-top: 1px solid var(--ink); }
.site-footer { flex-wrap: wrap; gap: 14px 22px; min-height: 120px; border-top: 1px solid var(--ink); }
.site-footer strong { margin-right: auto; }
.heart { color: #e00000; font-weight: 800; }
@media (max-width: 700px) {
  .shell { width: min(var(--content), calc(100% - 32px)); }
  .site-header { align-items: flex-start; flex-direction: column; padding-block: 18px; }
  .nav { flex-wrap: wrap; gap: 8px 18px; }
  .support-grid { grid-template-columns: 1fr; }
  .site-footer { padding-block: 20px; }
  .site-footer strong { flex-basis: 100%; margin-right: 0; }
}
