:root {
  color-scheme: dark;
  --background: #11110f;
  --foreground: #f2efe6;
  --muted: #a9a69e;
  --accent: #d8ff3e;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--background);
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  color: var(--foreground);
  background:
    radial-gradient(circle at 78% 24%, rgb(216 255 62 / 8%), transparent 28rem),
    var(--background);
  font-family: Arial, Helvetica, sans-serif;
}

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

.site-header,
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header {
  padding-block: 2rem;
  border-bottom: 1px solid rgb(242 239 230 / 18%);
}

.wordmark {
  color: inherit;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.status,
.eyebrow,
footer {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.status {
  color: var(--accent);
}

main {
  align-self: center;
  padding-block: 5rem;
}

.eyebrow {
  margin: 0 0 1.5rem;
  color: var(--accent);
}

h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(4rem, 12vw, 9.5rem);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.82;
}

.intro {
  max-width: 34rem;
  margin: 3rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
}

footer {
  padding-block: 1.5rem;
  color: var(--muted);
  border-top: 1px solid rgb(242 239 230 / 18%);
}

@media (max-width: 540px) {
  .site-header,
  main,
  footer {
    width: min(100% - 2rem, 1200px);
  }

  .site-header {
    padding-block: 1.25rem;
  }

  main {
    padding-block: 3rem;
  }

  .intro br {
    display: none;
  }
}
