:root {
  --background: #000018;
  --foreground: #ffffff;
  --cyan: #02a3ef;
  --blue: #096ce5;
  --magenta: #ae2097;
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--background);
  color: var(--foreground);
  font-family: Arial, Helvetica, sans-serif;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(5, 18, 46, 0.9) 0, rgba(1, 7, 28, 0.92) 19rem, rgba(0, 0, 10, 0.96) 44rem, rgba(0, 0, 0, 0.99) 70rem),
    radial-gradient(ellipse at 18% 8%, rgba(7, 18, 54, 0.86), transparent 42rem),
    radial-gradient(ellipse at 88% 18%, rgba(3, 10, 36, 0.88), transparent 38rem),
    linear-gradient(145deg, #08182e 0%, #020820 48%, #000006 100%);
  isolation: isolate;
}

.site-shell::before {
  content: none;
}

.data-field {
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  overflow: hidden;
}

.star-particle {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: rgba(222, 246, 255, 0.88);
  box-shadow: 0 0 0.35rem rgba(174, 232, 255, 0.5), 0 0 1rem rgba(2, 163, 239, 0.18);
  animation: star-twinkle ease-in-out infinite;
  will-change: opacity, transform, box-shadow;
}

.star-particle:nth-child(5n) {
  background: rgba(137, 215, 255, 0.88);
}

.star-particle:nth-child(7n) {
  box-shadow: 0 0 0.4rem rgba(255, 255, 255, 0.72), 0 0 1.35rem rgba(132, 48, 181, 0.28);
}

.shooting-star {
  position: absolute;
  left: var(--left);
  top: var(--top);
  width: var(--width);
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.86), rgba(91, 213, 255, 0.42), transparent);
  box-shadow: 0 0 1rem rgba(91, 213, 255, 0.32);
  opacity: 0;
  transform: rotate(var(--angle)) translate3d(-18rem, 0, 0);
  animation: meteor var(--duration) cubic-bezier(0.16, 0.84, 0.44, 1) infinite;
  animation-delay: var(--delay);
}

.shooting-star-a {
  --left: 76%;
  --top: 18%;
  --width: 9rem;
  --angle: -17deg;
  --duration: 11s;
  --delay: -2s;
}

.shooting-star-b {
  --left: 44%;
  --top: 31%;
  --width: 6.5rem;
  --angle: -11deg;
  --duration: 15s;
  --delay: -9s;
}

.shooting-star-c {
  --left: 88%;
  --top: 54%;
  --width: 7.5rem;
  --angle: -23deg;
  --duration: 18s;
  --delay: -14s;
}

.word-tm {
  position: relative;
  top: -0.48em;
  margin-left: 0.12em;
  font-size: 0.42em;
  line-height: 0;
  letter-spacing: 0.02em;
}

.aurora {
  position: absolute;
  width: 36rem;
  height: 36rem;
  border-radius: 999px;
  filter: blur(96px);
  opacity: 0.035;
  z-index: -2;
}

.aurora-one {
  left: 17%;
  top: 18%;
  background: var(--cyan);
}

.aurora-two {
  right: 11%;
  bottom: 9%;
  background: var(--magenta);
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.45rem clamp(0.95rem, 3.8vw, 3.7rem);
}

.brand-link {
  display: inline-grid;
  justify-items: center;
  gap: 0.42rem;
  opacity: 0.96;
  filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.16));
  color: #ffffff;
  text-decoration: none;
}

.brand-link img {
  width: 3.2rem;
  height: 3.2rem;
  object-fit: contain;
}

.brand-link .brand-wordmark {
  width: 6.42rem;
  height: auto;
  object-fit: contain;
}

.topbar nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  padding-top: 0.35rem;
}

.topbar button,
.topbar .nav-link {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.91);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 180ms ease, opacity 180ms ease;
}

.topbar button:hover,
.topbar button:focus-visible,
.topbar .nav-link:hover,
.topbar .nav-link:focus-visible,
.topbar .nav-link[aria-current="page"] {
  color: #ffffff;
  outline: none;
  opacity: 0.74;
}

.hero {
  --logo-size: clamp(16.34rem, 42.57vw, 27.23rem);
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 5.2rem 1.5rem 6vh;
  text-align: center;
}

.logo-stage {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--logo-size);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
}

.logo-glow {
  position: absolute;
  width: 84%;
  height: 84%;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(2, 163, 239, 0.055), transparent 50%),
    radial-gradient(circle, rgba(174, 32, 151, 0.035), transparent 66%);
  filter: blur(42px);
  animation: glow-breathe 8s ease-in-out infinite;
}

.hero-logo {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
  user-select: none;
  filter:
    saturate(1.04)
    brightness(1)
    drop-shadow(0 0 18px rgba(9, 108, 229, 0.18));
  animation: logo-energy 5.6s ease-in-out infinite;
}

.hero-logo-signal {
  position: absolute;
  z-index: 3;
  width: 100%;
  height: auto;
  opacity: 0;
  user-select: none;
  filter:
    saturate(1.4)
    brightness(1.2)
    drop-shadow(0 0 1rem rgba(2, 163, 239, 0.18));
  mix-blend-mode: screen;
  pointer-events: none;
  clip-path: inset(0 0 0 0);
  animation: logo-node-shimmer 5.8s ease-in-out infinite;
}

.orbit {
  display: none;
}

.orbit-a {
  width: 76%;
  height: 76%;
  animation: orbit-turn 18s linear infinite;
}

.orbit-b {
  width: 58%;
  height: 58%;
  border-color: rgba(2, 163, 239, 0.13);
  animation: orbit-turn 23s linear infinite reverse;
}

.hero-cta {
  position: absolute;
  left: 50%;
  top: calc(50% + (var(--logo-size) / 2) + clamp(3.2rem, 7vh, 5rem));
  margin-top: 0;
  transform: translateX(-50%);
  min-width: 9.88rem;
  min-height: 2.58rem;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #000018;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.22), 0 0 36px rgba(2, 163, 239, 0.12);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.hero-cta:hover,
.hero-cta:focus-visible {
  transform: translate(-50%, -2px);
  background: #ffffff;
  box-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.26), 0 0 48px rgba(2, 163, 239, 0.22);
  outline: none;
}

.hero-cta.coming-soon {
  border-color: rgba(255, 255, 255, 0.95);
  background: #f8fdff;
  color: #000018;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.25), 0 0 46px rgba(166, 220, 255, 0.24);
}

.hero-cta.coming-soon:hover,
.hero-cta.coming-soon:focus-visible {
  transform: translateX(-50%);
  background: #f8fdff;
}

.preview-shell {
  min-height: 100vh;
}

.preview-stage {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 7rem 1.5rem 4rem;
}

.monitor-frame {
  position: relative;
  width: min(50vw, 62rem);
  min-width: min(88vw, 35rem);
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(205, 230, 255, 0.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(125, 164, 204, 0.16), transparent 44%),
    linear-gradient(145deg, rgba(22, 35, 60, 0.98), rgba(4, 9, 21, 0.99) 44%, rgba(0, 0, 8, 1)),
    #020512;
  box-shadow:
    0 3.6rem 8rem rgba(0, 0, 0, 0.68),
    0 1.4rem 3rem rgba(0, 0, 0, 0.46),
    0 0 0 1px rgba(255, 255, 255, 0.055) inset,
    0 0 4.2rem rgba(2, 163, 239, 0.11);
  padding: clamp(0.8rem, 1.25vw, 1.15rem);
}

.monitor-frame::before {
  content: "";
  position: absolute;
  inset: 0.42rem;
  border-radius: 13px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.105), transparent 18%, transparent 78%, rgba(111, 184, 255, 0.045)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 32%);
  pointer-events: none;
  z-index: 2;
}

.monitor-frame::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4.05rem;
  width: min(38%, 18rem);
  height: 4rem;
  border-radius: 0 0 22px 22px;
  background:
    linear-gradient(180deg, rgba(31, 48, 76, 0.82), rgba(7, 12, 25, 0.96) 58%, rgba(0, 0, 6, 0)),
    linear-gradient(90deg, transparent, rgba(183, 222, 255, 0.11), transparent);
  box-shadow: 0 1.8rem 2.8rem rgba(0, 0, 0, 0.42);
  transform: translateX(-50%);
  z-index: -1;
}

.monitor-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  background: #000006;
  box-shadow:
    0 0 0 1px rgba(196, 229, 255, 0.12) inset,
    0 0 3.4rem rgba(0, 0, 0, 0.72) inset,
    0 0 2.4rem rgba(2, 163, 239, 0.08);
}

.monitor-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.14), transparent 15%, transparent 70%, rgba(120, 202, 255, 0.045)),
    radial-gradient(circle at 50% 50%, transparent 58%, rgba(0, 0, 0, 0.26));
  mix-blend-mode: screen;
  opacity: 0.44;
}

.monitor-screen::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.42rem;
  z-index: 3;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: rgba(117, 222, 255, 0.78);
  box-shadow: 0 0 0.85rem rgba(2, 163, 239, 0.64);
  transform: translateX(-50%);
  pointer-events: none;
}

.monitor-screen video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000006;
  pointer-events: none;
}

.hero-question {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  margin: 0;
  max-width: min(92vw, calc(var(--logo-size) * 1.12));
  color: #fafdff;
  font-size: clamp(1.06rem, 2.36vw, 1.96rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
  white-space: nowrap;
  filter: saturate(1.16);
  opacity: 0;
  text-shadow:
    0 0 1px rgba(255, 255, 255, 0.98),
    0 0 0.42rem rgba(238, 251, 255, 0.62),
    0 0 1rem rgba(148, 218, 255, 0.34),
    0 0 1.25rem rgba(255, 225, 148, 0.28),
    0 0 2.1rem rgba(255, 190, 74, 0.14),
    0 1rem 3.5rem rgba(0, 0, 0, 0.58);
  transform: translate(-50%, calc(-50% + 0.35rem)) scale(0.94);
  animation: center-stage-word 2.6s ease-in-out 1 both;
  will-change: opacity, transform, filter;
}

.hero-question::before {
  content: none;
}

.hero-question::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  z-index: 1;
  color: rgba(236, 250, 255, 0.88);
  text-shadow:
    0 0 0.32rem rgba(255, 255, 255, 0.76),
    0 0 0.86rem rgba(166, 225, 255, 0.52),
    0 0 1.35rem rgba(255, 223, 144, 0.34),
    0 0 2rem rgba(255, 190, 74, 0.16);
  filter: blur(0.2px);
  opacity: 0;
  mix-blend-mode: screen;
  pointer-events: none;
  animation: question-electric 2.9s steps(1, end) infinite;
}

.hero-question-warm {
  color: #f8fcff;
  text-shadow:
    0 0 1px rgba(255, 255, 255, 0.98),
    0 0 0.44rem rgba(244, 253, 255, 0.64),
    0 0 1rem rgba(132, 215, 255, 0.4),
    0 0 1.45rem rgba(255, 224, 146, 0.4),
    0 0 2.4rem rgba(255, 190, 74, 0.22),
    0 1rem 3.5rem rgba(0, 0, 0, 0.58);
}

.hero-question-warm::after {
  color: rgba(241, 252, 255, 0.82);
  text-shadow:
    0 0 0.34rem rgba(255, 255, 255, 0.78),
    0 0 0.85rem rgba(142, 220, 255, 0.55),
    0 0 1.15rem rgba(255, 224, 146, 0.46),
    0 0 1.9rem rgba(255, 190, 74, 0.24);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(0, 0, 16, 0.72);
  backdrop-filter: blur(18px);
}

.modal-backdrop[hidden] {
  display: none;
}

.waitlist-modal {
  position: relative;
  width: min(100%, 42rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(8, 24, 46, 0.96), rgba(0, 0, 24, 0.98)), #000018;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.44);
  padding: clamp(1.4rem, 4vw, 2.25rem);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  line-height: 1;
}

.modal-kicker {
  margin: 0 0 0.65rem;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.waitlist-modal h1 {
  margin: 0 2rem 1.5rem 0;
  max-width: 28rem;
  color: #ffffff;
  font-size: clamp(1.45rem, 4vw, 2rem);
  line-height: 1.12;
  font-weight: 800;
}

.waitlist-modal form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.waitlist-modal label {
  display: grid;
  gap: 0.45rem;
}

.waitlist-modal label.full,
.form-status {
  grid-column: 1 / -1;
}

.waitlist-modal span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
}

.waitlist-modal input,
.waitlist-modal textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  padding: 0.85rem 0.9rem;
  outline: none;
  resize: vertical;
}

.waitlist-modal input:focus,
.waitlist-modal textarea:focus {
  border-color: rgba(2, 163, 239, 0.72);
  box-shadow: 0 0 0 3px rgba(2, 163, 239, 0.14);
}

.submit-button {
  grid-column: 1 / -1;
  justify-self: start;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #000018;
  padding: 0.9rem 1.35rem;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.form-status {
  margin: -0.2rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
}

@keyframes star-twinkle {
  0% {
    opacity: 0.1;
    transform: scale(0.72);
    box-shadow: 0 0 0.2rem rgba(174, 232, 255, 0.3), 0 0 0.62rem rgba(2, 163, 239, 0.1);
  }
  46% {
    opacity: var(--star-opacity, 0.42);
    transform: scale(1.18);
    box-shadow: 0 0 0.5rem rgba(235, 250, 255, 0.64), 0 0 1.35rem rgba(91, 213, 255, 0.24);
  }
  72% {
    opacity: 0.2;
    transform: scale(0.92);
  }
  100% {
    opacity: 0.12;
    transform: scale(0.76);
    box-shadow: 0 0 0.22rem rgba(174, 232, 255, 0.32), 0 0 0.68rem rgba(2, 163, 239, 0.12);
  }
}

@keyframes meteor {
  0%,
  72% {
    opacity: 0;
    transform: rotate(var(--angle)) translate3d(-18rem, 0, 0);
  }
  78% {
    opacity: 0.72;
  }
  88%,
  100% {
    opacity: 0;
    transform: rotate(var(--angle)) translate3d(14rem, 0, 0);
  }
}

@keyframes center-stage-word {
  0% {
    opacity: 0;
    filter: blur(1.8px) saturate(1.3) brightness(1.18);
    transform: translate(-50%, calc(-50% + 0.35rem)) scale(0.94);
  }
  14% {
    opacity: 1;
    filter: blur(0.15px) saturate(1.22) brightness(1.18);
    transform: translate(-50%, -50%) scale(1.08);
  }
  78% {
    opacity: 1;
    filter: blur(0) saturate(1.16) brightness(1);
    transform: translate(-50%, -50%) scale(1.04);
  }
  100% {
    opacity: 0;
    filter: blur(1.2px) saturate(1.2) brightness(1.05);
    transform: translate(-50%, calc(-50% - 0.18rem)) scale(0.98);
  }
}

@keyframes question-electric {
  0%,
  100% {
    opacity: 0.18;
    transform: translate3d(0, 0, 0);
  }
  18% {
    opacity: 0.28;
    transform: translate3d(-0.5px, 0, 0);
  }
  36% {
    opacity: 0.15;
    transform: translate3d(0.5px, 0, 0);
  }
  57% {
    opacity: 0.24;
    transform: translate3d(0, 0, 0);
  }
  74% {
    opacity: 0.14;
    transform: translate3d(-0.5px, 0, 0);
  }
  88% {
    opacity: 0.22;
    transform: translate3d(0.5px, 0, 0);
  }
}

@keyframes question-haze {
  0%,
  100% {
    opacity: 0.52;
    transform: translate(-50%, -50%) scale(0.96);
  }
  28% {
    opacity: 0.92;
    transform: translate(-50%, -52%) scale(1.04);
  }
  62% {
    opacity: 0.68;
    transform: translate(-50%, -54%) scale(1.08);
  }
}

@keyframes logo-energy {
  0%,
  100% {
    filter:
      saturate(1.03)
      brightness(0.98)
      drop-shadow(0 0 16px rgba(9, 108, 229, 0.16));
  }
  38% {
    filter:
      saturate(1.16)
      brightness(1.04)
      drop-shadow(0 0 22px rgba(2, 163, 239, 0.24));
  }
  64% {
    filter:
      saturate(1.09)
      brightness(1.02)
      drop-shadow(0 0 18px rgba(132, 48, 181, 0.18));
  }
}

@keyframes logo-node-shimmer {
  0%,
  100% {
    opacity: 0.02;
    filter:
      saturate(1.18)
      brightness(1.04)
      drop-shadow(0 0 0.55rem rgba(2, 163, 239, 0.08));
  }
  38% {
    opacity: 0.16;
    filter:
      saturate(1.45)
      brightness(1.18)
      drop-shadow(0 0 0.85rem rgba(2, 163, 239, 0.18));
  }
  67% {
    opacity: 0.08;
    filter:
      saturate(1.28)
      brightness(1.1)
      drop-shadow(0 0 0.7rem rgba(132, 48, 181, 0.12));
  }
}

@keyframes glow-breathe {
  0%,
  100% {
    opacity: 0.42;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.66;
    transform: scale(1.04);
  }
}

@keyframes orbit-turn {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 760px) {
  .topbar {
    align-items: flex-start;
    padding: 1.4rem 1rem;
  }

  .brand-link {
    gap: 0.34rem;
  }

  .brand-link img {
    width: 2.57rem;
    height: 2.57rem;
  }

  .brand-link .brand-wordmark {
    width: 5.03rem;
  }

  .topbar nav {
    justify-content: flex-end;
  }

  .topbar button,
  .topbar .nav-link {
    font-size: 0.66rem;
  }

  .logo-stage {
    width: min(92vw, 29.7rem);
    min-width: 0;
  }

  .hero-question {
    font-size: clamp(0.9rem, 3.96vw, 1.2rem);
  }

  .hero {
    padding: 7rem 1rem 8vh;
  }

  .waitlist-modal form {
    grid-template-columns: 1fr;
  }
}

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