:root {
  --bg: #05060a;
  --bg-2: rgba(13, 15, 22, 0.82);
  --panel: rgba(255,255,255,0.045);
  --panel-2: rgba(255,255,255,0.075);
  --border: rgba(255,255,255,0.11);
  --text: #ffffff;
  --muted: rgba(255,255,255,0.72);
  --muted-2: rgba(255,255,255,0.48);
  --pink: #d946ef;
  --cyan: #22d3ee;
  --violet: #8b5cf6;
  --shadow: 0 30px 80px rgba(0,0,0,0.45);
  --max: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: radial-gradient(circle at top, rgba(217,70,239,0.15), transparent 24%), #05060a;
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 60%, rgba(255,255,255,0.06) 0 1px, transparent 1px),
    radial-gradient(circle at 40% 80%, rgba(255,255,255,0.04) 0 1px, transparent 1px);
  background-size: 120px 120px, 160px 160px, 180px 180px;
  animation: driftNoise 26s linear infinite;
}

.aurora {
  position: fixed;
  border-radius: 999px;
  filter: blur(90px);
  pointer-events: none;
  z-index: -2;
  opacity: 0.45;
  mix-blend-mode: screen;
}

.aurora-1 {
  width: 420px;
  height: 420px;
  left: -60px;
  top: 10%;
  background: rgba(34,211,238,0.14);
  animation: floatAurora 16s ease-in-out infinite;
}

.aurora-2 {
  width: 520px;
  height: 520px;
  right: -80px;
  top: -40px;
  background: rgba(217,70,239,0.14);
  animation: floatAurora 20s ease-in-out infinite reverse;
}

.aurora-3 {
  width: 440px;
  height: 440px;
  left: 40%;
  bottom: -120px;
  background: rgba(139,92,246,0.12);
  animation: floatAurora 22s ease-in-out infinite;
}

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

.narrow { max-width: 900px; }

header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  background: rgba(3,4,8,0.42);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.nav {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(217,70,239,0.45));
}

.floating-logo {
  animation: floatSoft 4s ease-in-out infinite;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.96rem;
}

.nav-links a {
  position: relative;
  transition: color 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 14px;
  padding: 10px 14px;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 18px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,0.22) 50%, transparent 80%);
  transform: translateX(-130%);
  transition: transform 0.8s ease;
}

.btn:hover::before { transform: translateX(130%); }
.btn:hover { transform: translateY(-3px); }
.full { width: 100%; }

.btn-primary {
  background: linear-gradient(90deg, #ffffff, #e8eef7);
  color: #000;
  box-shadow: 0 16px 36px rgba(255,255,255,0.10);
}

.btn-secondary {
  background: rgba(255,255,255,0.05);
  color: var(--text);
  border-color: rgba(255,255,255,0.13);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
}

.btn-accent {
  background: linear-gradient(90deg, rgba(217,70,239,0.18), rgba(139,92,246,0.18));
  border-color: rgba(217,70,239,0.34);
  color: #fff;
  box-shadow: 0 12px 30px rgba(163, 28, 197, 0.18);
}

.hero {
  padding: 96px 0 78px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(34,211,238,0.10);
  border: 1px solid rgba(34,211,238,0.20);
  color: #b7f7ff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 0 24px rgba(34,211,238,0.08);
}

h1 {
  font-size: clamp(2.9rem, 7vw, 5.8rem);
  line-height: 0.97;
  letter-spacing: -0.045em;
  font-weight: 900;
  max-width: 780px;
}

.gradient-text {
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(217,70,239,0.18));
}

.hero p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 650px;
  margin-top: 22px;
  line-height: 1.9;
}

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  margin-top: 28px;
  color: var(--muted-2);
  font-size: 0.96rem;
}

.hero-card-wrap { position: relative; }
.hero-card-glow {
  position: absolute;
  inset: -24px;
  border-radius: 36px;
  background: linear-gradient(90deg, rgba(217,70,239,0.22), rgba(34,211,238,0.14), rgba(139,92,246,0.16));
  filter: blur(36px);
  animation: glowPulse 4s ease-in-out infinite;
}

.hero-card,
.strip-box,
.stat-box,
.feature-card,
.pricing-card,
.testimonial,
.faq-item,
.service-card,
.step-card,
.cta-box {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow);
}

.hero-card {
  position: relative;
  border-radius: 34px;
  backdrop-filter: blur(20px);
  padding: 22px;
  transform-style: preserve-3d;
}

.dashboard {
  border-radius: 28px;
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 22px;
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.hero-panel-title { font-size: 1.9rem; margin-top: 6px; }
.mini-label {
  color: var(--muted-2);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}
.mb-6 { margin-bottom: 6px; }

.status {
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid rgba(52,211,153,0.22);
  background: rgba(52,211,153,0.10);
  color: #a7f3d0;
  font-size: 0.8rem;
  white-space: nowrap;
}

.pulse-dot {
  position: relative;
}

.pulse-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  display: inline-block;
  margin-right: 8px;
  box-shadow: 0 0 0 rgba(52,211,153,0.6);
  animation: pulseGreen 1.8s infinite;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 10px;
}

.stat-box, .feature-card, .pricing-card, .testimonial, .faq-item, .service-card, .step-card {
  border-radius: 24px;
}

.stat-box { padding: 18px; }
.stat-box .label {
  color: var(--muted-2);
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.stat-box .value {
  font-size: 2rem;
  font-weight: 900;
}

.float-card {
  animation: floatSoft 6s ease-in-out infinite;
}
.float-card:nth-child(2) { animation-delay: 0.8s; }
.float-card:nth-child(3) { animation-delay: 1.4s; }
.float-card:nth-child(4) { animation-delay: 2.1s; }

.recommend-box {
  margin-top: 16px;
  border-radius: 20px;
  padding: 18px;
  border: 1px solid rgba(217,70,239,0.22);
  background: linear-gradient(90deg, rgba(217,70,239,0.10), rgba(34,211,238,0.10));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.recommend-title { font-size: 1.15rem; }
.recommend-text { color: var(--muted); margin-top: 6px; }

.section { padding: 96px 0; }
.section.alt {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.section-head {
  max-width: 760px;
  margin-bottom: 48px;
}
.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-kicker {
  color: #b7f7ff;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 14px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 900;
}

.section-head p,
.feature-card p,
.service-card p,
.step-card p,
.faq-item p,
.testimonial p,
.cta-box p {
  color: var(--muted);
  line-height: 1.8;
}

.section-head p { margin-top: 18px; font-size: 1.04rem; }

.stats-strip,
.grid-4,
.grid-3,
.grid-2 {
  display: grid;
  gap: 20px;
}

.stats-strip { grid-template-columns: repeat(4, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.strip-box {
  text-align: center;
  padding: 26px 16px;
  border-radius: 24px;
}
.strip-box strong {
  display: block;
  font-size: 2.1rem;
  font-weight: 900;
  margin-bottom: 8px;
}
.strip-box span {
  color: var(--muted-2);
  font-size: 0.94rem;
}

.feature-card,
.service-card,
.step-card,
.testimonial,
.faq-item,
.pricing-card,
.cta-box {
  padding: 26px;
  transition: transform 0.28s ease, background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.feature-card:hover,
.service-card:hover,
.step-card:hover,
.testimonial:hover,
.pricing-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.16);
  box-shadow: 0 32px 90px rgba(0,0,0,0.5);
}

.icon-badge {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(217,70,239,0.18), rgba(34,211,238,0.14));
  border: 1px solid rgba(255,255,255,0.10);
  font-size: 1.5rem;
  margin-bottom: 18px;
  box-shadow: inset 0 0 18px rgba(255,255,255,0.03), 0 10px 30px rgba(0,0,0,0.18);
}

.feature-card h3,
.service-card h3,
.pricing-card h3,
.step-card h3,
.faq-item h3 {
  font-size: 1.28rem;
  margin-bottom: 12px;
}

.pricing-card {
  position: relative;
}
.pricing-card.featured {
  background: linear-gradient(180deg, rgba(217,70,239,0.10), rgba(255,255,255,0.045));
  border-color: rgba(217,70,239,0.26);
  box-shadow: 0 26px 80px rgba(72,15,87,0.30);
}

.pricing-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(217,70,239,0.12);
  border: 1px solid rgba(217,70,239,0.24);
  color: #f5d0fe;
}

.price-placeholder {
  margin: 22px 0 24px;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}
.price-note {
  color: var(--muted-2);
  font-size: 0.95rem;
  margin-top: -12px;
  margin-bottom: 18px;
}

.pricing-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 28px;
}
.pricing-list li {
  list-style: none;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
}

.step-number {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}

.testimonial-footer {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.testimonial-footer strong { display: block; margin-bottom: 3px; }
.testimonial-footer span { color: var(--muted-2); font-size: 0.92rem; }

.faq-item { cursor: pointer; }
.faq-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, margin-top 0.35s ease;
  margin-top: 0;
}
.faq-item.open .faq-answer {
  max-height: 220px;
  margin-top: 14px;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.cta-box {
  border-radius: 32px;
  padding: 36px;
  background: linear-gradient(90deg, rgba(217,70,239,0.10), rgba(139,92,246,0.10), rgba(34,211,238,0.10));
}
.cta-box p {
  max-width: 720px;
  margin-top: 18px;
}

footer {
  padding: 34px 0 48px;
  color: var(--muted-2);
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
}
.footer-title {
  display: block;
  color: #fff;
  margin-bottom: 6px;
}

.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.glass-shine::after {
  content: "";
  position: absolute;
  top: -150%;
  left: -60%;
  width: 50%;
  height: 300%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  transform: rotate(22deg);
  pointer-events: none;
  animation: sweepShine 9s linear infinite;
}

.magnetic {
  will-change: transform;
}

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

@keyframes glowPulse {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
}

@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(52,211,153,0.55); }
  70% { box-shadow: 0 0 0 10px rgba(52,211,153,0); }
  100% { box-shadow: 0 0 0 0 rgba(52,211,153,0); }
}

@keyframes floatAurora {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(20px, -28px, 0) scale(1.08); }
}

@keyframes driftNoise {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(60px, 40px, 0); }
}

@keyframes sweepShine {
  0% { transform: translateX(-180%) rotate(22deg); }
  100% { transform: translateX(480%) rotate(22deg); }
}

@media (max-width: 1100px) {
  .hero-grid,
  .grid-4,
  .grid-3,
  .grid-2,
  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid {
    align-items: start;
  }
}

@media (max-width: 820px) {
  .nav-links {
    position: absolute;
    top: 79px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border-radius: 20px;
    background: rgba(10,10,16,0.96);
    border: 1px solid rgba(255,255,255,0.10);
    display: none;
  }

  .nav-links.open { display: flex; }
  .menu-btn { display: inline-flex; }
  .nav .btn-accent { display: none; }
  .hero { padding-top: 66px; }
  .hero-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, var(--max)); }

  .grid-4,
  .grid-3,
  .grid-2,
  .stat-grid,
  .stats-strip {
    grid-template-columns: 1fr;
  }

  .recommend-box,
  .dashboard-top,
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .btn { width: 100%; }

  .cta-box,
  .pricing-card,
  .feature-card,
  .service-card,
  .step-card,
  .testimonial,
  .faq-item {
    padding: 22px;
  }

  .brand span {
    font-size: 1rem;
    letter-spacing: 0.08em;
  }

  .glass-shine::after {
    display: none;
  }
}


.icon-chip {
  position: relative;
  isolation: isolate;
}

.icon-chip::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 14px;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.18), transparent 55%);
  opacity: 0.8;
  z-index: -1;
}

.icon-shape {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 0 12px rgba(217,70,239,0.26));
}

.icon-bolt {
  clip-path: polygon(57% 0, 25% 48%, 45% 48%, 30% 100%, 78% 40%, 54% 40%);
  background: linear-gradient(180deg, #ffffff, #c084fc 52%, #22d3ee);
}

.icon-grid {
  border-radius: 6px;
  background:
    linear-gradient(#fff 0 0) left top / 8px 8px no-repeat,
    linear-gradient(#c084fc 0 0) right top / 8px 8px no-repeat,
    linear-gradient(#22d3ee 0 0) left bottom / 8px 8px no-repeat,
    linear-gradient(#fff 0 0) right bottom / 8px 8px no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
}

.icon-target {
  border: 2px solid rgba(255,255,255,0.95);
  border-radius: 50%;
}
.icon-target::before,
.icon-target::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 2px solid rgba(192,132,252,0.95);
  border-radius: 50%;
}
.icon-target::after {
  inset: 9px;
  border: none;
  background: radial-gradient(circle, #22d3ee 0 45%, transparent 46%);
}

.icon-window {
  border-radius: 7px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(192,132,252,0.9));
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.1);
}
.icon-window::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 6px;
  height: 2px;
  background: rgba(5,6,10,0.35);
}
.icon-window::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 11px;
  width: 2px;
  background: rgba(5,6,10,0.35);
}

.icon-bars {
  background:
    linear-gradient(180deg, #fff, #fff) 2px 12px / 4px 10px no-repeat,
    linear-gradient(180deg, #c084fc, #c084fc) 10px 7px / 4px 15px no-repeat,
    linear-gradient(180deg, #22d3ee, #22d3ee) 18px 3px / 4px 19px no-repeat;
  border-radius: 4px;
}

.icon-shield {
  clip-path: polygon(50% 0%, 88% 14%, 88% 52%, 50% 100%, 12% 52%, 12% 14%);
  background: linear-gradient(180deg, #ffffff, #c084fc 58%, #22d3ee);
}

.icon-star {
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 92%, 50% 70%, 21% 92%, 32% 57%, 2% 35%, 39% 35%);
  background: linear-gradient(180deg, #fff, #f0abfc 55%, #22d3ee);
}

.icon-spark {
  clip-path: polygon(50% 0%, 60% 34%, 100% 50%, 60% 66%, 50% 100%, 40% 66%, 0% 50%, 40% 34%);
  background: linear-gradient(180deg, #fff, #c084fc 55%, #22d3ee);
}

.icon-device {
  border-radius: 7px;
  border: 2px solid rgba(255,255,255,0.95);
}
.icon-device::before {
  content: "";
  position: absolute;
  inset: 4px 4px 6px;
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(192,132,252,0.9), rgba(34,211,238,0.9));
}
.icon-device::after {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  bottom: 1px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255,255,255,0.8);
}

.icon-rocket {
  clip-path: polygon(50% 0%, 72% 18%, 84% 44%, 66% 82%, 34% 82%, 16% 44%, 28% 18%);
  background: linear-gradient(180deg, #fff, #c084fc 58%, #22d3ee);
}
.icon-rocket::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(5,6,10,0.75);
}
.icon-rocket::after {
  content: "";
  position: absolute;
  left: 8px;
  bottom: -4px;
  width: 8px;
  height: 8px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background: linear-gradient(180deg, #f0abfc, #22d3ee);
}


/* Light beam fix */
body {
  position: relative;
}

body::before,
body::after {
  content: none !important;
}

main {
  position: relative;
  overflow-x: clip;
}

section {
  position: relative;
  overflow: hidden;
}

.hero {
  overflow: visible;
}

.aurora,
.noise-overlay,
#particle-canvas {
  max-width: 100vw;
}

.glass-shine::after {
  width: 38%;
  height: 220%;
  top: -60%;
  left: -80%;
  opacity: 0.42;
  will-change: transform;
}

.stats-strip,
.grid-3,
.grid-4,
.grid-2,
.hero-grid {
  position: relative;
  z-index: 1;
}

.container {
  position: relative;
  z-index: 1;
}


/* ===== Performance lab section ===== */
.performance-lab-section {
  padding-top: 40px;
}

.performance-lab-wrap {
  position: relative;
}

.lab-shell {
  position: relative;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(6,8,14,0.92), rgba(5,6,10,0.88));
  box-shadow: 0 30px 90px rgba(0,0,0,0.42);
  padding: 34px;
  overflow: hidden;
}

.lab-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), transparent 25%),
    radial-gradient(circle at 70% 22%, rgba(91,99,255,0.08), transparent 22%),
    radial-gradient(circle at 20% 12%, rgba(217,70,239,0.08), transparent 20%);
  pointer-events: none;
}

.lab-shell::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 24px;
  pointer-events: none;
}

.lab-top {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 26px;
}

.lab-intro h2 {
  max-width: 520px;
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  margin-top: 8px;
}

.lab-intro p {
  max-width: 440px;
  margin-top: 16px;
  color: var(--muted, rgba(255,255,255,0.72));
  line-height: 1.8;
}

.lab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.chart-card {
  position: relative;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(14, 16, 26, 0.9), rgba(10, 12, 20, 0.78));
  min-height: 280px;
}

.chart-card-wide {
  min-height: 340px;
}

.chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 8px;
}

.chart-head h3,
.chart-copy h3 {
  font-size: 1.2rem;
  line-height: 1.25;
}

.chart-copy p {
  color: var(--muted, rgba(255,255,255,0.72));
  margin-top: 10px;
  line-height: 1.75;
  max-width: 420px;
}

.chart-legend,
.mini-legend {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.58);
  font-size: 0.84rem;
}

.legend-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  margin-right: 6px;
  box-shadow: 0 0 10px currentColor;
}

.legend-blue {
  background: linear-gradient(90deg, #8b5cf6, #22d3ee);
  color: #8b5cf6;
}

.legend-red {
  background: linear-gradient(90deg, #fb7185, #ef4444);
  color: #fb7185;
}

.chart-svg {
  width: 100%;
  height: 240px;
  display: block;
  margin-top: 8px;
}

.chart-small {
  height: 180px;
  margin-top: 18px;
}

.chart-grid line {
  stroke: rgba(255,255,255,0.06);
  stroke-width: 1;
}

.chart-line {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 16px rgba(255,255,255,0.08));
}

.chart-line-blue {
  stroke: #8b5cf6;
}

.chart-line-red {
  stroke: #fb7185;
}

.chart-card-wide .chart-line-blue {
  stroke: url(#lineBluePerf);
}

.chart-card-wide .chart-line-red {
  stroke: url(#lineRedPerf);
}

.line-draw {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: drawChart 2.2s ease forwards;
}

.latency-chart {
  position: relative;
  margin-top: 24px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}

.latency-mark {
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  font-size: clamp(4.6rem, 10vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  color: rgba(255,255,255,0.06);
  pointer-events: none;
}

.latency-row {
  display: grid;
  grid-template-columns: 68px 1fr 58px;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.62);
  font-size: 0.88rem;
}

.latency-row strong {
  color: white;
  font-size: 0.88rem;
  text-align: right;
}

.latency-dots {
  position: relative;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 12px;
  padding: 10px 0;
  align-items: center;
}

.latency-dots::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: rgba(255,255,255,0.06);
}

.latency-dots i {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  display: block;
}

.dots-slow i {
  background: #fb7185;
  box-shadow: 0 0 12px rgba(251,113,133,0.65);
  animation: latencyPulse 1.8s ease-in-out infinite;
}

.dots-fast i {
  background: #a5b4fc;
  box-shadow: 0 0 12px rgba(165,180,252,0.65);
  animation: latencyPulse 1.8s ease-in-out infinite;
}

.dots-slow i:nth-child(odd),
.dots-fast i:nth-child(odd) {
  animation-delay: .2s;
}

.dots-slow i:nth-child(3n),
.dots-fast i:nth-child(3n) {
  animation-delay: .45s;
}

.mini-legend {
  margin-top: 10px;
}

@keyframes drawChart {
  to { stroke-dashoffset: 0; }
}

@keyframes latencyPulse {
  0%, 100% { transform: scale(1); opacity: .7; }
  50% { transform: scale(1.35); opacity: 1; }
}

@media (max-width: 980px) {
  .lab-top,
  .lab-grid {
    grid-template-columns: 1fr;
  }

  .chart-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .lab-shell {
    padding: 20px;
    border-radius: 24px;
  }

  .chart-card {
    padding: 18px;
    min-height: auto;
  }

  .latency-row {
    grid-template-columns: 56px 1fr 46px;
    gap: 10px;
    font-size: 0.8rem;
  }

  .latency-dots {
    gap: 8px;
  }
}


/* ===== Bug fixes ===== */
main {
  overflow-x: clip;
}

.performance-lab-section,
.performance-lab-wrap,
.lab-shell,
.chart-card {
  overflow: hidden;
}

.glass-shine::after {
  width: 26% !important;
  height: 170% !important;
  top: -35% !important;
  left: -55% !important;
  opacity: 0.16 !important;
  filter: blur(4px);
}

.hero-card .glass-shine::after,
.hero-card.glass-shine::after,
.lab-shell.glass-shine::after {
  display: none !important;
}

.chart-card-wide::after,
.performance-lab-section .glass-shine::after {
  display: none !important;
}

.chart-card-wide .chart-svg {
  height: 260px;
}

.chart-card-wide .chart-line-blue {
  stroke: url(#lineBluePerf) !important;
  stroke-width: 4 !important;
  opacity: 1 !important;
}

.chart-card-wide .chart-line-red {
  stroke: url(#lineRedPerf) !important;
  stroke-width: 4 !important;
  opacity: 1 !important;
}

.chart-card-wide .chart-grid line {
  stroke: rgba(255,255,255,0.08) !important;
}

.chart-card-wide .chart-svg {
  filter: drop-shadow(0 0 18px rgba(139,92,246,0.10));
}

.chart-card-wide {
  background:
    linear-gradient(180deg, rgba(14,16,26,0.96), rgba(10,12,20,0.86));
}


/* ===== Animated performance graphs ===== */
.chart-svg-animated {
  overflow: visible;
}

.chart-line {
  transition: d 0.35s ease;
}

.chart-card-wide .chart-line,
.chart-small .chart-line {
  filter: drop-shadow(0 0 8px rgba(139,92,246,0.22));
}

.latency-dots i {
  transition: transform 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease;
}

.latency-dots i.is-active {
  transform: scale(1.7) translateY(-2px);
  opacity: 1;
}

#ping-dots-before i.is-active {
  box-shadow: 0 0 18px rgba(251,113,133,0.95);
}

#ping-dots-after i.is-active {
  box-shadow: 0 0 18px rgba(165,180,252,0.95);
}


/* ===== Hard fix for buggy light beam ===== */
.glass-shine::after,
.hero::before,
.hero::after {
  display: none !important;
}


/* ===== Premium controlled glow + EXM-style ping card ===== */
.performance-lab-section {
  overflow: hidden;
}

.lab-shell {
  isolation: isolate;
  overflow: hidden !important;
  background:
    linear-gradient(180deg, rgba(7,8,15,0.96), rgba(6,7,12,0.94));
}

.lab-shell::before,
.lab-shell::after,
.performance-lab-section::before,
.performance-lab-section::after,
.chart-card.glass-shine::after,
.chart-card-wide.glass-shine::after,
.hero-card.glass-shine::after,
.glass-shine::after {
  display: none !important;
}

.lab-premium-glow {
  position: absolute;
  inset: -12% -10% auto -12%;
  height: 85%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 22% 35%, rgba(61, 108, 255, 0.12), transparent 28%),
    radial-gradient(ellipse at 78% 18%, rgba(192, 72, 255, 0.10), transparent 26%),
    linear-gradient(115deg, rgba(255,255,255,0.055) 0%, rgba(255,255,255,0.018) 18%, rgba(255,255,255,0.0) 34%);
  filter: blur(18px);
  transform: translate3d(0,0,0);
  animation: premiumGlowDrift 14s ease-in-out infinite;
  opacity: 0.95;
}

.lab-top,
.lab-grid,
.lab-intro,
.chart-card,
.chart-card-wide {
  position: relative;
  z-index: 1;
}

.chart-card,
.chart-card-wide {
  background:
    linear-gradient(180deg, rgba(11,13,22,0.94), rgba(8,10,18,0.90));
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 18px 50px rgba(0,0,0,0.28);
}

.chart-card-wide .chart-grid line,
.chart-small .chart-grid line {
  stroke: rgba(255,255,255,0.045) !important;
}

.chart-card-ping {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.chart-card-ping .chart-copy h3 {
  letter-spacing: 0.01em;
}

.chart-card-ping .chart-copy p {
  max-width: 420px;
}

.ping-grade {
  position: absolute;
  left: 50%;
  top: 63%;
  transform: translate(-50%, -50%);
  font-size: clamp(4.2rem, 8vw, 5.8rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.08em;
  color: rgba(255,255,255,0.065);
  user-select: none;
  pointer-events: none;
}

.ping-metric {
  position: relative;
  display: grid;
  grid-template-columns: 76px 1fr 52px;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  color: rgba(255,255,255,0.64);
  font-size: 0.8rem;
}

.ping-metric-top {
  margin-top: 34px;
}

.ping-label {
  white-space: nowrap;
}

.ping-metric strong {
  text-align: right;
  color: rgba(255,255,255,0.86);
  font-size: 0.82rem;
  font-weight: 600;
}

.ping-divider {
  height: 1px;
  margin: 12px 0 2px;
  background: rgba(255,255,255,0.06);
}

.ping-track {
  position: relative;
  min-height: 20px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.ping-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.04);
}

.ping-track i {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff6d98;
  box-shadow: 0 0 10px rgba(255,109,152,0.48);
  opacity: 0.88;
  transform: scale(1);
}

.ping-track-blue i {
  background: #b8c2ff;
  box-shadow: 0 0 10px rgba(184,194,255,0.48);
}

.chart-card-wide .chart-line-red {
  stroke-width: 3.3 !important;
  opacity: 0.92 !important;
}

.chart-card-wide .chart-line-blue {
  stroke-width: 3.6 !important;
  opacity: 1 !important;
  filter: drop-shadow(0 0 10px rgba(150,120,255,0.32));
}

.chart-small .chart-line-red,
.chart-small .chart-line-blue {
  stroke-width: 3.2 !important;
}

.chart-end-dot {
  r: 3.5;
}

@keyframes premiumGlowDrift {
  0%, 100% {
    transform: translate3d(0px, 0px, 0) scale(1);
    opacity: 0.92;
  }
  50% {
    transform: translate3d(14px, -8px, 0) scale(1.02);
    opacity: 1;
  }
}

@media (max-width: 640px) {
  .ping-metric {
    grid-template-columns: 62px 1fr 40px;
    gap: 10px;
    font-size: 0.74rem;
  }

  .ping-track {
    gap: 12px;
  }
}


/* ===== Ultra premium graph polish ===== */
.chart-card-wide .chart-line-blue {
  stroke-width: 2.4 !important;
  filter: drop-shadow(0 0 6px rgba(140,120,255,0.25));
}

.chart-card-wide .chart-line-red {
  stroke-width: 2.2 !important;
  opacity: 0.7 !important;
  filter: drop-shadow(0 0 4px rgba(255,120,140,0.2));
}

.chart-small .chart-line-blue,
.chart-small .chart-line-red {
  stroke-width: 2.2 !important;
}

.chart-end-dot {
  r: 2.8 !important;
  filter: drop-shadow(0 0 6px currentColor);
}

/* smoother motion perception */
.chart-svg {
  opacity: 0.95;
}

/* text premium spacing */
.chart-copy h3 {
  font-weight: 600;
  letter-spacing: -0.01em;
}

.chart-copy p {
  opacity: 0.7;
  font-size: 0.9rem;
}

/* refine ping dots */
.ping-track i {
  width: 6px;
  height: 6px;
}

.ping-track i.active {
  transform: scale(2);
}



/* ===== Refined premium interactions ===== */
.site-header {
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.scrolled {
  background: rgba(3,4,8,0.78) !important;
  border-bottom-color: rgba(255,255,255,0.10) !important;
  box-shadow: 0 14px 36px rgba(0,0,0,0.28);
}

.cursor-glow {
  position: fixed;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(138,92,246,0.18) 0%, rgba(34,211,238,0.10) 35%, rgba(0,0,0,0) 72%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .25s ease;
}
body:hover .cursor-glow { opacity: 1; }

.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  height: 3px;
  width: 0%;
  z-index: 999;
  background: linear-gradient(90deg, #8b5cf6, #22d3ee);
  box-shadow: 0 0 16px rgba(139,92,246,0.45);
}

.section.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.section.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(217,70,239,0.25), rgba(34,211,238,0.25));
  border: 1px solid rgba(255,255,255,0.08);
}
.review-top span {
  color: var(--muted-2);
  font-size: 0.92rem;
}
.review-rating {
  margin-top: 18px;
  color: #facc15;
  letter-spacing: 0.15em;
}

.chart-card:hover,
.chart-card-wide:hover,
.testimonial:hover,
.pricing-card:hover,
.service-card:hover,
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 80px rgba(0,0,0,0.40), 0 0 30px rgba(120,90,255,0.10);
}

.chart-card-wide .chart-line-blue {
  stroke-width: 2.4 !important;
  filter: drop-shadow(0 0 6px rgba(140,120,255,0.25));
}
.chart-card-wide .chart-line-red {
  stroke-width: 2.2 !important;
  opacity: 0.72 !important;
  filter: drop-shadow(0 0 4px rgba(255,120,140,0.2));
}
.chart-small .chart-line-blue,
.chart-small .chart-line-red {
  stroke-width: 2.2 !important;
}
.chart-end-dot {
  filter: drop-shadow(0 0 6px currentColor);
}
.ping-track i {
  width: 6px;
  height: 6px;
}
.ping-track i.active {
  transform: scale(2);
}

@media (max-width: 820px) {
  .cursor-glow { display: none; }
}

/* FIX ping dots spacing + fewer red dots */



#ping-track-before { gap: 36px !important; }

/* FIX ping overflow */
#ping-track-before {
  gap: 26px !important;
  justify-content: flex-start;
  flex-wrap: nowrap;
  overflow: hidden;
  max-width: 100%;
}

.ping-track {
  overflow: hidden;
}

/* better readability for ms text */
.ping-metric strong {
  min-width: 40px;
  text-align: right;
}


/* ===== Scroll card entrance ===== */
.scroll-card {
  opacity: 0;
  transform: translateY(34px) scale(0.98);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: transform, opacity;
}

.scroll-card.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.scroll-card:nth-child(2) { transition-delay: 0.06s; }
.scroll-card:nth-child(3) { transition-delay: 0.12s; }
.scroll-card:nth-child(4) { transition-delay: 0.18s; }

@media (prefers-reduced-motion: reduce) {
  .scroll-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* ===== Fix animated panel numbers ===== */
.stat-box .value.stat-number {
  display: inline-block;
}

/* ===== Red ping spacing fix ===== */
#ping-track-before {
  gap: 30px !important;
  justify-content: flex-start !important;
  flex-wrap: nowrap !important;
  overflow: hidden !important;
  max-width: 100% !important;
}

#ping-track-before i {
  flex: 0 0 auto;
}

.ping-track {
  overflow: hidden !important;
}

.ping-metric strong {
  min-width: 42px;
  text-align: right;
}


/* ===== Ping values alignment ===== */
.ping-metric strong,
.latency-row strong {
  min-width: 46px !important;
  text-align: right !important;
  display: inline-block;
}

/* ===== Panel number animation support ===== */
.stat-box .value.stat-number {
  display: inline-block;
  min-width: 72px;
}


/* ===== Panel number animation final fix ===== */
.stat-box .value.stat-number {
  display: inline-block;
  min-width: 88px;
}
