:root {
  --bg: #090315;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.14);
  --text: #fbf8ff;
  --muted: #cfc0ea;
  --brand: #9b5cff;
  --brand-2: #30e7ff;
  --brand-3: #ffcc66;
  --line: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  --max: 1180px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 18% 12%, color-mix(in srgb, var(--brand) 32%, transparent), transparent 28rem),
    radial-gradient(circle at 86% 8%, color-mix(in srgb, var(--brand-2) 22%, transparent), transparent 24rem),
    linear-gradient(135deg, var(--bg), #120321 52%, #05020b);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.72) 0 1px, transparent 1.6px),
    radial-gradient(circle, rgba(255, 255, 255, 0.42) 0 1px, transparent 1.8px);
  background-size: 74px 74px, 119px 119px;
  background-position: 0 0, 22px 34px;
  opacity: 0.26;
}

body::after {
  content: "";
  position: fixed;
  inset: auto -10vw -20vh -10vw;
  z-index: -1;
  height: 48vh;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(155, 92, 255, 0.14));
}

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

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

.site-shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 3, 20, 0.76);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(var(--max), calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-grid;
  grid-template-columns: 42px auto;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 36px color-mix(in srgb, var(--brand) 34%, transparent);
  overflow: hidden;
}

.brand-mark img {
  width: 92%;
  height: 92%;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.brand-name {
  display: block;
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: 0.92rem;
}

.brand-domain {
  display: block;
  max-width: 32ch;
  color: var(--muted);
  font-size: 0.78rem;
  overflow-wrap: anywhere;
}

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

.nav-links a {
  padding: 9px 10px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.9rem;
  transition: 180ms ease;
}

.nav-links a:hover {
  color: var(--text);
  background: var(--panel);
}

.nav-cta,
.btn {
  position: relative;
  isolation: isolate;
  --glow-a: var(--brand);
  --glow-b: var(--brand-2);
  --glow-c: var(--brand-3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--brand), color-mix(in srgb, var(--brand-2) 48%, var(--brand)));
  color: #fff;
  font-weight: 800;
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--glow-a) 36%, transparent),
    0 0 18px color-mix(in srgb, var(--glow-a) 42%, transparent),
    0 16px 46px color-mix(in srgb, var(--glow-b) 24%, transparent);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
  overflow: hidden;
}

.nav-cta::before,
.btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -2;
  border-radius: inherit;
  background:
    conic-gradient(from var(--shine-angle), var(--glow-a), var(--glow-b), var(--glow-c), var(--glow-a));
  animation: border-shine 2.8s linear infinite;
  filter: saturate(1.35) brightness(1.12);
}

.nav-cta::after,
.btn::after {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: -1;
  border-radius: calc(var(--radius) - 2px);
  background: linear-gradient(135deg, var(--brand), color-mix(in srgb, var(--brand-2) 48%, var(--brand)));
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.btn.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.07);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--glow-b) 24%, transparent),
    0 0 22px color-mix(in srgb, var(--glow-a) 24%, transparent);
}

.btn.secondary::after {
  background: color-mix(in srgb, var(--bg) 78%, rgba(255, 255, 255, 0.18));
}

.theme-neon .nav-cta::before,
.theme-neon .btn::before {
  --glow-a: #b247ff;
  --glow-b: #00f5ff;
  --glow-c: #ffe45c;
  background: conic-gradient(from var(--shine-angle), #b247ff, #00f5ff, #ffe45c, #b247ff);
  animation-duration: 2.4s;
}

.theme-neon .nav-cta,
.theme-neon .btn {
  --glow-a: #b247ff;
  --glow-b: #00f5ff;
  --glow-c: #ffe45c;
}

.theme-aurora .nav-cta::before,
.theme-aurora .btn::before {
  --glow-a: #1cffb7;
  --glow-b: #f7a3ff;
  --glow-c: #7f35ff;
  background: conic-gradient(from var(--shine-angle), #1cffb7, #f7a3ff, #7f35ff, #1cffb7);
  animation-duration: 3.8s;
  animation-direction: reverse;
}

.theme-aurora .nav-cta,
.theme-aurora .btn {
  --glow-a: #1cffb7;
  --glow-b: #f7a3ff;
  --glow-c: #7f35ff;
}

.theme-comet .nav-cta::before,
.theme-comet .btn::before {
  --glow-a: #ff397f;
  --glow-b: #ad46ff;
  --glow-c: #7dfcff;
  background: conic-gradient(from var(--shine-angle), #ff397f, #ad46ff, #7dfcff, #ff397f);
  animation-duration: 1.9s;
}

.theme-comet .nav-cta,
.theme-comet .btn {
  --glow-a: #ff397f;
  --glow-b: #ad46ff;
  --glow-c: #7dfcff;
}

.theme-eclipse .nav-cta::before,
.theme-eclipse .btn::before {
  --glow-a: #ffcc4d;
  --glow-b: #d8a1ff;
  --glow-c: #5b2cff;
  background: conic-gradient(from var(--shine-angle), #ffcc4d, #d8a1ff, #5b2cff, #ffcc4d);
  animation-duration: 4.6s;
}

.theme-eclipse .nav-cta,
.theme-eclipse .btn {
  --glow-a: #ffcc4d;
  --glow-b: #d8a1ff;
  --glow-c: #5b2cff;
}

.theme-radar .nav-cta::before,
.theme-radar .btn::before {
  --glow-a: #5cffdf;
  --glow-b: #d8ff72;
  --glow-c: #8a3dff;
  background: conic-gradient(from var(--shine-angle), #5cffdf, #d8ff72, #8a3dff, #5cffdf);
  animation-duration: 2.1s;
}

.theme-radar .nav-cta,
.theme-radar .btn {
  --glow-a: #5cffdf;
  --glow-b: #d8ff72;
  --glow-c: #8a3dff;
}

.theme-violet .nav-cta::before,
.theme-violet .btn::before {
  --glow-a: #ff9b54;
  --glow-b: #d252ff;
  --glow-c: #79dcff;
  background: conic-gradient(from var(--shine-angle), #ff9b54, #d252ff, #79dcff, #ff9b54);
  animation-duration: 3.2s;
  animation-direction: reverse;
}

.theme-violet .nav-cta,
.theme-violet .btn {
  --glow-a: #ff9b54;
  --glow-b: #d252ff;
  --glow-c: #79dcff;
}

.theme-cosmic .nav-cta::before,
.theme-cosmic .btn::before {
  --glow-a: #4dffd2;
  --glow-b: #6246ff;
  --glow-c: #ff4fe0;
  background: conic-gradient(from var(--shine-angle), #4dffd2, #6246ff, #ff4fe0, #4dffd2);
  animation-duration: 2.7s;
}

.theme-cosmic .nav-cta,
.theme-cosmic .btn {
  --glow-a: #4dffd2;
  --glow-b: #6246ff;
  --glow-c: #ff4fe0;
}

.theme-pulse .nav-cta::before,
.theme-pulse .btn::before {
  --glow-a: #ffd21f;
  --glow-b: #24c6ff;
  --glow-c: #bb4cff;
  background: conic-gradient(from var(--shine-angle), #ffd21f, #24c6ff, #bb4cff, #ffd21f);
  animation-duration: 1.6s;
}

.theme-pulse .nav-cta,
.theme-pulse .btn {
  --glow-a: #ffd21f;
  --glow-b: #24c6ff;
  --glow-c: #bb4cff;
}

.theme-aurora .apk-popup-card {
  border-radius: 34px 8px 34px 8px;
}

.theme-comet .apk-popup-card {
  transform: skewY(-1deg);
  border-radius: 8px 42px 8px 42px;
}

.theme-comet .apk-popup-card > * {
  transform: skewY(1deg);
}

.theme-eclipse .apk-popup-card {
  border-radius: 50% 50% 18px 18px;
  padding-top: 40px;
}

.theme-radar .apk-popup-card {
  border-radius: 8px;
  background:
    repeating-linear-gradient(0deg, rgba(92, 255, 223, 0.05) 0 1px, transparent 1px 28px),
    color-mix(in srgb, var(--bg) 84%, rgba(255, 255, 255, 0.12));
}

.theme-violet .apk-popup-card {
  border-left: 6px solid var(--glow-a);
}

.theme-cosmic .apk-popup-card {
  clip-path: polygon(0 0, 94% 0, 100% 100%, 6% 100%);
}

.theme-pulse .apk-popup-card {
  border-radius: 8px;
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--glow-a) 34%, transparent),
    0 0 26px color-mix(in srgb, var(--glow-a) 42%, transparent),
    0 28px 120px rgba(0, 0, 0, 0.52);
}

@property --shine-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@keyframes border-shine {
  to {
    --shine-angle: 360deg;
  }
}

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

.apk-popup {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 35%, color-mix(in srgb, var(--brand) 30%, transparent), transparent 28rem),
    rgba(4, 1, 10, 0.76);
  backdrop-filter: blur(14px);
  animation: popup-fade 260ms ease-out both;
}

.apk-popup.is-hidden {
  display: none;
}

.apk-popup-card {
  position: relative;
  width: min(100%, 420px);
  padding: 30px 26px 26px;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--glow-a, var(--brand)) 45%, rgba(255, 255, 255, 0.16));
  border-radius: 18px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--brand) 18%, transparent), transparent),
    color-mix(in srgb, var(--bg) 86%, rgba(255, 255, 255, 0.12));
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--glow-b, var(--brand-2)) 22%, transparent),
    0 28px 120px rgba(0, 0, 0, 0.52),
    0 0 70px color-mix(in srgb, var(--glow-a, var(--brand)) 34%, transparent);
  overflow: hidden;
  animation: popup-rise 320ms ease-out both;
}

.apk-popup-card::before {
  content: "";
  position: absolute;
  inset: -45%;
  background: conic-gradient(from var(--shine-angle), transparent, var(--glow-a, var(--brand)), var(--glow-b, var(--brand-2)), transparent 36%);
  animation: border-shine 6s linear infinite;
  opacity: 0.22;
}

.apk-popup-card > * {
  position: relative;
  z-index: 1;
}

.apk-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.apk-popup-logo {
  width: 106px;
  height: 106px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  padding: 8px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, var(--glow-a, var(--brand)), var(--glow-b, var(--brand-2))),
    rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 60px color-mix(in srgb, var(--glow-a, var(--brand)) 38%, transparent);
}

.apk-popup-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.apk-popup-kicker {
  margin-bottom: 6px;
  color: var(--brand-3);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.apk-popup h2 {
  margin-bottom: 10px;
  font-size: 1.78rem;
  line-height: 1.08;
}

.apk-popup p:not(.apk-popup-kicker) {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.94rem;
}

.apk-popup-download {
  width: 100%;
}

@keyframes popup-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes popup-rise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero {
  width: min(var(--max), calc(100% - 32px));
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  padding: 52px 0 44px;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.97fr);
  gap: 44px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--muted);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
}

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

h1 {
  max-width: 12ch;
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5.8vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 66ch;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.stat {
  min-height: 104px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.stat strong {
  display: block;
  color: var(--brand-3);
  font-size: 1.55rem;
  line-height: 1.1;
}

.stat span {
  color: var(--muted);
  font-size: 0.88rem;
}

.visual {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
}

.gif-stage {
  position: relative;
  width: min(100%, 540px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 14px;
  border: 1px solid color-mix(in srgb, var(--glow-a, var(--brand)) 45%, rgba(255, 255, 255, 0.12));
  border-radius: 18px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--brand) 18%, transparent), transparent),
    rgba(255, 255, 255, 0.055);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--brand-2) 22%, transparent),
    0 28px 90px rgba(0, 0, 0, 0.36),
    0 0 64px color-mix(in srgb, var(--brand) 28%, transparent);
  overflow: hidden;
}

.gif-stage::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from var(--shine-angle), transparent, color-mix(in srgb, var(--brand-2) 38%, transparent), transparent 38%);
  animation: border-shine 7s linear infinite;
  opacity: 0.45;
}

.gif-stage img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.gif-signal {
  position: absolute;
  z-index: 2;
  left: 26px;
  right: 26px;
  bottom: 26px;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(6, 2, 14, 0.72);
  backdrop-filter: blur(14px);
}

.gif-signal strong {
  font-size: 0.92rem;
}

.gif-signal span {
  color: var(--brand-3);
  font-weight: 900;
}

.orbit-stage {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1;
}

.planet {
  position: absolute;
  inset: 19%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.9), transparent 0 9%, transparent 16%),
    radial-gradient(circle at 35% 30%, var(--brand-2), transparent 26%),
    linear-gradient(135deg, var(--brand), #4b137d 58%, #17022a);
  box-shadow:
    inset -24px -28px 46px rgba(0, 0, 0, 0.32),
    0 26px 110px color-mix(in srgb, var(--brand) 50%, transparent);
}

.ring {
  position: absolute;
  inset: 26%;
  border: 10px solid color-mix(in srgb, var(--brand-3) 64%, transparent);
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  transform: rotate(-18deg) scaleX(1.55);
  filter: drop-shadow(0 0 18px color-mix(in srgb, var(--brand-3) 44%, transparent));
}

.astronaut {
  position: absolute;
  right: 5%;
  top: 9%;
  width: 172px;
  aspect-ratio: 0.78;
  border-radius: 45% 45% 36% 36%;
  background:
    radial-gradient(circle at 50% 20%, #101022 0 22%, transparent 23%),
    linear-gradient(180deg, #fff 0 22%, #d8d3ff 23% 100%);
  border: 8px solid #fff;
  box-shadow: var(--shadow);
  transform: rotate(10deg);
}

.astronaut::before {
  content: "";
  position: absolute;
  inset: 18px 26px auto;
  height: 50px;
  border-radius: 999px;
  background: linear-gradient(135deg, #13051f, var(--brand));
  border: 5px solid #d8d3ff;
}

.astronaut::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -52px;
  width: 78px;
  height: 72px;
  border-radius: 0 0 36px 36px;
  background: linear-gradient(180deg, #f7f3ff, #a999ff);
  transform: translateX(-50%);
  box-shadow: -62px -36px 0 -22px #e9e4ff, 62px -36px 0 -22px #e9e4ff;
}

.signal-card {
  position: absolute;
  left: 0;
  bottom: 9%;
  width: 230px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(9, 3, 21, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.signal-line {
  height: 10px;
  margin: 12px 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2), var(--brand-3));
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-kicker {
  color: var(--brand-3);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.04;
}

.section-head p {
  color: var(--muted);
}

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

.feature-card,
.spec-card,
.testimonial-card,
.faq-item,
.product-panel,
.gallery-item,
.mini-cta {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.18);
}

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

.feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--brand) 28%, transparent);
  border: 1px solid var(--line);
  font-size: 1.35rem;
}

.feature-card h3,
.spec-card h3,
.testimonial-card h3,
.mini-cta h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.feature-card p,
.spec-card li,
.testimonial-card p,
.faq-item p,
.product-panel p,
.mini-cta p {
  color: var(--muted);
}

.feature-rich-copy p {
  margin-bottom: 12px;
  color: var(--muted);
}

.feature-rich-copy ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.product-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 20px;
  align-items: stretch;
}

.device {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--brand) 18%, transparent), transparent),
    rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.product-gif-stage {
  position: absolute;
  inset: 24px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--brand-2) 32%, rgba(255, 255, 255, 0.12));
  border-radius: 14px;
  background:
    radial-gradient(circle at 20% 18%, color-mix(in srgb, var(--brand) 22%, transparent), transparent 32%),
    radial-gradient(circle at 84% 78%, color-mix(in srgb, var(--brand-3) 18%, transparent), transparent 26%),
    rgba(0, 0, 0, 0.18);
  box-shadow:
    inset 0 0 48px rgba(255, 255, 255, 0.05),
    0 24px 78px rgba(0, 0, 0, 0.32);
  overflow: hidden;
  cursor: pointer;
}

.product-gif-stage::before {
  content: "";
  position: absolute;
  inset: -45%;
  background: conic-gradient(from var(--shine-angle), transparent, color-mix(in srgb, var(--brand-2) 36%, transparent), transparent 36%);
  animation: border-shine 8s linear infinite;
  opacity: 0.52;
}

.product-gif-stage img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
  display: block;
  background: rgba(0, 0, 0, 0.18);
}

.product-badge-float {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-3), var(--brand));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 38px color-mix(in srgb, var(--brand-3) 28%, transparent);
}

.phone {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 260px;
  height: 470px;
  padding: 18px;
  border: 10px solid #1e102e;
  border-radius: 34px;
  background: linear-gradient(180deg, #151026, #07030f);
  transform: translate(-50%, -50%) rotate(-5deg);
  box-shadow: var(--shadow);
}

.phone-screen {
  height: 100%;
  padding: 18px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 80% 18%, color-mix(in srgb, var(--brand-2) 36%, transparent), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04));
}

.screen-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  font-weight: 900;
}

.gauge {
  width: 150px;
  height: 150px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--brand-3), var(--brand-2), var(--brand), rgba(255, 255, 255, 0.1));
}

.gauge span {
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #11091e;
  color: var(--brand-3);
  font-size: 1.4rem;
  font-weight: 900;
}

.ticker {
  display: grid;
  gap: 10px;
}

.ticker span {
  height: 34px;
  padding: 7px 10px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-size: 0.82rem;
}

.product-panel {
  padding: 30px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 24px 0;
}

.price strong {
  color: var(--brand-3);
  font-size: 2.4rem;
}

.price del {
  color: var(--muted);
}

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

.product-meta div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.product-meta strong {
  display: block;
}

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

.spec-card {
  padding: 24px;
}

.spec-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
}

.testimonial-list {
  display: grid;
  gap: 14px;
}

.testimonial-card {
  padding: 22px;
}

.person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.avatar {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  font-weight: 900;
}

.person small {
  color: var(--muted);
}

.gallery {
  display: grid;
  gap: 14px;
}

.gallery-item {
  min-height: 150px;
  padding: 22px;
  display: grid;
  align-content: end;
  position: relative;
  overflow: hidden;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 14px 14px auto auto;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--brand-3), transparent 65%);
  opacity: 0.75;
}

.gallery-item strong {
  position: relative;
  font-size: 1.08rem;
}

.gallery-item span {
  position: relative;
  color: var(--muted);
}

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

.faq-item {
  padding: 20px 22px;
}

.faq-item h3 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.cta-band {
  width: min(var(--max), calc(100% - 32px));
  margin: 44px auto;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--brand) 30%, transparent), color-mix(in srgb, var(--brand-2) 12%, transparent)),
    rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.mini-cta {
  padding: 20px;
}

.footer {
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.24);
}

.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
}

.footer p,
.footer a,
.footer li {
  color: var(--muted);
}

.footer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.copyright {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 28px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}

.content-page {
  min-height: 62vh;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 18px;
  align-items: start;
}

.content-panel,
.content-side {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.18);
}

.content-panel {
  padding: 30px;
}

.content-block + .content-block {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.content-block h3 {
  margin-bottom: 8px;
}

.content-block p,
.content-side p {
  color: var(--muted);
}

.content-side {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 14px;
  padding: 22px;
}

.theme-neon {
  --bg: #070016;
  --brand: #b247ff;
  --brand-2: #00f5ff;
  --brand-3: #ffe45c;
}

.theme-aurora {
  --bg: #061b24;
  --brand: #7f35ff;
  --brand-2: #1cffb7;
  --brand-3: #f7a3ff;
  --panel: rgba(16, 255, 188, 0.08);
  --panel-strong: rgba(127, 53, 255, 0.16);
}

.theme-comet {
  --bg: #21040f;
  --brand: #ad46ff;
  --brand-2: #ff397f;
  --brand-3: #7dfcff;
  --panel: rgba(255, 57, 127, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.13);
}

.theme-eclipse {
  --bg: #020205;
  --brand: #5b2cff;
  --brand-2: #d8a1ff;
  --brand-3: #ffcc4d;
  --panel: rgba(255, 204, 77, 0.08);
  --panel-strong: rgba(91, 44, 255, 0.16);
}

.theme-radar {
  --bg: #07130f;
  --brand: #8a3dff;
  --brand-2: #5cffdf;
  --brand-3: #d8ff72;
  --panel: rgba(92, 255, 223, 0.08);
  --panel-strong: rgba(216, 255, 114, 0.13);
}

.theme-violet {
  --bg: #1f0611;
  --brand: #d252ff;
  --brand-2: #79dcff;
  --brand-3: #ff9b54;
  --panel: rgba(255, 155, 84, 0.08);
  --panel-strong: rgba(210, 82, 255, 0.15);
}

.theme-cosmic {
  --bg: #020b24;
  --brand: #6246ff;
  --brand-2: #ff4fe0;
  --brand-3: #4dffd2;
  --panel: rgba(77, 255, 210, 0.07);
  --panel-strong: rgba(98, 70, 255, 0.16);
}

.theme-pulse {
  --bg: #171001;
  --brand: #bb4cff;
  --brand-2: #24c6ff;
  --brand-3: #ffd21f;
  --panel: rgba(255, 210, 31, 0.08);
  --panel-strong: rgba(187, 76, 255, 0.15);
}

body.theme-neon {
  background:
    radial-gradient(circle at 16% 12%, rgba(178, 71, 255, 0.36), transparent 25rem),
    radial-gradient(circle at 88% 8%, rgba(0, 245, 255, 0.2), transparent 22rem),
    linear-gradient(135deg, #070016 0%, #160027 54%, #05000d 100%);
}

body.theme-neon::after {
  top: 0;
  bottom: 0;
  height: auto;
  background:
    radial-gradient(circle at 22% 28%, rgba(255, 228, 92, 0.18) 0 74px, transparent 76px),
    linear-gradient(118deg, transparent 0 46%, rgba(0, 245, 255, 0.12) 47% 48%, transparent 49%),
    linear-gradient(62deg, transparent 0 56%, rgba(178, 71, 255, 0.18) 57% 59%, transparent 60%);
  background-size: 100% 100%, 280px 280px, 360px 360px;
  animation: neon-orbit-bg 8s ease-in-out infinite alternate;
}

body.theme-aurora {
  background:
    linear-gradient(105deg, rgba(28, 255, 183, 0.18) 0 12%, transparent 13% 28%, rgba(127, 53, 255, 0.28) 29% 39%, transparent 40%),
    radial-gradient(circle at 75% 18%, rgba(247, 163, 255, 0.2), transparent 24rem),
    linear-gradient(160deg, #061b24 0%, #06251d 46%, #170733 100%);
}

body.theme-comet {
  background:
    linear-gradient(115deg, transparent 0 24%, rgba(255, 57, 127, 0.24) 25% 32%, transparent 33%),
    radial-gradient(circle at 88% 18%, rgba(125, 252, 255, 0.2), transparent 22rem),
    linear-gradient(145deg, #21040f 0%, #31061e 42%, #09030d 100%);
}

body.theme-eclipse {
  background:
    radial-gradient(circle at 50% 28%, #020205 0 10rem, rgba(255, 204, 77, 0.18) 10.2rem 13rem, transparent 13.2rem),
    radial-gradient(circle at 8% 82%, rgba(91, 44, 255, 0.22), transparent 24rem),
    linear-gradient(180deg, #020205 0%, #0c0614 52%, #211400 100%);
}

body.theme-radar {
  background:
    repeating-linear-gradient(0deg, rgba(92, 255, 223, 0.06) 0 1px, transparent 1px 38px),
    repeating-linear-gradient(90deg, rgba(216, 255, 114, 0.05) 0 1px, transparent 1px 38px),
    radial-gradient(circle at 22% 32%, rgba(92, 255, 223, 0.2), transparent 24rem),
    linear-gradient(135deg, #07130f 0%, #0b241f 48%, #12052f 100%);
}

body.theme-violet {
  background:
    radial-gradient(ellipse at 20% 18%, rgba(255, 155, 84, 0.2), transparent 26rem),
    radial-gradient(ellipse at 82% 76%, rgba(121, 220, 255, 0.16), transparent 24rem),
    linear-gradient(150deg, #1f0611 0%, #2a062b 44%, #08020d 100%);
}

body.theme-cosmic {
  background:
    linear-gradient(35deg, transparent 0 42%, rgba(77, 255, 210, 0.12) 43% 45%, transparent 46%),
    radial-gradient(circle at 72% 16%, rgba(255, 79, 224, 0.22), transparent 23rem),
    radial-gradient(circle at 12% 82%, rgba(98, 70, 255, 0.25), transparent 24rem),
    linear-gradient(165deg, #020b24 0%, #050726 45%, #21052e 100%);
}

body.theme-pulse {
  background:
    repeating-linear-gradient(90deg, rgba(255, 210, 31, 0.06) 0 2px, transparent 2px 24px),
    radial-gradient(circle at 52% 24%, rgba(255, 210, 31, 0.2), transparent 18rem),
    radial-gradient(circle at 82% 76%, rgba(36, 198, 255, 0.18), transparent 22rem),
    linear-gradient(155deg, #171001 0%, #241202 42%, #12011f 100%);
}

body.theme-aurora::before {
  background-image:
    linear-gradient(110deg, transparent 0 38%, rgba(255, 255, 255, 0.16) 39% 40%, transparent 41%),
    radial-gradient(circle, rgba(255, 255, 255, 0.42) 0 1px, transparent 1.6px);
  background-size: 220px 220px, 92px 92px;
  opacity: 0.24;
}

body.theme-comet::before {
  background-image:
    linear-gradient(120deg, transparent 0 44%, rgba(255, 255, 255, 0.18) 45% 46%, transparent 47%),
    radial-gradient(circle, rgba(255, 255, 255, 0.5) 0 1px, transparent 1.4px);
  background-size: 180px 180px, 78px 78px;
  opacity: 0.22;
}

body.theme-eclipse::before {
  background-image:
    radial-gradient(circle, rgba(255, 204, 77, 0.45) 0 1px, transparent 1.6px),
    radial-gradient(circle, rgba(255, 255, 255, 0.24) 0 1px, transparent 1.8px);
  background-size: 120px 120px, 190px 190px;
  opacity: 0.18;
}

body.theme-radar::before {
  background-image:
    radial-gradient(circle, rgba(92, 255, 223, 0.34) 0 1px, transparent 1.6px),
    repeating-radial-gradient(circle at 20% 30%, transparent 0 54px, rgba(216, 255, 114, 0.08) 55px 56px);
  background-size: 82px 82px, 520px 520px;
  opacity: 0.28;
}

body.theme-violet::before {
  background-image:
    radial-gradient(ellipse, rgba(255, 155, 84, 0.28) 0 1px, transparent 1.6px),
    linear-gradient(150deg, transparent 0 48%, rgba(210, 82, 255, 0.12) 49% 50%, transparent 51%);
  background-size: 98px 78px, 240px 240px;
  opacity: 0.24;
}

body.theme-cosmic::before {
  background-image:
    radial-gradient(circle, rgba(77, 255, 210, 0.45) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(255, 79, 224, 0.34) 0 1px, transparent 1.7px);
  background-size: 64px 64px, 142px 142px;
  opacity: 0.3;
}

body.theme-pulse::before {
  background-image:
    linear-gradient(90deg, transparent 0 48%, rgba(255, 210, 31, 0.14) 49% 50%, transparent 51%),
    radial-gradient(circle, rgba(255, 255, 255, 0.38) 0 1px, transparent 1.5px);
  background-size: 58px 58px, 110px 110px;
  opacity: 0.22;
}

body.theme-aurora::after {
  top: 0;
  bottom: 0;
  height: auto;
  background:
    linear-gradient(105deg, transparent 0 10%, rgba(28, 255, 183, 0.16) 11% 17%, transparent 18% 34%, rgba(247, 163, 255, 0.16) 35% 43%, transparent 44%),
    linear-gradient(75deg, transparent 0 58%, rgba(127, 53, 255, 0.16) 59% 65%, transparent 66%);
  background-size: 160% 160%, 140% 140%;
  animation: aurora-flow 12s ease-in-out infinite alternate;
}

body.theme-comet::after {
  top: -30vh;
  bottom: auto;
  left: -20vw;
  right: -20vw;
  height: 130vh;
  background:
    linear-gradient(125deg, transparent 0 37%, rgba(255, 255, 255, 0.72) 38%, rgba(125, 252, 255, 0.28) 39%, transparent 43%),
    linear-gradient(125deg, transparent 0 64%, rgba(255, 57, 127, 0.6) 65%, rgba(255, 255, 255, 0.4) 66%, transparent 70%);
  background-size: 520px 520px, 760px 760px;
  animation: meteor-fall 4.8s linear infinite;
  opacity: 0.7;
}

body.theme-eclipse::after {
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  width: 86vmin;
  height: 86vmin;
  border-radius: 50%;
  background:
    conic-gradient(from 0deg, transparent, rgba(255, 204, 77, 0.28), transparent 30%, rgba(91, 44, 255, 0.26), transparent 70%),
    radial-gradient(circle, transparent 0 47%, rgba(255, 204, 77, 0.08) 48% 51%, transparent 52%);
  transform: translate(-50%, -50%);
  animation: eclipse-spin 18s linear infinite;
  opacity: 0.74;
}

body.theme-radar::after {
  top: 0;
  bottom: 0;
  height: auto;
  background:
    conic-gradient(from 0deg at 18% 24%, rgba(92, 255, 223, 0.38), transparent 14%, transparent),
    repeating-radial-gradient(circle at 18% 24%, transparent 0 72px, rgba(216, 255, 114, 0.08) 73px 75px);
  animation: radar-sweep-bg 5.5s linear infinite;
  opacity: 0.58;
}

body.theme-violet::after {
  top: 0;
  bottom: 0;
  height: auto;
  background:
    radial-gradient(circle at 14% 82%, rgba(255, 155, 84, 0.28) 0 46px, transparent 48px),
    radial-gradient(circle at 78% 18%, rgba(121, 220, 255, 0.2) 0 58px, transparent 60px),
    radial-gradient(circle at 50% 54%, rgba(210, 82, 255, 0.18) 0 90px, transparent 92px);
  animation: lab-orbs 9s ease-in-out infinite alternate;
}

body.theme-cosmic::after {
  top: 0;
  bottom: 0;
  height: auto;
  background:
    radial-gradient(circle at 84% 28%, rgba(77, 255, 210, 0.28) 0 70px, transparent 72px),
    radial-gradient(circle at 18% 70%, rgba(98, 70, 255, 0.22) 0 110px, transparent 112px),
    linear-gradient(38deg, transparent 0 45%, rgba(255, 79, 224, 0.12) 46% 47%, transparent 48%);
  animation: cosmic-drift 13s ease-in-out infinite alternate;
}

body.theme-pulse::after {
  top: 0;
  bottom: 0;
  height: auto;
  background:
    linear-gradient(180deg, transparent 0 38%, rgba(255, 210, 31, 0.16) 39% 40%, transparent 41%),
    radial-gradient(circle at 50% 30%, rgba(187, 76, 255, 0.18), transparent 28rem);
  background-size: 100% 220px, 100% 100%;
  animation: pulse-scan 3.6s linear infinite;
}

@keyframes aurora-flow {
  from {
    background-position: 0% 20%, 100% 40%;
    filter: hue-rotate(0deg);
  }
  to {
    background-position: 100% 70%, 0% 60%;
    filter: hue-rotate(18deg);
  }
}

@keyframes neon-orbit-bg {
  from {
    background-position: 0 0, -120px 0, 100px -80px;
    filter: saturate(1);
  }
  to {
    background-position: 90px 60px, 160px 180px, -140px 130px;
    filter: saturate(1.28);
  }
}

@keyframes meteor-fall {
  from {
    background-position: -320px -420px, 180px -760px;
  }
  to {
    background-position: 620px 520px, 960px 240px;
  }
}

@keyframes eclipse-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg) scale(0.96);
  }
  50% {
    transform: translate(-50%, -50%) rotate(180deg) scale(1.04);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg) scale(0.96);
  }
}

@keyframes radar-sweep-bg {
  from {
    filter: hue-rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    filter: hue-rotate(24deg);
    transform: rotate(360deg);
  }
}

@keyframes lab-orbs {
  from {
    background-position: 0 0, 0 0, 0 0;
    transform: scale(1);
  }
  to {
    background-position: 80px -90px, -120px 130px, 40px 70px;
    transform: scale(1.04);
  }
}

@keyframes cosmic-drift {
  from {
    background-position: 0 0, 0 0, -80px 0;
  }
  to {
    background-position: -120px 90px, 140px -70px, 180px 0;
  }
}

@keyframes pulse-scan {
  from {
    background-position: 0 -220px, 0 0;
  }
  to {
    background-position: 0 100vh, 0 0;
  }
}

/* Distinct layout systems per domain theme. Structure stays identical; presentation changes hard. */
.theme-aurora .hero {
  grid-template-columns: 1fr;
  min-height: auto;
  padding-top: 42px;
  text-align: center;
}

.theme-aurora h1,
.theme-aurora .hero-copy,
.theme-aurora .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.theme-aurora h1 {
  max-width: 15ch;
}

.theme-aurora .hero-actions,
.theme-aurora .stats {
  justify-content: center;
}

.theme-aurora .visual {
  min-height: 620px;
}

.theme-aurora .section {
  width: min(980px, calc(100% - 32px));
}

.theme-aurora .product-wrap,
.theme-aurora .proof-grid {
  grid-template-columns: 1fr;
}

.theme-aurora .feature-card {
  text-align: center;
  min-height: 190px;
}

.theme-comet .topbar {
  position: relative;
  border-bottom: 0;
  background: transparent;
}

.theme-comet .nav {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 18px;
  background: rgba(33, 4, 15, 0.78);
}

.theme-comet .hero {
  grid-template-columns: 0.82fr 1.18fr;
  transform: skewY(-2deg);
  padding-top: 82px;
}

.theme-comet .hero > * {
  transform: skewY(2deg);
}

.theme-comet h1 {
  max-width: 10ch;
  text-transform: uppercase;
}

.theme-comet .section {
  transform: skewY(-1.2deg);
  padding-top: 92px;
}

.theme-comet .section > *,
.theme-comet .cta-band {
  transform: skewY(1.2deg);
}

.theme-comet .product-wrap {
  grid-template-columns: 1.25fr 0.75fr;
}

.theme-comet .device {
  order: 2;
  min-height: 660px;
}

.theme-eclipse .nav {
  width: min(760px, calc(100% - 32px));
  grid-template-columns: 1fr auto;
}

.theme-eclipse .nav-links {
  display: none;
}

.theme-eclipse .hero {
  grid-template-columns: 1fr;
  width: min(860px, calc(100% - 32px));
  text-align: left;
}

.theme-eclipse h1 {
  max-width: 100%;
  font-size: clamp(2.1rem, 7vw, 5.6rem);
}

.theme-eclipse .hero-copy {
  max-width: 82ch;
}

.theme-eclipse .stats {
  grid-template-columns: repeat(3, 180px);
}

.theme-eclipse .visual {
  min-height: 560px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.theme-eclipse .feature-grid,
.theme-eclipse .spec-grid {
  grid-template-columns: 1fr;
}

.theme-eclipse .feature-card,
.theme-eclipse .spec-card,
.theme-eclipse .faq-item {
  display: grid;
  grid-template-columns: 74px 0.55fr 1fr;
  align-items: center;
  gap: 18px;
}

.theme-eclipse .feature-card p,
.theme-eclipse .spec-card ul,
.theme-eclipse .faq-item p {
  margin: 0;
}

.theme-radar .topbar {
  border-bottom: 1px solid rgba(92, 255, 223, 0.24);
  background: rgba(7, 19, 15, 0.86);
}

.theme-radar .nav {
  width: min(1240px, calc(100% - 32px));
  min-height: 86px;
  grid-template-columns: auto 1fr auto;
  align-content: center;
}

.theme-radar .brand {
  grid-template-columns: 48px 1fr;
}

.theme-radar .nav-links {
  display: flex;
  justify-self: center;
  margin-top: 0;
}

.theme-radar .nav-links a,
.theme-radar .nav-cta {
  width: auto;
  justify-content: center;
}

.theme-radar .hero,
.theme-radar .section,
.theme-radar .cta-band,
.theme-radar .footer-inner,
.theme-radar .copyright {
  width: min(1240px, calc(100% - 32px));
}

.theme-radar .hero {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: 28px;
}

.theme-radar .hero-content {
  padding: 28px;
  border: 1px solid rgba(92, 255, 223, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(92, 255, 223, 0.1), transparent 46%),
    rgba(255, 255, 255, 0.045);
}

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

.theme-radar .feature-card {
  grid-column: auto;
  min-height: 248px;
}

.theme-radar .feature-card:nth-child(1),
.theme-radar .feature-card:nth-child(6) {
  grid-column: span 2;
}

.theme-radar .product-wrap {
  grid-template-columns: 1fr 1fr;
}

.theme-radar .proof-grid {
  grid-template-columns: 1fr 1fr;
}

.theme-violet .hero {
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  direction: rtl;
}

.theme-violet .hero > * {
  direction: ltr;
}

.theme-violet .hero-content {
  padding: 34px;
  border-left: 6px solid var(--brand-3);
  background: linear-gradient(90deg, rgba(255, 155, 84, 0.12), transparent);
}

.theme-violet h1 {
  max-width: 11ch;
  font-size: clamp(2.15rem, 5.2vw, 5.1rem);
}

.theme-violet .section-head {
  margin-left: 0;
  padding-left: 22px;
  border-left: 4px solid var(--brand-3);
}

.theme-violet .feature-grid {
  grid-template-columns: 1.35fr 0.8fr 0.85fr;
}

.theme-violet .feature-card:nth-child(1) {
  grid-row: span 2;
  min-height: 466px;
}

.theme-violet .product-wrap {
  grid-template-columns: 0.7fr 1.3fr;
}

.theme-violet .product-panel {
  order: -1;
}

.theme-cosmic .hero {
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  padding-left: max(28px, calc((100vw - var(--max)) / 2));
  padding-right: max(28px, calc((100vw - var(--max)) / 2));
}

.theme-cosmic .hero-content {
  align-self: stretch;
  display: grid;
  align-content: center;
  padding: 54px;
  background:
    linear-gradient(135deg, rgba(98, 70, 255, 0.14), transparent),
    rgba(255, 255, 255, 0.05);
  clip-path: polygon(0 0, 92% 0, 100% 100%, 0 100%);
}

.theme-cosmic h1 {
  max-width: 13ch;
}

.theme-cosmic .stats {
  grid-template-columns: repeat(3, minmax(150px, 190px));
}

.theme-cosmic .section {
  width: min(1260px, calc(100% - 32px));
}

.theme-cosmic .feature-grid,
.theme-cosmic .spec-grid {
  grid-template-columns: repeat(4, 1fr);
}

.theme-cosmic .feature-card:nth-child(1),
.theme-cosmic .feature-card:nth-child(4),
.theme-cosmic .spec-card:first-child {
  grid-column: span 2;
}

.theme-pulse .topbar {
  background: rgba(23, 16, 1, 0.88);
}

.theme-pulse .nav {
  min-height: 92px;
}

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

.theme-pulse .hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: end;
}

.theme-pulse .hero-copy {
  grid-column: 2;
  grid-row: 2 / span 2;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 210, 31, 0.08);
}

.theme-pulse .eyebrow,
.theme-pulse h1,
.theme-pulse .hero-actions,
.theme-pulse .stats {
  grid-column: 1;
}

.theme-pulse h1 {
  max-width: 14ch;
  font-size: clamp(2.25rem, 6.2vw, 5.8rem);
}

.theme-pulse .visual {
  min-height: 630px;
}

.theme-pulse .product-wrap {
  grid-template-columns: 1fr;
}

.theme-pulse .device {
  min-height: 360px;
}

.theme-pulse .phone {
  transform: translate(-50%, -50%) rotate(90deg);
  width: 430px;
  height: 250px;
}

.theme-pulse .proof-grid {
  grid-template-columns: 0.75fr 1.25fr;
}

.visual > [class$="-stage"] {
  position: relative;
  width: min(100%, 540px);
  min-height: 540px;
}

.aurora-stage {
  border: 1px solid var(--line);
  border-radius: 36px 8px 36px 8px;
  background:
    linear-gradient(120deg, rgba(28, 255, 183, 0.16), transparent 34%),
    linear-gradient(220deg, rgba(247, 163, 255, 0.2), transparent 38%),
    rgba(255, 255, 255, 0.05);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.aurora-curtain {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, transparent 0 12%, rgba(28, 255, 183, 0.28) 13% 20%, transparent 22% 34%, rgba(127, 53, 255, 0.4) 35% 43%, transparent 45%),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(255, 255, 255, 0.08) 35px 37px);
  filter: blur(1px);
}

.capsule-window {
  position: absolute;
  left: 54px;
  top: 58px;
  right: 54px;
  height: 230px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 160px 160px 26px 26px;
  background: radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.18), transparent 30%), rgba(4, 2, 18, 0.62);
}

.capsule-window span {
  position: absolute;
  bottom: 36px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.capsule-window span:nth-child(1) {
  left: 54px;
}

.capsule-window span:nth-child(2) {
  left: 50%;
  transform: translateX(-50%) scale(1.25);
}

.capsule-window span:nth-child(3) {
  right: 54px;
}

.float-astro {
  position: absolute;
  width: 138px;
  height: 190px;
  border-radius: 66px 66px 44px 44px;
  background: linear-gradient(180deg, #fff, #c9c1ff);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

.float-astro::before {
  content: "";
  position: absolute;
  left: 23px;
  right: 23px;
  top: 28px;
  height: 52px;
  border-radius: 999px;
  background: linear-gradient(135deg, #10061d, var(--brand));
}

.astro-side {
  right: 54px;
  top: 210px;
  transform: rotate(11deg);
}

.glass-console {
  position: absolute;
  left: 42px;
  bottom: 46px;
  width: 280px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px 36px 8px 36px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.glass-console strong,
.glass-console span {
  display: block;
}

.glass-console i {
  display: block;
  height: 12px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-2), var(--brand-3), var(--brand));
}

.comet-stage {
  overflow: hidden;
  border-radius: 8px 80px 8px 80px;
}

.comet-tail {
  position: absolute;
  left: -18%;
  top: 44%;
  width: 92%;
  height: 96px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 57, 127, 0.35), rgba(125, 252, 255, 0.74));
  filter: blur(2px);
  transform: rotate(-19deg);
}

.rocket-body {
  position: absolute;
  right: 76px;
  top: 208px;
  width: 250px;
  height: 92px;
  border-radius: 60px 18px 18px 60px;
  background: linear-gradient(180deg, #fff, #bbb4ff 58%, var(--brand));
  transform: rotate(-19deg);
  box-shadow: var(--shadow);
}

.rocket-body::before {
  content: "";
  position: absolute;
  right: -42px;
  top: 22px;
  border-left: 56px solid var(--brand-2);
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
}

.rocket-body::after {
  content: "";
  position: absolute;
  left: 52px;
  top: 23px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #17051f;
  border: 8px solid rgba(255, 255, 255, 0.72);
}

.rider-astro {
  position: absolute;
  right: 220px;
  top: 116px;
  width: 102px;
  height: 134px;
  border-radius: 48px 48px 32px 32px;
  background: linear-gradient(180deg, #fff, #d9ccff);
  transform: rotate(-19deg);
}

.rider-astro::before {
  content: "";
  position: absolute;
  inset: 22px 20px auto;
  height: 38px;
  border-radius: 999px;
  background: #14051e;
  border: 4px solid var(--brand-3);
}

.score-chip {
  position: absolute;
  right: 26px;
  bottom: 74px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--brand-3);
  font-size: 2rem;
  font-weight: 900;
}

.eclipse-stage {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 204, 77, 0.18), transparent 62%);
}

.black-hole {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #030108 0 36%, transparent 37%),
    conic-gradient(from 40deg, var(--brand), var(--brand-3), var(--brand-2), var(--brand));
  box-shadow: 0 0 90px rgba(91, 44, 255, 0.55);
}

.helmet-core {
  position: absolute;
  width: 192px;
  height: 160px;
  border-radius: 92px 92px 48px 48px;
  background: linear-gradient(180deg, #f6f2ff, #a69bff);
  box-shadow: var(--shadow);
}

.helmet-core::before {
  content: "";
  position: absolute;
  left: 32px;
  right: 32px;
  top: 34px;
  height: 62px;
  border-radius: 999px;
  background: linear-gradient(135deg, #05020d, var(--brand));
}

.data-moon {
  position: absolute;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #fff, var(--brand-2));
}

.moon-a {
  left: 54px;
  top: 86px;
}

.moon-b {
  right: 62px;
  bottom: 88px;
  transform: scale(0.7);
}

.engine-label {
  position: absolute;
  bottom: 34px;
  padding: 14px 20px;
  border-radius: 8px;
  background: #fff;
  color: #14051e;
  font-weight: 900;
}

.radar-stage {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(216, 255, 114, 0.08), transparent),
    rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.radar-scope {
  position: absolute;
  left: 34px;
  top: 54px;
  width: 316px;
  height: 316px;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, 0.18) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(255, 255, 255, 0.18) 50%, transparent 51%),
    repeating-radial-gradient(circle, rgba(255, 255, 255, 0.18) 0 2px, transparent 3px 44px),
    conic-gradient(from 20deg, rgba(92, 255, 223, 0.62), transparent 28%, transparent);
  border: 1px solid var(--line);
}

.hex-grid {
  position: absolute;
  right: 34px;
  top: 74px;
  width: 188px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.hex-grid span {
  height: 54px;
  display: grid;
  place-items: center;
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  background: rgba(255, 255, 255, 0.11);
  color: var(--brand-3);
  font-size: 0.68rem;
  font-weight: 900;
}

.platinum-astro {
  position: absolute;
  right: 94px;
  bottom: 44px;
  width: 142px;
  height: 178px;
  border-radius: 70px 70px 42px 42px;
  background: linear-gradient(180deg, #fff, #c9c9d8);
  box-shadow: var(--shadow);
}

.platinum-astro::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 28px;
  height: 54px;
  border-radius: 999px;
  background: linear-gradient(135deg, #05020d, var(--brand-2));
}

.lab-stage {
  border-radius: 44px 44px 8px 8px;
  background:
    linear-gradient(180deg, rgba(210, 82, 255, 0.16), transparent),
    rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  overflow: hidden;
}

.tube {
  position: absolute;
  left: 52px;
  top: 34px;
  width: 220px;
  height: 430px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 110px 110px 28px 28px;
  background: linear-gradient(180deg, rgba(121, 220, 255, 0.18), rgba(210, 82, 255, 0.22));
  box-shadow: inset 0 0 60px rgba(121, 220, 255, 0.22), var(--shadow);
}

.tube::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 28px;
  height: 16px;
  border-radius: 999px;
  background: var(--brand-2);
}

.tube-astro {
  position: absolute;
  left: 50%;
  top: 120px;
  width: 124px;
  height: 158px;
  border-radius: 64px 64px 38px 38px;
  background: linear-gradient(180deg, #fff, #e1c9ff);
  transform: translateX(-50%) rotate(-8deg);
}

.tube-astro::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 26px;
  height: 44px;
  border-radius: 999px;
  background: #16021d;
}

.lab-panel {
  position: absolute;
  right: 42px;
  top: 118px;
  width: 220px;
  display: grid;
  gap: 12px;
}

.lab-panel strong,
.lab-panel span {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.lab-panel strong {
  color: var(--brand-3);
}

.command-stage {
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
}

.holo-cube {
  width: 270px;
  height: 270px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(77, 255, 210, 0.42);
  background:
    linear-gradient(135deg, rgba(98, 70, 255, 0.36), rgba(255, 79, 224, 0.14)),
    rgba(255, 255, 255, 0.04);
  transform: rotateX(58deg) rotateZ(45deg);
  box-shadow: 0 0 90px rgba(77, 255, 210, 0.22);
}

.holo-cube span,
.holo-cube b {
  transform: rotateZ(-45deg) rotateX(-58deg);
}

.holo-cube span {
  font-size: 3rem;
  font-weight: 900;
}

.holo-cube b {
  color: var(--brand-3);
}

.command-astro {
  position: absolute;
  right: 70px;
  top: 62px;
  width: 132px;
  height: 174px;
  border-radius: 66px 66px 40px 40px;
  background: linear-gradient(180deg, #fff, #b9b0ff);
  transform: rotate(18deg);
  box-shadow: var(--shadow);
}

.command-astro::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 30px;
  height: 48px;
  border-radius: 999px;
  background: linear-gradient(135deg, #030614, var(--brand-2));
}

.orbit-bars {
  position: absolute;
  left: 54px;
  bottom: 90px;
  width: 250px;
  display: grid;
  gap: 12px;
}

.orbit-bars i {
  display: block;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
}

.orbit-bars i:nth-child(2) {
  width: 78%;
}

.orbit-bars i:nth-child(3) {
  width: 56%;
}

.pulse-stage {
  border-radius: 8px;
  overflow: hidden;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0 2px, transparent 3px 18px),
    radial-gradient(circle at 50% 34%, rgba(255, 210, 31, 0.16), transparent 32%),
    rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
}

.poster-astro {
  position: absolute;
  left: 50%;
  top: 68px;
  width: 210px;
  height: 286px;
  border-radius: 104px 104px 52px 52px;
  background: linear-gradient(180deg, #fff, #dfd0ff 55%, var(--brand));
  transform: translateX(-50%);
  box-shadow: var(--shadow);
}

.poster-astro::before {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  top: 42px;
  height: 74px;
  border-radius: 999px;
  background: linear-gradient(135deg, #090018, var(--brand-2));
  border: 6px solid rgba(255, 255, 255, 0.7);
}

.booster-ring {
  position: absolute;
  left: 50%;
  top: 148px;
  width: 410px;
  height: 160px;
  border: 12px solid var(--brand-3);
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  transform: translateX(-50%) rotate(-12deg);
}

.pulse-card {
  position: absolute;
  left: 42px;
  right: 42px;
  bottom: 42px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(12, 2, 23, 0.82);
  backdrop-filter: blur(14px);
}

.pulse-card strong {
  color: var(--brand-3);
  font-size: 1.35rem;
}

.theme-cosmic .visual {
  perspective: 900px;
}

@media (max-width: 980px) {
  .theme-radar .site-shell {
    display: block;
  }

  .theme-radar .topbar {
    position: sticky;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .theme-radar .nav {
    width: min(var(--max), calc(100% - 32px));
    min-height: 76px;
    padding: 0;
    grid-template-columns: auto 1fr auto;
    align-content: center;
  }

  .theme-radar .nav-links {
    display: none;
  }

  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .product-wrap,
  .proof-grid,
  .content-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .content-side {
    position: static;
  }

  .theme-comet .hero,
  .theme-comet .section,
  .theme-comet .section > *,
  .theme-comet .cta-band {
    transform: none;
  }

  .theme-eclipse .feature-card,
  .theme-eclipse .spec-card,
  .theme-eclipse .faq-item,
  .theme-pulse .hero-content,
  .theme-cosmic .hero,
  .theme-violet .hero {
    grid-template-columns: 1fr;
  }

  .theme-pulse .hero-copy,
  .theme-pulse .eyebrow,
  .theme-pulse h1,
  .theme-pulse .hero-actions,
  .theme-pulse .stats {
    grid-column: auto;
    grid-row: auto;
  }

  .theme-cosmic .hero {
    width: min(var(--max), calc(100% - 32px));
    padding-left: 0;
    padding-right: 0;
  }

  .theme-cosmic .hero-content {
    clip-path: none;
    padding: 28px;
  }

  .theme-aurora .hero-content,
  .theme-aurora .visual {
    order: initial;
  }

  .visual {
    min-height: 420px;
  }

  .gif-stage {
    width: min(100%, 460px);
  }

  .visual > [class$="-stage"] {
    min-height: 440px;
  }

  .feature-grid,
  .theme-aurora .feature-grid,
  .theme-radar .feature-grid,
  .theme-comet .feature-grid,
  .theme-violet .feature-grid,
  .theme-cosmic .feature-grid,
  .theme-cosmic .spec-grid,
  .spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .theme-cosmic .feature-card:nth-child(1),
  .theme-cosmic .feature-card:nth-child(4),
  .theme-cosmic .spec-card:first-child,
  .theme-radar .feature-card,
  .theme-radar .feature-card:nth-child(1),
  .theme-radar .feature-card:nth-child(6),
  .theme-violet .feature-card:nth-child(1) {
    grid-column: auto;
    grid-row: auto;
    min-height: 226px;
  }
}

@media (max-width: 640px) {
  .nav {
    min-height: 68px;
    width: min(var(--max), calc(100% - 24px));
    gap: 12px;
  }

  .brand {
    grid-template-columns: 36px auto;
  }

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

  .brand-name {
    font-size: 0.78rem;
  }

  .brand-domain {
    max-width: 20ch;
    font-size: 0.7rem;
  }

  .nav-cta {
    min-height: 38px;
    padding: 8px 10px;
    font-size: 0.84rem;
  }

  .hero,
  .section,
  .cta-band,
  .footer-inner,
  .copyright {
    width: min(var(--max), calc(100% - 24px));
  }

  .hero {
    min-height: auto;
    padding-top: 36px;
    gap: 22px;
  }

  h1 {
    max-width: 15ch;
    font-size: clamp(1.85rem, 9vw, 2.65rem);
    line-height: 1.08;
  }

  .stats,
  .feature-grid,
  .theme-aurora .feature-grid,
  .theme-radar .feature-grid,
  .theme-comet .feature-grid,
  .theme-violet .feature-grid,
  .theme-cosmic .feature-grid,
  .theme-cosmic .spec-grid,
  .spec-grid,
  .product-meta,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .theme-eclipse .stats,
  .theme-cosmic .stats {
    grid-template-columns: 1fr;
  }

  .theme-aurora .section,
  .theme-radar .hero,
  .theme-radar .section,
  .theme-radar .cta-band,
  .theme-radar .footer-inner,
  .theme-radar .copyright {
    width: min(var(--max), calc(100% - 24px));
  }

  .theme-violet .hero-content,
  .theme-pulse .hero-copy {
    padding: 18px;
  }

  .theme-pulse .phone {
    transform: translate(-50%, -50%) rotate(0deg);
    width: 228px;
    height: 410px;
  }

  .visual {
    min-height: 350px;
  }

  .gif-stage {
    width: min(100%, 340px);
    padding: 9px;
  }

  .gif-signal {
    left: 18px;
    right: 18px;
    bottom: 18px;
    min-height: 56px;
    padding: 11px 12px;
    display: grid;
    gap: 2px;
  }

  .visual > [class$="-stage"] {
    min-height: 360px;
  }

  .aurora-stage,
  .radar-stage,
  .lab-stage,
  .pulse-stage {
    overflow: hidden;
  }

  .capsule-window {
    left: 24px;
    right: 24px;
    top: 34px;
    height: 154px;
  }

  .capsule-window span {
    width: 42px;
    height: 42px;
    bottom: 26px;
  }

  .capsule-window span:nth-child(1) {
    left: 34px;
  }

  .capsule-window span:nth-child(3) {
    right: 34px;
  }

  .astro-side,
  .float-astro {
    width: 96px;
    height: 132px;
  }

  .astro-side {
    right: 28px;
    top: 154px;
  }

  .glass-console {
    left: 22px;
    bottom: 24px;
    width: 210px;
  }

  .rocket-body {
    right: 34px;
    top: 150px;
    width: 190px;
    height: 70px;
  }

  .rider-astro {
    right: 170px;
    top: 86px;
    width: 76px;
    height: 100px;
  }

  .score-chip {
    right: 18px;
    bottom: 38px;
    font-size: 1.25rem;
  }

  .black-hole {
    width: 260px;
    height: 260px;
  }

  .helmet-core {
    width: 144px;
    height: 122px;
  }

  .moon-a {
    left: 26px;
    top: 62px;
  }

  .moon-b {
    right: 28px;
    bottom: 60px;
  }

  .radar-scope {
    left: 18px;
    top: 34px;
    width: 230px;
    height: 230px;
  }

  .hex-grid {
    right: 18px;
    top: 52px;
    width: 132px;
  }

  .hex-grid span {
    height: 40px;
    font-size: 0.54rem;
  }

  .platinum-astro {
    right: 42px;
    bottom: 28px;
    width: 102px;
    height: 130px;
  }

  .tube {
    left: 24px;
    top: 28px;
    width: 146px;
    height: 292px;
  }

  .tube-astro {
    top: 86px;
    width: 86px;
    height: 110px;
  }

  .lab-panel {
    right: 18px;
    top: 72px;
    width: 160px;
  }

  .holo-cube {
    width: 190px;
    height: 190px;
  }

  .command-astro {
    right: 28px;
    top: 44px;
    width: 92px;
    height: 122px;
  }

  .orbit-bars {
    left: 28px;
    bottom: 54px;
    width: 178px;
  }

  .poster-astro {
    top: 44px;
    width: 146px;
    height: 202px;
  }

  .booster-ring {
    top: 100px;
    width: 280px;
    height: 112px;
  }

  .pulse-card {
    left: 20px;
    right: 20px;
    bottom: 24px;
    display: grid;
  }

  .astronaut {
    width: 128px;
  }

  .signal-card {
    width: 190px;
    padding: 14px;
  }

  .phone {
    width: 228px;
    height: 410px;
  }

  .device {
    min-height: 450px;
  }

  .cta-band {
    padding: 28px 20px;
  }
}
