:root {
  --bg: #010102;
  --bg-deep: #000000;
  --panel: rgba(6, 8, 14, 0.88);
  --panel-solid: #06080e;
  --panel-bright: #0a0d15;
  --text: #f5f7ff;
  --muted: #98a1ba;
  --muted-2: #646d89;
  --border: rgba(255, 255, 255, 0.06);
  --border-strong: rgba(255, 255, 255, 0.12);
  --violet: #8b5cf6;
  --blue: #3b82f6;
  --cyan: #22d3ee;
  --emerald: #34d399;
  --rose: #fb7185;
  --amber: #f59e0b;
  --shadow: 0 34px 130px rgba(0, 0, 0, 0.82);
  --glow: 0 0 44px rgba(139, 92, 246, 0.16), 0 0 92px rgba(34, 211, 238, 0.05);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 12%, rgba(139, 92, 246, 0.08), transparent 28%),
    radial-gradient(circle at 86% 16%, rgba(34, 211, 238, 0.05), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(59, 130, 246, 0.05), transparent 30%);
  mix-blend-mode: screen;
  opacity: 0.92;
  animation: backdropShift 14s ease-in-out infinite alternate;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: rgba(139, 92, 246, 0.35);
  color: var(--text);
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 132, 244, 0.16), transparent 22%),
    radial-gradient(circle at 50% 78%, rgba(108, 67, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #09090d 0%, #05060b 52%, #010102 100%);
  transition: opacity 0.82s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.82s cubic-bezier(0.22, 1, 0.36, 1);
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-scene {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 14px;
  width: min(760px, calc(100% - 48px));
  text-align: center;
}

.loader-status,
.loader-kicker,
.loader-copy strong,
.loader-copy p,
.loader-cta,
.loader-preview {
  opacity: 0;
  transform: translateY(28px);
  animation: loaderTextRise 0.88s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.loader-status {
  color: rgba(244, 226, 255, 0.8);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  animation-delay: 0.12s;
}

.loader-mark {
  position: relative;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35), 0 0 36px rgba(177, 106, 255, 0.14);
  animation: loaderPulse 1.4s ease-in-out infinite alternate;
}

.loader-mark img {
  width: 58px;
  height: 58px;
}

.loader-accent-line {
  width: min(180px, 46vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(220, 136, 255, 0.9), transparent);
  box-shadow: 0 0 22px rgba(220, 136, 255, 0.42);
  opacity: 0;
  animation: loaderLineIn 0.82s ease forwards;
  animation-delay: 0.34s;
}

.loader-copy {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.loader-kicker {
  color: rgba(242, 223, 255, 0.74);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation-delay: 0.42s;
}

.loader-copy strong {
  font-size: clamp(4rem, 11vw, 6.6rem);
  line-height: 0.88;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #f2c0ff;
  text-shadow: 0 0 34px rgba(219, 126, 255, 0.18);
  animation-delay: 0.58s;
}

.loader-word-rail {
  position: relative;
  height: 20px;
  overflow: hidden;
}

.loader-word-rail span {
  position: absolute;
  inset: 0;
  width: 100%;
  color: rgba(230, 196, 255, 0.78);
  font-size: 0.94rem;
  animation: loaderWordSwap 2.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.loader-word-rail span:nth-child(2) {
  animation-delay: 0.8s;
}

.loader-word-rail span:nth-child(3) {
  animation-delay: 1.6s;
}

.loader-copy p {
  max-width: 42ch;
  margin: 0;
  color: rgba(230, 235, 255, 0.64);
  animation-delay: 0.78s;
}

.loader-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(223, 133, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  animation-delay: 0.94s;
}

.loader-preview {
  width: min(480px, 100%);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at bottom center, rgba(142, 79, 255, 0.12), transparent 40%),
    linear-gradient(180deg, rgba(24, 24, 32, 0.84), rgba(10, 10, 16, 0.82));
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 66px rgba(0, 0, 0, 0.32);
  animation-delay: 1.08s;
}

.loader-preview-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.loader-preview-bar span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.loader-preview-bar span:first-child {
  background: rgba(255, 139, 202, 0.86);
}

.loader-preview-bar span:nth-child(2) {
  background: rgba(181, 124, 255, 0.82);
}

.loader-preview-bar span:nth-child(3) {
  background: rgba(102, 208, 255, 0.82);
}

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

.loader-preview-panel {
  display: grid;
  gap: 6px;
  min-height: 78px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  text-align: left;
}

.loader-preview-panel span,
.loader-preview-panel small {
  color: rgba(221, 229, 255, 0.62);
  font-size: 0.76rem;
}

.loader-preview-panel strong {
  color: #fff;
  font-size: 1rem;
}

.loader-preview-panel-wide {
  grid-column: 1 / -1;
}

.loader.is-exiting .loader-status,
.loader.is-exiting .loader-kicker,
.loader.is-exiting .loader-copy strong,
.loader.is-exiting .loader-copy p,
.loader.is-exiting .loader-cta,
.loader.is-exiting .loader-preview,
.loader.is-exiting .loader-mark,
.loader.is-exiting .loader-accent-line {
  animation: loaderExit 0.72s cubic-bezier(0.55, 0, 1, 0.45) forwards;
}

.loader.is-exiting .loader-kicker { animation-delay: 0.04s; }
.loader.is-exiting .loader-copy strong { animation-delay: 0.08s; }
.loader.is-exiting .loader-copy p { animation-delay: 0.12s; }
.loader.is-exiting .loader-cta { animation-delay: 0.16s; }
.loader.is-exiting .loader-preview { animation-delay: 0.2s; }

body.intro-page:not(.app-ready) .site-header,
body.intro-page:not(.app-ready) .site-ticker-shell,
body.intro-page:not(.app-ready) main {
  opacity: 0;
  transform: translateY(34px) scale(0.988);
}

body.intro-page.app-ready .site-header,
body.intro-page.app-ready .site-ticker-shell,
body.intro-page.app-ready main {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

body.intro-page.app-ready .site-header { transition-delay: 0.05s; }
body.intro-page.app-ready .site-ticker-shell { transition-delay: 0.16s; }
body.intro-page.app-ready main { transition-delay: 0.26s; }

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(34, 211, 238, 0.12), rgba(139, 92, 246, 0.07) 38%, transparent 68%);
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 0.25s ease;
}

.site-backdrop {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% -20%, rgba(59, 130, 246, 0.06), transparent 30%),
    linear-gradient(180deg, #010102 0%, #010207 42%, #000000 100%);
}

.site-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 24%, rgba(34, 211, 238, 0.05), transparent 22%),
    radial-gradient(circle at 14% 34%, rgba(139, 92, 246, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.008), rgba(255, 255, 255, 0));
  opacity: 0.72;
  animation: backdropShift 18s ease-in-out infinite alternate-reverse;
}

.grid-layer {
  position: absolute;
  inset: 0;
  opacity: 0.72;
  background-image:
    linear-gradient(rgba(88, 117, 180, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88, 117, 180, 0.28) 1px, transparent 1px);
  background-size: 48px 48px;
  background-position: 0 0, 0 0;
  mask-image: radial-gradient(circle at 50% 26%, black, transparent 82%);
  animation: gridShift 22s linear infinite;
}

.grid-layer::before,
.grid-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.grid-layer::before {
  background-image:
    linear-gradient(rgba(34, 211, 238, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.08) 1px, transparent 1px);
  background-size: 112px 112px;
  mix-blend-mode: screen;
  opacity: 0.46;
  animation: gridPulse 5.8s ease-in-out infinite alternate;
}

.grid-layer::after {
  background:
    radial-gradient(circle at 20% 24%, rgba(34, 211, 238, 0.08), transparent 18%),
    radial-gradient(circle at 78% 30%, rgba(139, 92, 246, 0.09), transparent 18%),
    radial-gradient(circle at 48% 74%, rgba(59, 130, 246, 0.07), transparent 22%);
  mix-blend-mode: screen;
  opacity: 0.54;
  animation: gridGlowShift 14s ease-in-out infinite alternate;
}

.blur-orbit {
  position: absolute;
  width: 40vw;
  max-width: 660px;
  min-width: 320px;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.15;
  animation: drift 18s ease-in-out infinite alternate;
}

.orbit-one {
  top: 5%;
  left: -8%;
  background: rgba(139, 92, 246, 0.52);
}

.orbit-two {
  right: -12%;
  top: 18%;
  background: rgba(34, 211, 238, 0.4);
  animation-delay: -6s;
}

.orbit-three {
  left: 28%;
  bottom: -18%;
  background: rgba(59, 130, 246, 0.3);
  animation-delay: -10s;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 16px clamp(16px, 4vw, 34px) 0;
}

.navbar {
  width: min(var(--container), 100%);
  margin: 0 auto;
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 12px 14px 12px 16px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(8, 9, 15, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.32);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 850;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 24px rgba(139, 92, 246, 0.22);
  overflow: hidden;
}

.brand-mark img {
  width: 32px;
  height: 32px;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a,
.ghost-link {
  position: relative;
  padding: 10px 13px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease;
}

.nav-links a:hover,
.nav-links a.is-active,
.ghost-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-cta,
.button,
.mini-button {
  position: relative;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.92), rgba(59, 130, 246, 0.82) 62%, rgba(34, 211, 238, 0.82));
  box-shadow: 0 14px 34px rgba(59, 130, 246, 0.22);
}

.nav-cta:hover,
.button:hover,
.mini-button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: var(--glow);
}

.button-rotating-border {
  background: transparent !important;
  overflow: hidden;
  border-color: transparent;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.button-rotating-border::before {
  content: "";
  position: absolute;
  inset: -2px;
  padding: 2px;
  border-radius: inherit;
  background:
    conic-gradient(
      from 0deg,
      rgba(34, 211, 238, 0) 0deg,
      rgba(34, 211, 238, 0.04) 214deg,
      rgba(139, 92, 246, 0.1) 262deg,
      rgba(139, 92, 246, 0.28) 298deg,
      rgba(167, 139, 250, 0.64) 326deg,
      rgba(34, 211, 238, 0.98) 344deg,
      rgba(212, 196, 255, 0.94) 352deg,
      rgba(34, 211, 238, 0) 360deg
    );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  filter: blur(0.4px) drop-shadow(0 0 10px rgba(139, 92, 246, 0.35)) drop-shadow(0 0 18px rgba(34, 211, 238, 0.16));
  transform-origin: center;
  animation: rotateBorder 2.8s linear infinite;
  z-index: -2;
}

.button-rotating-border::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(15, 17, 25, 0.96), rgba(8, 9, 14, 0.96)),
    rgba(7, 9, 14, 0.96);
  z-index: -1;
}

.button-rotating-border.button-primary::after,
.button-rotating-border.nav-cta::after {
  background:
    linear-gradient(135deg, rgba(63, 39, 116, 0.98), rgba(29, 59, 118, 0.98) 58%, rgba(10, 67, 90, 0.98)),
    rgba(9, 12, 20, 0.96);
}

.button-rotating-border:hover::before,
.button-rotating-border:focus-visible::before {
  filter: blur(0.4px) brightness(1.12) drop-shadow(0 0 14px rgba(139, 92, 246, 0.45)) drop-shadow(0 0 26px rgba(34, 211, 238, 0.2));
}

.button-rotating-border .button-label,
.button-rotating-border .button-icon {
  position: relative;
  z-index: 2;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  padding: 11px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle span + span {
  margin-top: 6px;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.section {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0;
}

.hero {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: clamp(28px, 5vw, 68px);
  padding-top: 72px;
}

.hero-content,
.hero-visual {
  min-width: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content > * {
  animation: heroItemIn 0.82s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-content > *:nth-child(1) { animation-delay: 0.02s; }
.hero-content > *:nth-child(2) { animation-delay: 0.08s; }
.hero-content > *:nth-child(3) { animation-delay: 0.14s; }
.hero-content > *:nth-child(4) { animation-delay: 0.2s; }
.hero-content > *:nth-child(5) { animation-delay: 0.26s; }
.hero-content > *:nth-child(6) { animation-delay: 0.32s; }
.hero-content > *:nth-child(7) { animation-delay: 0.38s; }
.hero-content > *:nth-child(8) { animation-delay: 0.44s; }
.hero-content > *:nth-child(9) { animation-delay: 0.5s; }
.hero-content > *:nth-child(10) { animation-delay: 0.56s; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #dce6ff;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.72);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin: 18px 0 18px;
  max-width: 100%;
  font-size: clamp(4rem, 9vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: 0;
  font-weight: 950;
  background: linear-gradient(135deg, #ffffff 4%, #f5f7ff 24%, #a9e9ff 52%, #d5caff 78%, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 34px rgba(139, 92, 246, 0.2));
}

.hero-lead {
  max-width: 690px;
  color: #c0c6d8;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.8;
  overflow-wrap: normal;
}

.hero-announcement {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.hero-announcement-pill,
.hero-tags span,
.hero-media-badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #e7edff;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-announcement-pill {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.22), rgba(34, 211, 238, 0.18));
  border-color: rgba(139, 92, 246, 0.24);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.18);
  animation: badgePulse 3.8s ease-in-out infinite;
}

.hero-announcement-text {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.hero-status-spotlight {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 14px;
  width: min(100%, 440px);
  padding: 18px;
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  background:
    radial-gradient(circle at 84% 20%, rgba(34, 211, 238, 0.14), transparent 24%),
    radial-gradient(circle at 14% 18%, rgba(139, 92, 246, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
  animation: floatCard 5.2s ease-in-out infinite alternate;
}

.hero-status-spotlight::before,
.hero-status-spotlight::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-status-spotlight::before {
  inset: 0;
  background:
    linear-gradient(118deg, transparent 0%, rgba(255, 255, 255, 0.14) 42%, transparent 58%) -160% 0 / 160% 100% no-repeat;
  animation: sheen 7.2s ease-in-out infinite;
}

.hero-status-spotlight::after {
  inset: auto -18% -34% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.22), transparent 68%);
  filter: blur(10px);
  animation: drift 8.6s ease-in-out infinite alternate;
}

.hero-status-spotlight:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 211, 238, 0.28);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.hero-status-head,
.hero-status-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-status-title {
  margin: 0;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  line-height: 1.02;
  color: var(--text);
}

.hero-status-copy {
  margin: 0;
  color: #d4daf0;
  line-height: 1.7;
  max-width: 60ch;
}

.hero-status-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #dce6ff;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-tags span {
  color: #dce6ff;
  text-transform: none;
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-subnote {
  margin: 14px 0 0;
  color: #e7edff;
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-release-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
  max-width: 760px;
}

.hero-release-card {
  position: relative;
  overflow: hidden;
  min-height: 138px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
  animation: floatSoft 5.8s ease-in-out infinite alternate;
}

.hero-release-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(139, 92, 246, 0.18), transparent 42%),
    radial-gradient(circle at bottom left, rgba(34, 211, 238, 0.12), transparent 38%);
  opacity: 0.9;
}

.hero-release-card:nth-child(2) {
  animation-delay: -2.1s;
}

.hero-release-card:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 211, 238, 0.22);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.24);
}

.hero-release-label,
.hero-floating-kicker,
.hero-overlay-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: #dce6ff;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-release-card strong,
.hero-release-card p {
  position: relative;
  z-index: 1;
}

.hero-release-card strong {
  display: block;
  margin: 14px 0 8px;
  font-size: 1.05rem;
}

.hero-release-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.hero-actions,
.rivals-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 30px;
}

.hero-version-promo {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  max-width: 760px;
  padding: 16px 18px;
  border: 1px solid rgba(139, 92, 246, 0.22);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.14), rgba(59, 130, 246, 0.08) 55%, rgba(34, 211, 238, 0.08)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
  animation: floatSoft 6.6s ease-in-out infinite alternate;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.hero-version-promo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.16) 38%, transparent 54%) -160% 0 / 160% 100% no-repeat;
  animation: sheen 8s ease-in-out infinite;
}

.hero-version-promo:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.24);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
}

.hero-version-copy {
  display: grid;
  gap: 6px;
}

.hero-version-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: #dce6ff;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-version-copy strong {
  font-size: 1.02rem;
}

.hero-version-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.hero-version-button {
  flex-shrink: 0;
  min-height: 44px;
  padding-inline: 18px;
}

.hero-command-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
  max-width: 780px;
}

.hero-command-panel,
.hero-command-stats {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.24);
}

.hero-command-panel {
  display: grid;
  gap: 12px;
  padding: 20px;
  min-height: 170px;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
  animation: floatSoft 6.2s ease-in-out infinite alternate;
}

.hero-command-panel:hover,
.hero-command-stats:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.2);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.3);
}

.hero-command-panel-primary {
  grid-column: span 7;
  background:
    radial-gradient(circle at 86% 18%, rgba(34, 211, 238, 0.16), transparent 28%),
    linear-gradient(160deg, rgba(34, 211, 238, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.035);
}

.hero-command-panel-secondary {
  grid-column: span 5;
  background:
    radial-gradient(circle at 82% 18%, rgba(139, 92, 246, 0.18), transparent 30%),
    linear-gradient(160deg, rgba(139, 92, 246, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.035);
  animation-delay: -1.8s;
}

.hero-command-panel-tertiary {
  grid-column: span 5;
  min-height: 144px;
  animation-delay: -3.1s;
}

.hero-command-stats {
  grid-column: span 7;
  padding: 12px;
}

.hero-command-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: #dce6ff;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-command-panel strong {
  font-size: 1.1rem;
  line-height: 1.35;
}

.hero-command-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.hero-command-actions,
.hero-command-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-command-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #dce6ff;
  font-size: 0.78rem;
  font-weight: 800;
}

.button {
  position: relative;
  overflow: hidden;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 850;
  transition: transform 0.24s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.24) 42%, transparent 58%) -180% 0 / 180% 100% no-repeat;
  opacity: 0;
  transition: opacity 0.24s ease;
}

.button:disabled {
  opacity: 0.64;
  cursor: wait;
  transform: none;
}

.button:not(:disabled):hover {
  transform: translateY(-3px);
}

.button:not(:disabled):hover::after {
  opacity: 1;
  animation: sheen 1.4s linear 1;
}

.button-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.button-primary {
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 1), rgba(59, 130, 246, 0.94) 58%, rgba(34, 211, 238, 0.92));
  box-shadow: 0 18px 52px rgba(59, 130, 246, 0.25);
}

.button-primary:hover {
  box-shadow: 0 24px 66px rgba(34, 211, 238, 0.28);
}

.button-download-emphasis {
  box-shadow:
    0 18px 52px rgba(59, 130, 246, 0.25),
    0 0 0 0 rgba(34, 211, 238, 0.28);
  animation: downloadPulse 2.4s ease-in-out infinite;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.button-secondary:hover {
  border-color: rgba(34, 211, 238, 0.22);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.24);
}

.button-icon {
  display: grid;
  place-items: center;
  min-width: 28px;
  height: 28px;
  padding: 0 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.8rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 42px;
  max-width: 720px;
}

.hero-stats div {
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(14px);
  transition: transform 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease;
}

.hero-stats div:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.2);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.hero-stats strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
  line-height: 1;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.lucide-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.lucide-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-height: 560px;
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 22px;
  overflow: visible;
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(139, 92, 246, 0.28), transparent 62%),
    radial-gradient(circle at 75% 35%, rgba(34, 211, 238, 0.2), transparent 48%);
  filter: blur(18px);
  animation: floaty 8s ease-in-out infinite alternate;
}

.dashboard-shell,
.hero-media-card {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  min-height: 484px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(10, 12, 20, 0.84);
  backdrop-filter: blur(22px);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.48), var(--glow);
  overflow: hidden;
}

.dashboard-shell::after,
.hero-media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.12) 38%, transparent 48%) -140% 0 / 150% 100% no-repeat;
  animation: sheen 6s ease-in-out infinite;
}

.hero-media-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 28px;
  pointer-events: none;
  background:
    radial-gradient(260px circle at var(--mx, 50%) var(--my, 50%), rgba(34, 211, 238, 0.18), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 24%);
  opacity: 0.95;
}

.hero-media-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 16px;
  padding: 18px;
  overflow: visible;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.22s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  transform: perspective(1400px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(var(--lift, 0px));
  animation: floatSoft 7.2s ease-in-out infinite alternate;
}

.hero-media-badges,
.hero-media-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-media-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(34, 211, 238, 0.12), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  padding: 14px;
}

.hero-media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.16) 38%, transparent 56%) -150% 0 / 150% 100% no-repeat;
  opacity: 0.85;
}

.hero-media-glow,
.hero-media-scanline {
  position: absolute;
  pointer-events: none;
}

.hero-media-glow {
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0.7;
  animation: heroPulse 6.4s ease-in-out infinite alternate;
}

.hero-media-glow-one {
  width: 180px;
  height: 180px;
  top: -24px;
  right: -16px;
  background: rgba(34, 211, 238, 0.22);
}

.hero-media-glow-two {
  width: 210px;
  height: 210px;
  bottom: -54px;
  left: -42px;
  background: rgba(139, 92, 246, 0.24);
  animation-delay: -2.2s;
}

.hero-media-scanline {
  inset: 10px;
  border-radius: 18px;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.08) 48%, transparent 100%);
  mix-blend-mode: screen;
  transform: translateY(-110%);
  animation: mediaSweep 5.8s ease-in-out infinite;
}

.hero-media-frame img {
  width: 100%;
  aspect-ratio: 688 / 694;
  object-fit: contain;
  object-position: center;
  transform: translate3d(var(--imgx, 0px), var(--imgy, 0px), 0) scale(1);
  transition: transform 0.38s ease, filter 0.38s ease;
  filter: drop-shadow(0 26px 60px rgba(4, 8, 16, 0.42));
}

.hero-media-card:hover .hero-media-frame img {
  filter: saturate(1.08) brightness(1.03) drop-shadow(0 32px 70px rgba(4, 8, 16, 0.48));
}

.hero-media-card:hover {
  --lift: -4px;
  border-color: rgba(139, 92, 246, 0.22);
  box-shadow: 0 46px 130px rgba(0, 0, 0, 0.52), 0 0 44px rgba(139, 92, 246, 0.18);
}

.hero-media-overlay,
.hero-floating {
  position: absolute;
  z-index: 2;
}

.hero-media-overlay {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  left: 28px;
  right: 28px;
}

.hero-overlay-top {
  top: 76px;
}

.hero-overlay-bottom {
  bottom: 86px;
  justify-content: space-between;
}

.hero-overlay-pill,
.hero-overlay-panel,
.hero-floating {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045)),
    rgba(11, 13, 22, 0.68);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.22);
}

.hero-overlay-pill {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: #ecf4ff;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-overlay-panel {
  min-width: 148px;
  padding: 12px 14px;
  border-radius: 16px;
}

.hero-overlay-panel strong,
.hero-floating strong {
  display: block;
  margin-top: 8px;
  font-size: 0.95rem;
}

.hero-floating {
  width: 180px;
  padding: 14px;
  border-radius: 18px;
  animation: floatCard 6.8s ease-in-out infinite;
}

.hero-floating p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.hero-floating-left {
  left: -24px;
  bottom: 48px;
}

.hero-floating-right {
  right: -22px;
  top: 118px;
  animation-delay: -2.4s;
}

.hero-media-footer strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.hero-media-footer span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-media-status {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(52, 211, 153, 0.2);
  background: rgba(52, 211, 153, 0.12);
  color: #d6fff1;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.dash-topbar {
  position: relative;
  z-index: 1;
  min-height: 68px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 0 18px;
  border-bottom: 1px solid var(--border);
}

.dash-dots {
  display: flex;
  gap: 7px;
}

.dash-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--rose);
}

.dash-dots span:nth-child(2) {
  background: var(--amber);
}

.dash-dots span:nth-child(3) {
  background: var(--emerald);
}

.dash-title,
.dash-state,
.dash-label,
.timeline-date {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.dash-state {
  padding: 7px 10px;
  border-radius: 999px;
  color: #b8ffe8;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.22);
}

.dash-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
  padding: 16px;
}

.dash-panel,
.dash-row {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
}

.dash-command {
  min-height: 238px;
  padding: 22px;
}

.dash-command strong {
  display: block;
  margin: 12px 0 10px;
  font-size: 1.55rem;
}

.dash-command p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.signal-bars {
  height: 76px;
  display: flex;
  align-items: end;
  gap: 8px;
}

.signal-bars span {
  flex: 1;
  min-width: 18px;
  border-radius: 999px 999px 7px 7px;
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.95), rgba(139, 92, 246, 0.72));
  animation: signal 1.7s ease-in-out infinite alternate;
}

.signal-bars span:nth-child(1) { height: 34%; }
.signal-bars span:nth-child(2) { height: 76%; animation-delay: -0.2s; }
.signal-bars span:nth-child(3) { height: 48%; animation-delay: -0.35s; }
.signal-bars span:nth-child(4) { height: 92%; animation-delay: -0.5s; }
.signal-bars span:nth-child(5) { height: 58%; animation-delay: -0.65s; }

.dash-radar {
  position: relative;
  min-height: 238px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle, rgba(34, 211, 238, 0.18), transparent 40%),
    rgba(255, 255, 255, 0.035);
}

.radar-core,
.radar-ring,
.radar-line {
  position: absolute;
  border-radius: 50%;
}

.radar-core {
  width: 18px;
  height: 18px;
  background: var(--cyan);
  box-shadow: 0 0 28px rgba(34, 211, 238, 0.95);
}

.radar-ring {
  border: 1px solid rgba(34, 211, 238, 0.28);
}

.ring-one {
  width: 92px;
  height: 92px;
}

.ring-two {
  width: 158px;
  height: 158px;
}

.radar-line {
  width: 2px;
  height: 88px;
  top: calc(50% - 88px);
  transform-origin: bottom center;
  background: linear-gradient(180deg, transparent, rgba(34, 211, 238, 0.78));
  animation: rotateRadar 3.8s linear infinite;
}

.dash-row {
  grid-column: span 2;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px;
}

.dash-row span {
  color: #dce6ff;
  font-weight: 750;
}

.dash-row strong {
  color: var(--cyan);
  font-size: 0.84rem;
}

.section-heading {
  max-width: 730px;
  margin-bottom: 34px;
}

.section-heading h2,
.rivals-copy h2,
.final-cta h2 {
  margin: 12px 0 12px;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p,
.rivals-copy p,
.final-cta p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.04rem;
}

.route-switch-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: 20px;
  align-items: stretch;
}

.route-switch-hero,
.route-switch-card,
.route-switch-status-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(8, 10, 16, 0.9);
  box-shadow: 0 24px 86px rgba(0, 0, 0, 0.3);
  animation: floatSoft 6.6s ease-in-out infinite alternate;
}

.route-switch-hero {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 28px;
  background:
    radial-gradient(circle at 88% 18%, rgba(34, 211, 238, 0.12), transparent 24%),
    radial-gradient(circle at 14% 78%, rgba(139, 92, 246, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(8, 10, 16, 0.92);
}

.route-switch-hero::before,
.route-switch-card::before,
.route-switch-status-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(118deg, transparent 0%, rgba(255, 255, 255, 0.12) 42%, transparent 58%) -160% 0 / 160% 100% no-repeat;
  animation: sheen 8s ease-in-out infinite;
  pointer-events: none;
}

.route-switch-kicker,
.route-switch-card-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(34, 211, 238, 0.16);
  background: rgba(34, 211, 238, 0.08);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.route-switch-hero h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  line-height: 0.96;
}

.route-switch-hero p,
.route-switch-card p,
.route-switch-status-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.route-switch-pills,
.route-switch-card-meta,
.route-switch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.route-switch-lane {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.route-switch-lane-card {
  display: grid;
  gap: 6px;
  min-height: 94px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.route-switch-lane-card span {
  color: #cfe4ff;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.route-switch-lane-card strong {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.35;
}

.route-switch-pills span,
.route-switch-card-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #dce6ff;
  font-size: 0.78rem;
  font-weight: 800;
}

.route-switch-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.route-switch-card,
.route-switch-status-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  transition: transform 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease;
}

.route-switch-card {
  min-height: 260px;
}

.route-switch-card.is-pc {
  animation-delay: -1.4s;
}

.route-switch-card.is-mobile {
  animation-delay: -2.8s;
}

.route-switch-status-card {
  animation-delay: -4s;
}

.route-switch-card:hover,
.route-switch-status-card:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 211, 238, 0.22);
  box-shadow: 0 28px 96px rgba(0, 0, 0, 0.34);
}

.route-switch-card.is-pc {
  background:
    radial-gradient(circle at 86% 18%, rgba(34, 211, 238, 0.12), transparent 26%),
    linear-gradient(160deg, rgba(34, 211, 238, 0.08), rgba(255, 255, 255, 0.015)),
    rgba(8, 10, 16, 0.9);
}

.route-switch-card.is-mobile {
  background:
    radial-gradient(circle at 84% 16%, rgba(139, 92, 246, 0.14), transparent 28%),
    linear-gradient(160deg, rgba(139, 92, 246, 0.08), rgba(255, 255, 255, 0.015)),
    rgba(8, 10, 16, 0.9);
}

.route-switch-card strong,
.route-switch-status-card strong {
  font-size: 1.28rem;
  line-height: 1.3;
}

.route-switch-status-card {
  grid-column: 1 / -1;
  min-height: 0;
  background:
    radial-gradient(circle at 12% 22%, rgba(59, 130, 246, 0.12), transparent 28%),
    rgba(8, 10, 16, 0.88);
}

.download-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 18px;
}

.download-overview,
.download-console {
  border: 1px solid var(--border);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.03)),
    rgba(13, 15, 24, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.download-overview {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.download-promo-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(139, 92, 246, 0.18);
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 10%, rgba(34, 211, 238, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(59, 130, 246, 0.06) 58%, rgba(34, 211, 238, 0.08)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

.download-promo-copy {
  display: grid;
  gap: 6px;
}

.download-promo-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #dce6ff;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.download-promo-copy strong {
  font-size: 1rem;
}

.download-promo-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.download-promo-button {
  flex-shrink: 0;
  min-height: 44px;
  padding-inline: 16px;
}

.download-hero-card,
.download-mini-card,
.download-progress-panel,
.download-result,
.client-choice {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
}

.download-hero-card {
  padding: 22px;
  background:
    radial-gradient(circle at 90% 18%, rgba(34, 211, 238, 0.16), transparent 28%),
    radial-gradient(circle at 8% 80%, rgba(139, 92, 246, 0.24), transparent 32%),
    rgba(255, 255, 255, 0.045);
}

.download-badge-row,
.download-actions,
.download-result-actions,
.download-specs,
.download-side-grid,
.download-steps,
.download-result-grid {
  display: grid;
  gap: 12px;
}

.download-badge-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.download-chip {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: #dce6ff;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.84rem;
  font-weight: 800;
}

.download-product-head {
  display: flex;
  gap: 18px;
  align-items: center;
  margin: 22px 0;
}

.download-product-mark {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.18);
  box-shadow: 0 0 36px rgba(34, 211, 238, 0.14);
}

.download-product-mark .lucide-icon,
.download-product-mark .lucide-icon svg {
  width: 28px;
  height: 28px;
}

.download-product-head h3 {
  margin: 0 0 8px;
  font-size: 1.55rem;
}

.download-focus-banner {
  display: grid;
  gap: 8px;
  margin: -4px 0 18px;
  padding: 18px;
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 20px;
  background:
    radial-gradient(circle at 88% 18%, rgba(34, 211, 238, 0.16), transparent 26%),
    linear-gradient(135deg, rgba(34, 211, 238, 0.11), rgba(139, 92, 246, 0.12)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.18);
}

.download-focus-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(34, 211, 238, 0.2);
  background: rgba(34, 211, 238, 0.1);
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.download-focus-banner strong {
  font-size: 1.1rem;
  line-height: 1.4;
}

.download-focus-banner p {
  margin: 0;
  color: #d8e3ff;
  line-height: 1.65;
}

.download-product-head p,
.download-note p,
.download-mini-card p,
.client-choice p,
.download-result-head p,
.download-progress-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.download-specs {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.download-specs div,
.download-result-grid div {
  min-height: 94px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.download-specs span,
.download-result-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.download-specs strong,
.download-result-grid strong {
  font-size: 1rem;
  line-height: 1.45;
}

.download-note {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border: 1px solid rgba(34, 211, 238, 0.16);
  border-radius: 18px;
  background: rgba(34, 211, 238, 0.06);
}

.download-side-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.download-mini-card {
  min-height: 176px;
  padding: 18px;
}

.download-mini-card .lucide-icon {
  width: 22px;
  height: 22px;
  color: var(--cyan);
}

.download-mini-card strong {
  display: block;
  margin: 18px 0 8px;
  font-size: 1.04rem;
}

.download-console {
  padding: 22px;
}

.device-warning {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 18px 0 4px;
  padding: 16px 18px;
  border: 1px solid rgba(251, 113, 133, 0.24);
  border-radius: 22px;
  background:
    radial-gradient(circle at 90% 16%, rgba(251, 113, 133, 0.14), transparent 28%),
    rgba(251, 113, 133, 0.06);
  box-shadow: 0 0 34px rgba(251, 113, 133, 0.08);
}

.device-warning-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 16px;
  color: var(--rose);
  background: rgba(251, 113, 133, 0.1);
  border: 1px solid rgba(251, 113, 133, 0.18);
}

.device-warning-copy strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.device-warning-copy p {
  margin: 0;
  color: #f0cad1;
  line-height: 1.65;
}

.download-panels {
  position: relative;
}

.download-stage {
  display: none;
  opacity: 0;
  transform: translateY(18px) scale(0.985);
}

.download-stage.is-visible {
  display: block;
  animation: wizardStageIn 0.48s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.download-stage.is-visible .download-stage-copy,
.download-stage.is-visible .download-progress-panel,
.download-stage.is-visible .download-result-card,
.download-stage.is-visible .discord-unlock-card,
.download-stage.is-visible .download-ad-gate {
  animation: heroItemIn 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.download-stage-copy {
  margin-bottom: 16px;
}

.download-stage-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.download-stage-copy h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
}

.download-stage-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.download-ad-gate {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(139, 92, 246, 0.18);
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 12%, rgba(34, 211, 238, 0.12), transparent 26%),
    linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.05) 62%, rgba(34, 211, 238, 0.08)),
    rgba(255, 255, 255, 0.04);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.download-ad-gate.is-ready {
  border-color: rgba(34, 211, 238, 0.24);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.download-ad-gate.is-complete {
  border-color: rgba(52, 211, 153, 0.22);
  background:
    radial-gradient(circle at 92% 12%, rgba(52, 211, 153, 0.12), transparent 26%),
    linear-gradient(135deg, rgba(52, 211, 153, 0.08), rgba(59, 130, 246, 0.05)),
    rgba(255, 255, 255, 0.04);
}

.download-ad-copy h4 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.download-ad-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.download-ad-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #dce6ff;
  font-size: 0.74rem;
  font-weight: 800;
}

.download-ad-copy p,
.download-ad-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.download-ad-actions {
  display: grid;
  gap: 10px;
}

.download-ad-link {
  width: fit-content;
}

.download-addon-option {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 14px;
  margin: 18px 0 4px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 24%, rgba(34, 211, 238, 0.1), transparent 24%),
    rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.download-addon-option:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 211, 238, 0.2);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.download-addon-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.download-addon-check {
  width: 22px;
  height: 22px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.download-addon-option input:checked + .download-addon-check {
  border-color: rgba(34, 211, 238, 0.34);
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.92), rgba(34, 211, 238, 0.92));
  box-shadow: 0 0 22px rgba(34, 211, 238, 0.18);
}

.download-addon-copy strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.98rem;
}

.download-addon-copy small {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.download-console-head,
.download-progress-meta,
.download-result-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.download-console-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
}

.download-console-status {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: #dce6ff;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.82rem;
  font-weight: 850;
}

.download-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 20px 0;
}

.download-step {
  min-height: 92px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 18px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.download-step span {
  display: block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  font-weight: 850;
}

.download-step strong {
  color: inherit;
  font-size: 0.98rem;
}

.download-step.is-active,
.download-step.is-complete {
  transform: translateY(-2px);
  color: var(--text);
  border-color: rgba(34, 211, 238, 0.24);
  background: rgba(34, 211, 238, 0.08);
}

.download-step.is-active {
  box-shadow: 0 0 28px rgba(34, 211, 238, 0.12);
  animation: activeStepPulse 1.8s ease-in-out infinite;
}

.download-step.is-complete {
  border-color: rgba(52, 211, 153, 0.24);
  background: rgba(52, 211, 153, 0.08);
}

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

.client-choice {
  min-height: 212px;
  padding: 18px;
  text-align: left;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.client-choice:hover,
.client-choice.is-selected {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.28);
  box-shadow: var(--glow);
}

.client-choice.is-selected {
  background:
    radial-gradient(circle at 90% 18%, rgba(34, 211, 238, 0.16), transparent 28%),
    rgba(255, 255, 255, 0.055);
}

.client-choice-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.14);
}

.client-choice strong {
  display: block;
  margin: 18px 0 8px;
  font-size: 1.05rem;
}

.client-choice-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: #dce6ff;
  font-size: 0.76rem;
  font-weight: 850;
}

.download-input-wrap {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.download-input-wrap > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #dce6ff;
  font-size: 0.92rem;
  font-weight: 800;
}

.download-input-wrap input {
  width: 100%;
  min-height: 56px;
  border: 1px solid var(--border);
  border-radius: 18px;
  color: var(--text);
  background: rgba(7, 8, 13, 0.88);
  padding: 0 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.download-input-wrap input:focus {
  border-color: rgba(34, 211, 238, 0.4);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.08);
}

.download-actions,
.download-result-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

.discord-unlock-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 16px;
  margin-top: 16px;
  padding: 18px;
  border: 1px solid rgba(88, 101, 242, 0.24);
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 18%, rgba(88, 101, 242, 0.18), transparent 28%),
    radial-gradient(circle at 90% 80%, rgba(34, 211, 238, 0.1), transparent 26%),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 0 40px rgba(88, 101, 242, 0.1);
  animation: discordGlow 2.6s ease-in-out infinite alternate;
}

.discord-unlock-copy h4 {
  margin: 0 0 8px;
  font-size: 1.16rem;
}

.discord-unlock-copy p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.7;
}

.discord-wait-note {
  margin: 14px 0 0;
  color: #dce6ff;
  font-size: 0.9rem;
  font-weight: 700;
}

.discord-action-panel {
  display: grid;
  gap: 12px;
}

.discord-action-hint,
.discord-confirm-tip {
  margin: 0;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.045);
  color: #dce6ff;
  font-size: 0.85rem;
  line-height: 1.6;
}

.discord-action-hint {
  border-color: rgba(34, 211, 238, 0.18);
  background: rgba(34, 211, 238, 0.08);
}

.discord-confirm-tip {
  color: var(--muted);
}

.discord-checklist {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.discord-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.discord-check-item.is-complete {
  color: #d6fff1;
  border-color: rgba(52, 211, 153, 0.24);
  background: rgba(52, 211, 153, 0.09);
  transform: translateY(-1px);
}

.discord-check-badge {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(220, 230, 255, 0.72);
}

.discord-check-item.is-complete .discord-check-badge {
  color: var(--emerald);
  border-color: rgba(52, 211, 153, 0.24);
  background: rgba(52, 211, 153, 0.12);
}

.discord-check-item span:last-child {
  line-height: 1.35;
}

.discord-link-button {
  width: fit-content;
}

.is-disabled-link {
  pointer-events: none;
  opacity: 0.58;
}

.discord-confirm-button {
  min-height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  text-align: left;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.discord-confirm-button:disabled {
  opacity: 0.62;
  cursor: not-allowed;
  transform: none;
}

.discord-confirm-button:hover,
.discord-confirm-button.is-confirmed {
  transform: translateY(-3px);
  border-color: rgba(52, 211, 153, 0.34);
  box-shadow: 0 0 28px rgba(52, 211, 153, 0.12);
}

.discord-confirm-button.is-ready {
  border-color: rgba(34, 211, 238, 0.34);
  background:
    radial-gradient(circle at 84% 18%, rgba(34, 211, 238, 0.18), transparent 32%),
    rgba(34, 211, 238, 0.09);
  box-shadow: 0 0 34px rgba(34, 211, 238, 0.16);
  animation: discordReadyPulse 1.1s ease-in-out infinite alternate;
}

.discord-confirm-button.is-confirmed {
  background:
    radial-gradient(circle at 85% 18%, rgba(52, 211, 153, 0.18), transparent 30%),
    rgba(52, 211, 153, 0.09);
}

.discord-confirm-button strong {
  display: block;
  margin-bottom: 4px;
}

.discord-confirm-button small {
  color: var(--muted);
  font-size: 0.82rem;
}

.discord-confirm-check {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--emerald);
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.18);
}

.download-progress-panel {
  margin-top: 16px;
  padding: 16px;
}

.download-progress-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 16px;
  margin-top: 16px;
}

.download-progress-meta strong {
  font-size: 1rem;
}

.download-progress-meta span {
  color: var(--cyan);
  font-weight: 850;
}

.download-progress-track {
  width: 100%;
  height: 12px;
  margin: 14px 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.download-progress-fill {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(139, 92, 246, 1), rgba(59, 130, 246, 0.94), rgba(34, 211, 238, 0.94));
  box-shadow: 0 0 22px rgba(34, 211, 238, 0.28);
  transition: width 0.16s linear;
  position: relative;
  overflow: hidden;
}

.download-progress-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.45) 35%, transparent 55%);
  transform: translateX(-120%);
  animation: progressSheen 1.1s linear infinite;
}

.download-progress-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.download-progress-pills span,
.download-transfer-head span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #dce6ff;
  font-size: 0.76rem;
  font-weight: 800;
}

.download-transfer-panel {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 14%, rgba(34, 211, 238, 0.12), transparent 26%),
    rgba(255, 255, 255, 0.045);
}

.download-transfer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.download-transfer-head strong {
  font-size: 1rem;
}

.download-transfer-list {
  display: grid;
  gap: 10px;
}

.download-transfer-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.download-transfer-item.is-complete {
  color: #d6fff1;
  border-color: rgba(52, 211, 153, 0.24);
  background: rgba(52, 211, 153, 0.09);
}

.download-transfer-item.is-active {
  color: #eef7ff;
  border-color: rgba(34, 211, 238, 0.24);
  background: rgba(34, 211, 238, 0.1);
  transform: translateY(-1px);
}

.download-transfer-badge {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: #dce6ff;
  font-size: 0.76rem;
  font-weight: 900;
}

.download-transfer-item.is-complete .download-transfer-badge {
  color: var(--emerald);
  border-color: rgba(52, 211, 153, 0.24);
  background: rgba(52, 211, 153, 0.12);
}

.download-transfer-item.is-active .download-transfer-badge {
  color: var(--cyan);
  border-color: rgba(34, 211, 238, 0.24);
  background: rgba(34, 211, 238, 0.12);
}

.download-transfer-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.download-result {
  display: block;
  margin-top: 0;
  padding: 18px;
  background:
    radial-gradient(circle at 88% 14%, rgba(34, 211, 238, 0.16), transparent 28%),
    rgba(255, 255, 255, 0.05);
}

.download-result-head {
  align-items: flex-start;
}

.download-result-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--emerald);
  background: rgba(52, 211, 153, 0.09);
  border: 1px solid rgba(52, 211, 153, 0.18);
}

.download-result-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

.download-console.is-busy .client-choice,
.download-console.is-busy .download-input-wrap input {
  pointer-events: none;
}

.download-console.is-device-blocked .download-panels,
.download-console.is-device-blocked .download-steps {
  opacity: 0.5;
  pointer-events: none;
  filter: saturate(0.82);
}

.install-layout,
.install-grid,
.tutorial-grid,
.trust-grid,
.requirements-grid,
.account-layout,
.premium-access-layout,
.premium-form-grid,
.popular-executor-grid,
.changelog-grid {
  display: grid;
  gap: 16px;
}

.install-layout {
  grid-template-columns: minmax(0, 1.6fr) minmax(320px, 0.9fr);
  align-items: stretch;
}

.tutorials-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  align-items: start;
}

.premium-access-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: start;
}

.install-grid,
.tutorial-grid,
.trust-grid,
.requirements-grid,
.account-layout,
.popular-executor-grid,
.changelog-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trust-grid-single {
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
}

.install-step-card,
.tutorial-video-card,
.tutorials-feature-card,
.tutorial-card,
.trust-card,
.requirement-card,
.account-summary-card,
.premium-access-copy,
.premium-access-form,
.popular-executor-card,
.changelog-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(7, 9, 16, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.26);
}

.install-step-card::before,
.tutorial-video-card::before,
.tutorials-feature-card::before,
.tutorial-card::before,
.trust-card::before,
.requirement-card::before,
.account-summary-card::before,
.premium-access-copy::before,
.premium-access-form::before,
.popular-executor-card::before,
.changelog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(139, 92, 246, 0.18), transparent 42%),
    radial-gradient(circle at bottom left, rgba(34, 211, 238, 0.12), transparent 38%);
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.install-step-card:hover::before,
.tutorial-video-card:hover::before,
.tutorials-feature-card:hover::before,
.tutorial-card:hover::before,
.trust-card:hover::before,
.requirement-card:hover::before,
.account-summary-card:hover::before,
.premium-access-copy:hover::before,
.premium-access-form:hover::before,
.popular-executor-card:hover::before,
.changelog-card:hover::before {
  opacity: 1;
}

.install-step-card,
.tutorials-feature-card,
.tutorial-card,
.trust-card,
.requirement-card,
.account-summary-card,
.premium-access-copy,
.premium-access-form,
.popular-executor-card,
.changelog-card {
  padding: 22px;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.tutorial-video-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.tutorials-feature-card {
  padding: 20px;
}

.tutorial-card {
  padding: 16px;
  min-height: 0;
  display: grid;
  align-content: start;
  gap: 8px;
}

.install-step-card:hover,
.tutorial-video-card:hover,
.tutorials-feature-card:hover,
.tutorial-card:hover,
.trust-card:hover,
.requirement-card:hover,
.account-summary-card:hover,
.premium-access-copy:hover,
.premium-access-form:hover,
.popular-executor-card:hover,
.changelog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.24);
  box-shadow: 0 24px 84px rgba(0, 0, 0, 0.32);
}

.trust-status-card {
  animation: floatSoft 6.8s ease-in-out infinite alternate;
}

.install-step-number,
.tutorial-video-kicker,
.trust-metric {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.install-step-number {
  min-width: 48px;
  justify-content: center;
  padding: 8px 12px;
  color: var(--text);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.28), rgba(59, 130, 246, 0.18));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.install-step-card h3,
.tutorial-video-card h3,
.trust-card strong,
.requirement-card h3,
.account-summary-card strong,
.premium-access-copy h3,
.popular-executor-card h3,
.changelog-card h3 {
  position: relative;
  z-index: 1;
}

.install-step-card p,
.tutorial-video-card p,
.trust-card p,
.requirement-card p,
.account-summary-card p,
.premium-access-copy p,
.popular-executor-card p,
.changelog-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
}

.install-step-card code {
  color: var(--text);
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.18);
  border-radius: 10px;
  padding: 2px 8px;
}

.tutorial-video-kicker,
.trust-metric {
  padding: 8px 12px;
}

.trust-status-card {
  padding: 24px;
  background:
    radial-gradient(circle at 86% 16%, rgba(34, 211, 238, 0.14), transparent 24%),
    radial-gradient(circle at 12% 18%, rgba(139, 92, 246, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(15, 17, 27, 0.8);
}

.status-spotlight-head {
  align-items: flex-start;
}

.status-spotlight-copy {
  display: grid;
  gap: 12px;
}

.status-live-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #dce6ff;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-live-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 16px currentColor;
}

.status-live-dot.health-good {
  color: var(--emerald);
}

.status-live-dot.health-warn {
  color: var(--amber);
}

.status-live-dot.health-bad {
  color: var(--rose);
}

.status-spotlight-headline {
  margin: 18px 0 10px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
}

.status-spotlight-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.status-spotlight-note {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
  color: #dce6ff;
  font-size: 0.82rem;
  font-weight: 800;
}

.tutorials-feature-head,
.tutorial-card-top,
.guided-tutorial-head,
.guided-tutorial-meta,
.guided-tutorial-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.tutorials-feature-kicker,
.tutorial-card-type,
.guided-tutorial-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tutorials-feature-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.26), rgba(59, 130, 246, 0.18));
  border: 1px solid rgba(139, 92, 246, 0.24);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 800;
}

.tutorials-feature-card h3,
.tutorial-card h3 {
  margin: 10px 0 0;
  font-size: 1.06rem;
}

.tutorials-feature-card h3 {
  font-size: 1rem;
}

.tutorials-feature-card p,
.tutorial-card p {
  color: var(--muted);
  margin: 0;
}

.tutorial-card p {
  line-height: 1.45;
  font-size: 0.9rem;
}

.tutorials-feature-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.tutorials-feature-chips,
.tutorial-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tutorials-feature-chips {
  margin-top: 18px;
}

.tutorials-feature-chips span,
.tutorial-browser-kicker,
.tutorial-browser-count,
.tutorial-filter-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.tutorial-browser {
  display: grid;
  gap: 14px;
}

.tutorial-browser-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.tutorial-browser-head h3 {
  margin: 10px 0 0;
  font-size: 1.18rem;
}

.tutorial-filter-chip {
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, color 0.22s ease, background 0.22s ease;
}

.tutorial-filter-chip:hover,
.tutorial-filter-chip.is-active {
  color: var(--text);
  border-color: rgba(139, 92, 246, 0.24);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.12));
}

.tutorials-feature-points div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 600;
}

.tutorials-feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.tutorial-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(34, 211, 238, 0.18);
  background: linear-gradient(180deg, rgba(17, 19, 28, 0.95), rgba(22, 25, 38, 0.84));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.tutorial-card-top {
  justify-content: flex-start;
}

.tutorial-card-type {
  min-height: 30px;
}

.tutorial-card .mini-button {
  margin-top: 6px;
  min-height: 40px;
}

.tutorial-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tutorial-card-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.tutorial-browser-actions {
  display: flex;
  justify-content: center;
}

.tutorial-browser-actions .mini-button {
  min-width: 140px;
}

.guided-tutorial {
  position: fixed;
  inset: 0;
  z-index: 120;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.guided-tutorial.is-active {
  opacity: 1;
  pointer-events: auto;
}

.guided-tutorial-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 4, 8, 0.38);
}

.guided-tutorial-spotlight {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: 22px;
  border: 1px solid rgba(34, 211, 238, 0.42);
  background: rgba(255, 255, 255, 0.03);
  box-shadow:
    0 0 0 9999px rgba(4, 6, 12, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 0 32px rgba(34, 211, 238, 0.18),
    0 0 56px rgba(139, 92, 246, 0.14);
  transition: top 0.35s ease, left 0.35s ease, width 0.35s ease, height 0.35s ease, border-color 0.35s ease, border-radius 0.35s ease;
  animation: tutorialPulse 1.6s ease-in-out infinite;
  pointer-events: none;
}

.guided-tutorial-panel {
  position: fixed;
  right: clamp(18px, 4vw, 34px);
  bottom: clamp(18px, 4vw, 34px);
  z-index: 2;
  width: min(420px, calc(100vw - 28px));
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--border-strong);
  background:
    linear-gradient(180deg, rgba(19, 22, 34, 0.92), rgba(11, 12, 20, 0.96)),
    rgba(9, 10, 16, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.44);
}

.guided-tutorial-close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.guided-tutorial-title {
  display: block;
  margin-top: 12px;
  font-size: 1.22rem;
}

.guided-tutorial-copy {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.guided-tutorial-meta {
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 16px;
}

.guided-tutorial-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.guided-tutorial-actions {
  margin-top: 18px;
}

.guided-tutorial-actions .button,
.guided-tutorial-actions .mini-button {
  min-height: 48px;
}

.guided-tutorial-actions .button {
  margin-left: auto;
}

.tutorial-video-placeholder {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  min-height: 240px;
  display: grid;
  place-items: center;
  border-radius: calc(var(--radius-lg) - 6px);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(17, 19, 26, 0.86), rgba(9, 10, 16, 0.92)),
    linear-gradient(120deg, rgba(34, 211, 238, 0.08), rgba(139, 92, 246, 0.12));
}

.tutorial-video-placeholder span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 600;
}

.tutorial-video-frame {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 6px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(17, 19, 26, 0.86), rgba(9, 10, 16, 0.92)),
    linear-gradient(120deg, rgba(34, 211, 238, 0.08), rgba(139, 92, 246, 0.12));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.tutorial-video-frame video,
.tutorial-video-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #05060a;
  border: 0;
  vertical-align: top;
}

@keyframes tutorialPulse {
  0%,
  100% {
    border-color: rgba(34, 211, 238, 0.38);
    box-shadow:
      0 0 0 9999px rgba(4, 6, 12, 0.8),
      0 0 0 1px rgba(255, 255, 255, 0.08) inset,
      0 0 26px rgba(34, 211, 238, 0.18),
      0 0 48px rgba(139, 92, 246, 0.14);
  }
  50% {
    border-color: rgba(139, 92, 246, 0.46);
    box-shadow:
      0 0 0 9999px rgba(4, 6, 12, 0.8),
      0 0 0 1px rgba(255, 255, 255, 0.08) inset,
      0 0 30px rgba(34, 211, 238, 0.22),
      0 0 62px rgba(139, 92, 246, 0.22);
  }
}

.trust-card-head,
.popular-executor-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.trust-card-head {
  margin-bottom: 14px;
}

.trust-card strong {
  font-size: 1rem;
}

.trust-metric {
  margin-top: 14px;
}

.requirement-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.account-summary-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.account-summary-grid {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.account-summary-grid div,
.account-flow-list div {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  padding: 16px;
}

.account-summary-grid span,
.account-flow-list p,
.account-summary-note {
  color: var(--muted);
}

.account-summary-note {
  margin-top: 16px;
  line-height: 1.7;
}

.account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.account-flow-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.account-flow-list div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.account-flow-step {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(34, 211, 238, 0.08);
  color: #d7fbff;
  font-size: 0.88rem;
  font-weight: 800;
}

.premium-kicker,
.premium-form-note {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.premium-points {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.premium-points div,
.premium-modal-note,
.premium-result {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  padding: 16px;
}

.premium-points div {
  position: relative;
  padding-left: 62px;
}

.premium-point-icon {
  position: absolute;
  left: 16px;
  top: 16px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(139, 92, 246, 0.12);
  color: #ebe4ff;
}

.premium-points strong,
.premium-modal-note strong,
.premium-result strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

.premium-points span,
.premium-modal-note p,
.premium-result p {
  color: var(--muted);
  line-height: 1.65;
}

.premium-access-form {
  display: grid;
  gap: 14px;
}

.premium-access-panel {
  align-content: start;
}

.premium-form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.premium-panel-list {
  display: grid;
  gap: 12px;
}

.premium-panel-list div {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  padding: 16px;
}

.premium-panel-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(34, 211, 238, 0.18);
  background: rgba(34, 211, 238, 0.08);
  color: #d7fbff;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.premium-panel-list strong {
  display: block;
  margin: 12px 0 8px;
  color: var(--text);
}

.premium-panel-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.premium-access-form label {
  display: grid;
  gap: 8px;
}

.premium-access-form label > span {
  color: #dce6ff;
  font-size: 0.86rem;
  font-weight: 700;
}

.premium-access-form input,
.premium-access-form select {
  width: 100%;
  min-height: 54px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(7, 8, 13, 0.86);
  color: var(--text);
  padding: 0 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.premium-access-form input:focus,
.premium-access-form select:focus {
  border-color: rgba(34, 211, 238, 0.4);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.08);
}

.premium-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.premium-form-grid-cards {
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 0.7fr));
}

.premium-consent {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.premium-consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
  padding: 0;
}

.premium-consent span {
  color: var(--muted);
  font-weight: 600;
  line-height: 1.6;
}

.premium-form-actions {
  margin-top: 6px;
}

.premium-result {
  margin-top: 6px;
}

.premium-return-banner {
  border-color: rgba(52, 211, 153, 0.18);
  background: rgba(52, 211, 153, 0.08);
}

.health-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.health-good {
  color: #d5fff1;
  background: rgba(52, 211, 153, 0.14);
  border-color: rgba(52, 211, 153, 0.24);
}

.health-warn {
  color: #ffe8bf;
  background: rgba(251, 191, 36, 0.14);
  border-color: rgba(251, 191, 36, 0.24);
}

.health-bad {
  color: #ffd4da;
  background: rgba(244, 63, 94, 0.14);
  border-color: rgba(244, 63, 94, 0.24);
}

.health-pill-dot {
  width: 10px;
  height: 10px;
  display: inline-flex;
  border-radius: 50%;
  margin-right: 8px;
  background: currentColor;
  box-shadow: 0 0 14px currentColor;
}

.health-pill-dot.health-good {
  background: var(--emerald);
  box-shadow: 0 0 14px rgba(52, 211, 153, 0.9);
}

.health-pill-dot.health-warn {
  background: var(--amber);
  box-shadow: 0 0 14px rgba(245, 158, 11, 0.9);
}

.health-pill-dot.health-bad {
  background: var(--rose);
  box-shadow: 0 0 14px rgba(251, 113, 133, 0.9);
}

.status-animate {
  animation: statusSwapIn 0.52s ease;
}

.popular-executor-card .card-actions {
  margin-top: 18px;
}

.popular-executor-meta {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.88rem;
}

.popular-executor-meta span:last-child {
  color: var(--text);
}

.changelog-grid {
  margin-bottom: 24px;
}

.changelog-card .timeline-date {
  margin-bottom: 14px;
}

.script-badge-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 8px;
}

.heavy-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.heavy-badge-cyan {
  color: #d4f9ff;
  background: rgba(34, 211, 238, 0.12);
  border-color: rgba(34, 211, 238, 0.22);
}

.heavy-badge-violet {
  color: #f1e7ff;
  background: rgba(139, 92, 246, 0.14);
  border-color: rgba(139, 92, 246, 0.22);
}

.heavy-badge-green {
  color: #d8fff1;
  background: rgba(52, 211, 153, 0.12);
  border-color: rgba(52, 211, 153, 0.22);
}

.heavy-badge-blue {
  color: #dce8ff;
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.22);
}

.heavy-badge-amber {
  color: #ffefcd;
  background: rgba(251, 191, 36, 0.12);
  border-color: rgba(251, 191, 36, 0.22);
}

.heavy-badge-rose {
  color: #ffdbe4;
  background: rgba(244, 63, 94, 0.12);
  border-color: rgba(244, 63, 94, 0.22);
}

.heavy-badge-slate {
  color: #eef2ff;
  background: rgba(148, 163, 184, 0.12);
  border-color: rgba(148, 163, 184, 0.18);
}

.download-stage-hint {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

@keyframes wizardStageIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes activeStepPulse {
  0%, 100% {
    box-shadow: 0 0 18px rgba(34, 211, 238, 0.08);
  }
  50% {
    box-shadow: 0 0 34px rgba(34, 211, 238, 0.18);
  }
}

@keyframes discordGlow {
  from {
    box-shadow: 0 0 28px rgba(88, 101, 242, 0.08);
  }
  to {
    box-shadow: 0 0 44px rgba(88, 101, 242, 0.18);
  }
}

@keyframes discordReadyPulse {
  from {
    transform: translateY(0);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.12);
  }
  to {
    transform: translateY(-3px);
    box-shadow: 0 0 38px rgba(34, 211, 238, 0.22);
  }
}

@keyframes progressSheen {
  to {
    transform: translateX(120%);
  }
}

@keyframes heroPulse {
  from {
    transform: scale(0.96);
    opacity: 0.52;
  }
  to {
    transform: scale(1.08);
    opacity: 0.84;
  }
}

@keyframes mediaSweep {
  0%,
  18% {
    transform: translateY(-110%);
  }
  44%,
  100% {
    transform: translateY(112%);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.category-grid,
.scripts-grid,
.feature-grid {
  display: grid;
  gap: 16px;
}

.category-grid {
  grid-template-columns: 1.4fr repeat(2, minmax(0, 1fr));
}

.category-card,
.script-card,
.feature-card,
.timeline-item,
.filter-console,
.rivals-spotlight,
.faq-list details,
.final-cta {
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.032)),
    rgba(15, 17, 27, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.28);
}

.category-card,
.script-card,
.feature-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.category-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  text-align: left;
  color: var(--text);
}

.category-card::before,
.script-card::before,
.feature-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 30%), rgba(34, 211, 238, 0.2), transparent 32%),
    linear-gradient(135deg, rgba(139, 92, 246, 0.18), transparent 48%);
  transition: opacity 0.28s ease;
}

.category-card:hover,
.script-card:hover,
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow), var(--glow);
}

.category-card:hover::before,
.script-card:hover::before,
.feature-card:hover::before {
  opacity: 1;
}

.category-card > *,
.script-card > *,
.feature-card > * {
  position: relative;
  z-index: 1;
}

.category-card.is-main {
  grid-row: span 2;
  min-height: 456px;
  background:
    radial-gradient(circle at 72% 22%, rgba(34, 211, 238, 0.24), transparent 34%),
    radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.36), transparent 42%),
    rgba(15, 17, 27, 0.84);
  border-color: rgba(139, 92, 246, 0.26);
}

.category-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border);
  color: #dce6ff;
  font-weight: 900;
}

.category-card.is-main .category-icon {
  width: 76px;
  height: 76px;
  border-radius: 24px;
  box-shadow: 0 0 38px rgba(139, 92, 246, 0.24);
}

.category-card h3 {
  margin: 24px 0 10px;
  font-size: 1.45rem;
}

.category-card.is-main h3 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.category-card p {
  color: var(--muted);
  line-height: 1.62;
}

.category-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
}

.count-badge,
.status-badge,
.tag,
.rivals-badges span,
.filter-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 0 10px;
  border: 1px solid var(--border);
  color: #dce6ff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.76rem;
  font-weight: 850;
}

.category-arrow {
  color: var(--cyan);
  font-weight: 900;
}

.filter-console {
  border-radius: 26px;
  padding: 18px;
  margin-bottom: 18px;
}

.search-wrap {
  position: relative;
}

.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  width: 15px;
  height: 15px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  transform: translateY(-50%);
}

.search-icon::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 2px;
  right: -6px;
  bottom: -4px;
  border-radius: 999px;
  background: var(--cyan);
  transform: rotate(45deg);
}

.search-wrap input,
.filter-row select {
  width: 100%;
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(7, 8, 13, 0.86);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.search-wrap input {
  min-height: 58px;
  padding: 0 18px 0 48px;
  border-radius: 18px;
}

.search-wrap input:focus,
.filter-row select:focus {
  border-color: rgba(34, 211, 238, 0.42);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.08);
}

.filter-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.filter-row label {
  display: grid;
  gap: 8px;
}

.filter-row label span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.filter-row select {
  min-height: 48px;
  border-radius: 15px;
  padding: 0 12px;
}

.active-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 0;
  margin-top: 14px;
}

.library-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 18px 0;
}

.library-meta p {
  margin: 0;
  color: var(--muted);
}

.library-meta strong {
  color: var(--text);
}

.mini-button {
  min-height: 38px;
  border-radius: 999px;
  padding: 0 14px;
  font-weight: 800;
}

.scripts-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.script-card {
  min-height: 360px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.script-topline,
.script-meta,
.card-actions,
.modal-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.script-topline {
  justify-content: space-between;
  margin-bottom: 18px;
}

.game-chip {
  color: #dce6ff;
  font-size: 0.78rem;
  font-weight: 900;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.22);
}

.status-badge {
  color: var(--text);
}

.status-Updated { background: rgba(34, 211, 238, 0.13); border-color: rgba(34, 211, 238, 0.25); color: #bff6ff; }
.status-Beta { background: rgba(139, 92, 246, 0.15); border-color: rgba(139, 92, 246, 0.28); color: #ddd2ff; }
.status-Stable { background: rgba(52, 211, 153, 0.13); border-color: rgba(52, 211, 153, 0.26); color: #c8ffe9; }
.status-Keyless { background: rgba(245, 158, 11, 0.14); border-color: rgba(245, 158, 11, 0.25); color: #ffe3a7; }
.status-Premium { background: rgba(251, 113, 133, 0.14); border-color: rgba(251, 113, 133, 0.26); color: #ffd2da; }
.status-Testing { background: rgba(148, 163, 184, 0.14); border-color: rgba(148, 163, 184, 0.25); color: #e4e9f4; }

.script-card h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.script-card p {
  color: var(--muted);
  line-height: 1.62;
}

.script-meta {
  margin: 2px 0 16px;
  color: var(--muted-2);
  font-size: 0.84rem;
  font-weight: 750;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
}

.tag {
  background: rgba(255, 255, 255, 0.048);
}

.card-actions {
  margin-top: 18px;
}

.action-btn {
  min-height: 38px;
  flex: 1;
  min-width: 86px;
  border-radius: 12px;
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  font-weight: 850;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.action-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
}

.action-primary {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.92), rgba(59, 130, 246, 0.82));
}

.empty-state {
  display: none;
  min-height: 200px;
  place-items: center;
  text-align: center;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  color: var(--muted);
}

.empty-state.is-visible {
  display: grid;
}

.empty-state span {
  display: block;
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  min-height: 230px;
  padding: 22px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--cyan);
  font-weight: 950;
  background: rgba(34, 211, 238, 0.09);
  border: 1px solid rgba(34, 211, 238, 0.16);
}

.feature-card h3 {
  margin: 22px 0 10px;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.62;
}

.rivals-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: 30px;
  align-items: center;
  border-radius: 32px;
  padding: clamp(24px, 5vw, 54px);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(139, 92, 246, 0.28), transparent 34%),
    radial-gradient(circle at 88% 80%, rgba(34, 211, 238, 0.2), transparent 34%),
    rgba(13, 15, 25, 0.78);
}

.rivals-badges {
  margin: 24px 0;
}

.rivals-board {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(5, 6, 11, 0.56);
  overflow: hidden;
}

.rivals-board-head {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 18px;
  border-bottom: 1px solid var(--border);
}

.rivals-board-head span {
  color: var(--muted);
  font-weight: 850;
}

.rivals-list {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.rivals-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 68px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.rivals-item strong {
  display: block;
  margin-bottom: 5px;
}

.rivals-item span {
  color: var(--muted);
  font-size: 0.84rem;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-cloud button {
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  font-weight: 850;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.tag-cloud button:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 211, 238, 0.34);
  background: rgba(34, 211, 238, 0.08);
}

.timeline {
  position: relative;
  display: grid;
  gap: 14px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(180deg, var(--violet), var(--cyan), transparent);
}

.timeline-item {
  position: relative;
  min-height: 124px;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
  padding: 20px;
  border-radius: var(--radius-lg);
}

.timeline-dot {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--cyan), var(--blue) 48%, var(--violet));
  box-shadow: 0 0 26px rgba(34, 211, 238, 0.34);
}

.timeline-item h3 {
  margin: 8px 0 8px;
}

.timeline-item p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border-radius: 18px;
  padding: 0 18px;
}

.faq-list summary {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
}

.faq-list summary::after {
  content: "+";
  color: var(--cyan);
  font-size: 1.35rem;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 0 20px;
  color: var(--muted);
  line-height: 1.65;
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 22px;
  align-items: start;
}

.support-discord-card,
.support-report-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--border-strong);
  background:
    linear-gradient(180deg, rgba(19, 22, 34, 0.92), rgba(10, 11, 18, 0.98)),
    rgba(9, 10, 16, 0.96);
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.support-discord-card::after,
.support-report-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.12) 40%, transparent 54%) -180% 0 / 180% 100% no-repeat;
  animation: sheen 9s ease-in-out infinite;
}

.support-discord-card:hover,
.support-report-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 86px rgba(0, 0, 0, 0.32);
}

.support-discord-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) 290px;
  gap: 18px;
  padding: 24px;
  border-color: rgba(34, 211, 238, 0.2);
  background:
    radial-gradient(circle at 14% 20%, rgba(34, 211, 238, 0.14), transparent 30%),
    radial-gradient(circle at 88% 82%, rgba(139, 92, 246, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(19, 22, 34, 0.94), rgba(10, 11, 18, 0.98)),
    rgba(9, 10, 16, 0.96);
  animation: floatSoft 7.4s ease-in-out infinite alternate;
}

.support-report-card {
  animation: floatSoft 8.2s ease-in-out infinite alternate;
  animation-delay: -1.8s;
}

.support-discord-copy h3,
.support-form-head strong {
  display: block;
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.08;
}

.support-discord-copy p,
.support-form-head p,
.support-discord-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.support-kicker,
.support-form-pill,
.support-discord-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 31px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.support-kicker,
.support-form-pill {
  margin-bottom: 14px;
}

.support-kicker {
  border: 1px solid rgba(34, 211, 238, 0.22);
  background: rgba(34, 211, 238, 0.09);
  color: var(--cyan);
}

.support-points {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.support-points div,
.support-discord-panel,
.support-report-status,
.support-report-receipt {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.045);
}

.support-points div {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 20px;
}

.support-points strong,
.support-discord-panel strong,
.support-report-receipt strong {
  color: var(--text);
}

.support-points span,
.support-report-receipt p {
  color: var(--muted);
  line-height: 1.6;
}

.support-discord-panel {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
}

.support-discord-badge {
  border: 1px solid rgba(139, 92, 246, 0.2);
  background: rgba(139, 92, 246, 0.1);
  color: #d9ceff;
}

.support-discord-button {
  width: 100%;
}

.support-report-card {
  padding: 24px;
}

.support-form-pill {
  border: 1px solid rgba(251, 113, 133, 0.18);
  background: rgba(251, 113, 133, 0.08);
  color: #ffc2cf;
}

.support-report-form {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.support-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.support-field {
  display: grid;
  gap: 10px;
}

.support-field > span {
  color: #dce6ff;
  font-size: 0.92rem;
  font-weight: 800;
}

.support-field input,
.support-field select,
.support-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 18px;
  color: var(--text);
  background: rgba(7, 8, 13, 0.88);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.support-field input,
.support-field select {
  min-height: 56px;
  padding: 0 16px;
}

.support-field textarea {
  min-height: 164px;
  padding: 16px;
  resize: vertical;
}

.support-field input:focus,
.support-field select:focus,
.support-field textarea:focus {
  border-color: rgba(34, 211, 238, 0.4);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.08);
  transform: translateY(-1px);
}

.support-report-actions {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.support-send-button {
  min-width: 220px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.support-send-button:hover:not(:disabled) {
  transform: translateY(-1px);
}

.support-send-button.is-sending {
  box-shadow: 0 20px 54px rgba(34, 211, 238, 0.24);
}

.support-send-button.is-sending .button-icon {
  animation: rotateRadar 0.85s linear infinite;
}

.support-send-button.is-sent {
  background: linear-gradient(135deg, rgba(52, 211, 153, 1), rgba(34, 211, 238, 0.92));
  box-shadow: 0 20px 54px rgba(52, 211, 153, 0.24);
}

.support-report-status {
  min-height: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 20px;
  color: #dce6ff;
}

.support-report-status.is-sending {
  border-color: rgba(34, 211, 238, 0.2);
}

.support-report-status.is-sent {
  border-color: rgba(52, 211, 153, 0.2);
  background: rgba(52, 211, 153, 0.08);
}

.support-report-status.is-error {
  border-color: rgba(251, 113, 133, 0.22);
  background: rgba(251, 113, 133, 0.08);
}

.support-report-status-dot {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.support-report-status.is-sending .support-report-status-dot {
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.48);
  animation: supportPulse 0.8s ease-in-out infinite alternate;
}

.support-report-status.is-sent .support-report-status-dot {
  background: var(--emerald);
  box-shadow: 0 0 18px rgba(52, 211, 153, 0.48);
}

.support-report-status.is-error .support-report-status-dot {
  background: var(--rose);
  box-shadow: 0 0 18px rgba(251, 113, 133, 0.44);
}

.support-report-receipt {
  padding: 16px 18px;
  border-radius: 22px;
  border-color: rgba(52, 211, 153, 0.22);
  background: rgba(52, 211, 153, 0.08);
  animation: toastIn 0.28s ease both;
}

.support-report-receipt p {
  margin: 6px 0 0;
}

code {
  color: #dce6ff;
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 6px;
  border-radius: 7px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  text-align: center;
  padding: clamp(44px, 7vw, 78px) clamp(20px, 5vw, 70px);
  background:
    radial-gradient(circle at 22% 22%, rgba(139, 92, 246, 0.25), transparent 36%),
    radial-gradient(circle at 78% 72%, rgba(34, 211, 238, 0.2), transparent 36%),
    rgba(15, 17, 27, 0.82);
}

.final-cta .eyebrow {
  justify-content: center;
}

.final-cta p {
  max-width: 740px;
  margin: 0 auto 26px;
}

.final-cta-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 28px;
  max-width: 860px;
}

.final-cta-meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #dce6ff;
  font-size: 0.84rem;
  font-weight: 700;
}

.final-cta-meta strong {
  margin-left: 4px;
  color: var(--text);
}

.final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.final-cta-actions .button {
  min-width: 220px;
}

.footer {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0 34px;
}

.footer {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 36px;
  border-top: 1px solid var(--border);
}

.footer-brand p {
  max-width: 430px;
  color: var(--muted);
  line-height: 1.65;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.footer-links h3 {
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: #dce6ff;
}

.footer-links a {
  display: block;
  margin: 10px 0;
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
  color: var(--muted-2);
  font-size: 0.9rem;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(16px);
}

.modal-panel {
  position: relative;
  width: min(680px, 100%);
  max-height: min(760px, 92vh);
  overflow: auto;
  border: 1px solid var(--border-strong);
  border-radius: 28px;
  background:
    radial-gradient(circle at 15% 0%, rgba(139, 92, 246, 0.22), transparent 36%),
    rgba(13, 15, 24, 0.96);
  box-shadow: var(--shadow), var(--glow);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.25s ease;
}

.modal.is-open .modal-panel {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
}

.modal-content {
  padding: 28px;
}

.modal-content h2 {
  margin: 14px 48px 12px 0;
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1;
}

.modal-content p {
  color: var(--muted);
  line-height: 1.7;
}

.modal-meta {
  margin: 18px 0;
}

.modal-code {
  position: relative;
  margin-top: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(3, 4, 8, 0.72);
  padding: 16px;
  overflow: auto;
}

.modal-code code {
  background: transparent;
  padding: 0;
  color: #dce6ff;
  white-space: pre-wrap;
  word-break: break-word;
}

.promo-modal {
  position: fixed;
  inset: 0;
  z-index: 125;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.promo-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.promo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 10, 0.82);
  backdrop-filter: blur(18px);
}

.promo-modal-panel {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(0, 0.95fr);
  border: 1px solid var(--border-strong);
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(19, 22, 34, 0.94), rgba(10, 11, 18, 0.98)),
    rgba(9, 10, 16, 0.96);
  box-shadow: 0 28px 110px rgba(0, 0, 0, 0.5);
  transform: translateY(12px) scale(0.985);
  transition: transform 0.28s ease;
}

.promo-modal.is-open .promo-modal-panel {
  transform: translateY(0) scale(1);
}

.promo-modal-media {
  position: relative;
  min-height: 420px;
  background: #06070b;
}

.promo-visual-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 9, 15, 0.96), rgba(7, 8, 14, 0.9)),
    #06070b;
}

.promo-visual-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(58px);
  opacity: 0.45;
}

.promo-visual-orb-one {
  top: 8%;
  left: -10%;
  width: 220px;
  height: 220px;
  background: rgba(34, 211, 238, 0.42);
}

.promo-visual-orb-two {
  right: -12%;
  bottom: 2%;
  width: 260px;
  height: 260px;
  background: rgba(139, 92, 246, 0.36);
}

.promo-visual-dashboard {
  position: absolute;
  inset: 22px;
  z-index: 1;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 14px;
  padding: 18px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(8, 10, 16, 0.7);
  backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.promo-visual-topbar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #d7e6ff;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.promo-visual-topbar span:last-child {
  color: var(--cyan);
}

.promo-visual-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  gap: 14px;
  align-items: stretch;
}

.promo-visual-copy {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 82% 18%, rgba(34, 211, 238, 0.16), transparent 26%),
    rgba(255, 255, 255, 0.045);
}

.promo-visual-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(34, 211, 238, 0.16);
  background: rgba(34, 211, 238, 0.08);
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.promo-visual-copy strong {
  font-size: 1.45rem;
  line-height: 1.08;
  color: var(--text);
}

.promo-visual-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.promo-visual-metrics {
  display: grid;
  gap: 12px;
}

.promo-visual-metrics div,
.promo-visual-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.045);
}

.promo-visual-metrics div {
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 16px;
  border-radius: 20px;
}

.promo-visual-metrics span,
.promo-visual-card span {
  color: #d7e6ff;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.promo-visual-metrics strong {
  color: var(--text);
  font-size: 1.55rem;
}

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

.promo-visual-card {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 16px;
  border-radius: 20px;
}

.promo-visual-card strong {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.4;
}

.promo-visual-card.is-main {
  grid-column: 1 / -1;
  background:
    radial-gradient(circle at 90% 18%, rgba(139, 92, 246, 0.18), transparent 28%),
    rgba(255, 255, 255, 0.05);
}

.promo-modal-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 12, 0.08), rgba(5, 7, 12, 0.66)),
    radial-gradient(circle at 74% 26%, rgba(34, 211, 238, 0.2), transparent 28%);
}

.promo-modal-scanline {
  position: absolute;
  inset: -20% 0 auto 0;
  height: 36%;
  background: linear-gradient(180deg, rgba(34, 211, 238, 0), rgba(34, 211, 238, 0.16), rgba(34, 211, 238, 0));
  mix-blend-mode: screen;
  animation: mediaSweep 4.6s ease-in-out infinite;
}

.promo-modal-badges,
.promo-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.promo-modal-badges {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
}

.promo-modal-badges span,
.promo-modal-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
  color: #e7edff;
  font-size: 0.76rem;
  font-weight: 800;
}

.promo-modal-floating {
  position: absolute;
  z-index: 1;
  display: grid;
  gap: 4px;
  min-width: 170px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 10, 16, 0.66);
  backdrop-filter: blur(16px);
  animation: floatCard 3.8s ease-in-out infinite;
}

.promo-modal-floating span {
  color: #cfe4ff;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.promo-modal-floating strong {
  color: var(--text);
  font-size: 1rem;
}

.promo-modal-floating-left {
  left: 18px;
  bottom: 20px;
}

.promo-modal-floating-right {
  right: 18px;
  top: 68px;
  animation-delay: -1.5s;
}

.promo-modal-signal {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  display: flex;
  align-items: end;
  gap: 6px;
  height: 42px;
}

.promo-modal-signal span {
  width: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cyan), rgba(139, 92, 246, 0.9));
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.22);
  animation: signal 0.9s ease-in-out infinite alternate;
}

.promo-modal-signal span:nth-child(1) { height: 15px; }
.promo-modal-signal span:nth-child(2) { height: 28px; animation-delay: -0.2s; }
.promo-modal-signal span:nth-child(3) { height: 40px; animation-delay: -0.4s; }
.promo-modal-signal span:nth-child(4) { height: 22px; animation-delay: -0.1s; }

.promo-modal-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 28px;
}

.promo-modal-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(34, 211, 238, 0.18);
  background: rgba(34, 211, 238, 0.08);
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.promo-modal-copy h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.05;
}

.promo-modal-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.promo-modal-feature-grid {
  display: grid;
  gap: 10px;
}

.promo-modal-feature-grid div {
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.promo-modal-feature-grid strong {
  color: var(--text);
}

.promo-modal-feature-grid span {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.9rem;
}

.promo-modal-progress {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.promo-modal-progress-head {
  display: grid;
  gap: 4px;
}

.promo-modal-progress strong {
  font-size: 2rem;
  color: var(--text);
}

.promo-modal-progress span {
  color: var(--muted);
}

.promo-modal-progress-track {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.promo-modal-progress-bar {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.3);
  transition: width 0.25s ease;
}

.promo-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.toast-stack {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 200;
  display: grid;
  gap: 10px;
  width: min(360px, calc(100vw - 36px));
}

.toast {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 64px;
  padding: 14px;
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  color: var(--text);
  background: rgba(12, 14, 22, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  animation: toastIn 0.32s ease both;
}

.toast::before {
  content: "";
  width: 10px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cyan), var(--violet));
  box-shadow: 0 0 22px rgba(34, 211, 238, 0.45);
}

.toast p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.toast strong {
  display: block;
  margin-bottom: 3px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes loaderPulse {
  from { transform: translateY(0) scale(0.98); }
  to { transform: translateY(-5px) scale(1.03); }
}

@keyframes loaderTextRise {
  from {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes loaderLineIn {
  from {
    opacity: 0;
    transform: scaleX(0.2);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes loaderWordSwap {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  15%, 32% {
    opacity: 1;
    transform: translateY(0);
  }
  48%, 100% {
    opacity: 0;
    transform: translateY(-18px);
  }
}

@keyframes loaderExit {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
  to {
    opacity: 0;
    transform: translateY(-34px) scale(0.96);
    filter: blur(10px);
  }
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(46px, -22px, 0) scale(1.08); }
}

@keyframes backdropShift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    filter: saturate(0.96);
  }
  100% {
    transform: translate3d(0, -18px, 0) scale(1.04);
    filter: saturate(1.08);
  }
}

@keyframes gridShift {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 56px 56px, 56px 56px;
  }
}

@keyframes gridPulse {
  0%,
  100% {
    opacity: 0.26;
    transform: scale(1);
  }
  50% {
    opacity: 0.56;
    transform: scale(1.015);
  }
}

@keyframes gridGlowShift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.38;
  }
  100% {
    transform: translate3d(0, -20px, 0) scale(1.05);
    opacity: 0.62;
  }
}

@keyframes heroItemIn {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes badgePulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.18);
  }
  50% {
    transform: translateY(-2px);
    box-shadow: 0 0 38px rgba(34, 211, 238, 0.22);
  }
}

@keyframes downloadPulse {
  0%,
  100% {
    box-shadow:
      0 18px 52px rgba(59, 130, 246, 0.25),
      0 0 0 0 rgba(34, 211, 238, 0.26);
  }
  50% {
    box-shadow:
      0 22px 64px rgba(34, 211, 238, 0.32),
      0 0 0 12px rgba(34, 211, 238, 0);
  }
}

@keyframes floaty {
  from { transform: translateY(0) rotate(0deg); }
  to { transform: translateY(-18px) rotate(7deg); }
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes sheen {
  0%, 52% { background-position: -160% 0; }
  100% { background-position: 160% 0; }
}

@keyframes signal {
  from { transform: scaleY(0.82); filter: brightness(0.95); }
  to { transform: scaleY(1.06); filter: brightness(1.28); }
}

@keyframes rotateRadar {
  to { transform: rotate(360deg); }
}

@keyframes toastIn {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes statusSwapIn {
  from {
    opacity: 0.68;
    transform: translateY(8px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes supportPulse {
  from { transform: scale(0.82); opacity: 0.72; }
  to { transform: scale(1.08); opacity: 1; }
}

@media (max-width: 1040px) {
  .navbar {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .nav-links {
    position: fixed;
    inset: 92px 16px auto 16px;
    z-index: 60;
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(8, 9, 15, 0.94);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    border-radius: 14px;
    min-height: 44px;
  }

  .nav-actions {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 68px;
  }

  .hero-visual {
    min-height: 460px;
    justify-items: stretch;
  }

  .hero-release-strip {
    grid-template-columns: 1fr;
  }

  .hero-command-grid {
    grid-template-columns: 1fr;
  }

  .hero-command-panel-primary,
  .hero-command-panel-secondary,
  .hero-command-panel-tertiary,
  .hero-command-stats {
    grid-column: auto;
  }

  .route-switch-lane {
    grid-template-columns: 1fr;
  }

  .hero-status-spotlight,
  .hero-media-card {
    width: 100%;
  }

  .hero-status-head,
  .hero-status-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-version-promo {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-floating-left {
    left: 18px;
    bottom: 18px;
  }

  .hero-floating-right {
    right: 18px;
    top: 90px;
  }

  .download-layout,
  .install-layout,
  .tutorials-layout,
  .install-grid,
  .tutorial-grid,
  .trust-grid,
  .requirements-grid,
  .account-layout,
  .premium-access-layout,
  .popular-executor-grid,
  .changelog-grid,
  .category-grid,
  .scripts-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .download-layout {
    grid-template-columns: 1fr;
  }

  .download-progress-layout {
    grid-template-columns: 1fr;
  }

  .support-layout,
  .support-discord-card {
    grid-template-columns: 1fr;
  }

  .download-promo-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .install-layout {
    grid-template-columns: 1fr;
  }

  .tutorials-layout {
    grid-template-columns: 1fr;
  }

  .tutorials-feature-points {
    display: grid;
  }

  .premium-access-layout {
    grid-template-columns: 1fr;
  }

  .category-card.is-main {
    grid-row: auto;
    grid-column: 1 / -1;
    min-height: 330px;
  }

  .filter-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rivals-spotlight,
  .footer {
    grid-template-columns: 1fr;
  }

  .promo-modal-panel {
    grid-template-columns: 1fr;
  }

  .promo-modal-media {
    min-height: 280px;
  }

  .promo-visual-dashboard {
    inset: 16px;
  }

  .promo-visual-hero,
  .promo-visual-grid {
    grid-template-columns: 1fr;
  }

  .promo-modal-floating-right {
    top: 18px;
    right: 18px;
  }
}

@media (max-width: 700px) {
  .site-header {
    padding: 10px 12px 0;
  }

  .navbar {
    min-height: 64px;
    border-radius: 20px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .section {
    width: min(calc(100% - 24px), var(--container));
    padding: 72px 0;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-lead {
    max-width: 30ch;
  }

  .hero-stats,
  .hero-release-strip,
  .hero-command-grid,
  .download-badge-row,
  .download-specs,
  .discord-unlock-card,
  .download-side-grid,
  .download-steps,
  .client-choice-grid,
  .download-actions,
  .download-result-grid,
  .download-result-actions,
  .install-grid,
  .tutorial-grid,
  .trust-grid,
  .requirements-grid,
  .account-layout,
  .premium-form-grid,
  .popular-executor-grid,
  .changelog-grid,
  .category-grid,
  .scripts-grid,
  .feature-grid,
  .filter-row,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .support-field-grid,
  .support-report-actions {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    min-height: 94px;
  }

  .hero-command-panel,
  .hero-command-stats {
    min-height: 0;
  }

  .hero-actions .button,
  .download-actions .button,
  .download-result-actions .button,
  .discord-link-button,
  .support-send-button,
  .rivals-copy .button,
  .final-cta .button,
  .promo-modal-actions .button {
    width: 100%;
  }

  .hero-version-button {
    width: 100%;
  }

  .final-cta-actions {
    flex-direction: column;
  }

  .tutorial-browser-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .guided-tutorial-panel {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    padding: 18px;
  }

  .guided-tutorial-actions {
    flex-wrap: wrap;
  }

  .guided-tutorial-actions .button {
    width: 100%;
    margin-left: 0;
  }

  .promo-modal-copy {
    padding: 20px;
  }

  .promo-visual-copy strong {
    font-size: 1.2rem;
  }

  .promo-modal-floating {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin: 10px 18px 0;
  }

  .promo-modal-signal {
    right: 18px;
    bottom: 18px;
  }

  .promo-modal-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .account-actions {
    flex-direction: column;
  }

  .premium-form-grid-cards {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
    justify-items: stretch;
  }

  .hero-media-card {
    width: 100%;
    padding: 14px;
  }

  .hero-media-overlay {
    left: 18px;
    right: 18px;
  }

  .hero-overlay-top {
    top: 54px;
  }

  .hero-overlay-bottom {
    bottom: 56px;
    gap: 8px;
  }

  .hero-overlay-panel,
  .hero-floating {
    width: 100%;
    min-width: 0;
  }

  .hero-floating {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin-top: 10px;
    animation: none;
  }

  .dashboard-shell {
    min-height: auto;
    border-radius: 24px;
  }

  .dash-grid {
    grid-template-columns: 1fr;
  }

  .dash-row {
    grid-column: auto;
  }

  .dash-radar {
    min-height: 210px;
  }

  .category-card.is-main {
    min-height: 300px;
  }

  .library-meta,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .script-card {
    min-height: 0;
  }

  .rivals-spotlight {
    padding: 22px;
    border-radius: 26px;
  }

  .rivals-board-head,
  .rivals-item {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .modal-content {
    padding: 22px;
  }

  .cursor-glow {
    display: none;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: clamp(3.2rem, 19vw, 4.8rem);
  }

  .section-heading h2,
  .rivals-copy h2,
  .final-cta h2 {
    font-size: 2rem;
  }

  .card-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .action-btn {
    width: 100%;
  }
}

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

.hero-command-live strong span,
.hero-feed-card strong,
.launch-stat-grid strong {
  color: #ffffff;
}

.hero-command-live {
  background:
    radial-gradient(circle at 88% 18%, rgba(34, 211, 238, 0.16), transparent 28%),
    radial-gradient(circle at 12% 84%, rgba(139, 92, 246, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(5, 8, 16, 0.94);
}

.hero-metric-line,
.hero-activity-strip,
.launch-card-top,
.launch-support-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-metric-line {
  color: #d9e5ff;
  font-size: 0.82rem;
  font-weight: 760;
}

.hero-orbit-card {
  display: grid;
  gap: 18px;
  min-height: 640px;
  padding: 24px;
  background:
    radial-gradient(circle at 84% 16%, rgba(34, 211, 238, 0.18), transparent 24%),
    radial-gradient(circle at 18% 18%, rgba(139, 92, 246, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
    rgba(5, 8, 16, 0.96);
}

.hero-orbit-stage {
  position: relative;
  min-height: 280px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.hero-orbit-stage::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.08);
  animation: orbitSpin 18s linear infinite;
}

.hero-orbit-ring {
  position: absolute;
  inset: 50%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: translate(-50%, -50%);
}

.hero-orbit-ring-one {
  width: 150px;
  height: 150px;
  animation: orbitSpin 10s linear infinite;
}

.hero-orbit-ring-two {
  width: 222px;
  height: 222px;
  border-style: dashed;
  animation: orbitSpinReverse 16s linear infinite;
}

.hero-orbit-ring-three {
  width: 286px;
  height: 286px;
  opacity: 0.5;
  animation: orbitSpin 24s linear infinite;
}

.hero-globe {
  position: relative;
  width: clamp(136px, 24vw, 188px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(224, 244, 255, 0.95), rgba(120, 196, 255, 0.3) 18%, transparent 19%),
    linear-gradient(120deg, rgba(12, 23, 40, 0.96), rgba(27, 57, 104, 0.94) 50%, rgba(5, 17, 34, 0.98));
  box-shadow:
    inset -24px -24px 42px rgba(0, 0, 0, 0.35),
    0 0 42px rgba(34, 211, 238, 0.2),
    0 0 90px rgba(139, 92, 246, 0.12);
  overflow: hidden;
  animation: globeFloat 5.2s ease-in-out infinite alternate;
}

.hero-globe::before,
.hero-globe::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-globe::before {
  background:
    radial-gradient(circle at 26% 44%, rgba(66, 153, 92, 0.88) 0 11%, transparent 12%),
    radial-gradient(circle at 58% 30%, rgba(84, 182, 112, 0.86) 0 12%, transparent 13%),
    radial-gradient(circle at 62% 64%, rgba(77, 167, 102, 0.86) 0 15%, transparent 16%),
    radial-gradient(circle at 36% 72%, rgba(89, 176, 118, 0.8) 0 11%, transparent 12%);
  filter: blur(1px);
  opacity: 0.95;
  animation: globeSpin 14s linear infinite;
}

.hero-globe::after {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 2px, transparent 2px 22px),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0 2px, transparent 2px 18px);
  opacity: 0.18;
  mix-blend-mode: screen;
}

.hero-globe-core,
.hero-globe-shine {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.hero-globe-core {
  background: radial-gradient(circle at 50% 120%, rgba(255, 255, 255, 0.22), transparent 42%);
}

.hero-globe-shine {
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.28), transparent 36%, transparent 66%, rgba(255, 255, 255, 0.12));
  animation: sheen 6.6s ease-in-out infinite;
}

.hero-orbit-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 10, 18, 0.82);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 850;
  backdrop-filter: blur(10px);
  animation: floatSoft 6s ease-in-out infinite alternate;
}

.hero-orbit-node-one {
  top: 18%;
  right: 18%;
}

.hero-orbit-node-two {
  bottom: 18%;
  left: 16%;
  animation-delay: -1.8s;
}

.hero-orbit-node-three {
  top: 54%;
  right: 10%;
  animation-delay: -3.2s;
}

.hero-orbit-feed {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hero-feed-card,
.launch-main-card,
.launch-world-card,
.launch-route-wall,
.launch-support-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.02)),
    rgba(6, 9, 17, 0.94);
  box-shadow: 0 28px 96px rgba(0, 0, 0, 0.34);
}

.hero-feed-card {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.hero-feed-card span,
.launch-card-top span,
.launch-route-card strong,
.launch-stat-grid span {
  color: #d2e3ff;
}

.hero-feed-card strong {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.hero-feed-card p,
.launch-main-card p,
.launch-world-card p,
.launch-route-card p,
.launch-support-card p {
  margin: 0;
  color: #e5eeff;
  line-height: 1.8;
}

.hero-activity-strip span,
.launch-signal-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 780;
}

.hero-activity-strip em,
.launch-signal-list em {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22d3ee;
  box-shadow: 0 0 14px rgba(34, 211, 238, 0.72);
  animation: pulseDot 1.8s ease-in-out infinite;
}

.launch-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 22px;
}

.launch-grid > article {
  padding: 28px;
}

.launch-main-card,
.launch-route-wall {
  min-height: 100%;
}

.launch-main-card {
  display: grid;
  gap: 18px;
}

.launch-pill,
.launch-state {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.launch-pill {
  border: 1px solid rgba(34, 211, 238, 0.22);
  background: rgba(34, 211, 238, 0.08);
  color: var(--cyan);
}

.launch-state {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.launch-state.is-cyan {
  color: #b6f7ff;
}

.launch-state.is-rose {
  color: #ffd2da;
}

.launch-main-card h3,
.launch-world-card h3,
.launch-support-card h3 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 0.95;
  color: #ffffff;
}

.launch-stat-grid,
.launch-route-grid {
  display: grid;
  gap: 14px;
}

.launch-stat-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.launch-stat-grid div,
.launch-route-card {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.launch-stat-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 1.22rem;
}

.launch-main-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.launch-world-card,
.launch-support-card {
  display: grid;
  gap: 16px;
}

.launch-signal-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.launch-route-wall {
  display: grid;
  gap: 18px;
}

.launch-route-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.launch-route-card {
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.launch-route-card:hover,
.launch-main-card:hover,
.launch-world-card:hover,
.launch-support-card:hover {
  transform: translateY(-8px);
  border-color: rgba(34, 211, 238, 0.24);
  box-shadow: 0 36px 112px rgba(0, 0, 0, 0.42);
}

.launch-support-actions {
  justify-content: flex-start;
}

@keyframes globeSpin {
  from { transform: translateX(0); }
  to { transform: translateX(26px); }
}

@keyframes globeFloat {
  from { transform: translateY(0) scale(0.985); }
  to { transform: translateY(-10px) scale(1.015); }
}

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

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

@keyframes pulseDot {
  0%, 100% { transform: scale(0.9); opacity: 0.72; }
  50% { transform: scale(1.15); opacity: 1; }
}

@media (max-width: 1100px) {
  .launch-grid,
  .launch-route-grid,
  .launch-stat-grid,
  .hero-orbit-feed,
  .launch-signal-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .hero-orbit-card {
    min-height: auto;
  }

  .hero-orbit-feed,
  .launch-grid,
  .launch-route-grid,
  .launch-stat-grid,
  .launch-signal-list {
    grid-template-columns: 1fr;
  }

  .hero-activity-strip,
  .launch-card-top,
  .launch-main-actions,
  .launch-support-actions {
    justify-content: flex-start;
  }
}

.hero-minimal {
  min-height: auto;
  grid-template-columns: 1fr;
  justify-items: center;
  padding-top: 110px;
  padding-bottom: 34px;
  overflow: visible;
}

.hero-minimal-top {
  width: min(100%, 860px);
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 18px;
  position: relative;
  z-index: 8;
  overflow: visible;
}

.hero-word-cycle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  width: min(100%, 760px);
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(5, 7, 10, 0.88);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.34);
}

.hero-word-label,
.hero-word-separator {
  color: #8f98b3;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-word-cycle strong {
  color: #ffffff;
  font-size: clamp(1.15rem, 3vw, 1.9rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-shadow: 0 0 22px rgba(139, 92, 246, 0.18);
}

.hero-word-cycle strong.is-bumping {
  animation: wordLift 0.55s ease;
}

.hero-minimal .hero-lead {
  width: min(100%, 640px);
  margin: 0;
}

.home-showcase-section,
.simple-download-hub {
  padding-top: 24px;
}

.home-showcase-shell {
  width: min(100%, 1320px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.8fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.006)),
    rgba(2, 3, 6, 0.985);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.46);
  overflow: hidden;
}

.showcase-preview-card,
.showcase-performance-card,
.showcase-community-card,
.showcase-world-card {
  position: relative;
  padding: 28px;
  min-height: 100%;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.03), transparent 30%),
    rgba(4, 5, 9, 0.98);
}

.showcase-preview-card,
.showcase-performance-card {
  min-height: 520px;
}

.showcase-world-card,
.showcase-performance-card {
  border-right: 0;
}

.showcase-community-card,
.showcase-world-card {
  border-bottom: 0;
}

.showcase-card-head {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.showcase-card-head span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.94rem;
  font-weight: 760;
}

.showcase-card-head strong {
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
}

.showcase-card-copy {
  margin: 0 0 18px;
  color: #aeb4c8;
  line-height: 1.75;
  max-width: 560px;
}

.showcase-preview-frame {
  position: relative;
  height: 420px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 72% 18%, rgba(34, 211, 238, 0.08), transparent 22%),
    #020202;
  overflow: hidden;
}

.showcase-preview-gallery {
  display: grid;
  place-items: center;
}

.showcase-preview-gallery.is-switching img {
  animation: previewSwapIn 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}

.showcase-main-shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1);
  animation: previewDrift 7s ease-in-out infinite alternate;
}

.showcase-float-shot {
  position: absolute;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
  animation: floatCard 6.2s ease-in-out infinite;
}

.showcase-float-shot-one {
  right: 18px;
  top: 18px;
  width: 38%;
}

.showcase-float-shot-two {
  left: 18px;
  bottom: 18px;
  width: 26%;
  animation-delay: -2s;
}

.showcase-preview-glow {
  position: absolute;
  inset: auto 0 0 0;
  height: 30%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.88));
}

.showcase-preview-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 8, 14, 0.82);
  color: #ffffff;
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
  transform: translateY(-50%);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.showcase-preview-arrow:hover {
  transform: translateY(calc(-50% - 3px)) scale(1.04);
  border-color: rgba(139, 92, 246, 0.42);
  box-shadow: 0 0 26px rgba(139, 92, 246, 0.26);
}

.showcase-preview-arrow .lucide-icon {
  width: 22px;
  height: 22px;
}

.showcase-preview-arrow-left {
  left: 18px;
}

.showcase-preview-arrow-right {
  right: 18px;
}

.showcase-preview-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

.showcase-preview-track span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  transition: transform 0.25s ease, background 0.25s ease;
}

.showcase-preview-track .is-active {
  width: 28px;
  background: linear-gradient(90deg, #9f7aea, #56d8ff);
  animation: pulseWide 2.2s ease-in-out infinite;
}

.showcase-status-orb {
  position: relative;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin: 34px auto 30px;
}

.showcase-status-orb-ring,
.showcase-status-orb-core {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.showcase-status-orb-ring {
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.08);
  animation: pulseRing 2.6s ease-in-out infinite;
}

.showcase-status-orb-core {
  inset: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.showcase-status-orb-core .lucide-icon {
  width: 22px;
  height: 22px;
}

.showcase-performance-list,
.showcase-activity-list,
.showcase-world-tags,
.simple-download-grid,
.simple-download-card,
.simple-download-icon {
  position: relative;
}

.showcase-performance-list {
  display: grid;
  gap: 12px;
}

.showcase-performance-item {
  position: relative;
  overflow: visible;
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  transform: translateY(0);
  animation: cardFloatMini 4.8s ease-in-out infinite;
}

.showcase-performance-item:nth-child(2) {
  animation-delay: -1s;
}

.showcase-performance-item:nth-child(3) {
  animation-delay: -2s;
}

.showcase-performance-item:nth-child(4) {
  animation-delay: -3s;
}

.showcase-performance-item span,
.showcase-performance-item small,
.showcase-world-tags span,
.simple-download-meta {
  color: #b4bdd1;
}

.showcase-performance-item strong {
  position: relative;
  z-index: 1;
  font-size: 1.7rem;
  color: #ffffff;
}

.showcase-performance-item strong.counter-rise-text,
.showcase-activity-item strong.counter-rise-text {
  display: inline-flex;
  align-items: flex-end;
  white-space: pre;
}

.counter-rise-char {
  display: inline-block;
  animation: wordLift 0.55s ease both;
  animation-delay: var(--counter-rise-delay, 0s);
  will-change: transform, opacity;
}

.showcase-performance-item strong.is-bumping,
.showcase-activity-item strong.is-bumping,
#statDownloadsTrend.is-bumping,
#statSiteVisitsTrend.is-bumping {
  animation: wordLift 0.55s ease;
}

.showcase-status-pills {
  margin-top: 18px;
}

.showcase-activity-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.showcase-word-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.showcase-activity-item {
  display: grid;
  grid-template-columns: 10px 1fr;
  align-items: start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.showcase-activity-dot {
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.52);
  animation: pulseDot 1.8s ease-in-out infinite;
}

.showcase-activity-item strong,
.showcase-activity-item small {
  display: block;
}

.showcase-activity-item strong {
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-size: 1rem;
}

.showcase-activity-item small {
  margin-top: 4px;
  color: #98a1ba;
}

.showcase-world-stage {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: end center;
  overflow: hidden;
}

.showcase-world-stage::before,
.showcase-world-stage::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.showcase-world-stage::before {
  width: 260px;
  height: 260px;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid rgba(139, 92, 246, 0.12);
  box-shadow: 0 0 0 20px rgba(139, 92, 246, 0.03), 0 0 80px rgba(34, 211, 238, 0.08);
  animation: pulseRing 3.8s ease-in-out infinite;
}

.showcase-world-stage::after {
  width: 320px;
  height: 140px;
  bottom: 12px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.16), transparent 62%);
  filter: blur(26px);
}

.showcase-globe {
  width: min(106%, 430px);
  margin-bottom: -46%;
  background:
    radial-gradient(circle at 48% 48%, rgba(255, 255, 255, 0.03), rgba(4, 7, 13, 0.96) 46%, rgba(0, 0, 0, 1) 68%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset -34px -46px 90px rgba(0, 0, 0, 0.88),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 34px rgba(255, 255, 255, 0.18),
    0 0 96px rgba(255, 255, 255, 0.08);
}

.showcase-globe::before {
  background:
    radial-gradient(circle at 50% 50%, transparent 55.5%, rgba(255, 255, 255, 0.98) 56.6%, rgba(255, 255, 255, 0.18) 58%, transparent 60%),
    radial-gradient(circle at 50% 54%, rgba(255, 255, 255, 0.14), transparent 58%);
  opacity: 1;
}

.showcase-globe::after {
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.95) 0 1px, transparent 1.7px);
  background-size: 11px 11px;
  background-position: 0 0;
  opacity: 0.88;
  mix-blend-mode: screen;
  mask-image:
    radial-gradient(circle at 72% 20%, black 0 20%, transparent 45%),
    radial-gradient(circle at 66% 34%, black 0 28%, transparent 52%),
    radial-gradient(circle at 58% 48%, black 0 18%, transparent 44%),
    radial-gradient(circle at 76% 44%, black 0 16%, transparent 36%);
  -webkit-mask-image:
    radial-gradient(circle at 72% 20%, black 0 20%, transparent 45%),
    radial-gradient(circle at 66% 34%, black 0 28%, transparent 52%),
    radial-gradient(circle at 58% 48%, black 0 18%, transparent 44%),
    radial-gradient(circle at 76% 44%, black 0 16%, transparent 36%);
  animation: globeDriftDots 14s linear infinite;
}

.showcase-globe .hero-globe-core {
  background:
    radial-gradient(circle at 48% 86%, rgba(255, 255, 255, 0.06), transparent 30%),
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.28), transparent 20%);
  opacity: 0.75;
}

.showcase-globe .hero-globe-shine {
  background:
    radial-gradient(circle at 50% 112%, rgba(255, 255, 255, 0.16), transparent 38%),
    linear-gradient(112deg, transparent 0%, rgba(255, 255, 255, 0.06) 42%, transparent 64%);
  filter: blur(2px);
  animation: globeSweep 6.4s ease-in-out infinite;
}

.showcase-world-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.showcase-world-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.premium-pack-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  padding: 30px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 18% 18%, rgba(139, 92, 246, 0.14), transparent 24%),
    radial-gradient(circle at 82% 16%, rgba(34, 211, 238, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    rgba(3, 4, 8, 0.98);
  box-shadow: 0 38px 120px rgba(0, 0, 0, 0.4);
}

.premium-pack-copy,
.premium-pack-visual {
  min-width: 0;
}

.premium-pack-copy {
  display: grid;
  align-content: center;
  gap: 18px;
}

.premium-pack-copy h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.95;
  color: #ffffff;
}

.premium-pack-copy p {
  margin: 0;
  color: #afbad0;
  line-height: 1.8;
}

.premium-pack-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.premium-pack-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.premium-pack-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.premium-pack-visual {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 72% 18%, rgba(139, 92, 246, 0.12), transparent 24%),
    rgba(6, 8, 14, 0.96);
}

.premium-pack-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg, transparent 0%, rgba(255, 255, 255, 0.12) 44%, transparent 58%) -160% 0 / 160% 100% no-repeat;
  animation: sheen 7.6s ease-in-out infinite;
  pointer-events: none;
}

.premium-pack-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  animation: previewDrift 8s ease-in-out infinite alternate;
}

.simple-download-heading {
  text-align: center;
  margin-inline: auto;
}

.simple-download-grid {
  width: min(100%, 920px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.simple-download-card {
  overflow: hidden;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 16px;
  min-height: 340px;
  padding: 32px 26px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    rgba(5, 5, 7, 0.96);
  box-shadow: 0 28px 94px rgba(0, 0, 0, 0.36);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.simple-download-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.08) 46%, transparent 58%) -180% 0 / 180% 100% no-repeat;
  animation: sheen 6.8s ease-in-out infinite;
  pointer-events: none;
}

.simple-download-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 38px 120px rgba(0, 0, 0, 0.48);
}

.simple-download-icon {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 900;
  animation: floatSoft 5.5s ease-in-out infinite alternate;
}

.simple-download-icon .lucide-icon {
  width: 28px;
  height: 28px;
}

.simple-download-card.is-desktop .simple-download-icon {
  box-shadow: 0 0 28px rgba(34, 211, 238, 0.16);
}

.simple-download-card.is-mobile .simple-download-icon {
  box-shadow: 0 0 28px rgba(139, 92, 246, 0.16);
}

.simple-download-card strong {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1;
  color: #ffffff;
}

.simple-download-card p {
  margin: 0;
  color: #adb4c7;
  line-height: 1.8;
}

.simple-download-card span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

@keyframes previewDrift {
  from { transform: scale(1) translateY(0); }
  to { transform: scale(1.035) translateY(-8px); }
}

@keyframes previewSwapIn {
  from { opacity: 0.36; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes globeDriftDots {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-10px, 8px, 0); }
}

@keyframes globeSweep {
  0%, 100% { opacity: 0.52; transform: translateX(-10px); }
  50% { opacity: 0.96; transform: translateX(10px); }
}

@keyframes pulseWide {
  0%, 100% { transform: scaleX(1); opacity: 0.72; }
  50% { transform: scaleX(1.12); opacity: 1; }
}

@keyframes pulseRing {
  0%, 100% { transform: scale(0.94); opacity: 0.54; }
  50% { transform: scale(1.06); opacity: 1; }
}

@keyframes cardFloatMini {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes numberBump {
  0% { transform: translateY(0) scale(1); }
  35% { transform: translateY(-6px) scale(1.08); }
  100% { transform: translateY(0) scale(1); }
}


@keyframes wordLift {
  0% { transform: translateY(0); opacity: 0.84; }
  45% { transform: translateY(-8px); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes rotateBorder {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 1100px) {
  .home-showcase-shell {
    grid-template-columns: 1fr;
  }

  .premium-pack-shell {
    grid-template-columns: 1fr;
  }

  .showcase-preview-card,
  .showcase-performance-card,
  .showcase-community-card,
  .showcase-world-card {
    border-right: 0;
  }

  .showcase-preview-card,
  .showcase-performance-card,
  .showcase-community-card {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 760px) {
  .home-showcase-shell,
  .simple-download-grid {
    grid-template-columns: 1fr;
  }

  .showcase-preview-card,
  .showcase-performance-card,
  .showcase-community-card,
  .showcase-world-card,
  .simple-download-card {
    padding: 22px;
  }

  .showcase-preview-frame {
    height: 280px;
  }

  .hero-word-cycle {
    border-radius: 24px;
  }

  .hero-word-label,
  .hero-word-separator {
    width: 100%;
    text-align: center;
  }

  .showcase-float-shot-one {
    width: 42%;
  }

  .showcase-float-shot-two {
    width: 30%;
  }

  .showcase-preview-arrow {
    width: 42px;
    height: 42px;
  }

  .premium-pack-shell {
    padding: 22px;
  }

  .premium-pack-visual {
    min-height: 300px;
  }

  .premium-pack-actions .button {
    width: 100%;
  }
}
