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

:root {
  color-scheme: dark;
  --mouse-x: 50%;
  --mouse-y: 50%;
}

* {
  box-sizing: border-box;
}

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

body {
  background: #050507;
  color: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
  overflow: hidden;
}

a {
  color: inherit;
}

.page-shell {
  min-height: 100vh;
  min-height: 100svh;
}

.hero {
  background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(85, 214, 255, 0.11), transparent 24rem), linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(5, 5, 7, 0.76)), linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.78)), url("assets/hero-banner.webp") center/cover;
  display: grid;
  grid-template-rows: auto 1fr;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  padding: 32px;
  position: relative;
}

.noise {
  background-image: linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 86px 86px;
  inset: 0;
  opacity: 0.26;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.pulse-light {
  animation: pulseLight 4.8s ease-in-out infinite;
  background: radial-gradient(circle, rgba(214, 58, 118, 0.36), rgba(214, 58, 118, 0.18) 24%, transparent 62%), radial-gradient(circle, rgba(85, 214, 255, 0.16), transparent 58%);
  border-radius: 999px;
  filter: blur(18px);
  height: min(68vw, 760px);
  inset: 50% auto auto 50%;
  pointer-events: none;
  position: absolute;
  transform: translate(-50%, -50%);
  width: min(68vw, 760px);
  z-index: -1;
}

.particles {
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.particles span {
  animation: particleFloat 18s ease-in-out infinite;
  background: rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  box-shadow: 0 0 22px rgba(85, 214, 255, 0.18);
  height: 3px;
  opacity: 0.14;
  position: absolute;
  width: 3px;
}

.particles span:nth-child(1) {
  animation-delay: -2s;
  left: 14%;
  top: 38%;
}

.particles span:nth-child(2) {
  animation-delay: -6s;
  left: 24%;
  top: 68%;
}

.particles span:nth-child(3) {
  animation-delay: -9s;
  left: 38%;
  top: 24%;
}

.particles span:nth-child(4) {
  animation-delay: -4s;
  left: 52%;
  top: 72%;
}

.particles span:nth-child(5) {
  animation-delay: -11s;
  left: 66%;
  top: 34%;
}

.particles span:nth-child(6) {
  animation-delay: -14s;
  left: 78%;
  top: 58%;
}

.particles span:nth-child(7) {
  animation-delay: -8s;
  left: 86%;
  top: 28%;
}

.particles span:nth-child(8) {
  animation-delay: -16s;
  left: 8%;
  top: 78%;
}

.topbar {
  align-items: center;
  display: flex;
  justify-content: center;
  z-index: 2;
}

.brand {
  font-size: 1.08rem;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.brand span {
  font-weight: 400;
}

.brand strong {
  font-weight: 900;
}

.hero-content {
  align-self: center;
  justify-self: center;
  max-width: 900px;
  padding-bottom: 5vh;
  text-align: center;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.72);
}

.eyebrow {
  animation: riseIn 700ms ease both;
  color: #d3d3da;
  font-size: 0.74rem;
  font-weight: 800;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1 {
  animation: riseIn 800ms 90ms ease both;
  font-size: clamp(2.45rem, 6.6vw, 5.4rem);
  font-weight: 600;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

.lead {
  animation: riseIn 900ms 170ms ease both;
  color: #d3d3da;
  font-size: clamp(1rem, 2vw, 1.24rem);
  line-height: 1.55;
  margin: 22px auto 0;
  max-width: 620px;
}

.soon-pill {
  align-items: center;
  animation: riseIn 950ms 260ms ease both;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  gap: 9px;
  margin-top: 34px;
  min-height: 42px;
  padding: 0 16px;
  text-transform: uppercase;
}

.soon-pill i {
  animation: dotPulse 1.7s ease-in-out infinite;
  background: #d63a76;
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(214, 58, 118, 0.95), 0 0 36px rgba(214, 58, 118, 0.55);
  height: 9px;
  width: 9px;
}

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

@keyframes dotPulse {
  0%, 100% {
    opacity: 0.45;
    transform: scale(0.78);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulseLight {
  0%, 100% {
    opacity: 0.52;
    transform: translate(-50%, -50%) scale(0.92);
  }
  50% {
    opacity: 0.92;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@keyframes particleFloat {
  0%, 100% {
    opacity: 0.08;
    transform: translate3d(0, 0, 0) scale(0.8);
  }
  50% {
    opacity: 0.24;
    transform: translate3d(18px, -24px, 0) scale(1.15);
  }
}

@media (max-width: 760px) {
  body {
    overflow: auto;
  }
  .hero {
    background-position: center;
    min-height: 100dvh;
    padding: 22px;
  }
  .pulse-light {
    height: min(110vw, 520px);
    width: min(110vw, 520px);
  }
  .hero-content {
    padding-bottom: 3vh;
  }
  h1 {
    font-size: clamp(2.3rem, 13vw, 4rem);
  }
  .lead {
    font-size: 1rem;
    max-width: 24rem;
  }
}

@media (max-width: 430px) {
  .hero {
    padding: 18px;
  }
  .brand {
    font-size: 0.98rem;
  }
  .eyebrow {
    font-size: 0.68rem;
    margin-bottom: 10px;
  }
  h1 {
    font-size: clamp(2rem, 12vw, 3rem);
    line-height: 1.04;
  }
  .lead {
    font-size: 0.94rem;
    line-height: 1.5;
    margin-top: 16px;
  }
  .soon-pill {
    font-size: 0.7rem;
    min-height: 38px;
    margin-top: 24px;
    padding: 0 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
