:root {
  color-scheme: dark;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #000;
  color: #fff;
}

.page {
  width: min(100% - 32px, 720px);
  margin: 0 auto;
  padding: 48px 0 80px;
}

.page--compact {
  width: min(100% - 32px, 560px);
  padding-top: 64px;
}

header {
  min-height: 24px;
}

.brand {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.02em;
  text-decoration: none;
}

.hero {
  min-height: 68vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.support-hero {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

h1 {
  margin: 40px 0 20px;
  font-size: clamp(38px, 9vw, 72px);
  line-height: 1.02;
  letter-spacing: -.05em;
}

h2 {
  margin: 48px 0 12px;
  font-size: 22px;
  letter-spacing: -.025em;
}

.page--compact h1 {
  font-size: clamp(32px, 8vw, 52px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

p,
li {
  color: rgba(255, 255, 255, .68);
  font-size: 16px;
  line-height: 1.8;
}

p {
  margin: 0 0 16px;
}

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

a {
  color: #fff;
}

.lead {
  max-width: 620px;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(18px, 4vw, 23px);
  line-height: 1.7;
}

.eyebrow,
.meta,
.draft-note,
.note {
  color: rgba(255, 255, 255, .45);
  font-size: 13px;
}

.note {
  margin-top: 32px;
}

.draft-note {
  margin: 32px 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
}

.button {
  display: inline-flex;
  width: fit-content;
  margin-top: 20px;
  padding: 14px 22px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-weight: 700;
  text-decoration: none;
}

.faq {
  margin-top: 40px;
}

.faq details {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 20px 0;
}

.faq details:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.faq summary {
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.faq details p {
  margin: 14px 0 0;
}

footer {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

footer a {
  color: rgba(255, 255, 255, .55);
  font-size: 13px;
}

@media (max-width: 480px) {
  .page {
    padding-top: 32px;
  }

  .hero,
  .support-hero {
    min-height: 62vh;
  }
}
