:root {
  color-scheme: dark;
  --background: #000;
  --text: #e8e4df;
  --muted: #8e8e93;
  --dim: #555;
  --accent: #c72a09;
  --line: rgba(232, 228, 223, 0.16);
  --content: 760px;
  --wide: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--background);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--background);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.site-header {
  width: min(var(--wide), calc(100% - 4rem));
  margin: 0 auto;
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-logo img {
  display: block;
  width: 116px;
  height: auto;
}

.site-nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav a,
.site-footer a {
  color: var(--muted);
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--text);
}

.page-shell {
  width: min(var(--content), calc(100% - 4rem));
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 8.5rem) 0 7rem;
}

.page-heading {
  margin-bottom: clamp(4rem, 8vw, 6.5rem);
}

.eyebrow {
  margin: 0 0 1.25rem;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  max-width: 700px;
  margin: 0;
  color: var(--text);
  font-size: clamp(3.4rem, 9vw, 6.9rem);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.intro {
  max-width: 650px;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2.2vw, 1.3rem);
  line-height: 1.55;
  letter-spacing: -0.015em;
}

.updated {
  margin: 1.25rem 0 0;
  color: var(--dim);
  font-size: 0.76rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.prose {
  counter-reset: policy-section;
}

.prose section {
  position: relative;
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
  counter-increment: policy-section;
}

.prose section::before {
  content: counter(policy-section, decimal-leading-zero);
  position: absolute;
  top: 2.8rem;
  left: -3.25rem;
  color: var(--dim);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

h2 {
  margin: 0 0 1rem;
  color: var(--text);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

p {
  margin: 0 0 1rem;
  color: #b7b5b2;
}

p:last-child {
  margin-bottom: 0;
}

strong {
  color: var(--text);
  font-weight: 600;
}

ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

li {
  position: relative;
  margin: 0 0 0.9rem;
  padding-left: 1.35rem;
  color: #b7b5b2;
}

li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.prose a,
.support-item a {
  color: var(--text);
  text-decoration-color: var(--accent);
  text-underline-offset: 0.22em;
  text-decoration-thickness: 1px;
}

.support-list {
  border-top: 1px solid var(--line);
}

.support-item {
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1.28fr);
  gap: 2.75rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--line);
}

.support-title {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
}

.support-number {
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.support-item h2 {
  margin: 0;
}

.support-item p {
  margin: 0;
}

.app-action {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.app-action a:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 160ms ease;
}

.app-action a:first-child:hover,
.app-action a:first-child:focus-visible {
  opacity: 0.82;
}

.app-action .secondary-link {
  color: var(--muted);
  font-size: 0.82rem;
  text-decoration: none;
}

.app-action .secondary-link:hover,
.app-action .secondary-link:focus-visible {
  color: var(--text);
}

.site-footer {
  width: min(var(--wide), calc(100% - 4rem));
  margin: 0 auto;
  padding: 2rem 0 2.75rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-footer p {
  margin: 0;
  color: var(--dim);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

@media (max-width: 720px) {
  .site-header,
  .page-shell,
  .site-footer {
    width: min(100% - 2.5rem, var(--wide));
  }

  .site-header {
    min-height: 92px;
  }

  .site-logo img {
    width: 94px;
  }

  .site-nav {
    gap: 1rem;
  }

  .site-nav a {
    font-size: 0.76rem;
  }

  .page-shell {
    padding-top: 4.5rem;
    padding-bottom: 5rem;
  }

  h1 {
    font-size: clamp(3.2rem, 16vw, 5.2rem);
  }

  .prose section::before {
    display: none;
  }

  .support-item {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column-reverse;
  }

  .site-footer nav {
    flex-wrap: wrap;
    gap: 0.9rem 1.4rem;
  }
}

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

  * {
    transition: none !important;
  }
}
