:root {
  color-scheme: dark;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: #0b1020;
  color: #f4f1e8;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgb(58 99 122 / 35%), transparent 35%),
    radial-gradient(circle at 80% 75%, rgb(173 116 65 / 25%), transparent 35%),
    #0b1020;
}

body::before {
  position: fixed;
  inset: 0;
  content: "";
  opacity: 0.18;
  pointer-events: none;
  background-image:
    linear-gradient(rgb(255 255 255 / 7%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 7%) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

main {
  width: min(780px, calc(100% - 3rem));
  position: relative;
  padding: clamp(2rem, 7vw, 5rem);
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 2px;
  background: rgb(10 16 31 / 68%);
  box-shadow: 0 30px 100px rgb(0 0 0 / 35%);
  backdrop-filter: blur(16px);
}

.eyebrow {
  margin: 0 0 1.5rem;
  color: #d7a86e;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1 {
  max-width: 10ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 13vw, 8.5rem);
  font-weight: 400;
  line-height: 0.84;
  letter-spacing: -0.065em;
}

.intro {
  max-width: 34rem;
  margin: 2rem 0 0;
  color: #cbd4da;
  font-size: clamp(1.1rem, 2.6vw, 1.5rem);
  line-height: 1.55;
}

.status {
  margin: 3rem 0 0;
  color: #7f929d;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 520px) {
  main {
    width: calc(100% - 2rem);
    padding: 2rem;
  }
}
