* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Karla", sans-serif;
  background: #080808;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 220px;
  opacity: 0.028;
  pointer-events: none;
  z-index: 50;
}

.glow {
  position: fixed;
  top: -20vh;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

main {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(92vw, 780px);
}

h1,
.tagline,
.actions {
  width: 100%;
}

h1 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 300;
  color: #d0d0d0;
  letter-spacing: -0.04em;
  margin-right: 0;
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0;
  animation: up 1s cubic-bezier(0.16, 1, 0.3, 1) 0.05s forwards;
}

.tagline {
  font-size: 0.68rem;
  font-weight: 400;
  color: #2e2e2e;
  letter-spacing: 0.2em;
  margin-right: 0;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: up 1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

.actions {
  margin-top: 0.9rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadein 1s ease 0.5s forwards;
}

.actions a {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  margin-right: 0;
  text-transform: uppercase;
  text-decoration: none;
  color: #222222;
  transition: color 0.25s;
}

.actions a:hover {
  color: #6366f1;
}

.actions-sep {
  width: 1px;
  height: 8px;
  background: #1a1a1a;
}

@keyframes up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadein {
  to {
    opacity: 1;
  }
}
