﻿:root {
  --bg-0: #070210;
  --bg-1: #110821;
  --bg-2: #1a1032;
  --surface: rgba(23, 14, 45, 0.8);
  --surface-2: rgba(30, 19, 58, 0.9);
  --stroke: rgba(200, 171, 255, 0.3);
  --stroke-soft: rgba(200, 171, 255, 0.14);
  --text: #f2ecff;
  --muted: #c0b3e4;
  --violet: #c87bff;
  --violet-strong: #9263ff;
  --aqua: #89f7ff;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Manrope, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 0%, rgba(122, 90, 255, 0.24), transparent 40%),
    radial-gradient(circle at 92% 100%, rgba(200, 123, 255, 0.22), transparent 46%),
    linear-gradient(170deg, var(--bg-0), var(--bg-1) 50%, var(--bg-2));
  overflow-x: hidden;
}

#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -4;
  pointer-events: none;
  opacity: 0.92;
}

.bg-gradient {
  position: fixed;
  width: 46vmax;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(52px);
  pointer-events: none;
  z-index: -3;
}

.bg-gradient-a {
  top: -14vmax;
  left: -8vmax;
  background: radial-gradient(circle, rgba(182, 96, 255, 0.32), rgba(182, 96, 255, 0));
  animation: drift-a 14s ease-in-out infinite;
}

.bg-gradient-b {
  right: -12vmax;
  bottom: -16vmax;
  background: radial-gradient(circle, rgba(106, 97, 255, 0.32), rgba(106, 97, 255, 0));
  animation: drift-b 16s ease-in-out infinite;
}

.topbar {
  width: min(var(--max), calc(100% - 2rem));
  margin: 1rem auto 0;
  padding: 0.75rem 1rem;
  position: sticky;
  top: 0.9rem;
  z-index: 40;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-radius: 999px;
  border: 1px solid var(--stroke-soft);
  background: rgba(12, 9, 25, 0.68);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  width: 0.84rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(from 200deg, var(--violet), #f4a8ff, var(--violet-strong), var(--violet));
  box-shadow: 0 0 22px rgba(197, 121, 255, 0.82);
}

.brand-text {
  font-family: Orbitron, sans-serif;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}

.brand-text strong {
  color: #ffffff;
}

.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.93rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #fff;
}

.section {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  padding-top: clamp(4.5rem, 11vw, 6.9rem);
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  color: #d6b8ff;
  font-family: Orbitron, sans-serif;
}

.hero h1 {
  margin: 0.9rem 0 1rem;
  max-width: 16ch;
  font-family: Orbitron, sans-serif;
  font-size: clamp(2.05rem, 6vw, 4.5rem);
  line-height: 1.03;
}

.hero h1 span {
  color: var(--violet);
  text-shadow: 0 0 28px rgba(200, 123, 255, 0.56);
}

.hero-copy {
  max-width: 66ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.14rem);
}

.hero-actions {
  margin-top: 1.7rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.status-row {
  margin-top: 1.65rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.status-pill {
  border: 1px solid var(--stroke);
  border-radius: 0.95rem;
  padding: 0.85rem 0.9rem;
  background: linear-gradient(165deg, rgba(45, 28, 85, 0.84), rgba(18, 12, 34, 0.94));
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.status-pill.pulse {
  border-color: rgba(137, 247, 255, 0.92);
  box-shadow: 0 0 0 1px rgba(137, 247, 255, 0.35), 0 0 22px rgba(137, 247, 255, 0.22);
}

.status-label {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d9c2ff;
  font-family: Orbitron, sans-serif;
}

.status-pill h3 {
  margin: 0.45rem 0 0;
  font-size: 1.42rem;
  font-family: Orbitron, sans-serif;
}

.status-sub {
  margin: 0.3rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.client-panel {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 0.8rem;
}

.client-card,
.client-stats,
.addon-card,
.faq-grid article {
  border: 1px solid var(--stroke);
  background: linear-gradient(160deg, rgba(44, 28, 83, 0.84), rgba(19, 13, 36, 0.95));
  border-radius: 1rem;
}

.client-card {
  padding: 1.15rem;
}

.client-card h3 {
  margin: 0.64rem 0 0;
  font-family: Orbitron, sans-serif;
  font-size: 1.2rem;
}

.client-card p {
  color: var(--muted);
}

.client-card ul {
  margin: 0.72rem 0 0;
  padding-left: 1rem;
  color: #d9cef6;
}

.client-card li + li {
  margin-top: 0.36rem;
}

.client-stats {
  padding: 0.7rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}

.client-stats div {
  padding: 0.86rem 0.9rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.8rem;
}

.client-stats h4 {
  margin: 0;
  font-family: Orbitron, sans-serif;
  color: var(--aqua);
  font-size: 1.36rem;
}

.client-stats p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.section-head {
  max-width: 68ch;
}

.section-head h2 {
  margin: 0.65rem 0 0;
  font-family: Orbitron, sans-serif;
  font-size: clamp(1.52rem, 4vw, 2.22rem);
}

.section-head p {
  margin: 0.65rem 0 0;
  color: var(--muted);
}

.addon-section,
.cta,
.faq {
  padding-top: 2.8rem;
}

.install-section {
  padding-top: 2.8rem;
}

.install-shell {
  margin-top: 0.9rem;
  border: 1px solid rgba(149, 121, 224, 0.42);
  border-radius: 1.15rem;
  padding: 1rem;
  background:
    radial-gradient(circle at 12% 4%, rgba(152, 96, 255, 0.14), transparent 38%),
    radial-gradient(circle at 90% 88%, rgba(109, 95, 255, 0.14), transparent 44%),
    linear-gradient(160deg, rgba(12, 8, 23, 0.97), rgba(8, 6, 16, 0.99));
  box-shadow:
    0 24px 36px rgba(3, 2, 9, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  position: relative;
  overflow: hidden;
}

.install-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
  mask-image: linear-gradient(to bottom, black 0%, transparent 68%);
}

.install-spotlight {
  border: 1px solid rgba(209, 170, 255, 0.42);
  border-radius: 1.05rem;
  background:
    linear-gradient(145deg, rgba(56, 36, 100, 0.82), rgba(20, 13, 38, 0.94));
  padding: 1rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 0.8rem;
  box-shadow: 0 20px 34px rgba(10, 5, 20, 0.32);
}

.install-spotlight-copy h2 {
  margin-top: 0.55rem;
}

.install-spotlight-copy p {
  margin-top: 0.7rem;
}

.install-spotlight-badge {
  border: 1px solid rgba(198, 154, 255, 0.32);
  border-radius: 0.95rem;
  padding: 0.9rem;
  background:
    radial-gradient(circle at 70% 10%, rgba(196, 132, 255, 0.16), transparent 42%),
    rgba(18, 14, 36, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.install-spotlight-badge p {
  margin: 0;
  color: #d8c9ff;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: Orbitron, sans-serif;
}

.install-spotlight-badge h3 {
  margin: 0.45rem 0 0;
  font-family: Orbitron, sans-serif;
  font-size: 1.03rem;
  color: #f1e8ff;
}

.install-spotlight-badge span {
  margin-top: 0.3rem;
  color: #b9abd9;
  font-size: 0.8rem;
}

.install-steps {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.78rem;
}

.install-card {
  position: relative;
  border: 1px solid rgba(205, 172, 255, 0.35);
  border-radius: 1rem;
  background:
    linear-gradient(160deg, rgba(49, 31, 90, 0.85), rgba(19, 13, 36, 0.96));
  padding: 1rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.install-card:hover {
  transform: translateY(-3px);
  border-color: rgba(137, 247, 255, 0.75);
  box-shadow: 0 12px 26px rgba(9, 8, 20, 0.38);
}

.install-card h3 {
  margin: 0.5rem 0 0;
  font-family: Orbitron, sans-serif;
  font-size: 1rem;
  line-height: 1.32;
}

.install-card p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.install-step {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(200, 123, 255, 0.46);
  background: rgba(255, 255, 255, 0.05);
  color: #f0e4ff;
  font-family: Orbitron, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.68rem;
}

.install-paths {
  margin-top: 0.8rem;
  border: 1px solid rgba(162, 131, 230, 0.45);
  border-radius: 1rem;
  padding: 0.9rem;
  background:
    linear-gradient(160deg, rgba(24, 19, 45, 0.9), rgba(17, 14, 31, 0.95));
}

.path-label {
  margin: 0 0 0.4rem;
  color: #ddd1ff;
  font-size: 0.84rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-family: Orbitron, sans-serif;
}

.code-path {
  margin: 0.35rem 0 0;
  padding: 0.52rem 0.7rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(200, 171, 255, 0.35);
  background: rgba(255, 255, 255, 0.035);
  color: #efe9ff;
  font-family: "Consolas", "Menlo", monospace;
  font-size: 0.82rem;
  overflow-wrap: anywhere;
}

.addon-grid {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.62rem;
}

.addon-card {
  position: relative;
  overflow: hidden;
  padding: 0.78rem 0.82rem;
  transform-style: preserve-3d;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.addon-card::before {
  content: "";
  position: absolute;
  inset: -32% 42% auto -32%;
  width: 132px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 129, 255, 0.25), transparent 70%);
  pointer-events: none;
}

.addon-card:hover {
  border-color: rgba(200, 123, 255, 0.7);
}

.addon-tag {
  margin: 0;
  display: inline-flex;
  font-size: 0.67rem;
  font-family: Orbitron, sans-serif;
  letter-spacing: 0.08em;
  color: #dcc0ff;
  text-transform: uppercase;
}

.addon-card h3 {
  margin: 0.44rem 0 0;
  font-family: Orbitron, sans-serif;
  font-size: 0.94rem;
  line-height: 1.24;
}

.addon-card p {
  margin: 0.48rem 0 0;
  color: var(--muted);
  min-height: 0;
  font-size: 0.86rem;
}

.addon-meta {
  margin-top: 0.58rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.addon-meta span {
  color: #e2d5ff;
  font-size: 0.79rem;
}

.chip {
  display: inline-flex;
  margin: 0;
  padding: 0.26rem 0.52rem;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: Orbitron, sans-serif;
  border: 1px solid rgba(198, 166, 255, 0.4);
  border-radius: 999px;
  color: #e7d7ff;
  background: rgba(255, 255, 255, 0.05);
}

.faq h2 {
  font-family: Orbitron, sans-serif;
  font-size: clamp(1.45rem, 4vw, 2.1rem);
  margin: 0 0 1rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.78rem;
}

.faq-grid article {
  padding: 1rem;
}

.faq-grid h3 {
  margin: 0;
  font-size: 1.03rem;
}

.faq-grid p {
  margin: 0.68rem 0 0;
  color: var(--muted);
}

.cta {
  margin-top: 0.12rem;
  margin-bottom: 2.8rem;
  padding: 1.7rem 1.1rem;
  border: 1px solid rgba(200, 123, 255, 0.36);
  border-radius: 1rem;
  background:
    radial-gradient(circle at 50% -20%, rgba(200, 123, 255, 0.28), rgba(200, 123, 255, 0) 50%),
    rgba(23, 15, 43, 0.93);
  text-align: center;
}

.cta h2 {
  margin: 0.75rem 0;
  font-family: Orbitron, sans-serif;
  font-size: clamp(1.44rem, 4vw, 2.25rem);
}

.cta p {
  margin: 0 auto;
  max-width: 56ch;
  color: var(--muted);
}

.cta-form {
  margin-top: 1.1rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-form input {
  min-width: min(390px, 84vw);
  border-radius: 999px;
  border: 1px solid rgba(200, 171, 255, 0.36);
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  padding: 0.85rem 1rem;
  outline: 0;
}

.cta-form input:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 4px rgba(200, 123, 255, 0.18);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0.67rem 1.03rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #ce7aff, #8562ff);
  box-shadow: 0 10px 24px rgba(142, 89, 255, 0.45);
}

.btn-outline {
  color: #ecdeff;
  border: 1px solid rgba(200, 123, 255, 0.55);
  background: rgba(255, 255, 255, 0.04);
}

.btn-ghost {
  color: #efe9ff;
  background: rgba(255, 255, 255, 0.08);
}

.pill {
  border: 1px solid rgba(186, 149, 255, 0.5);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #eee5ff;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.25rem 0.58rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.pill:hover {
  border-color: rgba(200, 123, 255, 0.82);
  background: rgba(200, 123, 255, 0.22);
}

footer {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto 1.3rem;
  padding-top: 0.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(229, 219, 255, 0.76);
  font-size: 0.86rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

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

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

.cursor-core,
.cursor-frame,
.cursor-spark {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 130;
  opacity: 0;
}

.cursor-core {
  width: 9px;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #fff, #d5bbff);
  border-radius: 2px;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.95);
}

.cursor-frame {
  width: 28px;
  aspect-ratio: 1;
  border: 1px solid rgba(209, 171, 255, 0.85);
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(200, 123, 255, 0.42);
  transition: border-color 0.2s ease;
}

.cursor-frame.active {
  border-color: rgba(137, 247, 255, 0.96);
}

.cursor-spark {
  width: 3px;
  aspect-ratio: 1;
  border-radius: 1px;
  background: rgba(137, 247, 255, 0.92);
  box-shadow: 0 0 14px rgba(137, 247, 255, 0.92);
}

@keyframes drift-a {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(10%, 7%, 0) scale(1.08);
  }
}

@keyframes drift-b {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-8%, -6%, 0) scale(1.12);
  }
}

@media (max-width: 1080px) {
  .status-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 980px) {
  .topbar {
    position: static;
    border-radius: 1rem;
  }

  .nav-links {
    display: none;
  }

  .client-panel,
  .install-spotlight,
  .install-steps,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .install-shell {
    padding: 0.85rem;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .btn,
  .cta-form input,
  .pill {
    width: 100%;
  }

  .status-row,
  .addon-grid,
  .install-steps,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .addon-meta,
  .cta-form {
    gap: 0.55rem;
  }

  .cta {
    text-align: left;
  }
}

@media (hover: hover) and (pointer: fine) {
  body,
  a,
  button,
  input,
  .pill,
  [data-tilt] {
    cursor: none;
  }
}

@media (hover: none), (pointer: coarse) {
  .cursor-core,
  .cursor-frame,
  .cursor-spark,
  .trail-node {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bg-gradient,
  .reveal,
  .btn,
  .addon-card,
  .cursor-frame,
  .status-pill {
    animation: none !important;
    transition: none !important;
  }
}
