/* ============================================
   Stack Line — Premium Landing Page Styles
   ============================================ */

:root {
  --bg-primary: #050508;
  --bg-surface: #0c0c14;
  --accent-indigo: #6366f1;
  --accent-cyan: #22d3ee;
  --accent-purple: #a855f7;
  --glass-bg: rgba(255, 255, 255, 0.025);
  --glass-border: rgba(255, 255, 255, 0.07);
  --glass-hover: rgba(255, 255, 255, 0.05);
  --gradient-primary: linear-gradient(135deg, #6366f1 0%, #22d3ee 100%);
  --gradient-glow: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  font-family: 'Inter', system-ui, sans-serif;
  cursor: none;
}

@media (max-width: 768px), (hover: none) {
  body { cursor: auto; }
}

::selection {
  background: rgba(99, 102, 241, 0.4);
  color: white;
}

/* ─── Neural Network Canvas ─── */
#neural-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ─── Custom Cursor ─── */
#cursor-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.04) 0%, rgba(8, 145, 178, 0.02) 40%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
  mix-blend-mode: screen;
}

#cursor-glow.cursor-hover {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.07) 0%, rgba(8, 145, 178, 0.04) 40%, transparent 70%);
}

#cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(8, 145, 178, 0.7);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px rgba(8, 145, 178, 0.4);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
}

#cursor-dot.cursor-hover {
  width: 10px;
  height: 10px;
  background: rgba(99, 102, 241, 0.8);
  box-shadow: 0 0 12px rgba(99, 102, 241, 0.5);
}

@media (max-width: 768px), (hover: none) {
  #cursor-glow, #cursor-dot { display: none !important; }
}

/* ─── Content above canvas ─── */
nav, section, footer {
  position: relative;
  z-index: 1;
}

/* Gradient Text */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glass Card */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.glass-card:hover {
  border-color: rgba(99, 102, 241, 0.25);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4),
              0 0 80px rgba(99, 102, 241, 0.08),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* 3D Tilt Cards */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.15s ease, box-shadow 0.4s ease;
  --mouse-x: 50%;
  --mouse-y: 50%;
  overflow: hidden;
}

.tilt-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(99, 102, 241, 0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.tilt-card:hover::after {
  opacity: 1;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.5rem;
  background: var(--gradient-primary);
  color: white;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: none;
  transition: box-shadow 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.25) 50%, transparent 60%);
  transform: translateX(-100%);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.btn-primary:hover {
  box-shadow: 0 10px 40px rgba(99, 102, 241, 0.5), 0 0 60px rgba(34, 211, 238, 0.2);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  color: white;
  font-weight: 500;
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  cursor: none;
  transition: all 0.3s ease;
  text-decoration: none;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(99, 102, 241, 0.1);
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.15);
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

.magnetic-btn {
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

@media (max-width: 768px), (hover: none) {
  .btn-primary, .btn-secondary { cursor: pointer; }
}

/* Navigation */
#navbar {
  background: transparent;
  z-index: 100;
}

#navbar.scrolled {
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-link {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: white;
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  background: rgba(5, 5, 8, 0.95);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
}

.mobile-menu.open { display: flex; }

.mobile-link {
  color: rgba(255, 255, 255, 0.7);
  padding: 0.75rem 0;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--glass-border);
  transition: color 0.3s ease;
}

.mobile-link:hover { color: white; }

/* Hero Section */
#hero {
  z-index: 1;
}

.hero-grid {
  background-image:
    linear-gradient(rgba(99, 102, 241, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 10%, transparent 70%);
  transition: transform 0.1s ease-out;
}

.hero-glow {
  background: var(--gradient-glow);
  filter: blur(100px);
  pointer-events: none;
  animation: glowPulse 8s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.25; transform: translate(-50%, 0) scale(1); }
  50% { opacity: 0.4; transform: translate(-50%, 0) scale(1.1); }
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 300px;
  height: 300px;
  top: 15%;
  left: 10%;
  background: rgba(99, 102, 241, 0.12);
}

.hero-orb-2 {
  width: 250px;
  height: 250px;
  bottom: 20%;
  right: 10%;
  background: rgba(34, 211, 238, 0.1);
}

.hero-badge {
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.pulse-dot {
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6); }
  50% { box-shadow: 0 0 0 6px rgba(52, 211, 153, 0); }
}

.hero-line {
  overflow: hidden;
  display: block;
}

.hero-word {
  display: inline-block;
}

.scroll-indicator {
  animation: floatBounce 2.5s ease-in-out infinite;
}

@keyframes floatBounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* Section Headers */
.section-label {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-cyan);
  padding: 0.375rem 1rem;
  background: rgba(34, 211, 238, 0.06);
  border: 1px solid rgba(34, 211, 238, 0.15);
  border-radius: 100px;
}

/* Service Cards */
.service-card {
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 16px 16px 0 0;
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: 14px;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  background: rgba(99, 102, 241, 0.18);
  box-shadow: 0 0 40px rgba(99, 102, 241, 0.25);
  transform: scale(1.05);
}

.service-list li {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.875rem;
  padding-left: 1.25rem;
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
}

.service-card:hover .service-list li {
  color: rgba(255, 255, 255, 0.65);
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gradient-primary);
  box-shadow: 0 0 6px rgba(99, 102, 241, 0.5);
}

/* ─── Circular Orbit Stepper ─── */
.orbit-stepper {
  --orbit-size: min(520px, 88vw);
  --orbit-radius: calc(var(--orbit-size) / 2 - 20px);
  position: relative;
  width: var(--orbit-size);
  height: var(--orbit-size);
  margin: 2rem auto 0;
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  border-radius: 50%;
  pointer-events: none;
}

.orbit-ring-outer {
  width: calc(var(--orbit-size) - 40px);
  height: calc(var(--orbit-size) - 40px);
  border: 1px solid rgba(99, 102, 241, 0.12);
  box-shadow:
    0 0 60px rgba(99, 102, 241, 0.06),
    inset 0 0 60px rgba(99, 102, 241, 0.03);
}

.orbit-ring-inner {
  width: calc(var(--orbit-size) - 120px);
  height: calc(var(--orbit-size) - 120px);
  border: 1px dashed rgba(34, 211, 238, 0.1);
  animation: orbitSpin 40s linear infinite;
}

.orbit-stepper-alt .orbit-ring-outer {
  border-color: rgba(168, 85, 247, 0.12);
  box-shadow:
    0 0 60px rgba(168, 85, 247, 0.06),
    inset 0 0 60px rgba(168, 85, 247, 0.03);
}

.orbit-stepper-alt .orbit-ring-inner {
  border-color: rgba(129, 140, 248, 0.12);
}

@keyframes orbitSpin {
  from { rotate: 0deg; }
  to { rotate: 360deg; }
}

.orbit-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(8, 8, 14, 0.9);
  border: 1px solid rgba(99, 102, 241, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow:
    0 0 0 8px rgba(99, 102, 241, 0.05),
    0 0 40px rgba(99, 102, 241, 0.15);
}

.orbit-stepper-alt .orbit-hub {
  border-color: rgba(168, 85, 247, 0.25);
  box-shadow:
    0 0 0 8px rgba(168, 85, 247, 0.05),
    0 0 40px rgba(168, 85, 247, 0.12);
}

.orbit-hub-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
  animation: hubPulse 4s ease-in-out infinite;
}

.orbit-stepper-alt .orbit-hub-glow {
  background: radial-gradient(circle, rgba(168, 85, 247, 0.18) 0%, transparent 70%);
}

@keyframes hubPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.orbit-hub-num {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #818cf8, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.orbit-stepper-alt .orbit-hub-num {
  background: linear-gradient(135deg, #a855f7, #818cf8);
  -webkit-background-clip: text;
  background-clip: text;
}

.orbit-hub-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.25rem;
}

.orbit-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 168px;
  z-index: 3;
}

.orbit-card:hover .orbit-node {
  transform: scale(1.08);
}

.orbit-card:hover {
  z-index: 4;
}

.orbit-card[data-orbit="0"] {
  top: 0;
  left: 50%;
  translate: -50% 0;
}

.orbit-card[data-orbit="1"] {
  top: 50%;
  right: 0;
  translate: 0 -50%;
}

.orbit-card[data-orbit="2"] {
  bottom: 0;
  left: 50%;
  translate: -50% 0;
}

.orbit-card[data-orbit="3"] {
  top: 50%;
  left: 0;
  translate: 0 -50%;
}

.orbit-node {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(99, 102, 241, 0.2), rgba(34, 211, 238, 0.08));
  border: 2px solid rgba(129, 140, 248, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.875rem;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 24px rgba(99, 102, 241, 0.2);
  transition: box-shadow 0.4s ease, border-color 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.orbit-stepper-alt .orbit-node {
  background: linear-gradient(145deg, rgba(168, 85, 247, 0.18), rgba(99, 102, 241, 0.08));
  border-color: rgba(168, 85, 247, 0.35);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 24px rgba(168, 85, 247, 0.15);
}

.orbit-card:hover .orbit-node {
  border-color: rgba(34, 211, 238, 0.6);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.35),
    0 0 36px rgba(99, 102, 241, 0.35);
}

.orbit-node svg {
  width: 28px;
  height: 28px;
  color: #c7d2fe;
}

.orbit-step-num {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  border-radius: 100px;
  background: linear-gradient(135deg, #6366f1, #22d3ee);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.625rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(99, 102, 241, 0.4);
}

.orbit-panel {
  text-align: center;
  background: rgba(12, 12, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 0.875rem 1rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.orbit-card:hover .orbit-panel {
  border-color: rgba(99, 102, 241, 0.3);
  background: rgba(99, 102, 241, 0.08);
}

.orbit-panel h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.orbit-panel p {
  font-size: 0.75rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.innovation-quote {
  position: relative;
  border-color: rgba(99, 102, 241, 0.15);
}

.innovation-quote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 30px;
  font-size: 6rem;
  font-family: Georgia, serif;
  color: rgba(99, 102, 241, 0.12);
  line-height: 1;
}

/* Orbit — mobile: 2×2 grid */
@media (max-width: 640px) {
  .orbit-stepper {
    --orbit-size: 100%;
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    padding: 0;
  }

  .orbit-ring,
  .orbit-hub {
    display: none;
  }

  .orbit-card {
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    translate: none !important;
    width: 100%;
  }

  .orbit-node {
    width: 64px;
    height: 64px;
    margin: 0 auto 0.75rem;
  }

  .orbit-panel {
    padding: 1rem;
  }

  .orbit-panel h3 {
    font-size: 1.0625rem;
  }

  .orbit-panel p {
    font-size: 0.8125rem;
  }

  .innovation-quote::before {
    font-size: 4rem;
    left: 15px;
  }
}

@media (min-width: 641px) and (max-width: 768px) {
  .orbit-stepper {
    --orbit-size: min(440px, 92vw);
  }

  .orbit-card {
    width: 140px;
  }

  .orbit-node {
    width: 60px;
    height: 60px;
  }

  .orbit-node svg {
    width: 24px;
    height: 24px;
  }
}

/* Why Cards */
.why-card {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.why-card:hover {
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.1);
}

.why-icon { font-size: 1.5rem; }

/* Capability Tiles */
.capability-tile {
  padding: 1.25rem 1rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  cursor: none;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.capability-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(34, 211, 238, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.capability-tile:hover {
  color: white;
  border-color: rgba(99, 102, 241, 0.4);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 35px rgba(99, 102, 241, 0.2), 0 0 40px rgba(34, 211, 238, 0.08);
}

.capability-tile:hover::before { opacity: 1; }

@media (max-width: 768px), (hover: none) {
  .capability-tile { cursor: default; }
}

/* Testimonials */
.testimonial-card {
  position: relative;
  transition: transform 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.5s ease;
}

.testimonial-card:hover::after { width: 70%; }

/* CTA */
.cta-card {
  border-color: rgba(99, 102, 241, 0.2);
  animation: ctaBorderGlow 4s ease-in-out infinite;
}

@keyframes ctaBorderGlow {
  0%, 100% { box-shadow: 0 0 40px rgba(99, 102, 241, 0.08); }
  50% { box-shadow: 0 0 80px rgba(99, 102, 241, 0.15), 0 0 120px rgba(34, 211, 238, 0.05); }
}

.cta-glow {
  background: radial-gradient(ellipse at center top, rgba(99, 102, 241, 0.15) 0%, transparent 60%);
  animation: glowPulse 6s ease-in-out infinite;
}

/* Footer */
.footer-link {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-link:hover { color: white; }

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.35);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.social-icon:hover {
  color: white;
  background: rgba(99, 102, 241, 0.15);
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
}

/* Scroll Reveal Fallback */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title { font-size: 2.75rem !important; }
  .hero-orb { display: none; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .capability-tile { font-size: 0.75rem; padding: 1rem 0.75rem; }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  body { cursor: auto; }
  #cursor-glow, #cursor-dot { display: none !important; }
}
