:root {
  --bg: #03030a;
  --bg-soft: #080a18;
  --text: #f6f1ea;
  --muted: rgba(246, 241, 234, 0.62);
  --pink: #ffc0d8;
  --pink-strong: #ff78bd;
  --lime: #dfff6a;
  --line: rgba(255, 255, 255, 0.1);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  background:
    radial-gradient(circle at 50% 0%, rgba(126, 70, 255, 0.18), transparent 36rem),
    radial-gradient(circle at 50% 70%, rgba(255, 120, 189, 0.08), transparent 38rem),
    linear-gradient(180deg, #050512 0%, #090b1d 52%, #03030a 100%);
}

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

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

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

.launch-page {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.launch-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 42%, transparent 0 28%, rgba(0, 0, 0, 0.4) 68%, rgba(0, 0, 0, 0.86) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.35));
  z-index: 1;
}

.launch-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  height: 94px;
  padding: 0 clamp(24px, 3.8vw, 58px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.launch-nav__brand {
  display: inline-flex;
  align-items: center;
}

.launch-nav__brand img {
  width: clamp(46px, 4vw, 70px);
  height: clamp(46px, 4vw, 70px);
  object-fit: contain;
  filter: drop-shadow(0 14px 34px rgba(255, 120, 189, 0.16));
  opacity: 0;
  transform: translateY(-12px);
  animation: navIn 0.8s var(--ease) 0.25s forwards;
}

.launch-nav__burger {
  width: 54px;
  height: 54px;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateY(-12px);
  animation: navIn 0.8s var(--ease) 0.35s forwards;
}

.launch-nav__burger span {
  display: block;
  width: 31px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
}

.launch-hero {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  padding: 104px clamp(18px, 4vw, 72px) 48px;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
}

.launch-hero__visual {
  width: min(100%, 1230px);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: scale(0.88) translateY(34px);
  filter: blur(10px);
  animation: heroPop 1.15s var(--ease) 0.15s forwards;
}

.launch-hero__visual img {
  width: min(100%, 1180px);
  max-height: min(68svh, 720px);
  object-fit: contain;
  border-radius: 3px;
  box-shadow:
    0 45px 130px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

.launch-hero__bottom {
  width: min(100%, 1180px);
  margin: clamp(24px, 3vw, 38px) auto 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(20px, 4vw, 72px);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.85s var(--ease) 0.55s forwards;
}

.launch-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-transform: uppercase;
}

.launch-info span {
  color: var(--muted);
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.launch-info strong {
  color: var(--text);
  font-size: clamp(24px, 2.4vw, 42px);
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: -0.055em;
}

.launch-info--right {
  justify-self: end;
  text-align: right;
}

.launch-button {
  min-width: min(320px, 82vw);
  min-height: 68px;
  padding: 0 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--pink);
  color: #1a0b14;
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 950;
  letter-spacing: 0.01em;
  box-shadow:
    0 18px 70px rgba(255, 192, 216, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition:
    transform 0.28s var(--ease),
    background 0.28s ease,
    box-shadow 0.28s ease;
}

.launch-button:hover {
  transform: translateY(-2px);
  background: #ffd1e2;
  box-shadow:
    0 22px 84px rgba(255, 192, 216, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.launch-chevron {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  opacity: 0;
  animation:
    fadeIn 0.7s ease 1s forwards,
    chevronFloat 1.4s ease-in-out 1.1s infinite;
}

.launch-chevron span {
  width: 22px;
  height: 22px;
  border-right: 4px solid var(--pink);
  border-bottom: 4px solid var(--pink);
  transform: rotate(45deg);
  border-radius: 2px;
  filter: drop-shadow(0 0 14px rgba(255, 192, 216, 0.45));
}

@keyframes heroPop {
  0% {
    opacity: 0;
    transform: scale(0.88) translateY(34px);
    filter: blur(10px);
  }

  62% {
    opacity: 1;
    transform: scale(1.025) translateY(0);
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes navIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes chevronFloat {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

@media (max-width: 900px) {
  .launch-hero {
    padding-top: 92px;
  }

  .launch-hero__bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .launch-info,
  .launch-info--right {
    justify-self: center;
    text-align: center;
  }

  .launch-button {
    order: 3;
  }
}

@media (max-width: 560px) {
  .launch-nav {
    height: 76px;
    padding: 0 20px;
  }

  .launch-nav__brand img {
    width: 48px;
    height: 48px;
  }

  .launch-hero {
    padding: 84px 14px 42px;
  }

  .launch-hero__visual img {
    max-height: 56svh;
  }

  .launch-info strong {
    font-size: 28px;
  }

  .launch-button {
    min-height: 60px;
    width: 100%;
  }
}