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

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 28px;
  background:
    radial-gradient(circle at 18% 18%, rgb(38 183 133 / 20%), transparent 32rem),
    radial-gradient(circle at 84% 72%, rgb(74 130 255 / 16%), transparent 34rem),
    #071411;
}

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

main {
  position: relative;
  width: min(760px, 100%);
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 28px;
  background: rgb(10 28 23 / 82%);
  box-shadow: 0 30px 90px rgb(0 0 0 / 42%);
  backdrop-filter: blur(18px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  color: #9fe7c8;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #3ee6a0;
  box-shadow: 0 0 22px #3ee6a0;
  content: "";
}

h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(42px, 8vw, 84px);
  font-weight: 720;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

p {
  max-width: 560px;
  margin: 28px 0 0;
  color: #b9ccc4;
  font-size: clamp(17px, 2.6vw, 21px);
  line-height: 1.55;
}

footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgb(255 255 255 / 10%);
  color: #789087;
  font-size: 13px;
}

footer span:first-child {
  color: #d8e9e1;
}

@media (prefers-reduced-motion: no-preference) {
  main {
    animation: arrive 700ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  @keyframes arrive {
    from {
      opacity: 0;
      transform: translateY(16px) scale(0.985);
    }
  }
}
