:root {
  color-scheme: dark;
  --ink: #f6f8fb;
  --muted: rgba(246, 248, 251, 0.72);
  --soft: rgba(168, 185, 255, 0.15);
  --line: rgba(168, 185, 255, 0.2);
  --teal: #60f0d1;
  --blue: #43a8ff;
  --violet: #9b5cff;
  --magenta: #d65bf1;
  --black: #05070a;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    radial-gradient(circle at 78% 24%, rgba(67, 168, 255, 0.18), transparent 28rem),
    radial-gradient(circle at 26% 78%, rgba(155, 92, 255, 0.16), transparent 24rem),
    #05070a;
  background-size: 48px 48px, 48px 48px, auto, auto, auto;
}

.hero {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  padding: clamp(18px, 3vw, 34px) clamp(18px, 3vw, 34px) 0;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  overflow: hidden;
  background: #07090d;
}

.hero-video,
.hero-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 50%;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-poster {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: scale(1.04);
  filter: saturate(0.9) contrast(1.06);
}

.motion-layer {
  position: absolute;
  inset: -20%;
  z-index: 2;
  mix-blend-mode: screen;
  opacity: 0.52;
  pointer-events: none;
}

.motion-layer-one {
  background:
    linear-gradient(115deg, transparent 20%, rgba(67, 168, 255, 0.13), transparent 36%),
    linear-gradient(75deg, transparent 58%, rgba(214, 91, 241, 0.1), transparent 72%);
  animation: drift-one 16s ease-in-out infinite alternate;
}

.motion-layer-two {
  background:
    linear-gradient(145deg, transparent 32%, rgba(96, 240, 209, 0.1), transparent 50%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 0 1px,
      transparent 1px 88px
    );
  animation: drift-two 21s ease-in-out infinite alternate;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 4, 13, 0.95) 0%, rgba(2, 4, 13, 0.76) 42%, rgba(2, 4, 13, 0.28) 78%),
    linear-gradient(180deg, rgba(2, 4, 13, 0.64) 0%, rgba(2, 4, 13, 0.12) 42%, rgba(2, 4, 13, 0.91) 100%);
}

.site-header {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(132px, 16vw, 220px);
  min-height: 42px;
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 26px rgba(67, 168, 255, 0.2));
}

.launch-pill,
.hero-status {
  border: 1px solid var(--line);
  background: rgba(8, 13, 29, 0.46);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.launch-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  color: rgba(246, 248, 251, 0.82);
  font-size: 13px;
  font-weight: 680;
}

.hero-content {
  position: relative;
  z-index: 3;
  align-self: center;
  width: min(820px, 100%);
  padding: 4vh 0 4vh;
}

.wordmark {
  width: min(520px, 78vw);
  height: auto;
  margin: 0 0 clamp(24px, 5vh, 54px) -8px;
  filter: drop-shadow(0 18px 38px rgba(67, 168, 255, 0.22));
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(58px, 8.8vw, 128px);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  margin-top: 32px;
  padding: 0 16px;
  border-radius: 999px;
  color: rgba(246, 248, 251, 0.86);
  font-size: 14px;
  font-weight: 690;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 6px rgba(96, 240, 209, 0.13);
}

.campaign-visual {
  position: relative;
  z-index: 4;
  width: min(1500px, 96vw);
  margin: clamp(-18px, -2vh, -8px) auto 0;
  padding: 0 clamp(0px, 1.2vw, 18px);
}

.campaign-visual::before {
  content: "";
  position: absolute;
  inset: -18% 2% 8%;
  z-index: -1;
  background:
    radial-gradient(circle at 30% 46%, rgba(155, 92, 255, 0.24), transparent 34%),
    radial-gradient(circle at 70% 52%, rgba(67, 168, 255, 0.18), transparent 34%),
    linear-gradient(180deg, transparent, rgba(2, 4, 13, 0.64));
  filter: blur(18px);
  pointer-events: none;
}

.campaign-visual img {
  width: 100%;
  height: auto;
  max-height: clamp(260px, 46vh, 560px);
  object-fit: contain;
  margin: 0;
  border: 1px solid rgba(168, 185, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(2, 4, 13, 0.76);
  box-shadow:
    0 38px 120px rgba(0, 0, 0, 0.46),
    0 0 70px rgba(67, 168, 255, 0.08);
  filter: saturate(1.02) contrast(1.04);
}

@keyframes drift-one {
  from {
    transform: translate3d(-4%, -1%, 0) rotate(0.001deg);
  }

  to {
    transform: translate3d(6%, 3%, 0) rotate(0.001deg);
  }
}

@keyframes drift-two {
  from {
    transform: translate3d(4%, 2%, 0) rotate(0.001deg);
  }

  to {
    transform: translate3d(-5%, -2%, 0) rotate(0.001deg);
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: 100svh;
    padding: 18px 18px 0;
  }

  .hero-video,
  .hero-poster {
    object-position: 66% 50%;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(2, 4, 13, 0.96) 0%, rgba(2, 4, 13, 0.8) 62%, rgba(2, 4, 13, 0.52) 100%),
      linear-gradient(180deg, rgba(2, 4, 13, 0.5) 0%, rgba(2, 4, 13, 0.18) 46%, rgba(2, 4, 13, 0.93) 100%);
  }

  .hero-content {
    padding: 4vh 0 5vh;
  }

  h1 {
    font-size: clamp(48px, 13vw, 72px);
  }

  .hero-copy {
    font-size: 17px;
  }

  .campaign-visual {
    width: 100%;
    margin-top: 0;
    padding: 0;
  }

  .campaign-visual img {
    max-height: clamp(220px, 36vh, 360px);
    object-fit: cover;
    object-position: center top;
  }
}

@media (max-width: 520px) {
  .brand {
    width: 128px;
    min-height: 34px;
  }

  .launch-pill {
    min-height: 32px;
    padding: 0 11px;
  }

  .eyebrow {
    margin-bottom: 14px;
  }

  .hero-status {
    max-width: 100%;
    border-radius: 8px;
    padding: 11px 13px;
    line-height: 1.25;
  }
}

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