/* =========================================================
   Peak Site Studio · integraciones.css
   Página: Integraciones avanzadas y APIs
   ========================================================= */
/* ===== VARIABLES ===== */
:root {
  --primary: #0a0f2c;
  --accent: #00d4ff;
  --accent2: #0099ff;
  --bg-light: #f8fafd;
  --bg-dark: #0a0f2c;
  --text-light: #1e2937;
  --text-dark: #f1f5f9;
  --text-soft-light: #64748b;
  --text-soft-dark: #94a3b8;
  --card-bg-light: #ffffff;
  --card-bg-dark: rgba(255, 255, 255, 0.06);
  --border-light: #e2e8f0;
  --border-dark: rgba(255, 255, 255, 0.12);
  --gradient-primary: linear-gradient(135deg, var(--accent), var(--accent2));
  --shadow-soft: 0 20px 60px rgba(10, 15, 44, 0.08);
  --shadow-strong: 0 30px 80px rgba(0, 153, 255, 0.18);
}
/* ===== BASE ===== */
body {
  font-family: "Inter", sans-serif;
  background: var(--bg-light);
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
  padding: 0;
}
body.dark { background: var(--bg-dark); color: var(--text-dark); }

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 14px;
}
.eyebrow-light { color: var(--accent); }
/* =========================================================
   HERO (CON IMAGEN PNG Y ANIMACIONES REFORZADAS)
   ========================================================= */
.api-hero {
    --hero-bg-image: url('/assets/img/hero-consulting.jpg');
  position: relative;
  padding: 140px 0 110px;
  /* Capa 1: Degradado protector oscuro para legibilidad del texto */
  /* Capa 2: Tu imagen PNG personalizada */
  /* Capa 3: El degradado espacial original de fondo */
  background: 
    linear-gradient(rgba(6, 10, 32, 0.45), rgba(10, 15, 44, 0.8)),
    var(--hero-bg-image) center/cover no-repeat,
    linear-gradient(135deg, #060a20 0%, #0a0f2c 45%, #101a4a 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.api-hero-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }

/* CUADRÍCULA: Reforzada al doble de opacidad para que resalte sobre el PNG */
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.14) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 60%, transparent 85%);
  opacity: 1;
}

/* DESTELLOS GLOW: Mucho más intensos y brillantes */
.glow {
  position: absolute;
  width: 550px;
  height: 550px; 
  border-radius: 50%;
  filter: blur(100px); /* Un poco menos de blur para que conserven más color fuerza */
  opacity: 0.75; /* Subido de 0.55 a 0.75 */
}
.glow-1 { top: -120px; left: -120px; background: #00d4ff; animation: floatGlow 12s ease-in-out infinite; }
.glow-2 { bottom: -160px; right: -100px; background: #0099ff; animation: floatGlow 14s ease-in-out infinite reverse; }

@keyframes floatGlow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.15); }
}

/* LÍNEAS CONECTORAS: Más marcadas y visibles sobre la imagen */
.connection-lines {
  position: absolute; inset: 0; width: 100%; height: 100%; opacity: 1; /* Máxima opacidad */
}
.connection-lines path {
  stroke-width: 2px; /* Aumentado de 1px a 2px para darles mucha más fuerza */
  stroke-dasharray: 8 12;
  animation: dashMove 8s linear infinite;
}
@keyframes dashMove { to { stroke-dashoffset: -200; } }

.floating-node {
  position: absolute;
  width: 56px;
  height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10, 15, 44, 0.7); /* Fondo un poco más oscuro para contrastar con tu PNG */
  border: 2px solid rgba(0, 212, 255, 0.5); /* Borde más grueso */
  color: var(--accent);
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 45px rgba(0, 212, 255, 0.4);
  animation: floatNode 6s ease-in-out infinite;
}
.floating-node i { width: 26px; height: 26px; }
.node-1 { top: 18%; left: 8%; animation-delay: 0s; }
.node-2 { top: 25%; right: 10%; animation-delay: 1.2s; }
.node-3 { bottom: 20%; left: 12%; animation-delay: 2.1s; }
.node-4 { bottom: 25%; right: 8%; animation-delay: 3s; }

@keyframes floatNode {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-16px) rotate(3deg); }
}
.api-hero-inner { position: relative; z-index: 2; text-align: center; max-width: 880px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: rgba(0, 212, 255, 0.12);
  border: 1px solid rgba(0, 212, 255, 0.35);
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  color: #d4f4ff;
  margin-bottom: 24px;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7);
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(0, 212, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0); }
}
.api-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.08;
  margin: 0 0 24px;
  color: #fff;
  font-weight: 700;
}
.hero-lead {
  font-size: 1.08rem; line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  max-width: 760px; margin: 0 auto 34px;
}
.hero-ctas {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.btn-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px;
  font-weight: 600; font-size: 15px; text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn-primary-cta {
  background: var(--gradient-primary); color: #0a0f2c;
  box-shadow: 0 12px 30px rgba(0, 212, 255, 0.35);
}
.btn-primary-cta:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(0, 212, 255, 0.5); }
.btn-ghost-cta {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-ghost-cta:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-3px); }
.btn-ghost-light { border-color: rgba(0, 212, 255, 0.4); }
.icon-sm { width: 18px; height: 18px; }
.hero-stack { margin-top: 40px; display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.stack-label { font-size: 13px; color: rgba(255, 255, 255, 0.55); font-weight: 500; }
.stack-chips { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.chip {
  padding: 6px 14px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 12.5px; font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.05em;
}
/* =========================================================
   SECTION BLOCKS
   ========================================================= */
.section-block { padding: 100px 0; position: relative; }
.section-block.bg-alt { background: linear-gradient(180deg, var(--bg-light) 0%, #eef4fb 100%); }
body.dark .section-block.bg-alt { background: linear-gradient(180deg, #0a0f2c 0%, #0e1540 100%); }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin: 0 0 16px; color: var(--text-light); font-weight: 700; }
body.dark .section-header h2 { color: var(--text-dark); }
.section-header p { font-size: 1.05rem; }
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 70px; align-items: center;
}
.two-col.reverse .col-visual { order: -1; }
.col-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0 0 20px; color: var(--text-light); font-weight: 700; }
body.dark .col-text h2 { color: var(--text-dark); }
.col-text p { margin: 0 0 16px; font-size: 1rem; }
.col-text strong { color: var(--text-light); font-weight: 600; }
body.dark .col-text strong { color: #fff; }
/* Code window */
.code-window {
  background: #0d1330;
  border-radius: 18px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 20, 60, 0.35), 0 0 0 1px rgba(0, 212, 255, 0.08);
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
  transition: transform 0.5s ease;
}
.code-window:hover { transform: perspective(1200px) rotateY(-2deg) rotateX(0); }
.code-header {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.code-header .dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }
.code-title {
  margin-left: 12px; font-family: "JetBrains Mono", monospace;
  font-size: 12.5px; color: #9db4d6;
}
.code-body {
  margin: 0; padding: 22px 24px;
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-size: 13.5px; line-height: 1.75;
  color: #cfe4ff;
  overflow-x: auto;
}
.c-key { color: #00d4ff; }
.c-str { color: #a5d6ff; }
.c-num { color: #ffe08a; }
.c-ok { color: #7ee787; }
.code-footer {
  padding: 12px 20px;
  background: rgba(0, 212, 255, 0.06);
  border-top: 1px solid rgba(0, 212, 255, 0.15);
  font-size: 12.5px; color: #7ee787;
}
.status-ok { display: inline-flex; align-items: center; gap: 8px; }
.status-ok .pulse-dot { background: #7ee787; box-shadow: 0 0 0 0 rgba(126, 231, 135, 0.7); }
/* Integrations grid */
.integrations-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.int-card {
  position: relative;
  background: var(--card-bg-light);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 32px 28px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s;
  overflow: hidden;
}
body.dark .int-card { background: var(--card-bg-dark); border-color: var(--border-dark); }
.int-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 0%), rgba(0, 212, 255, 0.12), transparent 40%);
  opacity: 0; transition: opacity 0.35s;
  pointer-events: none;
}
.int-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(0, 212, 255, 0.4);
}
.int-card:hover::before { opacity: 1; }
.int-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient-primary);
  color: #0a0f2c;
  margin-bottom: 18px;
  box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}
.int-icon i { width: 26px; height: 26px; }
.int-card h3 { font-size: 1.15rem; margin: 0 0 10px; color: var(--text-light); font-weight: 600; }
body.dark .int-card h3 { color: var(--text-dark); }
.int-card p { margin: 0; font-size: 0.96rem; }
.int-card-highlight { border-color: rgba(0, 212, 255, 0.35); background: linear-gradient(135deg, rgba(0, 212, 255, 0.06), rgba(0, 153, 255, 0.03)); }
/* Benefits */
.benefits-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
}
.benefits-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 20px 22px;
  background: var(--card-bg-light);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  font-size: 1rem; color: var(--text-light); font-weight: 500;
  transition: transform 0.3s, border-color 0.3s;
}
body.dark .benefits-list li { background: var(--card-bg-dark); border-color: var(--border-dark); color: var(--text-dark); }
.benefits-list li:hover { transform: translateX(6px); border-color: rgba(0, 212, 255, 0.4); }
.benefits-list i {
  width: 22px; height: 22px; flex-shrink: 0;
  color: var(--accent2); margin-top: 2px;
}
/* Security card */
.security-card {
  background: linear-gradient(160deg, #0a0f2c, #14204d);
  color: #fff; border-radius: 22px; padding: 34px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  box-shadow: 0 30px 70px rgba(0, 20, 60, 0.25);
}
.sec-header { display: flex; align-items: center; gap: 16px; padding-bottom: 22px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); margin-bottom: 22px; }
.sec-header i {
  width: 44px; height: 44px;
  padding: 10px; border-radius: 12px;
  background: rgba(0, 212, 255, 0.15); color: var(--accent);
}
.sec-header h4 { margin: 0 0 4px; font-size: 1.1rem; color: #fff; }
.sec-header span { font-size: 12.5px; color: rgba(255, 255, 255, 0.55); letter-spacing: 0.05em; }
.sec-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.sec-list li { display: flex; align-items: center; gap: 12px; font-size: 0.96rem; color: rgba(255, 255, 255, 0.85); }
.sec-list i { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
/* =========================================================
   FINAL CTA
   ========================================================= */
.final-cta {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #060a20 0%, #0a0f2c 60%, #0e1a4d 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.cta-bg-glow {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(600px circle at 20% 30%, rgba(0, 212, 255, 0.25), transparent 55%),
    radial-gradient(500px circle at 80% 70%, rgba(0, 153, 255, 0.2), transparent 60%);
}
.cta-inner { position: relative; z-index: 2; max-width: 780px; }
.final-cta h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin: 0 0 18px; color: #fff; font-weight: 700; }
.final-cta p { color: rgba(255, 255, 255, 0.8); font-size: 1.05rem; margin: 0 auto 12px; max-width: 640px; }
.cta-sub { color: rgba(255, 255, 255, 0.6) !important; font-size: 0.98rem !important; margin-bottom: 34px !important; }
.final-cta .hero-ctas { justify-content: center; }
/* =========================================================
   ANIMACIONES SCROLL REVEAL
   ========================================================= */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse .col-visual { order: 0; }
  .code-window { transform: none; }
}
@media (max-width: 860px) {
  .api-hero { padding: 100px 0 80px; }
  .section-block { padding: 70px 0; }
  .final-cta { padding: 90px 0; }
  .floating-node { display: none; }
}
@media (max-width: 520px) {
  .btn-cta { width: 100%; justify-content: center; }
  .hero-stack { flex-direction: column; gap: 12px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}


/* CTA FINAL - MODO Claro */
body.light .final-cta,
body:not(.dark) .final-cta {
  background: #ffffff;
  color: #1e2937;
}

body.light .final-cta h2,
body:not(.dark) .final-cta h2 {
  color: #1e2937;
}

body.light .final-cta p,
body:not(.dark) .final-cta p {
  color: #64748b;
}

body.light .final-cta .cta-sub,
body:not(.dark) .final-cta .cta-sub {
  color: #64748b !important;
}

/* Botón ghost en CTA claro */
body.light .btn-ghost-light,
body:not(.dark) .btn-ghost-light {
  color: #1e2937;
  border-color: rgba(0, 212, 255, 0.5);
}

body.light .btn-ghost-light:hover,
body:not(.dark) .btn-ghost-light:hover {
  background: rgba(0, 212, 255, 0.08);
}

/* =========================================================================
   ===== HERO MODO CLARO: ANIMACIONES ULTRA FUERTES + SOPORTE IMAGEN PNG =====
   ========================================================================= */

body.light .api-hero {
  /* Capa 1: Degradado blanco semi-transparente para garantizar contraste del texto */
  /* Capa 2: Tu imagen PNG (se lee desde la variable que definas o pon aquí la URL) */
  /* Capa 3: Fondo blanco absoluto */
  background: 
    linear-gradient(rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.75)),
    var(--hero-bg-image) center/cover no-repeat,
    #ffffff !important;
  color: var(--text-light) !important;
}

body.light .api-hero h1 {
  color: var(--text-light) !important;
}

body.light .hero-lead {
  color: #27272a !important; /* Gris ultra oscuro para máxima legibilidad */
  font-weight: 500 !important;
}

/* 1. ANIMACIÓN DE LÍNEAS CONECTORAS (La clave del cambio) */
body.light .connection-lines path {
  /* Anulamos el degradado transparente del HTML y forzamos un azul eléctrico puro y potente */
  stroke: #0066ff !important; 
  stroke-width: 3px !important; /* Grosor aumentado a 3px para resaltar sobre la imagen PNG */
  opacity: 1 !important;
  /* Sombra proyectada azul para dar relieve tridimensional sobre el fondo e imagen */
  filter: drop-shadow(0 3px 6px rgba(0, 102, 255, 0.35)) !important;
}

/* 2. ANIMACIÓN DE LA CUADRÍCULA (Grid Overlay) */
body.light .grid-overlay {
  background-image:
    linear-gradient(rgba(0, 102, 255, 0.18) 1.5px, transparent 1.5px),
    linear-gradient(90deg, rgba(0, 102, 255, 0.18) 1.5px, transparent 1.5px) !important;
  background-size: 45px 45px !important; /* Reajuste de tamaño para mayor presencia visual */
  opacity: 1 !important;
}

/* 3. ANIMACIÓN DE LOS DESTELLOS FLOJOS (Glows) */
body.light .glow {
  filter: blur(75px) !important; /* Reducimos el blur de 100px a 75px para concentrar más la fuerza del color */
  opacity: 0.5 !important;
}
body.light .glow-1 {
  background: #00d4ff !important;
  mix-blend-mode: multiply !important; /* Modos de fusión que tiñen con fuerza la imagen y el fondo blanco */
}
body.light .glow-2 {
  background: #9d4edd !important; /* Cambiado a un tono púrpura/magenta vivo que genera un contraste increíble en modo claro */
  mix-blend-mode: multiply !important;
}

/* 4. ANIMACIÓN DE NODOS FLOTANTES (Iconos en cajas) */
body.light .floating-node {
  background: #ffffff !important;
  border: 2.5px solid #0066ff !important; /* Borde más grueso y azul eléctrico */
  color: #0066ff !important;
  /* Doble sombra: una oscura para separarlo del PNG y una azul que simula iluminación neón */
  box-shadow: 
    0 20px 35px rgba(10, 15, 44, 0.12), 
    0 4px 15px rgba(0, 102, 255, 0.25) !important;
  opacity: 1 !important;
}
body.light .floating-node i {
  color: #0066ff !important;
  stroke-width: 2.5px !important; /* Iconos Lucide con trazo más grueso y marcado */
}

/* 5. DETALLES ADICIONALES (Chips, Badges y Botones) */
body.light .hero-badge {
  background: rgba(0, 102, 255, 0.08) !important;
  border: 1.5px solid rgba(0, 102, 255, 0.35) !important;
  color: #0055cc !important;
  font-weight: 600 !important;
}
body.light .pulse-dot {
  background: #0066ff !important;
  box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.6) !important;
}
body.light .stack-label {
  color: #4b5563 !important;
  font-weight: 600 !important;
}
body.light .chip {
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  color: #1f2937 !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03) !important;
}
body.light .btn-ghost-cta {
  color: #1f2937 !important;
  border: 2px solid #cbd5e1 !important;
  background: rgba(255, 255, 255, 0.8) !important;
  font-weight: 600 !important;
}
body.light .btn-ghost-cta:hover {
  background: #0066ff !important;
  border-color: #0066ff !important;
  color: #ffffff !important;
}

/* STACK TECNOLÓGICO (Chips de REST, GraphQL, etc.) */
body.light .stack-label {
  color: var(--text-soft-light) !important;
}

body.light .chip {
  background: #f8fafd !important;
  border: 1px solid var(--border-light) !important;
  color: var(--text-light) !important;
}

/* CUADRÍCULA DE FONDO: Ahora visible y sutil en fondo blanco */
body.light .grid-overlay {
  background-image:
    linear-gradient(rgba(0, 153, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 153, 255, 0.07) 1px, transparent 1px) !important;
  opacity: 1 !important;
}

/* DESTELLOS DE COLOR (Glows): Potentes usando mezcla de multiplicación */
body.light .glow {
  opacity: 0.28 !important;
  mix-blend-mode: multiply !important; /* Evita que se laven en el fondo blanco y crea un degradado pastel vivo */
}

/* LÍNEAS CONECTORAS SVG: Animación dashMove fuerte y nítida */
body.light .connection-lines {
  opacity: 1 !important;
}

body.light .connection-lines path {
  opacity: 0.85 !important;
  stroke-width: 2px !important; /* Un leve aumento de grosor para que el movimiento destaque */
}

/* NODOS FLOTANTES EN 3D (Iconos Base de datos, Nube, CPU...) */
body.light .floating-node {
  background: #ffffff !important;
  border: 1px solid rgba(0, 153, 255, 0.35) !important;
  color: var(--accent2) !important;
  box-shadow: 0 12px 30px rgba(10, 15, 44, 0.06), 0 4px 12px rgba(0, 153, 255, 0.12) !important;
  opacity: 1 !important;
}

body.light .floating-node i {
  color: var(--accent2) !important;
}