@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

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

:root {
  --bg: #050505;
  --text: #f4f4f4;
  --muted: #888;
  --accent: #b7ff3c;
}

body {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, #151515 0%, var(--bg) 48%, #000 100%);
  color: var(--text);
  font-family: Inter, sans-serif;
  display: grid;
  place-items: center;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .055;
  z-index: 5;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.orb {
  position: fixed;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .12;
  pointer-events: none;
  animation: drift 10s ease-in-out infinite alternate;
}

.orb-one {
  background: var(--accent);
  top: -18rem;
  right: -10rem;
}

.orb-two {
  background: #536dff;
  bottom: -20rem;
  left: -12rem;
  animation-delay: -4s;
}

.container {
  position: relative;
  z-index: 2;
  width: min(900px, 88vw);
  text-align: center;
  animation: enter 1.2s cubic-bezier(.16, 1, .3, 1) both;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border: 1px solid #292929;
  border-radius: 999px;
  background: rgba(255,255,255,.025);
  color: #999;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  margin-bottom: 32px;
  backdrop-filter: blur(12px);
}

.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 1.5s ease-in-out infinite;
}

.eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .45em;
  margin-left: .45em;
  margin-bottom: 14px;
}

h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(4rem, 11vw, 9rem);
  line-height: .86;
  letter-spacing: -.075em;
  font-weight: 700;
  text-transform: uppercase;
}

h1 span {
  display: block;
}

h1 .outline {
  color: transparent;
  -webkit-text-stroke: 1px #555;
  text-shadow: 0 0 40px rgba(255,255,255,.04);
  animation: outlineGlow 4s ease-in-out infinite;
}

.subtitle {
  margin-top: 30px;
  color: #777;
  font-size: 14px;
  line-height: 1.8;
}

.loader {
  width: min(430px, 80vw);
  margin: 42px auto 0;
}

.loader-track {
  height: 2px;
  background: #222;
  overflow: hidden;
  position: relative;
}

.loader-bar {
  position: absolute;
  inset: 0 auto 0 0;
  width: 38%;
  background: var(--accent);
  box-shadow: 0 0 18px var(--accent);
  animation: loading 2.8s cubic-bezier(.65, 0, .35, 1) infinite;
}

.loader-text {
  display: block;
  margin-top: 10px;
  color: #555;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .3em;
}

.dots::after {
  content: "";
  animation: dots 1.4s steps(4, end) infinite;
}

.footer {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 88vw);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  color: #3f3f3f;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .2em;
}

.line {
  width: 30px;
  height: 1px;
  background: #303030;
}

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

@keyframes pulse {
  0%, 100% { opacity: .4; transform: scale(.8); }
  50% { opacity: 1; transform: scale(1.15); }
}

@keyframes outlineGlow {
  0%, 100% { -webkit-text-stroke-color: #444; }
  50% { -webkit-text-stroke-color: #777; }
}

@keyframes loading {
  0% { transform: translateX(-120%); }
  50% { transform: translateX(250%); }
  100% { transform: translateX(350%); }
}

@keyframes dots {
  0% { content: ""; }
  25% { content: "."; }
  50% { content: ".."; }
  75%, 100% { content: "..."; }
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(35px, 25px) scale(1.15); }
}

@media (max-width: 600px) {
  h1 {
    font-size: clamp(3.3rem, 17vw, 6rem);
  }

  .footer {
    bottom: 18px;
  }
}
