:root {
  color-scheme: light;
  --canvas: #f7f7f2;
  --surface: #fffefb;
  --ink: #102a43;
  --muted: #465e72;
  --rule: #d6dfe4;
  --tomato: #c43f2a;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

main {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0 72px;
}

.brand {
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
  text-decoration: none;
}

.hero, article { margin-top: 64px; }

h1 {
  max-width: 680px;
  margin: 6px 0 16px;
  font-size: clamp(2.4rem, 8vw, 4.8rem);
  line-height: .98;
  letter-spacing: -.04em;
}

article h1 { font-size: clamp(2.25rem, 7vw, 4rem); }

h2 {
  margin: 40px 0 8px;
  font-size: 1.25rem;
  line-height: 1.3;
}

p, li { color: var(--muted); }
a { color: var(--tomato); }

a:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--tomato) 32%, transparent);
  outline-offset: 4px;
  border-radius: 4px;
}

.skip-link {
  position: fixed;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 10;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--surface);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.eyebrow {
  margin: 0;
  color: var(--tomato);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .09em;
}

.links {
  margin-top: 56px;
  border-top: 1px solid var(--rule);
}

.links a {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
  text-decoration: none;
}

.links span { color: var(--muted); }

.support-intro {
  max-width: 64ch;
  margin-bottom: 32px;
  font-size: 1.12rem;
}

.support-contact {
  margin-block: 36px 48px;
  padding: 28px;
  border: 1px solid var(--rule);
  border-radius: 14px;
  background: var(--surface);
}

.support-contact h2 { margin-top: 6px; }

.support-label {
  margin: 0;
  color: var(--tomato);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .09em;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  margin-block: 8px 16px;
  padding: 13px 20px;
  border-radius: 14px;
  background: var(--tomato);
  color: var(--surface);
  font-weight: 750;
  text-decoration: none;
}

.button:hover { background: #a93625; }

.support-note {
  margin-bottom: 0;
  font-size: .94rem;
}

.support-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.support-links a { min-height: 44px; }

article li + li { margin-top: 8px; }

@media (max-width: 560px) {
  main { width: min(100% - 32px, 760px); padding-top: 24px; }
  .hero, article { margin-top: 44px; }
  .links a { flex-direction: column; gap: 2px; }
  .support-contact { padding: 22px 20px; }
  .button { display: flex; width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
