:root {
  --bg: #000;
  --fg: #fff;
  --muted: rgba(255,255,255,.64);
  --faint: rgba(255,255,255,.14);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--fg);
  font-family: Inter, Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

.page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 38%, rgba(255,255,255,.09), transparent 24rem),
    linear-gradient(180deg, #000 0%, #030303 52%, #000 100%);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8vh 24px;
  isolation: isolate;
}

.grain {
  position: absolute;
  inset: 0;
  opacity: .16;
  pointer-events: none;
  background-image:
    repeating-radial-gradient(circle at 0 0, rgba(255,255,255,.12) 0 1px, transparent 1px 3px);
  mix-blend-mode: screen;
  z-index: -2;
}

.halo {
  position: absolute;
  width: min(72vw, 720px);
  aspect-ratio: 1;
  border: 1px solid var(--faint);
  border-radius: 50%;
  filter: blur(.2px);
  opacity: .42;
  z-index: -1;
  animation: breathe 9s ease-in-out infinite;
}

.preline {
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: clamp(.9rem, 1.6vw, 1.05rem);
  letter-spacing: .34em;
  text-transform: uppercase;
  font-weight: 300;
}

.logo {
  margin: 0;
  font-size: clamp(3.2rem, 11vw, 10rem);
  line-height: .9;
  letter-spacing: -.075em;
  font-weight: 500;
  text-transform: none;
  text-shadow: 0 0 28px rgba(255,255,255,.16);
}

.logo span {
  display: inline-block;
  animation: flicker 7s infinite;
}

.logo span:nth-child(2) { animation-delay: .1s; }
.logo span:nth-child(3) { animation-delay: .35s; }
.logo span:nth-child(4) { animation-delay: .18s; }
.logo span:nth-child(5) { animation-delay: .5s; }
.logo span:nth-child(6) { animation-delay: .22s; }
.logo span:nth-child(7) { animation-delay: .42s; }
.logo span:nth-child(8) { animation-delay: .08s; }
.logo span:nth-child(9) { animation-delay: .3s; }

.claim {
  margin: 2.4rem 0 0;
  font-size: clamp(1.8rem, 4.8vw, 5rem);
  line-height: 1.04;
  font-weight: 300;
  letter-spacing: -.05em;
}

.claim em {
  font-style: normal;
  color: var(--muted);
}

.subtext {
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  line-height: 1.65;
  font-weight: 300;
}

.button {
  margin-top: 3rem;
  color: var(--fg);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 999px;
  padding: .95rem 1.35rem;
  font-size: .95rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(255,255,255,.035);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.74);
}

.entry {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 12vh 24px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.entry p {
  margin: 0;
  max-width: 880px;
  font-size: clamp(1.8rem, 4.4vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: -.055em;
  font-weight: 300;
  text-align: center;
}

@keyframes breathe {
  0%, 100% { transform: scale(.92); opacity: .28; }
  50% { transform: scale(1.04); opacity: .52; }
}

@keyframes flicker {
  0%, 92%, 100% { opacity: 1; filter: blur(0); }
  93% { opacity: .62; filter: blur(.5px); }
  94% { opacity: 1; filter: blur(0); }
  96% { opacity: .78; }
  97% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    scroll-behavior: auto !important;
  }
}
