:root {
  --page: #10001d;
  --header: #1b0730;
  --text: #faf5ff;
  --muted: #c5b5d2;
  --accent: #b550ff;
  --button: #9438e8;
  --accent-rgb: 181, 80, 255;
  --soft-rgb: 220, 158, 255;
}

@font-face {
  font-family: "Dana";
  src: url("assets/fonts/DanaVF.woff2") format("woff2-variations"),
       url("assets/fonts/DanaVF.woff2") format("woff2");
  font-style: normal;
  font-weight: 10 990;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #a743ed #150421;
}

::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}

::-webkit-scrollbar-track {
  background: linear-gradient(180deg, #10001d, #190526 50%, #10001d);
  border-left: 1px solid rgba(228, 190, 255, 0.045);
}

::-webkit-scrollbar-thumb {
  min-height: 52px;
  background: linear-gradient(180deg, #d17dff, #a743ed 48%, #7020bd);
  background-clip: padding-box;
  border: 3px solid transparent;
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 0 14px rgba(var(--accent-rgb), 0.24);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #e0a0ff, #bd5cff 52%, #8730d4);
  background-clip: padding-box;
}

::-webkit-scrollbar-thumb:active {
  background: #c464ff;
  background-clip: padding-box;
}

::-webkit-scrollbar-corner {
  background: #10001d;
}

body {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% -12%, rgba(var(--accent-rgb), 0.18), transparent 31%),
    radial-gradient(circle at 12% 2%, rgba(109, 31, 174, 0.15), transparent 27%),
    var(--page);
  color: var(--text);
  font-family: "Dana", Tahoma, Arial, sans-serif;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  -webkit-font-smoothing: antialiased;
}

body::after {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(circle at center, #000, transparent 82%);
  mask-image: radial-gradient(circle at center, #000, transparent 82%);
}

.liquid-background {
  position: fixed;
  z-index: -2;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.liquid-background::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 50% 38%, rgba(196, 103, 255, 0.08), transparent 24%),
    radial-gradient(circle at 18% 68%, rgba(87, 33, 160, 0.11), transparent 23%);
}

.liquid-blob {
  position: absolute;
  display: block;
  border-radius: 44% 56% 62% 38% / 48% 42% 58% 52%;
  opacity: 0.78;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.blob-one {
  top: -18%;
  right: 4%;
  width: min(48vw, 690px);
  aspect-ratio: 1;
  background: radial-gradient(circle at 35% 38%, rgba(224, 151, 255, 0.47), rgba(160, 54, 239, 0.2) 42%, transparent 72%);
  animation: liquid-float-one 16s ease-in-out infinite alternate;
}

.blob-two {
  bottom: -32%;
  left: -9%;
  width: min(54vw, 760px);
  aspect-ratio: 1;
  background: radial-gradient(circle at 58% 36%, rgba(126, 56, 219, 0.38), rgba(75, 16, 126, 0.16) 48%, transparent 72%);
  animation: liquid-float-two 19s ease-in-out infinite alternate;
}

.blob-three {
  top: 38%;
  left: 43%;
  width: min(28vw, 390px);
  aspect-ratio: 1;
  background: radial-gradient(circle at 50% 50%, rgba(204, 110, 255, 0.19), rgba(130, 38, 205, 0.08) 52%, transparent 72%);
  animation: liquid-float-three 13s ease-in-out infinite alternate;
}

.liquid-grid {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 25%, rgba(7, 0, 14, 0.5) 100%);
}

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

.site-header {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: calc(100% - 124px);
  max-width: 1318px;
  height: 58px;
  margin: 24px auto 0;
  padding: 0 16px 0 11px;
  display: grid;
  grid-template-columns: 210px 1fr 210px;
  align-items: center;
  direction: rtl;
  background: linear-gradient(110deg, #251037, #1b0a29 52%, #210d32);
  border: 1px solid #372047;
  border-radius: 13px;
  box-shadow:
    0 18px 50px rgba(4, 0, 9, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.site-header::before,
.site-header::after { content: none; }

.brand {
  justify-self: start;
  direction: ltr;
  display: inline-flex;
  align-items: center;
  height: 100%;
  line-height: 1;
  transition: transform 180ms ease, filter 180ms ease;
}

.brand:hover {
  filter: brightness(1.1) drop-shadow(0 0 12px rgba(var(--accent-rgb), 0.28));
  transform: translateY(-1px);
}

.brand-logo {
  position: relative;
  width: 39px;
  height: 39px;
  display: block;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(227, 185, 255, 0.2);
  border-radius: 11px;
  background: #1a0033;
  box-shadow: 0 7px 20px rgba(118, 30, 197, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.brand-logo img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 96px;
  height: 96px;
  max-width: none;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.menu-toggle,
.menu-overlay,
.mobile-sidebar {
  display: none;
}

.menu-toggle {
  width: 43px;
  height: 43px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(231, 201, 255, 0.13);
  border-radius: 11px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 1.5px;
  display: block;
  background: #f4eaff;
  border-radius: 3px;
  transition: width 180ms ease, transform 180ms ease;
}

.menu-toggle span:nth-child(2) {
  width: 13px;
  margin-right: 5px;
}

.menu-toggle:hover span:nth-child(2) {
  width: 18px;
  margin-right: 0;
}

.menu-overlay {
  position: fixed;
  z-index: 80;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background: rgba(8, 0, 16, 0.62);
  border: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 280ms ease, visibility 280ms ease;
}

.mobile-sidebar {
  position: fixed;
  z-index: 90;
  top: 0;
  right: 0;
  width: min(86vw, 350px);
  height: 100dvh;
  padding: 18px;
  flex-direction: column;
  color: #f8f1ff;
  background:
    radial-gradient(circle at 82% 4%, rgba(var(--accent-rgb), 0.13), transparent 29%),
    linear-gradient(155deg, #2b103f, #130521 82%);
  border-left: 1px solid rgba(230, 194, 255, 0.14);
  box-shadow: -28px 0 70px rgba(3, 0, 7, 0.48), inset 1px 0 0 rgba(255, 255, 255, 0.035);
  transform: translateX(105%);
  visibility: hidden;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), visibility 360ms ease;
}

.sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  direction: ltr;
}

.sidebar-brand > span:last-child {
  display: grid;
  gap: 3px;
  text-align: left;
}

.sidebar-brand b {
  color: #f4e8ff;
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 1;
}

.sidebar-brand small {
  color: #8f7c9d;
  font-family: Arial, sans-serif;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 1.2px;
}

.sidebar-logo {
  width: 45px;
  height: 45px;
  border-radius: 13px;
}

.sidebar-logo img {
  width: 110px;
  height: 110px;
}

.sidebar-close {
  position: relative;
  width: 40px;
  height: 40px;
  padding: 0;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
}

.sidebar-close:hover {
  background: rgba(var(--accent-rgb), 0.12);
  transform: rotate(4deg);
}

.sidebar-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 17px;
  height: 1.5px;
  background: #f1e7f8;
  border-radius: 2px;
}

.sidebar-close span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.sidebar-close span:last-child { transform: translate(-50%, -50%) rotate(-45deg); }

.sidebar-nav {
  display: grid;
  gap: 7px;
  margin-top: 28px;
}

.sidebar-nav a {
  min-height: 53px;
  padding: 0 15px;
  display: grid;
  grid-template-columns: 9px 1fr auto;
  align-items: center;
  gap: 12px;
  color: #cbbcd5;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.sidebar-nav a:hover,
.sidebar-nav a:focus-visible {
  color: #fff;
  background: rgba(var(--accent-rgb), 0.11);
  border-color: rgba(var(--soft-rgb), 0.16);
  transform: translateX(-3px);
}

.sidebar-nav a i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7c5e8f;
  box-shadow: 0 0 0 4px rgba(181, 80, 255, 0.045);
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.sidebar-nav a:hover i,
.sidebar-nav a:focus-visible i {
  background: var(--accent);
  box-shadow: 0 0 13px rgba(var(--accent-rgb), 0.65);
}

.sidebar-nav a b {
  color: #765f85;
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
}

.sidebar-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.sidebar-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #897693;
  font-size: 10px;
}

.sidebar-status i {
  width: 7px;
  height: 7px;
  background: #b653ff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(var(--accent-rgb), 0.75);
}

.sidebar-actions {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 9px;
  margin-top: 14px;
}

.sidebar-actions a {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
}

.sidebar-actions a:first-child {
  color: #d6c8df;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-actions a:last-child {
  color: #fff;
  background: linear-gradient(125deg, #cf78ff, #9f3be7 55%, #7820c8);
  border: 1px solid rgba(232, 194, 255, 0.28);
  box-shadow: 0 10px 24px rgba(var(--accent-rgb), 0.22);
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .menu-overlay {
  opacity: 1;
  visibility: visible;
}

body.menu-open .mobile-sidebar {
  transform: translateX(0);
  visibility: visible;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 400;
  white-space: nowrap;
}

.main-nav a {
  position: relative;
  padding: 9px 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #fcf7ff;
  background: rgba(var(--accent-rgb), 0.1);
  border-color: rgba(var(--soft-rgb), 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 5px 14px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.login {
  border: 1px solid transparent;
  border-radius: 8px;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.login:hover,
.login:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.07);
}

.account-actions {
  justify-self: end;
  display: grid;
  grid-template-columns: 56px 154px;
  align-items: center;
  direction: rtl;
  height: 100%;
}

.login,
.signup {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 13px;
  font-weight: 450;
  direction: rtl;
}

.login {
  color: var(--muted);
}

.signup {
  height: 38px;
  color: #fff;
  background: linear-gradient(125deg, #cf78ff 0%, #a944ef 48%, #7720c8 100%);
  background-size: 160% 100%;
  border: 1px solid rgba(230, 185, 255, 0.3);
  border-top-color: rgba(248, 226, 255, 0.42);
  border-radius: 9px;
  box-shadow:
    0 9px 24px rgba(151, 50, 224, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(61, 5, 103, 0.24);
  text-shadow: 0 1px 4px rgba(47, 0, 82, 0.32);
  transition:
    background-position 220ms ease,
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.signup:hover,
.signup:focus-visible {
  background-position: 100% 0;
  filter: saturate(1.08) brightness(1.06);
  box-shadow:
    0 12px 30px rgba(var(--accent-rgb), 0.34),
    0 0 0 3px rgba(var(--accent-rgb), 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.signup:active {
  transform: translateY(1px);
}

main {
  min-height: calc(100vh - 82px);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: visible;
  width: calc(100% - 124px);
  max-width: 1318px;
  min-height: 650px;
  margin: 26px auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(520px, 1.14fr);
  align-items: center;
  gap: 36px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero::before,
.hero::after { content: none; }

.hero-copy {
  position: relative;
  z-index: 5;
  padding: 28px 18px;
}

.hero-copy::before,
.hero-copy::after { content: none; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 12px;
  color: #cfbddc;
  background: #2b153b;
  border: 1px solid #432756;
  border-radius: 999px;
  font-size: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.hero-eyebrow i {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(var(--accent-rgb), 0.85);
  animation: status-pulse 2s ease-in-out infinite;
}

.hero h1 {
  margin: 22px 0 18px;
  color: #fbf6ff;
  font-size: clamp(42px, 4.1vw, 64px);
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: -2.2px;
}

.hero h1 strong {
  color: transparent;
  background: linear-gradient(90deg, #a943ff, #d28cff 58%, #f2ddff);
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 800;
  filter: drop-shadow(0 5px 20px rgba(var(--accent-rgb), 0.16));
}

.hero-copy > p {
  max-width: 520px;
  margin: 0;
  color: #a999b5;
  font-size: 15px;
  font-weight: 350;
  line-height: 2;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.hero-primary,
.hero-secondary {
  height: 46px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 550;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.hero-primary {
  color: #1c032d;
  background: linear-gradient(125deg, #e4adff, #bd61ff 55%, #8c2ddd);
  border: 1px solid rgba(239, 209, 255, 0.48);
  box-shadow: 0 12px 28px rgba(var(--accent-rgb), 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.hero-primary span {
  font-family: Arial, sans-serif;
  font-size: 17px;
  transition: transform 180ms ease;
}

.hero-primary:hover,
.hero-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(var(--accent-rgb), 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.46);
}

.hero-primary:hover span {
  transform: translateX(-3px);
}

.hero-secondary {
  color: #d0c1da;
  background: #291338;
  border: 1px solid #422653;
  box-shadow: none;
}

.hero-secondary:hover,
.hero-secondary:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.hero-stats {
  margin-top: 31px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #86758f;
  font-size: 11px;
}

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

.hero-stats b {
  color: #e9ddf0;
  font-size: 15px;
  font-weight: 600;
}

.hero-stats > i {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.08);
}

.speed-scene {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 720px;
  height: 560px;
  direction: ltr;
  overflow: hidden;
  z-index: 1;
  border-radius: 24px;
  perspective: 900px;
  background:
    radial-gradient(circle at 50% 35%, rgba(var(--accent-rgb), 0.14), transparent 27%),
    linear-gradient(180deg, rgba(34, 9, 56, 0.03), rgba(15, 2, 27, 0.08));
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 9%, #000 91%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0, #000 9%, #000 91%, transparent 100%);
}

.scene-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  width: 430px;
  height: 330px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.2), rgba(var(--accent-rgb), 0.07) 38%, transparent 70%);
  transform: translate(-50%, -50%);
  animation: scene-breathe 6.4s ease-in-out infinite;
}

.road {
  position: absolute;
  z-index: 1;
  left: 3%;
  bottom: -5%;
  width: 94%;
  height: 82%;
  clip-path: polygon(42% 0, 58% 0, 100% 100%, 0 100%);
  background:
    linear-gradient(90deg, transparent 49.7%, rgba(var(--soft-rgb), 0.14) 50%, transparent 50.3%),
    linear-gradient(180deg, rgba(48, 19, 68, 0.17), rgba(20, 4, 31, 0.8));
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.18);
  filter: drop-shadow(0 -20px 45px rgba(var(--accent-rgb), 0.06));
}

.road::before,
.road::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(180deg, transparent 0 36px, rgba(var(--soft-rgb), 0.075) 37px 38px);
  animation: road-flow 1.2s linear infinite;
}

.road::after {
  background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.2), transparent 1.2%, transparent 98.8%, rgba(var(--accent-rgb), 0.2));
  animation: none;
}

.road-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(var(--accent-rgb), 0.2), transparent 92%);
  transform-origin: top;
}

.road-line-left { left: 28%; transform: rotate(13deg); }
.road-line-center { left: 50%; opacity: 0.5; }
.road-line-right { right: 28%; transform: rotate(-13deg); }

.wall {
  position: absolute;
  z-index: 5;
  top: 31%;
  left: 50%;
  width: 288px;
  height: 112px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 4px;
  transform: translateX(-50%) perspective(500px) rotateX(-4deg);
  animation: wall-hit 6.4s ease-in-out infinite;
  will-change: translate;
}

.wall::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 221, 255, 0.92), rgba(var(--accent-rgb), 0.42) 25%, transparent 68%);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.2);
  animation: crack-flash 6.4s ease-out infinite;
}

.wall span {
  position: relative;
  border-radius: 3px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), transparent 44%),
    linear-gradient(180deg, #342043, #1c0b2a);
  border: 1px solid rgba(207, 168, 229, 0.14);
  box-shadow: inset 0 -5px 9px rgba(0, 0, 0, 0.24), 0 2px 2px rgba(0, 0, 0, 0.26);
  animation: brick-break 6.4s cubic-bezier(0.16, 0.78, 0.22, 1) infinite;
  backface-visibility: hidden;
}

.wall span:nth-child(7),
.wall span:nth-child(13) { margin-left: 14px; }

.wall span:nth-child(12),
.wall span:nth-child(18) { margin-right: 14px; }

.wall span:nth-child(9),
.wall span:nth-child(10) {
  border-color: rgba(var(--accent-rgb), 0.24);
  box-shadow: inset 0 0 13px rgba(var(--accent-rgb), 0.09);
}

.speed-core {
  position: absolute;
  z-index: 8;
  top: 86%;
  left: 50%;
  width: 74px;
  height: 92px;
  transform: translate(-50%, -50%);
  animation: core-run 6.4s cubic-bezier(0.5, 0, 0.18, 1) infinite;
  will-change: top, transform, opacity;
  backface-visibility: hidden;
}

.speed-core::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -22px;
  left: 50%;
  width: 132px;
  height: 132px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(213, 130, 255, 0.3), rgba(var(--accent-rgb), 0.1) 36%, transparent 70%);
  transform: translateX(-50%);
}

.core-body {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  width: 62px;
  height: 68px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #f2d5ff 0%, #c55eff 32%, #8b27d2 68%, #54117c 100%);
  clip-path: polygon(50% 0, 100% 45%, 73% 45%, 73% 100%, 27% 100%, 27% 45%, 0 45%);
  transform: translateX(-50%);
}

.core-body::before {
  content: "";
  position: absolute;
  inset: 5px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.02) 48%, rgba(58, 4, 88, 0.45));
  clip-path: inherit;
}

.core-body i {
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 18px;
  height: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.38);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  transform: translateX(-50%);
}

.core-body b {
  position: relative;
  z-index: 2;
  margin-top: 16px;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 19px;
  line-height: 1;
  text-shadow: 0 0 11px rgba(255, 255, 255, 0.8);
}

.core-tail {
  position: absolute;
  z-index: 1;
  top: 54px;
  left: 50%;
  width: 46px;
  height: 132px;
  background:
    linear-gradient(90deg, transparent 3px, rgba(233, 192, 255, 0.86) 4px 6px, transparent 7px) 2px 0 / 12px 100%,
    linear-gradient(90deg, transparent 4px, rgba(183, 80, 244, 0.72) 5px 7px, transparent 8px) 8px 0 / 17px 82%,
    linear-gradient(180deg, rgba(210, 119, 255, 0.62), rgba(var(--accent-rgb), 0));
  clip-path: polygon(18% 0, 82% 0, 64% 100%, 36% 100%);
  transform: translateX(-50%);
}

.core-speed {
  position: absolute;
  z-index: 4;
  top: 70px;
  left: 50%;
  padding: 3px 7px;
  color: #f0d6ff;
  background: rgba(17, 10, 22, 0.92);
  border: 1px solid rgba(215, 139, 255, 0.42);
  border-radius: 4px;
  box-shadow: 0 0 15px rgba(var(--accent-rgb), 0.24);
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.45px;
  line-height: 1;
  white-space: nowrap;
  transform: translateX(-50%);
}

.impact {
  position: absolute;
  z-index: 7;
  top: 40%;
  left: 50%;
  width: 72px;
  height: 72px;
  border: 2px solid rgba(230, 180, 255, 0.82);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.2);
  box-shadow: 0 0 36px rgba(var(--accent-rgb), 0.86), inset 0 0 30px rgba(var(--accent-rgb), 0.58);
  animation: impact-wave 6.4s ease-out infinite;
  will-change: transform, opacity;
}

.impact i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 170px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e0a6ff, transparent);
  transform-origin: center;
}

.impact i:nth-child(1) { transform: translate(-50%, -50%) rotate(18deg); }
.impact i:nth-child(2) { transform: translate(-50%, -50%) rotate(89deg); }
.impact i:nth-child(3) { transform: translate(-50%, -50%) rotate(145deg); }

.speed-lines i {
  position: absolute;
  z-index: 3;
  width: 1px;
  height: 110px;
  background: linear-gradient(180deg, transparent, rgba(var(--soft-rgb), 0.42), transparent);
  transform: rotate(16deg);
  animation: speed-line 1.3s linear infinite;
}

.speed-lines i:nth-child(1) { left: 12%; top: 16%; animation-delay: -0.2s; }
.speed-lines i:nth-child(2) { left: 24%; top: 62%; animation-delay: -0.8s; height: 170px; }
.speed-lines i:nth-child(3) { left: 38%; top: 7%; animation-delay: -1.1s; }
.speed-lines i:nth-child(4) { right: 11%; top: 49%; animation-delay: -0.45s; height: 180px; }
.speed-lines i:nth-child(5) { right: 27%; top: 12%; animation-delay: -1s; }
.speed-lines i:nth-child(6) { right: 39%; top: 75%; animation-delay: -0.65s; }

.scene-label {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 51px;
  color: rgba(206, 175, 224, 0.28);
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 4px;
  writing-mode: vertical-rl;
}

.why-nexus {
  width: calc(100% - 124px);
  max-width: 1318px;
  margin: 78px auto 120px;
  content-visibility: auto;
  contain-intrinsic-size: 1100px;
}

.why-heading {
  max-width: 680px;
  margin: 0 auto 38px;
  text-align: center;
}

.why-heading > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ad9ab9;
  font-size: 12px;
}

.why-heading > span i {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(var(--accent-rgb), 0.75);
}

.why-heading h2 {
  margin: 10px 0 8px;
  color: #f5eafa;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1.8px;
}

.why-heading p {
  margin: 0;
  color: #897a92;
  font-size: 14px;
  line-height: 1.9;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}

.why-card {
  position: relative;
  min-height: 405px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 50% 0, rgba(151, 54, 218, 0.08), transparent 42%),
    linear-gradient(145deg, rgba(34, 28, 38, 0.4), transparent 42%),
    rgba(13, 12, 16, 0.91);
  border: 1px solid rgba(213, 195, 224, 0.2);
  border-top-color: rgba(245, 232, 252, 0.29);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(3, 0, 7, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.025);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  contain: layout paint;
}

.why-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55%;
  height: 55%;
  background: radial-gradient(circle at 100% 100%, rgba(var(--accent-rgb), 0.08), transparent 68%);
  pointer-events: none;
}

.why-card:hover {
  border-color: rgba(215, 170, 242, 0.38);
  box-shadow: 0 30px 75px rgba(3, 0, 7, 0.38), 0 0 40px rgba(118, 35, 179, 0.07);
  transform: translateY(-4px);
}

.route-card,
.smart-card {
  grid-column: span 8;
}

.unlock-card,
.loss-card {
  grid-column: span 4;
}

.why-card-copy {
  position: relative;
  z-index: 3;
  margin-top: auto;
  min-height: 126px;
  padding: 23px 28px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-card-copy h3 {
  margin: 0 0 7px;
  color: #f0e7f5;
  font-size: 21px;
  font-weight: 700;
}

.why-card-copy p {
  max-width: 560px;
  margin: 0;
  color: #7f7386;
  font-size: 12.5px;
  line-height: 1.9;
}

.card-number {
  position: absolute;
  left: 26px;
  top: 27px;
  color: rgba(202, 139, 239, 0.27);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}

.route-visual {
  position: relative;
  isolation: isolate;
  height: 268px;
  margin: 16px 16px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 62% 48%, rgba(var(--accent-rgb), 0.1), transparent 31%),
    linear-gradient(180deg, rgba(28, 23, 31, 0.82), rgba(15, 13, 18, 0.35));
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 13px;
}

.route-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 54px 54px;
}

.route-visual::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: -45% 0 auto;
  height: 48%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(188, 84, 255, 0.055), rgba(218, 146, 255, 0.16), transparent);
  animation: route-scan 4.8s linear infinite;
}

.route-visual svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke-width: 2;
}

.route-muted { stroke: rgba(167, 138, 183, 0.16); }

.route-alternative {
  stroke: rgba(169, 89, 218, 0.15);
  stroke-width: 1;
  stroke-dasharray: 5 9;
  animation: alternate-route 8s linear infinite;
}

.route-alternative.alt-two {
  stroke: rgba(204, 127, 249, 0.1);
  animation-direction: reverse;
  animation-duration: 11s;
}

.route-active {
  stroke: #b653ff;
  stroke-dasharray: 95 535;
  stroke-linecap: round;
  animation: route-travel 3.6s linear infinite;
}

.route-packet {
  fill: #f0c8ff;
  stroke: #b653ff;
  stroke-width: 2;
}

.route-packet.packet-two {
  fill: #b653ff;
  opacity: 0.78;
}

.route-packet.packet-three {
  fill: #8d39cc;
  opacity: 0.56;
}

.route-status {
  position: absolute;
  z-index: 5;
  top: 13px;
  right: 13px;
  padding: 6px 9px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #a998b3;
  background: rgba(18, 16, 21, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 999px;
  font-size: 8px;
}

.route-status i {
  width: 6px;
  height: 6px;
  background: #c361ff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(var(--accent-rgb), 0.8);
  animation: route-live 1.4s ease-in-out infinite;
}

.route-metrics {
  position: absolute;
  z-index: 5;
  right: 13px;
  bottom: 12px;
  display: flex;
  direction: ltr;
  gap: 6px;
}

.route-metrics span {
  min-width: 50px;
  padding: 6px 7px 5px;
  display: grid;
  gap: 2px;
  background: rgba(18, 14, 21, 0.9);
  border: 1px solid rgba(210, 126, 255, 0.13);
  border-radius: 7px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.route-metrics b {
  color: #d594ff;
  font-family: Arial, sans-serif;
  font-size: 9px;
  line-height: 1;
}

.route-metrics small {
  color: #6f6276;
  font-family: Arial, sans-serif;
  font-size: 6px;
  letter-spacing: 0.7px;
}

.route-node {
  position: absolute;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: #6f6276;
  font-size: 9px;
}

.route-node i {
  position: relative;
  width: 46px;
  height: 46px;
  background: #29252c;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 11px;
  box-shadow: 0 9px 20px rgba(0, 0, 0, 0.28);
}

.route-node i::after {
  content: "";
  position: absolute;
  inset: 13px;
  background: #665b6c;
  border: 1px solid rgba(255, 255, 255, 0.12);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  animation: node-core 2.6s ease-in-out infinite;
}

.route-node:nth-of-type(even) i::after { animation-delay: -1.2s; }

.route-node.active i::after {
  background: #f3d8ff;
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 13px rgba(255, 236, 255, 0.75);
}

.route-node.active i {
  background: linear-gradient(145deg, #c267ff, #8730d3);
  border-color: rgba(239, 213, 255, 0.32);
  box-shadow: 0 10px 28px rgba(var(--accent-rgb), 0.28);
  animation: destination-pulse 2s ease-in-out infinite;
}

.node-a { left: 2%; top: 18%; }
.node-b { left: 26%; top: 56%; }
.node-c { left: 59%; top: 13%; }
.node-d { right: 1%; top: 49%; }

.unlock-visual {
  position: relative;
  isolation: isolate;
  height: 268px;
  overflow: hidden;
  background: radial-gradient(circle at 58% 52%, rgba(157, 68, 216, 0.13), transparent 38%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
}

.unlock-toggle {
  position: absolute;
  z-index: 3;
  top: 24px;
  right: 25px;
  height: 40px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d9cddd;
  background: #201c23;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  font-size: 12px;
}

.unlock-toggle span {
  width: 31px;
  height: 16px;
  padding: 2px;
  display: block;
  background: #8f36d8;
  border-radius: 999px;
}

.unlock-toggle span::after {
  content: "";
  width: 12px;
  height: 12px;
  display: block;
  margin-right: auto;
  background: #f4dcff;
  border-radius: 50%;
  box-shadow: 0 0 9px rgba(232, 185, 255, 0.65);
}

.unlock-window {
  position: absolute;
  left: 50%;
  top: 55%;
  width: 190px;
  height: 120px;
  background: #17151a;
  border: 1px solid rgba(190, 104, 241, 0.55);
  border-radius: 16px;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.38), 0 0 36px rgba(var(--accent-rgb), 0.11);
  transform: translate(-50%, -50%);
}

.unlock-window i {
  position: absolute;
  top: 20px;
  right: 22px;
  width: 88px;
  height: 8px;
  background: #29262d;
}

.unlock-window i:nth-child(2) { top: 39px; width: 65px; }
.unlock-window i:nth-child(3) { top: 58px; width: 105px; }

.unlock-window span {
  position: absolute;
  left: 18px;
  bottom: 12px;
  color: #c15dff;
  font-family: Arial, sans-serif;
  font-size: 34px;
  font-weight: 700;
  text-shadow: 0 0 17px rgba(var(--accent-rgb), 0.54);
}

.smart-visual {
  position: relative;
  isolation: isolate;
  height: 268px;
  display: grid;
  grid-template-columns: 1fr 100px 1fr;
  align-items: center;
  gap: 23px;
  padding: 28px 55px 8px;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(255, 255, 255, 0.055) 50%, transparent 50.1%),
    repeating-linear-gradient(90deg, transparent 0 92px, rgba(255, 255, 255, 0.025) 93px 94px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
}

.provider-column {
  display: grid;
  gap: 8px;
}

.provider-column > span {
  height: 42px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  direction: ltr;
  color: #756a7b;
  background: rgba(20, 18, 22, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 9px;
}

.provider-column > span.selected {
  color: #e0d6e5;
  border-color: rgba(188, 91, 244, 0.4);
  box-shadow: inset 0 0 20px rgba(var(--accent-rgb), 0.07);
}

.provider-column i {
  width: 8px;
  height: 8px;
  background: #4a424e;
  border-radius: 50%;
}

.provider-column .selected i {
  background: #b653ff;
  box-shadow: 0 0 10px rgba(var(--accent-rgb), 0.7);
}

.provider-column b {
  font-family: Arial, sans-serif;
  font-size: 10px;
}

.smart-core {
  position: relative;
  display: grid;
  place-items: center;
}

.smart-core::before,
.smart-core::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #9f43e3);
}

.smart-core::before { right: 75%; }
.smart-core::after { left: 75%; transform: rotate(180deg); }

.smart-core .brand-logo {
  width: 68px;
  height: 68px;
  border-radius: 17px;
  box-shadow: 0 14px 35px rgba(var(--accent-rgb), 0.2);
}

.smart-core .brand-logo img { width: 166px; height: 166px; }

.smart-core > i {
  position: absolute;
  width: 104px;
  height: 104px;
  border: 1px solid rgba(181, 80, 255, 0.11);
  border-radius: 50%;
  animation: core-ring 3s ease-in-out infinite;
}

.loss-visual {
  position: relative;
  isolation: isolate;
  height: 268px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
}

.loss-visual > span {
  position: absolute;
  top: 42px;
  left: 50%;
  width: 122px;
  height: 112px;
  background: #18161b;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 13px;
  transform: translateX(-78%);
}

.loss-visual > span:nth-child(2) { top: 58px; transform: translateX(-58%); background: #1b1720; }
.loss-visual > span:nth-child(3) { top: 75px; transform: translateX(-38%); background: linear-gradient(145deg, #23172b, #141219); }

.loss-visual strong {
  position: absolute;
  z-index: 3;
  top: 113px;
  left: 50%;
  padding: 9px 12px;
  color: #cc72ff;
  background: #1b1320;
  border: 1px solid rgba(192, 93, 247, 0.25);
  border-radius: 8px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  box-shadow: 0 0 24px rgba(var(--accent-rgb), 0.13);
  transform: translateX(-15%);
}

.loss-visual > i {
  position: absolute;
  top: 130px;
  left: 61%;
  width: 90px;
  height: 70px;
  border-top: 2px solid #9e43df;
  border-right: 2px solid #9e43df;
  border-radius: 0 11px 0 0;
  opacity: 0.65;
}

@keyframes route-travel {
  from { stroke-dashoffset: 630; }
  to { stroke-dashoffset: 0; }
}

@keyframes alternate-route {
  to { stroke-dashoffset: -140; }
}

@keyframes route-scan {
  0% { transform: translateY(0); opacity: 0; }
  12% { opacity: 1; }
  78% { opacity: 0.75; }
  100% { transform: translateY(650%); opacity: 0; }
}

@keyframes node-core {
  0%, 100% { opacity: 0.46; transform: scale(0.82) rotate(0); }
  50% { opacity: 1; transform: scale(1.08) rotate(60deg); }
}

@keyframes route-live {
  0%, 100% { opacity: 0.45; transform: scale(0.72); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes destination-pulse {
  0%, 100% { opacity: 0.88; transform: scale(0.97); }
  50% { opacity: 1; transform: scale(1.04); }
}

@keyframes core-ring {
  0%, 100% { opacity: 0.32; transform: scale(0.92); }
  50% { opacity: 0.7; transform: scale(1.08); }
}

.app-features {
  width: calc(100% - 124px);
  max-width: 1318px;
  margin: 0 auto 130px;
  content-visibility: auto;
  contain-intrinsic-size: 1050px;
}

.features-heading {
  margin: 0 auto 34px;
  text-align: center;
}

.features-heading > span {
  color: #7f7088;
  font-size: 11px;
}

.features-heading h2 {
  margin: 7px 0 0;
  color: #eee4f3;
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 800;
  letter-spacing: -1.4px;
}

.features-heading h2 strong {
  color: transparent;
  background: linear-gradient(90deg, #ca76ff, #9540de);
  -webkit-background-clip: text;
  background-clip: text;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}

.feature-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: radial-gradient(circle at 50% 0, rgba(var(--accent-rgb), 0.065), transparent 40%), rgba(13, 12, 16, 0.92);
  border: 1px solid rgba(213, 195, 224, 0.18);
  border-top-color: rgba(245, 232, 252, 0.27);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(3, 0, 7, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.024);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  contain: layout paint;
}

.feature-card:hover {
  border-color: rgba(215, 170, 242, 0.36);
  box-shadow: 0 30px 76px rgba(3, 0, 7, 0.38), 0 0 40px rgba(118, 35, 179, 0.065);
  transform: translateY(-4px);
}

.feature-sync,
.feature-chart { grid-column: span 8; }

.feature-ping,
.feature-provider { grid-column: span 4; }

.feature-copy {
  position: relative;
  z-index: 4;
  margin-top: auto;
  min-height: 116px;
  padding: 21px 27px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-copy h3 {
  margin: 0 0 7px;
  color: #f0e7f5;
  font-size: 20px;
  font-weight: 700;
}

.feature-copy p {
  max-width: 590px;
  margin: 0;
  color: #7e7185;
  font-size: 12px;
  line-height: 1.9;
}

.sync-visual {
  position: relative;
  isolation: isolate;
  height: 258px;
  overflow: hidden;
  background: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 62px 62px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
}

.sync-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(128, 42, 192, 0.13), transparent 35%);
}

.app-chip {
  position: absolute;
  z-index: 2;
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: #e6d9ec;
  background: #1c1920;
  border: 1px solid rgba(194, 116, 239, 0.27);
  border-radius: 10px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  box-shadow: 0 11px 26px rgba(0, 0, 0, 0.32);
}

.chip-discord { top: 38px; right: 15%; color: #9c7cff; }
.chip-game { top: 38px; left: 15%; color: #d791ff; }
.chip-music { right: 15%; bottom: 38px; color: #c96fff; }
.chip-ea { left: 15%; bottom: 38px; color: #ff768b; }

.sync-line {
  position: absolute;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(181, 80, 255, 0.45), transparent);
  transform-origin: center;
}

.line-one { top: 50%; right: 17%; width: 66%; opacity: 0.5; }
.line-two { top: 35%; right: 25%; width: 50%; transform: rotate(28deg); }
.line-three { top: 65%; right: 25%; width: 50%; transform: rotate(-28deg); }

.sync-center {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 8px;
  transform: translate(-50%, -50%);
}

.sync-center .brand-logo {
  width: 58px;
  height: 58px;
  border-radius: 15px;
  box-shadow: 0 14px 36px rgba(var(--accent-rgb), 0.22);
}

.sync-center .brand-logo img { width: 143px; height: 143px; }

.sync-center b {
  color: #765e84;
  font-family: Arial, sans-serif;
  font-size: 7px;
  letter-spacing: 2px;
}

.ping-visual {
  position: relative;
  isolation: isolate;
  height: 258px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
}

.ping-visual svg {
  position: absolute;
  top: 18px;
  right: 23px;
  width: 150px;
  height: 190px;
  fill: none;
  stroke: #a84aed;
  stroke-width: 2;
  filter: drop-shadow(0 0 9px rgba(var(--accent-rgb), 0.32));
}

.ping-visual > span {
  position: absolute;
  z-index: 3;
  top: 60px;
  left: 26px;
  display: grid;
  gap: 2px;
  direction: ltr;
  color: #c773ff;
  font-family: Arial, sans-serif;
}

.ping-visual > span b { font-size: 13px; }
.ping-visual > span small { color: #8e789c; font-size: 7px; }

.ping-bars {
  position: absolute;
  left: 18px;
  bottom: 44px;
  display: grid;
  gap: 7px;
}

.ping-bars i {
  width: 100px;
  height: 10px;
  background: #211e24;
  border-radius: 3px;
}

.ping-bars i:nth-child(2) { width: 79px; }
.ping-bars i:nth-child(3) { width: 60px; }
.ping-bars i:nth-child(4) { width: 42px; }

.provider-visual {
  position: relative;
  isolation: isolate;
  height: 258px;
  overflow: hidden;
  padding-top: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
}

.provider-grid-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 55px 55px;
}

.provider-badge {
  position: absolute;
  z-index: 4;
  top: 16px;
  right: 17px;
  padding: 6px 10px;
  color: #aa97b5;
  background: #1c191f;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  font-size: 9px;
}

.provider-tile {
  position: relative;
  z-index: 3;
  top: auto;
  right: auto;
  width: 92px;
  height: 92px;
  padding: 12px;
  display: grid;
  align-content: end;
  gap: 3px;
  background: #1a171d;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 13px;
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.35);
  transform: rotate(4deg) translateY(-5px);
}

.provider-tile.tile-two {
  top: auto;
  right: auto;
  border-color: rgba(187, 81, 244, 0.42);
  transform: rotate(-4deg) translateY(7px);
}

.provider-tile i {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 30px;
  height: 20px;
  border: 3px solid #56455f;
  border-radius: 4px;
}

.provider-tile.tile-two i { border-color: #a64ce4; }
.provider-tile b { color: #d8cbdc; font-family: Arial, sans-serif; font-size: 11px; }
.provider-tile small { color: #706376; font-size: 8px; }

.chart-visual {
  position: relative;
  isolation: isolate;
  height: 258px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
}

.chart-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

.chart-visual svg {
  position: absolute;
  z-index: 2;
  inset: 18px 0 0;
  width: 100%;
  height: calc(100% - 18px);
}

.chart-area { fill: url(#areaPurple); }
.chart-line {
  fill: none;
  stroke: #a94ceb;
  stroke-width: 2;
  stroke-linejoin: miter;
  stroke-linecap: square;
  stroke-miterlimit: 8;
  filter: drop-shadow(0 0 7px rgba(var(--accent-rgb), 0.45));
}

.chart-select {
  position: absolute;
  z-index: 5;
  top: 24px;
  right: 50%;
  height: 38px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #dfd3e3;
  background: #1b181e;
  border: 1px solid rgba(184, 77, 241, 0.33);
  border-radius: 9px;
  font-size: 11px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.26);
  transform: translateX(50%);
}

.chart-select i { color: #9c49dc; font-style: normal; }

.chart-bar {
  position: absolute;
  z-index: 4;
  bottom: 22px;
  display: grid;
  justify-items: center;
  gap: 2px;
  direction: ltr;
  color: #d373ff;
  font-family: Arial, sans-serif;
}

.chart-bar i {
  width: 12px;
  height: 92px;
  margin-bottom: 4px;
  background: linear-gradient(180deg, #c364ff, rgba(181, 80, 255, 0.06));
  border-radius: 5px 5px 0 0;
  box-shadow: 0 0 18px rgba(var(--accent-rgb), 0.2);
}

.chart-bar b { font-size: 8px; }
.chart-bar small { color: #77667f; font-size: 6px; }
.bar-a { left: 17%; }
.bar-b { left: 67%; }
.bar-b i { height: 62px; background: linear-gradient(180deg, #8d3fd0, transparent); }
.bar-c { right: 8%; }
.bar-c i { height: 118px; background: linear-gradient(180deg, #ef7295, rgba(239, 114, 149, 0.04)); }

.games-showcase {
  position: relative;
  width: 100%;
  margin: -28px auto 0;
  padding: 92px 0 118px;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: 760px;
}

.games-showcase::before {
  content: "";
  position: absolute;
  inset: 10% 0 4%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(var(--accent-rgb), 0.065), transparent 57%),
    linear-gradient(180deg, transparent, rgba(5, 3, 7, 0.16) 48%, transparent);
}

.games-heading {
  position: relative;
  z-index: 3;
  max-width: 760px;
  margin: 0 auto 48px;
  padding-inline: 20px;
  text-align: center;
}

.games-heading > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #9787a1;
  font-size: 11px;
}

.games-heading > span i {
  width: 5px;
  height: 5px;
  background: #bd5cff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(var(--accent-rgb), 0.65);
}

.games-heading h2 {
  margin: 11px 0 8px;
  color: #f8f3fa;
  font-size: clamp(31px, 3.4vw, 48px);
  font-weight: 800;
  letter-spacing: -1.4px;
}

.games-heading p {
  margin: 0;
  color: #776d7d;
  font-size: 14px;
  line-height: 1.9;
}

.games-stage {
  position: relative;
  direction: ltr;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}

.logo-marquee {
  width: 100%;
  padding: 9px 0;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  touch-action: pan-y;
}

.logo-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 18px;
  animation: logos-left-to-right 42s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
}

.track-two {
  animation-duration: 47s;
  animation-delay: -19s;
}

.logo-group {
  flex: none;
  display: flex;
  align-items: center;
  gap: 18px;
}

.logo-card {
  position: relative;
  isolation: isolate;
  flex: 0 0 100px;
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(31, 29, 34, 0.96), rgba(17, 16, 20, 0.98)),
    #151418;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-top-color: rgba(255, 255, 255, 0.095);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.018), 0 12px 28px rgba(0, 0, 0, 0.22);
  contain: strict;
}

.logo-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 15%;
  background: radial-gradient(circle, color-mix(in srgb, var(--brand) 24%, transparent), transparent 70%);
  opacity: 0.9;
}

.logo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.045), transparent 42%);
}

.logo-mark {
  width: 46px;
  height: 46px;
  display: block;
  background: var(--brand);
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
  filter: drop-shadow(0 0 10px color-mix(in srgb, var(--brand) 35%, transparent));
}

.logo-letter,
.logo-word {
  color: var(--brand);
  font-family: Arial, sans-serif;
  font-style: normal;
  font-weight: 900;
  line-height: 0.85;
  text-align: center;
  text-shadow: 0 0 12px color-mix(in srgb, var(--brand) 34%, transparent);
}

.logo-letter { font-size: 39px; }
.logo-word { font-size: 13px; letter-spacing: -0.8px; }
.logo-word.compact { font-size: 11px; line-height: 1; }

.ghost-logo-row {
  width: calc(100% + 236px);
  height: 100px;
  margin-left: -118px;
  opacity: 0.33;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='118' height='100' viewBox='0 0 118 100'%3E%3Crect width='100' height='100' rx='14' fill='%2319181c' stroke='%23302d33' stroke-opacity='.65'/%3E%3Cpath d='M1 1h98' stroke='%23fff' stroke-opacity='.025'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
}

.ghost-top {
  margin-bottom: 6px;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 72%);
  mask-image: linear-gradient(180deg, transparent, #000 72%);
}

.ghost-bottom {
  margin-top: 6px;
  opacity: 0.25;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 82%);
  mask-image: linear-gradient(180deg, #000, transparent 82%);
}

.pricing-section {
  width: calc(100% - 124px);
  max-width: 1318px;
  margin: 8px auto 0;
  padding: 74px 0 112px;
  content-visibility: auto;
  contain-intrinsic-size: 880px;
  scroll-margin-top: 24px;
}

.pricing-heading {
  max-width: 720px;
  margin: 0 auto 52px;
  text-align: center;
}

.pricing-heading > span,
.download-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #9c8ba7;
  font-size: 11px;
}

.pricing-heading > span i,
.download-eyebrow i {
  width: 6px;
  height: 6px;
  background: #bd5cff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(var(--accent-rgb), 0.7);
}

.pricing-heading h2 {
  margin: 11px 0 8px;
  color: #f8f1fb;
  font-size: clamp(32px, 3.6vw, 49px);
  font-weight: 800;
  letter-spacing: -1.5px;
}

.pricing-heading p {
  margin: 0;
  color: #7e7186;
  font-size: 14px;
  line-height: 1.9;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  gap: 18px;
}

.price-card {
  position: relative;
  min-height: 530px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 0, rgba(var(--accent-rgb), 0.075), transparent 35%),
    linear-gradient(145deg, rgba(29, 25, 33, 0.98), rgba(13, 12, 16, 0.98));
  border: 1px solid rgba(229, 208, 240, 0.15);
  border-top-color: rgba(246, 235, 252, 0.25);
  border-radius: 18px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.025);
  contain: layout paint;
  transition: transform 220ms ease, border-color 220ms ease;
}

.price-card:hover {
  border-color: rgba(211, 143, 252, 0.34);
  transform: translateY(-5px);
}

.price-card.featured {
  min-height: 570px;
  padding-top: 34px;
  background:
    radial-gradient(circle at 50% -8%, rgba(194, 91, 255, 0.23), transparent 37%),
    linear-gradient(155deg, rgba(42, 27, 51, 0.99), rgba(15, 12, 19, 0.99) 58%);
  border-color: rgba(210, 139, 255, 0.46);
  box-shadow: 0 28px 70px rgba(46, 7, 75, 0.37), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.price-card.featured::before {
  content: "";
  position: absolute;
  top: 0;
  right: 12%;
  left: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d58aff, transparent);
}

.popular-badge {
  position: absolute;
  top: 15px;
  left: 18px;
  padding: 5px 9px;
  color: #efd8ff;
  background: rgba(174, 69, 239, 0.17);
  border: 1px solid rgba(210, 139, 255, 0.26);
  border-radius: 999px;
  font-size: 8px;
}

.price-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.plan-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: none;
  color: #dca3ff;
  background: linear-gradient(145deg, rgba(187, 80, 247, 0.17), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(215, 150, 252, 0.19);
  border-radius: 12px;
}

.plan-icon i {
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
}

.price-card-head small {
  color: #766b7d;
  font-size: 9px;
}

.price-card-head h3 {
  margin: 2px 0 0;
  color: #eee4f2;
  font-size: 20px;
  font-weight: 750;
}

.plan-price {
  min-height: 74px;
  margin: 28px 0 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  direction: rtl;
}

.plan-price strong {
  color: #fff;
  font-size: clamp(31px, 2.8vw, 42px);
  font-weight: 850;
  letter-spacing: -2px;
  line-height: 1;
}

.featured .plan-price strong {
  color: transparent;
  background: linear-gradient(90deg, #f1c7ff, #c666ff 55%, #9f42ed);
  -webkit-background-clip: text;
  background-clip: text;
}

.plan-price > span {
  color: #a395aa;
  font-size: 10px;
  line-height: 1.35;
}

.plan-price small {
  color: #615768;
  font-size: 8px;
}

.plan-description {
  min-height: 46px;
  margin: 0 0 19px;
  color: #817487;
  font-size: 11px;
  line-height: 1.85;
}

.plan-features {
  margin: 0 0 25px;
  padding: 19px 0 0;
  display: grid;
  gap: 13px;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #b9acbf;
  font-size: 11px;
}

.plan-features li i {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  flex: none;
  color: #cf80ff;
  background: rgba(182, 79, 244, 0.11);
  border: 1px solid rgba(210, 139, 255, 0.16);
  border-radius: 6px;
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-style: normal;
}

.plan-button {
  height: 46px;
  margin-top: auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 11px;
  font-size: 11px;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.plan-button b { font-size: 16px; }

.plan-button.secondary {
  color: #dacde0;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.plan-button.primary {
  color: #fff;
  background: linear-gradient(100deg, #8e2fdb, #b44ff4 58%, #c667ff);
  border: 1px solid rgba(238, 207, 255, 0.26);
  box-shadow: 0 12px 27px rgba(141, 39, 208, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.plan-button:hover { transform: translateY(-2px); }
.plan-button.secondary:hover { border-color: rgba(209, 143, 247, 0.28); background: rgba(175, 71, 236, 0.08); }

.pricing-note {
  width: max-content;
  max-width: 100%;
  margin: 22px auto 0;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #7e7186;
  background: rgba(16, 13, 19, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 999px;
  font-size: 9px;
}

.pricing-note > i {
  color: #c76dff;
  font-family: Arial, sans-serif;
  font-style: normal;
}

.pricing-note b { color: #aa9caf; font-weight: 650; }

.download-section {
  position: relative;
  width: calc(100% - 124px);
  max-width: 1318px;
  min-height: 500px;
  margin: 0 auto 110px;
  padding: 54px 58px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 50px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(77, 156, 255, 0.11), transparent 29%),
    radial-gradient(circle at 18% 92%, rgba(var(--accent-rgb), 0.13), transparent 32%),
    linear-gradient(145deg, rgba(27, 23, 31, 0.96), rgba(12, 11, 15, 0.98));
  border: 1px solid rgba(224, 204, 235, 0.17);
  border-top-color: rgba(247, 238, 252, 0.26);
  border-radius: 22px;
  box-shadow: 0 34px 85px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.025);
  content-visibility: auto;
  contain-intrinsic-size: 500px;
}

.download-content { position: relative; z-index: 3; }

.download-content h2 {
  max-width: 570px;
  margin: 13px 0 12px;
  color: #f8f2fb;
  font-size: clamp(30px, 3.2vw, 47px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -1.4px;
}

.download-content > p {
  max-width: 540px;
  margin: 0;
  color: #897b90;
  font-size: 13px;
  line-height: 2;
}

.download-actions {
  margin-top: 27px;
  display: flex;
  gap: 10px;
}

.platform-button {
  min-width: 196px;
  height: 64px;
  padding: 0 14px;
  display: grid;
  grid-template-columns: 34px 1fr 18px;
  align-items: center;
  gap: 10px;
  color: #e9dfed;
  background: rgba(11, 10, 14, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: 13px;
  font-family: inherit;
  text-align: right;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.platform-button:hover {
  border-color: rgba(199, 112, 252, 0.34);
  background: rgba(29, 22, 34, 0.94);
  transform: translateY(-3px);
}

.platform-icon {
  width: 31px;
  height: 31px;
  display: block;
  background: #c269fa;
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
}

.android-button .platform-icon { background: #6de68e; }
.platform-button span { display: grid; gap: 3px; }
.platform-button small { color: #716778; font-size: 8px; }
.platform-button b { font-family: Arial, sans-serif; font-size: 11px; direction: ltr; }
.platform-button em { color: #9f8aa9; font-family: Arial, sans-serif; font-size: 15px; font-style: normal; }

.download-meta {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #6f6475;
  font-size: 8px;
}

.download-meta i {
  width: 5px;
  height: 5px;
  background: #62d68c;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(98, 214, 140, 0.65);
}

.download-visual {
  position: relative;
  height: 360px;
  direction: ltr;
}

.app-window {
  position: absolute;
  top: 30px;
  right: 18px;
  width: min(92%, 500px);
  height: 300px;
  overflow: hidden;
  background: rgba(12, 11, 15, 0.97);
  border: 1px solid rgba(228, 206, 240, 0.18);
  border-radius: 18px;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.37), -20px 22px 55px rgba(102, 29, 151, 0.13);
  transform: perspective(900px) rotateY(-7deg) rotateX(2deg);
}

.window-bar {
  height: 36px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.025);
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
}

.window-bar > i {
  width: 6px;
  height: 6px;
  background: #4a414f;
  border-radius: 50%;
}

.window-bar > i:first-child { background: #b556ea; }

.window-bar span {
  margin-left: auto;
  color: #574c5e;
  font-family: Arial, sans-serif;
  font-size: 6px;
  letter-spacing: 1.3px;
}

.window-body {
  height: calc(100% - 36px);
  display: grid;
  place-content: center;
  justify-items: center;
  background:
    radial-gradient(circle at 50% 48%, rgba(var(--accent-rgb), 0.14), transparent 30%),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
}

.app-brand {
  width: 65px;
  height: 65px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #08070a;
  border: 1px solid rgba(219, 151, 255, 0.3);
  border-radius: 17px;
  box-shadow: 0 0 25px rgba(var(--accent-rgb), 0.16);
}

.app-brand img {
  width: 112%;
  height: 112%;
  object-fit: cover;
}

.connection-lines {
  width: 220px;
  height: 28px;
  margin: 17px 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
}

.connection-lines i {
  width: 54px;
  height: 2px;
  display: block;
  background: linear-gradient(90deg, transparent, #bb58f4, transparent);
  animation: app-signal 1.8s ease-in-out infinite;
}

.connection-lines i:nth-child(2) { animation-delay: -0.6s; }
.connection-lines i:nth-child(3) { animation-delay: -1.2s; }

.window-body > strong {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #c7b7ce;
  font-family: Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 1px;
}

.window-body > strong i {
  width: 6px;
  height: 6px;
  background: #65df8f;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(101, 223, 143, 0.8);
}

.window-body > small {
  margin-top: 5px;
  color: #695e70;
  font-family: Arial, sans-serif;
  font-size: 7px;
}

.app-phone {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 0;
  width: 132px;
  height: 245px;
  padding: 28px 12px 15px;
  display: grid;
  align-content: start;
  justify-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(var(--accent-rgb), 0.15), transparent 44%),
    #111014;
  border: 1px solid rgba(232, 212, 242, 0.22);
  border-radius: 25px;
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.44), 0 0 30px rgba(55, 148, 231, 0.08);
  transform: rotate(-3deg);
}

.phone-speaker {
  position: absolute;
  top: 10px;
  width: 28px;
  height: 3px;
  background: #343037;
  border-radius: 999px;
}

.app-phone .app-brand {
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

.app-phone > small {
  margin-top: 15px;
  color: #766b7c;
  font-family: Arial, sans-serif;
  font-size: 6px;
  letter-spacing: 1px;
}

.app-phone > strong {
  margin-top: 4px;
  color: #eee5f2;
  font-family: Arial, sans-serif;
  font-size: 29px;
}

.app-phone > strong em {
  margin-left: 2px;
  color: #796d80;
  font-size: 7px;
  font-style: normal;
}

.phone-connect {
  width: 42px;
  height: 42px;
  margin-top: 18px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #9b39e2, #c45eff);
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(152, 49, 216, 0.32);
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-style: normal;
}

.site-footer {
  position: relative;
  min-height: 560px;
  padding: 118px 7% 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 19% 100%, rgba(151, 63, 211, 0.62), transparent 43%),
    radial-gradient(ellipse at 84% 100%, rgba(12, 142, 239, 0.72), transparent 43%),
    radial-gradient(ellipse at 50% 115%, rgba(89, 69, 204, 0.44), transparent 53%),
    #0d0d10;
  border-top: 1px solid rgba(255, 255, 255, 0.045);
  content-visibility: auto;
  contain-intrinsic-size: 560px;
}

.footer-aura {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: linear-gradient(180deg, transparent 5%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 5%, #000 100%);
}

.footer-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: auto auto 72px;
  text-align: center;
}

.footer-logo {
  width: 82px;
  height: 82px;
  margin: 0 auto 17px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #0a090c;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.33), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.footer-logo img {
  width: 112%;
  height: 112%;
  object-fit: cover;
}

.footer-content h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3.2vw, 45px);
  font-weight: 800;
  letter-spacing: -1.2px;
}

.footer-content > p {
  max-width: 560px;
  margin: 12px auto 24px;
  color: rgba(229, 220, 234, 0.55);
  font-size: 13px;
  line-height: 2;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 9px;
  direction: ltr;
}

.social-links a {
  min-width: 116px;
  height: 44px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(12, 11, 15, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 11px;
  font-family: Arial, sans-serif;
  font-size: 9px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.24);
  transform: translateY(-3px);
}

.social-links i {
  width: 19px;
  height: 19px;
  display: block;
  background: #fff;
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
}

.footer-bottom {
  position: relative;
  z-index: 2;
  min-height: 58px;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.42);
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 8px;
}

.footer-bottom div { display: flex; gap: 20px; }
.footer-bottom a { transition: color 160ms ease; }
.footer-bottom a:hover { color: #fff; }

@keyframes app-signal {
  0%, 100% { opacity: 0.25; transform: scaleX(0.55); }
  50% { opacity: 1; transform: scaleX(1); }
}

@keyframes logos-left-to-right {
  from { transform: translate3d(calc(-50% - 9px), 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}

@keyframes core-run {
  0%, 8% { top: 108%; opacity: 0; transform: translate3d(-50%, -50%, 0) scale(1.48); }
  14% { opacity: 1; }
  34% { top: 51%; opacity: 1; transform: translate3d(-50%, -50%, 0) scale(0.82); }
  39% { top: 42%; opacity: 1; transform: translate3d(-50%, -50%, 0) scale(0.69); }
  41.5% { top: 39%; opacity: 1; transform: translate3d(-50%, -50%, 0) scale(0.62); }
  48% { top: 13%; opacity: 0.75; transform: translate3d(-50%, -50%, 0) scale(0.34); }
  53%, 100% { top: -4%; opacity: 0; transform: translate3d(-50%, -50%, 0) scale(0.18); }
}

@keyframes brick-break {
  0%, 40% { opacity: 1; transform: translate3d(0, 0, 0) rotate(0) scale(1); }
  42% { opacity: 1; transform: translate3d(0, -2px, 8px) rotate(2deg) scale(1.03); }
  54% { opacity: 0.88; }
  64%, 76% { opacity: 0; transform: translate3d(var(--x), var(--y), 80px) rotate(var(--r)) scale(0.58); }
  77% { opacity: 0; transform: translate3d(0, 0, 0) rotate(0) scale(0.82); }
  83%, 100% { opacity: 1; transform: translate3d(0, 0, 0) rotate(0) scale(1); }
}

@keyframes impact-wave {
  0%, 39% { opacity: 0; transform: translate(-50%, -50%) scale(0.12); }
  41.5% { opacity: 1; transform: translate(-50%, -50%) scale(0.48); }
  51%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(3.35); }
}

@keyframes crack-flash {
  0%, 38% { opacity: 0; transform: translate(-50%, -50%) scale(0.2); }
  40% { opacity: 0.35; transform: translate(-50%, -50%) scale(0.55); }
  42% { opacity: 1; transform: translate(-50%, -50%) scale(1.45); }
  47%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(2.3); }
}

@keyframes wall-hit {
  0%, 36%, 45%, 100% { translate: 0 0; }
  38% { translate: -2px 0; }
  39% { translate: 2px 0; }
  40% { translate: -1px 0; }
  42% { translate: 0 -2px; }
}

@keyframes scene-breathe {
  0%, 34%, 100% { opacity: 0.65; transform: translate(-50%, -50%) scale(0.9); }
  42% { opacity: 1; transform: translate(-50%, -50%) scale(1.25); }
  58% { opacity: 0.72; transform: translate(-50%, -50%) scale(1); }
}

@keyframes road-flow {
  from { transform: translateY(-38px); }
  to { transform: translateY(0); }
}

@keyframes speed-line {
  0% { opacity: 0; transform: translateY(-80px) rotate(16deg); }
  25% { opacity: 1; }
  100% { opacity: 0; transform: translateY(220px) rotate(16deg); }
}

@keyframes status-pulse {
  0%, 100% { opacity: 0.55; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1); }
}

@keyframes liquid-float-one {
  0% { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
  50% { transform: translate3d(-7vw, 7vh, 0) rotate(9deg) scale(1.08); }
  100% { transform: translate3d(4vw, 13vh, 0) rotate(-6deg) scale(0.94); }
}

@keyframes liquid-float-two {
  0% { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
  50% { transform: translate3d(8vw, -9vh, 0) rotate(-10deg) scale(1.1); }
  100% { transform: translate3d(16vw, -3vh, 0) rotate(7deg) scale(0.92); }
}

@keyframes liquid-float-three {
  0% { transform: translate3d(0, 0, 0) scale(0.88); opacity: 0.45; }
  50% { transform: translate3d(-11vw, 5vh, 0) scale(1.18); opacity: 0.78; }
  100% { transform: translate3d(8vw, -7vh, 0) scale(1); opacity: 0.58; }
}

@media (max-width: 1100px) {
  .hero {
    width: calc(100% - 48px);
    padding: 0;
    grid-template-columns: minmax(330px, 0.82fr) minmax(440px, 1.18fr);
    gap: 12px;
  }

  .hero-copy {
    padding: 30px;
  }

  .speed-scene {
    height: 520px;
  }
}

@media (max-width: 900px) {
  .site-header {
    width: calc(100% - 32px);
    grid-template-columns: 160px 1fr 160px;
  }

  .main-nav {
    gap: 0;
  }

  .main-nav a {
    padding-inline: 8px;
  }

  .account-actions {
    grid-template-columns: 48px 112px;
  }

  .hero {
    width: calc(100% - 32px);
    margin-top: 52px;
    padding: 0;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-copy {
    max-width: 650px;
    padding: 30px;
  }

  .speed-scene {
    height: 540px;
  }
}

@media (max-width: 680px) {
  .site-header {
    height: auto;
    min-height: 62px;
    padding: 11px 12px;
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .brand {
    grid-column: 1;
  }

  .account-actions {
    grid-column: 2;
    grid-row: 1;
    height: 38px;
    grid-template-columns: 48px 96px;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    padding-top: 7px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 12px;
  }

  .main-nav a {
    padding: 7px 6px;
  }

  .hero {
    width: calc(100% - 20px);
    margin-top: 42px;
    padding: 0;
  }

  .hero-copy {
    padding: 25px 21px 24px;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: clamp(36px, 10vw, 48px);
    letter-spacing: -1.5px;
  }

  .hero-copy > p {
    font-size: 13.5px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-primary,
  .hero-secondary {
    flex: 1;
    padding-inline: 12px;
  }

  .speed-scene {
    height: 430px;
  }

  .wall {
    top: 30%;
    transform: translateX(-50%) scale(0.78) perspective(500px) rotateX(-4deg);
  }

  .scene-label {
    display: none;
  }
}

@media (max-width: 420px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  .brand-logo {
    width: 39px;
    height: 39px;
    border-radius: 11px;
  }

  .brand-logo img {
    width: 96px;
    height: 96px;
  }

  .account-actions {
    grid-template-columns: 42px 82px;
  }

  .hero-stats {
    gap: 12px;
  }

  .speed-scene {
    height: 390px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .hero-primary,
  .hero-secondary {
    width: 100%;
    min-width: 0;
    white-space: nowrap;
  }

  .hero-stats {
    justify-content: space-between;
  }

  .wall {
    transform: translateX(-50%) scale(0.68) perspective(500px) rotateX(-4deg);
  }
}

@media (max-width: 360px) {
  .site-header {
    padding-inline: 9px;
  }

  .account-actions {
    grid-template-columns: 38px 76px;
  }

  .main-nav {
    font-size: 11px;
    gap: 2px;
  }

  .main-nav a {
    padding-inline: 4px;
  }

  .hero h1 {
    font-size: 33px;
  }

  .hero-primary,
  .hero-secondary {
    padding-inline: 8px;
    font-size: 12px;
  }

  .speed-scene {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .site-header {
    width: calc(100% - 24px);
    height: 62px;
    min-height: 0;
    margin-top: 12px;
    padding: 0 10px;
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .main-nav,
  .account-actions {
    display: none;
  }

  .menu-toggle {
    display: flex;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .menu-overlay {
    display: block;
  }

  .mobile-sidebar {
    display: flex;
  }

  .hero {
    margin-top: 34px;
    padding: 0;
  }

  .liquid-blob {
    opacity: 0.58;
  }

  .blob-one {
    width: 86vw;
    right: -28%;
  }

  .blob-two {
    width: 100vw;
    left: -42%;
  }

  .blob-three {
    width: 58vw;
    left: 54%;
  }

}

@media (max-width: 420px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .brand-logo img {
    width: 94px;
    height: 94px;
  }

  .sidebar-logo {
    width: 43px;
    height: 43px;
  }

  .sidebar-logo img {
    width: 106px;
    height: 106px;
  }
}

@media (max-width: 1100px) {
  .why-nexus {
    width: calc(100% - 48px);
  }

  .route-card,
  .smart-card { grid-column: span 7; }

  .unlock-card,
  .loss-card { grid-column: span 5; }

  .smart-visual {
    padding-inline: 28px;
  }
}

@media (max-width: 900px) {
  .why-nexus {
    width: calc(100% - 32px);
    margin-top: 64px;
  }

  .route-card,
  .smart-card { grid-column: span 12; }

  .unlock-card,
  .loss-card { grid-column: span 6; }
}

@media (max-width: 680px) {
  .why-nexus {
    width: calc(100% - 20px);
    margin: 54px auto 80px;
  }

  .why-heading {
    margin-bottom: 26px;
    padding-inline: 12px;
  }

  .why-heading h2 {
    font-size: 36px;
  }

  .why-grid {
    gap: 14px;
  }

  .why-card,
  .route-card,
  .smart-card,
  .unlock-card,
  .loss-card {
    grid-column: span 12;
    min-height: 380px;
  }

  .route-visual,
  .unlock-visual,
  .smart-visual,
  .loss-visual {
    height: 242px;
  }

  .why-card-copy {
    padding: 20px 21px 23px;
  }

  .smart-visual {
    grid-template-columns: 1fr 78px 1fr;
    gap: 10px;
    padding: 25px 15px 8px;
  }

  .smart-core::before,
  .smart-core::after {
    width: 42px;
  }
}

@media (max-width: 420px) {
  .route-node i {
    width: 39px;
    height: 39px;
  }

  .route-node small {
    font-size: 8px;
  }

  .provider-column > span {
    height: 38px;
    padding-inline: 8px;
  }

  .smart-core .brand-logo {
    width: 57px;
    height: 57px;
  }

  .smart-core .brand-logo img {
    width: 140px;
    height: 140px;
  }

  .smart-core > i {
    width: 84px;
    height: 84px;
  }
}

@media (max-width: 1100px) {
  .app-features { width: calc(100% - 48px); }
  .feature-sync,
  .feature-chart { grid-column: span 7; }
  .feature-ping,
  .feature-provider { grid-column: span 5; }
}

@media (max-width: 900px) {
  .app-features { width: calc(100% - 32px); }
  .feature-sync,
  .feature-chart { grid-column: span 12; }
  .feature-ping,
  .feature-provider { grid-column: span 6; }
}

@media (max-width: 680px) {
  .app-features {
    width: calc(100% - 20px);
    margin-bottom: 80px;
  }

  .features-heading {
    margin-bottom: 25px;
    padding-inline: 10px;
  }

  .features-heading h2 { font-size: 34px; }
  .features-grid { gap: 14px; }

  .feature-card,
  .feature-sync,
  .feature-chart,
  .feature-ping,
  .feature-provider {
    grid-column: span 12;
    min-height: 365px;
  }

  .sync-visual,
  .ping-visual,
  .provider-visual,
  .chart-visual { height: 235px; }

  .feature-copy { padding: 19px 21px 22px; }
}

@media (max-width: 420px) {
  .app-chip {
    width: 38px;
    height: 38px;
  }

  .chart-select {
    top: 18px;
    white-space: nowrap;
  }

  .chart-bar i { width: 10px; }
  .provider-visual {
    gap: 12px;
    padding-inline: 12px;
  }

  .provider-tile,
  .provider-tile.tile-two {
    right: auto;
  }
}

@media (max-width: 680px) {
  .games-showcase {
    margin-top: -10px;
    padding: 68px 0 82px;
    contain-intrinsic-size: 610px;
  }

  .games-heading {
    margin-bottom: 34px;
    padding-inline: 16px;
  }

  .games-heading h2 {
    font-size: 30px;
    line-height: 1.45;
    letter-spacing: -0.8px;
  }

  .games-heading p {
    font-size: 12px;
    line-height: 1.85;
  }

  .games-stage {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  }

  .logo-marquee { padding: 6px 0; }
  .logo-track,
  .logo-group { gap: 12px; }

  .logo-track { animation-duration: 34s; }
  .track-two { animation-duration: 39s; }

  .logo-card {
    flex-basis: 74px;
    width: 74px;
    height: 74px;
    border-radius: 11px;
  }

  .logo-mark {
    width: 36px;
    height: 36px;
  }

  .logo-letter { font-size: 31px; }
  .logo-word { font-size: 10px; }
  .logo-word.compact { font-size: 9px; }

  .ghost-logo-row {
    width: calc(100% + 172px);
    height: 74px;
    margin-left: -86px;
    background-size: 86px 74px;
  }
}

@media (max-width: 1100px) {
  .pricing-section,
  .download-section {
    width: calc(100% - 48px);
  }

  .price-card { padding: 22px; }
  .plan-price strong { font-size: 33px; }

  .download-section {
    padding: 46px 38px;
    grid-template-columns: minmax(0, 0.9fr) minmax(370px, 1.1fr);
    gap: 30px;
  }

  .download-actions { flex-direction: column; align-items: flex-start; }
  .platform-button { width: min(100%, 290px); }
}

@media (max-width: 900px) {
  .pricing-section {
    width: calc(100% - 32px);
    padding-top: 55px;
  }

  .pricing-grid {
    max-width: 620px;
    margin-inline: auto;
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .price-card,
  .price-card.featured { min-height: 0; }
  .price-card.featured { order: -1; }

  .download-section {
    width: calc(100% - 32px);
    padding: 48px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .download-content { text-align: center; }
  .download-content > p { margin-inline: auto; }
  .download-eyebrow { justify-content: center; }
  .download-actions { flex-direction: row; justify-content: center; }
  .download-meta { justify-content: center; }
  .download-visual { width: min(100%, 620px); margin-inline: auto; }
}

@media (max-width: 680px) {
  .pricing-section {
    width: calc(100% - 20px);
    padding: 46px 0 76px;
    contain-intrinsic-size: 1640px;
  }

  .pricing-heading {
    margin-bottom: 32px;
    padding-inline: 12px;
  }

  .pricing-heading h2 {
    font-size: 31px;
    line-height: 1.45;
    letter-spacing: -0.8px;
  }

  .pricing-heading p { font-size: 12px; }
  .price-card,
  .price-card.featured { padding: 23px 20px; border-radius: 15px; }
  .popular-badge { top: 13px; left: 13px; }
  .plan-price { margin-top: 23px; }
  .plan-price strong { font-size: 34px; }
  .pricing-note { border-radius: 12px; line-height: 1.7; text-align: right; }

  .download-section {
    width: calc(100% - 20px);
    min-height: auto;
    margin-bottom: 72px;
    padding: 38px 17px 25px;
    border-radius: 17px;
    contain-intrinsic-size: 780px;
  }

  .download-content h2 {
    margin-top: 11px;
    font-size: 30px;
    line-height: 1.48;
    letter-spacing: -0.7px;
  }

  .download-content > p { font-size: 11px; line-height: 1.95; }
  .download-actions { flex-direction: column; align-items: stretch; }
  .platform-button { width: 100%; max-width: none; }
  .download-meta { line-height: 1.7; }

  .download-visual {
    height: 310px;
    margin-top: 8px;
  }

  .app-window {
    top: 30px;
    right: 0;
    width: 94%;
    height: 250px;
    transform: perspective(900px) rotateY(-4deg) rotateX(1deg);
  }

  .app-phone {
    width: 110px;
    height: 210px;
    border-radius: 21px;
  }

  .connection-lines { width: 170px; }

  .site-footer {
    min-height: 530px;
    padding: 88px 20px 18px;
    contain-intrinsic-size: 530px;
  }

  .footer-content { margin-bottom: 55px; }
  .footer-content h2 { font-size: 32px; }
  .footer-content > p { font-size: 11px; }
  .social-links { gap: 7px; }

  .social-links a {
    min-width: 48px;
    width: 48px;
    height: 48px;
    padding: 0;
  }

  .social-links a span { display: none; }

  .footer-bottom {
    padding-top: 16px;
    flex-direction: column-reverse;
    justify-content: center;
    text-align: center;
  }

  .footer-bottom div { gap: 14px; }
}

.is-offscreen,
.is-offscreen::before,
.is-offscreen::after,
.is-offscreen *,
.is-offscreen *::before,
.is-offscreen *::after,
body.runtime-paused *,
body.runtime-paused *::before,
body.runtime-paused *::after {
  animation-play-state: paused !important;
}

@media (prefers-reduced-motion: reduce) {
  .route-active,
  .route-alternative,
  .route-visual::after,
  .smart-core > i,
  .route-status i,
  .route-node.active i {
    animation: none !important;
  }

  .route-packet { display: none; }

  .liquid-blob {
    animation: none !important;
  }

  .speed-lines i {
    animation: none !important;
  }

  .hero-eyebrow i,
  .road::before {
    animation-duration: 4s !important;
  }

  .scene-glow,
  .wall,
  .wall::after,
  .wall span,
  .speed-core,
  .impact {
    animation-duration: 12s !important;
  }
}
