:root {
  color-scheme: dark;
  --bg: #050505;
  --panel: #101010;
  --text: #f5f2ea;
  --muted: #aaa59a;
  --line: #2a2926;
  --accent: #ff514d;
  --max: 64rem;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 20rem),
    var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 0.2em;
}

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.page {
  width: min(100%, var(--max));
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(1.5rem, 5vw, 4rem);
}

.hero {
  display: grid;
  align-content: end;
  min-height: 72vh;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 7vw, 5rem);
}

.eyebrow,
.updated {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 11ch;
  margin-bottom: 0;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 15vw, 9rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0;
}

.legal h1 {
  max-width: 12ch;
  font-size: clamp(3.25rem, 11vw, 6.8rem);
}

h2 {
  margin: 2.5rem 0 0.5rem;
  color: var(--text);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lede {
  max-width: 42rem;
  color: var(--muted);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
}

.links,
.topnav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.topnav {
  justify-content: flex-end;
}

.topnav .brand {
  margin-right: auto;
}

.links a,
.topnav a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--line);
}

.facts div {
  min-height: 9rem;
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.035);
}

.facts span {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
}

.facts p {
  color: var(--muted);
}

.split,
article {
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: start;
  padding-bottom: 4rem;
}

.split h2 {
  max-width: 16ch;
  margin-top: 0.35rem;
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

article p,
article li {
  color: var(--muted);
  font-size: 1.05rem;
}

article {
  max-width: 44rem;
}

.topnav {
  margin-bottom: 3rem;
}

ul {
  padding-left: 1.2rem;
}

li + li {
  margin-top: 0.45rem;
}

.support-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.support-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
}

.support-form input,
.support-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  padding: 0.85rem 0.95rem;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  font: inherit;
}

.support-form input:focus,
.support-form textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.support-form button {
  min-height: 3rem;
  border: 0;
  border-radius: 999px;
  padding: 0.8rem 1.2rem;
  background: var(--accent);
  color: #050505;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.hidden-field {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 37.5rem) {
  .page {
    padding: 1.25rem;
  }

  .hero {
    min-height: auto;
    padding-top: 4rem;
  }

  .links a,
  .topnav a {
    width: 100%;
  }

  .topnav .brand {
    margin-right: 0;
  }

  .facts,
  .split {
    grid-template-columns: 1fr;
  }
}
