:root {
  color-scheme: dark;
  --bg: #030305;
  --panel: rgba(7, 7, 13, 0.72);
  --text: #f8f8fc;
  --muted: #b9b9ca;
  --line: rgba(255, 255, 255, 0.14);
  --pink: #ff079c;
  --violet: #7b35ff;
  --cyan: #00d7ff;
  --gradient: linear-gradient(105deg, var(--pink), var(--violet) 52%, var(--cyan));
  --body: "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
  --display: "Arial Black", "Segoe UI Black", "Segoe UI", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  background: var(--bg);
}

body {
  overflow-x: hidden;
  color: var(--text);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

::selection {
  background: var(--pink);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 11px 15px;
  border-radius: 8px;
  background: #fff;
  color: #000;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.launch-page {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #030305;
}

.launch-video,
.launch-shade,
.launch-grid-art,
.launch-glow {
  position: absolute;
  inset: 0;
}

.launch-video {
  z-index: -6;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% center;
  background: #030305;
  opacity: 0;
  filter: saturate(1.12) contrast(1.06) brightness(0.86);
  transition: opacity 0.65s ease;
}

.launch-video.is-ready {
  opacity: 1;
}

.launch-shade {
  z-index: -5;
  background:
    linear-gradient(90deg, rgba(2, 2, 5, 0.96) 0%, rgba(2, 2, 5, 0.82) 36%, rgba(2, 2, 5, 0.46) 66%, rgba(2, 2, 5, 0.68) 100%),
    linear-gradient(0deg, rgba(2, 2, 5, 0.88) 0%, transparent 43%, rgba(2, 2, 5, 0.42) 100%);
}

.launch-grid-art {
  z-index: -4;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(90deg, #000, transparent 70%);
}

.launch-glow {
  z-index: -3;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.35;
}

.launch-glow--pink {
  inset: 58% auto auto -8%;
  width: 38vw;
  height: 38vw;
  border-radius: 50%;
  background: var(--pink);
}

.launch-glow--cyan {
  inset: auto -10% -20% auto;
  width: 34vw;
  height: 34vw;
  border-radius: 50%;
  background: var(--cyan);
}

.launch-shell {
  display: grid;
  width: min(1400px, calc(100% - 72px));
  min-height: 100vh;
  min-height: 100svh;
  grid-template-rows: auto 1fr auto;
  gap: 28px;
  margin-inline: auto;
  padding: 28px 0 24px;
}

.launch-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.launch-header img {
  width: clamp(170px, 18vw, 270px);
  height: auto;
}

.work-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 5, 10, 0.62);
  color: #e9e9f1;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.work-badge i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
  animation: pulse 1.8s ease-in-out infinite;
}

.launch-content {
  display: flex;
  width: min(820px, 100%);
  align-self: center;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(28px, 4vw, 56px) 0;
}

.launch-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: #efeff5;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.21em;
  text-transform: uppercase;
}

.launch-kicker span {
  width: 32px;
  height: 2px;
  background: var(--gradient);
}

.launch-content h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 7.3vw, 7.7rem);
  font-weight: 950;
  letter-spacing: -0.065em;
  line-height: 0.88;
  text-transform: uppercase;
  text-wrap: balance;
}

.launch-content h1 span,
.launch-content h1 strong {
  display: block;
}

.launch-content h1 span {
  color: #fff;
}

.launch-content h1 strong {
  margin-top: 0.1em;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.launch-lead {
  max-width: 710px;
  margin: clamp(24px, 3vw, 36px) 0 0;
  color: #d2d2de;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.72;
}

.launch-stats {
  display: grid;
  width: min(760px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(30px, 4vw, 50px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px) saturate(1.25);
}

.launch-stats > div {
  display: flex;
  min-height: 116px;
  align-items: center;
  gap: 15px;
  padding: 20px 24px;
}

.launch-stats > div + div {
  border-left: 1px solid var(--line);
}

.launch-stats strong {
  font-family: var(--display);
  font-size: clamp(2.3rem, 4vw, 3.7rem);
  letter-spacing: -0.07em;
  line-height: 1;
}

.launch-stats > div:nth-child(1) strong {
  color: var(--pink);
}

.launch-stats > div:nth-child(2) strong {
  color: #a75cff;
}

.launch-stats > div:nth-child(3) strong {
  color: var(--cyan);
}

.launch-stats span {
  color: #c6c6d2;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1.45;
  text-transform: uppercase;
}

.city-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.city-row i {
  width: 5px;
  height: 5px;
  background: var(--cyan);
  box-shadow: 0 0 13px var(--cyan);
}

.launch-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.launch-footer p {
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(0.82rem, 1.3vw, 1.05rem);
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.launch-footer p span {
  color: var(--pink);
}

.launch-footer small {
  color: #a8a8b6;
  font-size: 0.68rem;
  line-height: 1.4;
  text-align: right;
}

.floating-pixel {
  position: absolute;
  z-index: -2;
  width: 14px;
  height: 14px;
  border-radius: 2px;
  pointer-events: none;
  animation: float 5s ease-in-out infinite;
}

.floating-pixel--one {
  top: 22%;
  right: 12%;
  background: var(--pink);
  box-shadow: 0 0 24px var(--pink);
}

.floating-pixel--two {
  top: 31%;
  right: 7%;
  width: 8px;
  height: 8px;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
  animation-delay: -1.2s;
}

.floating-pixel--three {
  bottom: 27%;
  right: 18%;
  width: 20px;
  height: 20px;
  background: #7b35ff;
  box-shadow: 0 0 28px #7b35ff;
  animation-delay: -2.4s;
}

.floating-pixel--four {
  bottom: 17%;
  left: 46%;
  width: 9px;
  height: 9px;
  background: var(--pink);
  box-shadow: 0 0 18px var(--pink);
  animation-delay: -3.1s;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(0, -14px, 0) rotate(8deg); }
}

@media (max-width: 900px) {
  .launch-shell {
    width: min(100% - 40px, 760px);
  }

  .launch-shade {
    background:
      linear-gradient(90deg, rgba(2, 2, 5, 0.93) 0%, rgba(2, 2, 5, 0.7) 70%, rgba(2, 2, 5, 0.78) 100%),
      linear-gradient(0deg, rgba(2, 2, 5, 0.92) 0%, transparent 50%, rgba(2, 2, 5, 0.52) 100%);
  }

  .launch-content h1 {
    font-size: clamp(3.1rem, 11vw, 6rem);
  }
}

@media (max-width: 680px) {
  .launch-shell {
    width: min(100% - 28px, 560px);
    gap: 18px;
    padding: 18px 0 17px;
  }

  .launch-header img {
    width: 170px;
  }

  .work-badge {
    padding: 8px 10px;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  .launch-content {
    padding: 28px 0 20px;
  }

  .launch-kicker {
    margin-bottom: 16px;
    font-size: 0.61rem;
  }

  .launch-content h1 {
    font-size: clamp(2.8rem, 13.8vw, 5rem);
    line-height: 0.92;
  }

  .launch-lead {
    margin-top: 22px;
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .launch-stats {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .launch-stats > div {
    min-height: 82px;
    padding: 14px 18px;
  }

  .launch-stats > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .launch-stats strong {
    min-width: 66px;
    font-size: 2.6rem;
  }

  .launch-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .launch-footer small {
    text-align: left;
  }

  .floating-pixel--four {
    display: none;
  }
}

@media (max-width: 420px) {
  .work-badge {
    max-width: 132px;
    line-height: 1.3;
  }

  .launch-content h1 {
    font-size: clamp(2.45rem, 13.2vw, 3.4rem);
  }
}

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