:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fafafc;
  color: #2b2b35;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 15% 0%, rgba(109, 74, 255, 0.14), transparent 34rem),
    #fafafc;
  line-height: 1.65;
}

a {
  color: #6d4aff;
}

a:hover {
  color: #8b6cff;
}

.site-header,
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 2rem, 72rem);
  margin-inline: auto;
}

.site-header {
  min-height: 4.5rem;
  border-bottom: 1px solid #e5e2ef;
}

.brand {
  color: #2b2b35;
  font-size: 1.05rem;
  font-weight: 750;
  letter-spacing: 0.01em;
  text-decoration: none;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

nav a {
  color: #595866;
  text-decoration: none;
}

.hero,
.document {
  width: min(100% - 2rem, 54rem);
  margin-inline: auto;
}

.hero {
  min-height: calc(100vh - 10rem);
  display: grid;
  align-content: center;
  justify-items: start;
  padding-block: 5rem;
}

.hero h1,
.document h1 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 10vw, 6rem);
}

.hero p {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: #595866;
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: #6d4aff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  display: inline-block;
  border: 1px solid #6d4aff;
  border-radius: 0.65rem;
  padding: 0.72rem 1rem;
  background: #6d4aff;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.button:hover {
  background: #8b6cff;
  color: #fff;
}

.button-secondary {
  border-color: #d9d5e7;
  background: #ffffff;
  color: #2b2b35;
}

.button-secondary:hover {
  background: #f0edff;
  color: #2b2b35;
}

.document {
  padding-block: 4rem 6rem;
}

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

.lede {
  max-width: 46rem;
  margin: 1rem 0 0;
  color: #595866;
  font-size: 1.1rem;
}

.updated {
  margin-top: 0.5rem;
  color: #777583;
  font-size: 0.9rem;
}

.document section,
.request-card {
  margin-top: 2.25rem;
  padding-top: 0.25rem;
}

.document h2 {
  margin: 0 0 0.7rem;
  color: #2b2b35;
  font-size: 1.35rem;
  line-height: 1.3;
}

.document h3 {
  margin: 1.25rem 0 0.35rem;
  color: #2b2b35;
  font-size: 1rem;
}

.document p,
.document li {
  color: #595866;
}

.document ul,
.document ol {
  padding-left: 1.35rem;
}

.request-card {
  border: 1px solid #ded9ee;
  border-radius: 1rem;
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.94);
}

.request-card h2 {
  margin-top: 0;
}

.notice {
  border-left: 3px solid #d4af37;
  padding: 0.75rem 1rem;
  background: rgba(212, 175, 55, 0.1);
}

footer {
  min-height: 5.5rem;
  border-top: 1px solid #e5e2ef;
  color: #777583;
  font-size: 0.9rem;
}

@media (max-width: 38rem) {
  .site-header,
  footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 1rem;
  }

  .hero {
    min-height: auto;
    padding-block: 5rem;
  }
}
