:root {
  color-scheme: dark;
  --canvas: #12120f;
  --raised: #1a1914;
  --surface: #222119;
  --line: #3a382d;
  --text: #f6f0e4;
  --muted: #aaa294;
  --faint: #777165;
  --gold: #e1b956;
  --sage: #8cad94;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--canvas);
  color: var(--text);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 75% -10%, rgba(140, 173, 148, 0.12), transparent 28rem),
    var(--canvas);
  color: var(--text);
  line-height: 1.65;
}

a {
  color: inherit;
}

a:focus-visible,
summary:focus-visible {
  border-radius: 4px;
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.site-header,
main,
footer {
  width: min(100% - 40px, 900px);
  margin-inline: auto;
}

.site-header {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

nav {
  display: flex;
  gap: 24px;
}

nav a {
  position: relative;
  padding: 9px 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

nav a:hover,
nav a[aria-current="page"] {
  color: var(--text);
}

nav a[aria-current="page"]::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
}

main > section {
  padding: 82px 0;
  border-bottom: 1px solid var(--line);
}

.hero {
  padding-top: 108px;
}

.eyebrow,
.section-number {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3.5rem, 10vw, 6.8rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.9;
  text-transform: uppercase;
}

h1 em {
  color: var(--sage);
  font-style: normal;
}

h2 {
  margin: 0 0 36px;
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.lede {
  max-width: 680px;
  margin: 36px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2.5vw, 1.35rem);
  line-height: 1.65;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 38px;
}

.badges li {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(34, 33, 25, 0.7);
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  list-style: none;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  display: grid;
  grid-template-columns: minmax(170px, 0.7fr) 1.3fr;
  gap: 28px;
  padding: 24px 0 24px 52px;
  border-top: 1px solid var(--line);
  counter-increment: steps;
  position: relative;
}

.steps li::before {
  position: absolute;
  top: 25px;
  left: 0;
  color: var(--gold);
  content: "0" counter(steps);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.steps strong {
  color: var(--text);
}

.steps span,
.questions p,
.support-card > p,
.policy section > p {
  color: var(--muted);
}

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

details {
  border-bottom: 1px solid var(--line);
}

summary {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  color: var(--gold);
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
}

details[open] summary::after {
  content: "−";
}

.questions p {
  max-width: 720px;
  margin: -4px 0 28px;
}

.support-card {
  margin-top: 82px;
  padding: 50px !important;
  border: 1px solid var(--line) !important;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(34, 33, 25, 0.96), rgba(26, 25, 20, 0.96));
}

.support-card h2 {
  margin-bottom: 20px;
}

.support-card > p {
  max-width: 700px;
  margin: 0;
}

.policy-hero {
  padding-bottom: 88px;
}

.policy section:not(.hero) {
  display: grid;
  grid-template-columns: minmax(230px, 0.75fr) 1.25fr;
  gap: 50px;
  padding: 52px 0;
}

.policy section:not(.hero) h2 {
  margin: 0;
  font-size: 1.45rem;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.policy section:not(.hero) p {
  margin: 0;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 48px 0 70px;
  color: var(--faint);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

footer p {
  margin: 0;
}

footer a:hover {
  color: var(--text);
}

@media (max-width: 660px) {
  .site-header {
    min-height: 84px;
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 44px;
    height: 44px;
    border-radius: 11px;
  }

  nav {
    gap: 18px;
  }

  main > section {
    padding: 64px 0;
  }

  .hero {
    padding-top: 78px;
  }

  .steps li,
  .policy section:not(.hero) {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .steps li {
    padding-left: 42px;
  }

  .support-card {
    margin-top: 64px;
    padding: 32px 26px !important;
  }

  footer {
    flex-direction: column;
    padding-bottom: 46px;
  }
}

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