:root {
  color-scheme: dark;
  background: #171717;
}

html {
  min-height: 100%;
  background:
    radial-gradient(circle at top, rgba(250, 204, 21, 0.12), transparent 35%),
    linear-gradient(180deg, #171717 0%, #101010 100%);
}

body {
  margin: 0;
  min-height: 100vh;
  background: transparent;
  color: #f8fafc;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

#root {
  min-height: 100vh;
}

#root > main {
  box-sizing: border-box;
  display: grid;
  gap: 1rem;
  align-content: center;
  min-height: 100vh;
  max-width: 72rem;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
}

#root > main h1,
#root > main h2,
#root > main p,
#root > main ul {
  margin: 0;
}

#root > main h1 {
  max-width: 14ch;
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

#root > main h2 {
  color: rgba(250, 204, 21, 0.82);
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

#root > main p,
#root > main li {
  max-width: 64ch;
  color: rgba(226, 232, 240, 0.82);
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
}

#root > main ul {
  padding-left: 1.2rem;
}

#root > main section {
  display: grid;
  gap: 0.75rem;
}
