:root {
  --bg: #000000;
  --bg-soft: #000000;
  --text: #f3f7f9;
  --accent: #ffffff;
  --accent-2: #d7d7d7;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  height: 100%;
}

body {
  font-family: "Sora", sans-serif;
  color: var(--text);
  background: #000000;
  min-height: 100vh;
  overflow-x: hidden;
  display: grid;
  place-items: center;
}

.stars {
  position: fixed;
  inset: -20% -10%;
  pointer-events: none;
  z-index: 0;
}

.stars::before,
.stars::after {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: repeat;
}

.stars-near::before {
  background-image:
    radial-gradient(2px 2px at 18px 24px, rgba(255, 255, 255, 0.9), transparent 70%),
    radial-gradient(1.8px 1.8px at 66px 10px, rgba(255, 255, 255, 0.78), transparent 70%),
    radial-gradient(1.6px 1.6px at 120px 54px, rgba(255, 255, 255, 0.85), transparent 70%),
    radial-gradient(1.8px 1.8px at 170px 90px, rgba(255, 255, 255, 0.75), transparent 70%),
    radial-gradient(1.7px 1.7px at 205px 30px, rgba(255, 255, 255, 0.68), transparent 70%);
  background-size: 240px 130px;
  opacity: 0.5;
  animation: stars-drift-near 36s linear infinite;
}

.stars-near::after {
  background-image:
    radial-gradient(1.6px 1.6px at 20px 45px, rgba(255, 255, 255, 0.75), transparent 70%),
    radial-gradient(1.8px 1.8px at 88px 24px, rgba(255, 255, 255, 0.78), transparent 70%),
    radial-gradient(1.5px 1.5px at 144px 80px, rgba(255, 255, 255, 0.82), transparent 70%),
    radial-gradient(1.6px 1.6px at 208px 60px, rgba(255, 255, 255, 0.85), transparent 70%);
  background-size: 230px 120px;
  opacity: 0.45;
  animation: stars-twinkle 7s ease-in-out infinite alternate;
}

.stars-far::before {
  background-image:
    radial-gradient(1.2px 1.2px at 14px 16px, rgba(255, 255, 255, 0.62), transparent 70%),
    radial-gradient(1.1px 1.1px at 50px 72px, rgba(255, 255, 255, 0.56), transparent 70%),
    radial-gradient(1.1px 1.1px at 98px 36px, rgba(255, 255, 255, 0.6), transparent 70%),
    radial-gradient(1px 1px at 132px 92px, rgba(255, 255, 255, 0.5), transparent 70%),
    radial-gradient(1.1px 1.1px at 190px 18px, rgba(255, 255, 255, 0.55), transparent 70%);
  background-size: 210px 110px;
  opacity: 0.33;
  animation: stars-drift-far 58s linear infinite reverse;
}

.stars-far::after {
  background-image:
    radial-gradient(1px 1px at 26px 24px, rgba(255, 255, 255, 0.52), transparent 70%),
    radial-gradient(1px 1px at 80px 60px, rgba(255, 255, 255, 0.45), transparent 70%),
    radial-gradient(1px 1px at 140px 24px, rgba(255, 255, 255, 0.5), transparent 70%);
  background-size: 180px 100px;
  opacity: 0.3;
  animation: stars-twinkle 10s ease-in-out infinite alternate-reverse;
}

.page {
  position: relative;
  z-index: 1;
  width: min(920px, 92vw);
  text-align: center;
}

.brand-name {
  margin: 0;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #dbe8ef;
}

.title {
  margin: 18px 0 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(3.2rem, 10vw, 8.6rem);
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero {
  display: grid;
  justify-items: center;
  row-gap: 0;
  animation: reveal-up 700ms ease forwards;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

@keyframes reveal-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes stars-drift-near {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-120px, -90px, 0);
  }
}

@keyframes stars-drift-far {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(90px, -70px, 0);
  }
}

@keyframes stars-twinkle {
  0% {
    opacity: 0.22;
  }
  50% {
    opacity: 0.48;
  }
  100% {
    opacity: 0.3;
  }
}

@media (max-width: 620px) {
  .brand-name {
    letter-spacing: 0.1em;
  }
}
