:root {
  --desktop-container: 1240px;
  --gutter: 32px;
  --ink: #f4fbff;
  --muted: rgba(218, 236, 255, 0.72);
  --dim: rgba(184, 202, 230, 0.54);
  --bg-0: #060715;
  --bg-1: #0b0e24;
  --bg-2: #101436;
  --violet: #8b4dff;
  --violet-2: #c06bff;
  --cyan: #20f6e7;
  --cyan-2: #66fff2;
  --magenta: #ff2f8f;
  --magenta-2: #ff67b5;
  --gold: #ffd36a;
  --line: rgba(105, 238, 255, 0.22);
  --line-violet: rgba(174, 98, 255, 0.28);
  --panel: rgba(10, 15, 39, 0.78);
  --panel-strong: rgba(14, 19, 49, 0.92);
  --radius-card: 22px;
  --radius-command: 28px;
  --font-display: "Russo One", "Chakra Petch", "Arial Black", "Microsoft YaHei", sans-serif;
  --font-body: "Chakra Petch", "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg-0);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 50% 0%, rgba(122, 54, 255, 0.28), transparent 38rem),
    radial-gradient(circle at 86% 16%, rgba(32, 246, 231, 0.15), transparent 34rem),
    linear-gradient(180deg, #050611 0%, #0a0d22 56%, #070815 100%);
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}

body::selection {
  color: #061018;
  background: var(--cyan);
}

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

button {
  font: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 0;
  right: 0;
  pointer-events: none;
}

.site-header__inner {
  width: min(100% - calc(var(--gutter) * 2), var(--desktop-container));
  height: 72px;
  margin: 0 auto;
  padding: 0 12px 0 16px;
  display: grid;
  grid-template-columns: max-content 1fr max-content;
  align-items: center;
  gap: 24px;
  pointer-events: auto;
  border: 1px solid rgba(97, 235, 255, 0.22);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.075), transparent 18%, rgba(32, 246, 231, 0.075) 72%, rgba(255, 47, 143, 0.075)),
    rgba(7, 10, 28, 0.72);
  box-shadow:
    0 0 0 1px rgba(161, 90, 255, 0.12) inset,
    0 0 32px rgba(36, 236, 255, 0.12),
    0 18px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px) saturate(132%);
}

.site-header__brand,
.mobile-menu__brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.site-header__logo,
.mobile-menu__logo {
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(32, 246, 231, 0.45));
}

.site-header__brand-text,
.mobile-menu__brand-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #ffffff;
  text-shadow:
    0 0 12px rgba(32, 246, 231, 0.38),
    0 0 24px rgba(139, 77, 255, 0.3);
}

.site-header__nav {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(4, 7, 20, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header__nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(231, 244, 255, 0.76);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.035em;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.site-header__nav-link::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 7px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  transition: transform 180ms ease;
}

.site-header__nav-link:hover {
  color: #ffffff;
  background: rgba(32, 246, 231, 0.09);
  box-shadow: 0 0 18px rgba(32, 246, 231, 0.15) inset;
  transform: translateY(-1px);
}

.site-header__nav-link:hover::after {
  transform: scaleX(1);
}

.site-header__cta,
.mobile-menu__cta,
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.05em;
  white-space: nowrap;
  cursor: pointer;
  isolation: isolate;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.site-header__cta,
.mobile-menu__cta,
.button--primary {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 34%),
    linear-gradient(135deg, var(--magenta) 0%, #f31278 52%, #9b3dff 100%);
  border-color: rgba(32, 246, 231, 0.55);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.16) inset,
    0 0 18px rgba(255, 47, 143, 0.48),
    0 0 32px rgba(32, 246, 231, 0.18);
}

.site-header__cta::before,
.mobile-menu__cta::before,
.button--primary::before {
  content: "";
  position: absolute;
  inset: -4px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(32, 246, 231, 0.42), transparent);
  opacity: 0.58;
  filter: blur(10px);
}

.site-header__cta:hover,
.mobile-menu__cta:hover,
.button--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.22) inset,
    0 0 25px rgba(255, 47, 143, 0.62),
    0 0 42px rgba(32, 246, 231, 0.28);
}

.button--secondary {
  color: rgba(239, 250, 255, 0.9);
  background: rgba(6, 10, 28, 0.52);
  border-color: rgba(32, 246, 231, 0.36);
  box-shadow:
    0 0 0 1px rgba(144, 80, 255, 0.16) inset,
    0 0 22px rgba(32, 246, 231, 0.08);
}

.button--secondary:hover {
  color: #fff;
  transform: translateY(-2px);
  border-color: rgba(32, 246, 231, 0.7);
  background: rgba(32, 246, 231, 0.09);
  box-shadow:
    0 0 0 1px rgba(32, 246, 231, 0.2) inset,
    0 0 24px rgba(32, 246, 231, 0.22);
}

.site-header__menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(32, 246, 231, 0.26);
  border-radius: 50%;
  color: #fff;
  background: rgba(8, 13, 32, 0.72);
}

.site-header__menu-line {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(32, 246, 231, 0.62);
}

.mobile-menu {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: none;
  background: rgba(3, 5, 14, 0.72);
  backdrop-filter: blur(12px);
}

.mobile-menu__panel {
  position: absolute;
  top: 16px;
  right: 16px;
  bottom: 16px;
  width: min(420px, calc(100% - 32px));
  padding: 22px;
  border: 1px solid rgba(32, 246, 231, 0.26);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(139, 77, 255, 0.28), transparent 19rem),
    linear-gradient(180deg, rgba(12, 16, 43, 0.96), rgba(6, 9, 25, 0.98));
  box-shadow: -18px 0 70px rgba(0, 0, 0, 0.5), 0 0 35px rgba(32, 246, 231, 0.12);
}

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.mobile-menu__close {
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 47, 143, 0.42);
  border-radius: 50%;
  background: rgba(255, 47, 143, 0.08);
  cursor: pointer;
}

.mobile-menu__close-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--magenta-2);
  box-shadow: 0 0 10px rgba(255, 47, 143, 0.58);
}

.mobile-menu__close-line:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu__close-line:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu__nav {
  display: grid;
  gap: 10px;
  padding: 26px 0;
}

.mobile-menu__link {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  min-height: 58px;
  padding: 0 16px;
  border: 1px solid rgba(32, 246, 231, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.mobile-menu__link-index {
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 13px;
  opacity: 0.9;
}

.mobile-menu__link-text {
  color: rgba(246, 252, 255, 0.9);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.mobile-menu__cta-block {
  margin-top: auto;
  padding: 20px;
  border: 1px solid rgba(255, 47, 143, 0.22);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 47, 143, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.035);
}

.mobile-menu__cta {
  width: 100%;
}

.mobile-menu__note {
  margin: 14px 0 0;
  color: var(--dim);
  font-size: 13px;
  line-height: 1.7;
  text-align: center;
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 118px 0 34px;
  background:
    radial-gradient(circle at 50% 38%, rgba(31, 241, 229, 0.14), transparent 29rem),
    radial-gradient(circle at 26% 24%, rgba(255, 47, 143, 0.13), transparent 26rem),
    linear-gradient(180deg, #060716 0%, #0a0d25 74%, #080916 100%);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 50% 92%, rgba(32, 246, 231, 0.15), transparent 18rem);
  background-size: 86px 86px, auto;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 92%);
  opacity: 0.38;
  pointer-events: none;
}

.hero-section__backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-section__grid {
  position: absolute;
  left: 50%;
  bottom: -9%;
  width: 120vw;
  height: 44vh;
  transform: translateX(-50%) perspective(760px) rotateX(62deg);
  transform-origin: center bottom;
  background:
    linear-gradient(rgba(32, 246, 231, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 77, 255, 0.16) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.34;
  filter: drop-shadow(0 0 18px rgba(32, 246, 231, 0.25));
}

.hero-section__halo {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.72;
}

.hero-section__halo--violet {
  top: 8%;
  left: 2%;
  width: 42vw;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(139, 77, 255, 0.38), transparent 62%);
  animation: heroDrift 9s ease-in-out infinite alternate;
}

.hero-section__halo--cyan {
  right: 0;
  top: 18%;
  width: 36vw;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(32, 246, 231, 0.28), transparent 62%);
  animation: heroDrift 10s ease-in-out infinite alternate-reverse;
}

.hero-section__scanline {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 6px);
  opacity: 0.23;
  mix-blend-mode: screen;
}

.hero-shell {
  position: relative;
  z-index: 2;
  width: min(100% - calc(var(--gutter) * 2), var(--desktop-container));
  min-height: 92vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.86fr 1.28fr 0.7fr;
  grid-template-rows: auto auto 1fr auto;
  grid-template-areas:
    "kicker kicker kicker"
    "copy collage side"
    "copy collage side"
    "command command command";
  align-items: center;
  column-gap: 20px;
  row-gap: 20px;
}

.hero-kicker {
  grid-area: kicker;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(32, 246, 231, 0.26);
  border-radius: 999px;
  background: rgba(7, 11, 32, 0.66);
  box-shadow: 0 0 24px rgba(32, 246, 231, 0.1), 0 0 0 1px rgba(139, 77, 255, 0.12) inset;
  backdrop-filter: blur(10px);
}

.hero-kicker__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(32, 246, 231, 0.14), 0 0 18px rgba(32, 246, 231, 0.82);
}

.hero-kicker__text {
  color: rgba(230, 250, 255, 0.88);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.13em;
}

.hero-content {
  grid-area: copy;
  align-self: center;
  max-width: 760px;
  padding-top: 8px;
}

.hero-content__eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(32, 246, 231, 0.42);
}

.hero-content__title {
  margin: 0;
  max-width: 760px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(58px, 5.45vw, 92px);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: -0.035em;
  text-wrap: balance;
  text-shadow:
    0 0 18px rgba(32, 246, 231, 0.2),
    0 0 44px rgba(139, 77, 255, 0.28);
}

.hero-content__title::after {
  content: "NEON TILE ENGINE";
  display: block;
  width: max-content;
  max-width: 100%;
  margin-top: 14px;
  padding: 7px 13px 6px;
  border-left: 3px solid var(--magenta);
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.22em;
  background: linear-gradient(90deg, rgba(255, 47, 143, 0.22), transparent);
  text-shadow: none;
}

.hero-content__lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(223, 239, 255, 0.78);
  font-size: 18px;
  line-height: 1.85;
  letter-spacing: 0.015em;
}

.hero-collage {
  grid-area: collage;
  position: relative;
  align-self: stretch;
  min-height: 570px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-media {
  margin: 0;
}

.hero-media--core {
  position: relative;
  z-index: 3;
  width: min(48vw, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: drop-shadow(0 0 24px rgba(32, 246, 231, 0.24)) drop-shadow(0 0 72px rgba(139, 77, 255, 0.28));
  animation: cardFloat 6s ease-in-out infinite alternate;
}

.hero-media--core::before,
.hero-media--core::after {
  content: "";
  position: absolute;
  inset: 8%;
  z-index: -1;
  border-radius: 50%;
  border: 1px solid rgba(32, 246, 231, 0.3);
  box-shadow:
    0 0 36px rgba(32, 246, 231, 0.18),
    0 0 80px rgba(139, 77, 255, 0.2) inset;
}

.hero-media--core::after {
  inset: 16%;
  border-color: rgba(255, 47, 143, 0.25);
  transform: rotate(-18deg);
}

.hero-media__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 38% 42% 44% 36%;
  border: 1px solid rgba(32, 246, 231, 0.24);
  background: #080b21;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 0 80px rgba(32, 246, 231, 0.12);
  clip-path: polygon(10% 0, 100% 0, 100% 84%, 86% 100%, 0 100%, 0 14%);
}

.hero-media__caption {
  position: absolute;
  left: 7%;
  bottom: 9%;
  z-index: 5;
  display: grid;
  gap: 4px;
  min-width: 210px;
  padding: 13px 16px;
  border: 1px solid rgba(32, 246, 231, 0.33);
  border-radius: 18px;
  background: rgba(5, 9, 26, 0.76);
  box-shadow: 0 0 30px rgba(32, 246, 231, 0.16), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  backdrop-filter: blur(12px);
}

.hero-media__caption-label {
  color: var(--magenta-2);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.18em;
}

.hero-media__caption-text {
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.hero-card {
  position: absolute;
  z-index: 5;
  display: grid;
  gap: 5px;
  width: 184px;
  padding: 17px 18px;
  border: 1px solid rgba(32, 246, 231, 0.26);
  border-radius: var(--radius-card);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(15, 20, 52, 0.88), rgba(6, 10, 29, 0.84));
  box-shadow:
    0 0 0 1px rgba(139, 77, 255, 0.14) inset,
    0 20px 50px rgba(0, 0, 0, 0.34),
    0 0 30px rgba(32, 246, 231, 0.12);
  backdrop-filter: blur(14px);
  clip-path: polygon(13px 0, 100% 0, 100% calc(100% - 13px), calc(100% - 13px) 100%, 0 100%, 0 13px);
}

.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0.75;
}

.hero-card--engine {
  top: 12%;
  left: 0;
  transform: rotate(-5deg);
}

.hero-card--fair {
  top: 25%;
  right: -1%;
  transform: rotate(5deg);
}

.hero-card--benefit {
  right: 6%;
  bottom: 18%;
  transform: rotate(-3deg);
  border-color: rgba(255, 47, 143, 0.28);
}

.hero-card__label {
  color: rgba(174, 238, 255, 0.78);
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.18em;
}

.hero-card__value {
  color: #fff;
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.05;
  font-weight: 900;
  text-shadow: 0 0 15px rgba(32, 246, 231, 0.36);
}

.hero-card__text {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.hero-orbit {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-orbit__ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.hero-orbit__ring--outer {
  width: min(54vw, 690px);
  aspect-ratio: 1;
  border: 1px solid rgba(32, 246, 231, 0.18);
  box-shadow: 0 0 28px rgba(32, 246, 231, 0.14) inset;
  animation: orbitSpin 24s linear infinite;
}

.hero-orbit__ring--inner {
  width: min(38vw, 500px);
  aspect-ratio: 1;
  border: 1px dashed rgba(255, 47, 143, 0.28);
  animation: orbitSpin 18s linear infinite reverse;
}

.hero-orbit__tile {
  position: absolute;
  width: 48px;
  height: 64px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(185, 249, 246, 0.85)),
    linear-gradient(135deg, transparent, rgba(32, 246, 231, 0.22));
  border: 1px solid rgba(32, 246, 231, 0.36);
  box-shadow: 0 0 24px rgba(32, 246, 231, 0.25);
}

.hero-orbit__tile::after {
  content: "胡";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #0d1730;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
}

.hero-orbit__tile--one {
  left: 12%;
  top: 44%;
  transform: rotate(-18deg);
}

.hero-orbit__tile--two {
  right: 13%;
  top: 12%;
  transform: rotate(16deg);
}

.hero-orbit__tile--three {
  right: 20%;
  bottom: 7%;
  transform: rotate(-9deg);
}

.hero-command {
  grid-area: command;
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.88fr) auto minmax(260px, 0.72fr);
  align-items: center;
  gap: 22px;
  padding: 18px 20px 18px 24px;
  border: 1px solid rgba(32, 246, 231, 0.24);
  border-radius: var(--radius-command);
  background:
    linear-gradient(90deg, rgba(255, 47, 143, 0.1), transparent 38%, rgba(32, 246, 231, 0.11)),
    rgba(6, 10, 28, 0.78);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.055) inset,
    0 0 42px rgba(32, 246, 231, 0.13),
    0 22px 70px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(16px);
}

.hero-command::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(32, 246, 231, 0.78), rgba(255, 47, 143, 0.55), transparent);
}

.hero-command__copy {
  display: grid;
  gap: 3px;
}

.hero-command__label {
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.2em;
}

.hero-command__title {
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.hero-command__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero-command__primary,
.hero-command__secondary {
  min-height: 54px;
  padding-inline: 26px;
}

.hero-command__chips {
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 9px;
}

.hero-command__chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(32, 246, 231, 0.18);
  border-radius: 999px;
  color: rgba(235, 248, 255, 0.75);
  background: rgba(255, 255, 255, 0.045);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.launch-strip {
  position: relative;
  z-index: 4;
  margin-top: -10px;
  padding: 0 0 74px;
  background:
    linear-gradient(180deg, transparent, rgba(8, 10, 24, 0.72) 38%, #080916 100%);
}

.launch-strip__list {
  width: min(100% - calc(var(--gutter) * 2), var(--desktop-container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(32, 246, 231, 0.2);
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(32, 246, 231, 0.06), rgba(139, 77, 255, 0.08), rgba(255, 47, 143, 0.055)),
    rgba(8, 12, 31, 0.86);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 0 42px rgba(32, 246, 231, 0.12);
  backdrop-filter: blur(14px);
}

.launch-strip__item {
  position: relative;
  min-height: 116px;
  padding: 22px 26px;
  display: grid;
  align-content: center;
  gap: 5px;
}

.launch-strip__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 18px;
  bottom: 18px;
  width: 20px;
  transform: skewX(-16deg);
  border-right: 1px solid rgba(32, 246, 231, 0.22);
  background: linear-gradient(180deg, transparent, rgba(32, 246, 231, 0.08), transparent);
}

.launch-strip__item--speed {
  grid-column: 1;
}

.launch-strip__item--modes {
  grid-column: 2;
}

.launch-strip__item--mobile {
  grid-column: 3;
}

.launch-strip__item:nth-child(4) {
  grid-column: 4;
}

.launch-strip__label {
  color: rgba(183, 237, 255, 0.68);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.launch-strip__value {
  color: #fff;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.05;
  font-weight: 900;
  text-shadow:
    0 0 14px rgba(32, 246, 231, 0.26),
    0 0 26px rgba(139, 77, 255, 0.2);
}

.launch-strip__desc {
  color: rgba(222, 238, 255, 0.66);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 700;
}

.launch-strip__item:hover {
  background: rgba(32, 246, 231, 0.055);
}

.launch-strip__item:hover .launch-strip__value {
  color: var(--cyan-2);
}

@keyframes heroDrift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(3%, -2%, 0) scale(1.06);
  }
}

@keyframes cardFloat {
  from {
    transform: translate3d(0, 0, 0) rotate(-1deg);
  }

  to {
    transform: translate3d(0, -14px, 0) rotate(1deg);
  }
}

@keyframes orbitSpin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media (min-width: 1440px) {
  .hero-shell,
  .site-header__inner,
  .launch-strip__list {
    width: min(100% - 80px, 1320px);
  }

  .hero-content__title {
    font-size: clamp(74px, 5.25vw, 104px);
  }

  .hero-media--core {
    width: min(45vw, 690px);
  }
}