/* ============================================================
   BGI Tools — Estilos Globales
   bgitools.com
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&display=swap');

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

:root {
  /* Legacy (mantener para compatibilidad con estilos anteriores) */
  --bgi-dark:      #05080f;
  --bgi-blue-deep: #134A6E;
  --bgi-blue-mid:  #1a6090;
  --bgi-accent:    #5ba3cc;
  --bgi-accent-2:  #7ec8e3;
  --bgi-muted:     #64748b;
  --bgi-surface:   rgba(255,255,255,0.03);
  --bgi-border:    rgba(255,255,255,0.07);
  --bgi-border-blue: rgba(91,163,204,0.18);
  --radius:        16px;

  /* ── Sistema de diseño unificado BGI Tools ───────────── */
  /* Fondos */
  --bgi-bg-primary: #0B1426;
  --bgi-bg-secondary: #0F1B3D;
  --bgi-bg-card: rgba(15,27,61,0.6);
  --bgi-bg-card-hover: rgba(15,27,61,0.8);

  /* Azules de marca */
  --bgi-blue: #3B82F6;
  --bgi-blue-hover: #2563EB;
  --bgi-blue-light: #93C5FD;
  --bgi-blue-bg: rgba(59,130,246,0.15);
  --bgi-blue-border: rgba(59,130,246,0.3);
  --bgi-blue-border-strong: rgba(59,130,246,0.5);
  --bgi-blue-glow: rgba(59,130,246,0.15);

  /* Estados semánticos (solo cuando hay significado real) */
  --bgi-success: #22C55E;
  --bgi-success-bg: rgba(34,197,94,0.15);
  --bgi-success-border: rgba(34,197,94,0.4);
  --bgi-success-light: #86EFAC;

  --bgi-warning: #F59E0B;
  --bgi-warning-bg: rgba(245,158,11,0.15);
  --bgi-warning-border: rgba(245,158,11,0.4);
  --bgi-warning-light: #FCD34D;

  --bgi-neutral: rgba(148,163,184,0.6);
  --bgi-neutral-bg: rgba(148,163,184,0.1);
  --bgi-neutral-border: rgba(148,163,184,0.2);

  /* Textos */
  --bgi-text-primary: #FFFFFF;
  --bgi-text-secondary: #94A3B8;
  --bgi-text-tertiary: #64748B;

  /* Radios */
  --bgi-radius-sm: 6px;
  --bgi-radius-md: 8px;
  --bgi-radius-lg: 12px;
  --bgi-radius-xl: 16px;
}

/* ── Botones unificados ─────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
  color: white;
  font-family: inherit; font-weight: 500; font-size: 14px;
  padding: 12px 20px; border-radius: 10px;
  border: none; cursor: pointer; text-decoration: none;
  box-shadow: 0 4px 14px rgba(59,130,246,0.32), inset 0 1px 0 rgba(255,255,255,0.12);
  transition: background 0.2s ease, transform 0.2s cubic-bezier(0.22,1,0.36,1), box-shadow 0.25s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(59,130,246,0.45), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--bgi-blue-light);
  font-family: inherit; font-weight: 500; font-size: 14px;
  padding: 12px 18px; border-radius: var(--bgi-radius-md);
  border: 1px solid var(--bgi-blue-border);
  cursor: pointer; text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.btn-secondary:hover {
  background: var(--bgi-blue-bg);
  border-color: var(--bgi-blue-border-strong);
}

/* ── Badges / chips unificados ──────────────────────── */
.badge {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 6px 12px; border-radius: var(--bgi-radius-sm);
  border: 1px solid;
}
.badge--info {
  background: var(--bgi-blue-bg);
  border-color: var(--bgi-blue-border);
  color: var(--bgi-blue-light);
}
.badge--success {
  background: var(--bgi-success-bg);
  border-color: var(--bgi-success-border);
  color: var(--bgi-success-light);
}
.badge--neutral {
  background: var(--bgi-neutral-bg);
  border-color: var(--bgi-neutral-border);
  color: var(--bgi-text-secondary);
}
.badge--warning {
  background: var(--bgi-warning-bg);
  border-color: var(--bgi-warning-border);
  color: var(--bgi-warning-light);
}
.badge--sm { padding: 4px 8px; font-size: 10px; letter-spacing: 0.5px; }

/* ── Scrollbar ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(91,163,204,0.25); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(91,163,204,0.45); }

/* ── Base ──────────────────────────────────────────────── */
body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #050816;
  color: #f1f5f9;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;

  /* Cuadrícula sutil con paralaje visual */
  background-image:
    radial-gradient(rgba(59,130,246,0.04) 1px, transparent 1px),
    linear-gradient(180deg, #050816 0%, #08102B 100%);
  background-size: 32px 32px, 100% 100%;
}

/* Línea de luz superior animada */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(59,130,246,0.4) 25%,
    rgba(147,197,253,0.95) 50%,
    rgba(59,130,246,0.4) 75%,
    transparent 100%
  );
  z-index: 999;
  pointer-events: none;
  animation: shimmerLine 8s ease-in-out infinite;
}
@keyframes shimmerLine {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Orbs de luz flotantes (atmósfera tecnológica) */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 600px 400px at 15% 10%, rgba(59,130,246,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 700px 500px at 85% 25%, rgba(99,102,241,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 800px 600px at 50% 100%, rgba(59,130,246,0.10) 0%, transparent 65%);
  animation: orbsFloat 18s ease-in-out infinite alternate;
}
@keyframes orbsFloat {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(20px, -10px) scale(1.05); }
  100% { transform: translate(-15px, 15px) scale(0.97); }
}

/* Resplandor adicional para páginas que lo soliciten */
.page-glow {
  position: fixed;
  top: -300px; left: 50%; transform: translateX(-50%);
  width: 1200px; height: 700px;
  background: radial-gradient(ellipse at 50% 10%, rgba(59,130,246,0.25) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
  filter: blur(20px);
}

/* Todo el contenido sobre el resplandor */
.topbar, .hub-hero, .hub-tools, .hub-footer { position: relative; z-index: 1; }

/* ── Topbar ────────────────────────────────────────────── */
.topbar {
  background: rgba(5,8,22,0.55);
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  border-bottom: 1px solid rgba(59,130,246,0.12);
  position: sticky; top: 0; z-index: 100;
}
.topbar-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 14px 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.bgi-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.topbar-back {
  color: rgba(147,197,253,0.7); font-size: 13px; font-weight: 500;
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 10px; border: 1px solid rgba(59,130,246,0.18);
  background: rgba(15,27,61,0.4); backdrop-filter: blur(12px);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.topbar-back:hover {
  color: white; border-color: rgba(59,130,246,0.45);
  background: rgba(59,130,246,0.12);
}

.topbar-profile {
  display:flex; align-items:center; gap:9px;
  padding:5px 14px 5px 5px; border-radius:999px;
  background:rgba(15,27,61,0.5);
  border:1px solid rgba(59,130,246,0.22);
  backdrop-filter:blur(12px);
  text-decoration:none;
  transition:background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.topbar-profile:hover {
  background:rgba(59,130,246,0.18);
  border-color:rgba(59,130,246,0.45);
  transform:translateY(-1px);
}
.topbar-profile-avatar {
  width:30px; height:30px; border-radius:50%;
  background:linear-gradient(135deg, rgba(59,130,246,0.4), rgba(59,130,246,0.15));
  border:1px solid rgba(59,130,246,0.4);
  box-shadow: 0 4px 12px rgba(59,130,246,0.18), inset 0 1px 0 rgba(255,255,255,0.12);
  color:#DBEAFE; font-size:13px; font-weight:600;
  display:inline-flex; align-items:center; justify-content:center;
  text-transform:uppercase; flex-shrink:0;
}
.topbar-profile-name {
  color:rgba(255,255,255,0.9); font-size:13px; font-weight:600;
  max-width:140px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}

/* ── Hero ──────────────────────────────────────────────── */
.hub-hero {
  text-align: center;
  padding: 110px 24px 70px;
  position: relative;
}

.hub-hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: rgba(147,197,253,0.95); font-size: 12px; font-weight: 600;
  padding: 8px 18px; border-radius: 999px; margin-bottom: 36px;
  text-transform: uppercase; letter-spacing: 0.16em;
  box-shadow: 0 8px 32px rgba(59,130,246,0.15);
  animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) both 0.1s;
}
/* Punto pulsante azul electric */
.hub-hero-badge::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--bgi-blue);
  box-shadow: 0 0 12px var(--bgi-blue), 0 0 4px var(--bgi-blue-light);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 12px var(--bgi-blue); }
  50%      { opacity: 0.55; transform: scale(0.7); box-shadow: 0 0 6px var(--bgi-blue); }
}

.hub-title {
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 800; line-height: 1.0; letter-spacing: -0.035em;
  margin-bottom: 26px;
  animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) both 0.2s;
}
.hub-title span {
  background: linear-gradient(120deg,
    #93C5FD 0%,
    #60A5FA 25%,
    #3B82F6 50%,
    #60A5FA 75%,
    #93C5FD 100%
  );
  background-size: 280% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 8s ease infinite;
  filter: drop-shadow(0 0 32px rgba(59,130,246,0.35));
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.hub-subtitle {
  font-size: 18px; color: rgba(255,255,255,0.55);
  max-width: 520px; margin: 0 auto 44px;
  line-height: 1.7;
  font-weight: 400;
  animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) both 0.3s;
}

/* Pill de NTPVS guardado */
.hero-ntpvs-pill {
  display: inline-flex; align-items: center; gap: 14px;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.3);
  backdrop-filter: blur(20px);
  border-radius: 999px;
  padding: 11px 22px 11px 20px;
  margin: 0 auto 36px; text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) both 0.4s;
}
.hero-ntpvs-pill:hover {
  background: rgba(59,130,246,0.18);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(59,130,246,0.25);
}
.hero-ntpvs-pill-label {
  color: rgba(147,197,253,0.85); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
}
.hero-ntpvs-pill-score {
  color: white; font-size: 18px; font-weight: 700;
  display: inline-flex; align-items: baseline;
}
.hero-ntpvs-pill-score small { font-size: 11px; opacity: 0.6; font-weight: 500; margin-left:1px; }
.hero-ntpvs-pill-cta { color: var(--bgi-blue-light); font-size: 12px; font-weight: 600; }
@media (max-width: 520px) {
  .hero-ntpvs-pill { gap: 10px; padding: 9px 14px; }
  .hero-ntpvs-pill-cta { display: none; }
}

/* Separador decorativo curvo */
.hub-divider {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin-bottom: 0;
  animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) both 0.35s;
}
.hub-divider-line {
  width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,0.3));
}
.hub-divider-line:last-child {
  background: linear-gradient(90deg, rgba(59,130,246,0.3), transparent);
}
.hub-divider-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--bgi-blue);
  box-shadow: 0 0 8px var(--bgi-blue);
}

/* ── Grid de herramientas ──────────────────────────────── */
.hub-tools {
  max-width: 1140px; margin: 0 auto;
  padding: 60px 28px 110px;
}

.hub-section-header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 32px;
  animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) both 0.4s;
}
.hub-section-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, rgba(59,130,246,0.18), transparent);
}
.hub-section-label {
  font-size: 11px; font-weight: 600; color: rgba(147,197,253,0.55);
  text-transform: uppercase; letter-spacing: 0.18em;
  white-space: nowrap;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

/* ── Tool Card (glass + orgánica) ──────────────────────── */
.tool-card {
  background: linear-gradient(135deg, rgba(15,27,61,0.55), rgba(15,27,61,0.35));
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(59,130,246,0.12);
  border-radius: 22px;
  padding: 28px 26px 24px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color 0.4s ease, transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease, background 0.4s ease;
}

/* Glow de fondo en la card */
.tool-card::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 400px 200px at 0% 0%, rgba(59,130,246,0.08), transparent 60%);
  pointer-events: none;
  opacity: 0.6;
  transition: opacity 0.4s ease;
}

/* Número de tarjeta — textura sutil */
.tool-num {
  position: absolute; top: 22px; right: 22px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  color: rgba(147,197,253,0.18);
  font-variant-numeric: tabular-nums;
  z-index: 2;
}

/* Tarjeta activa */
.tool-card.active {
  cursor: pointer;
}

/* Línea de acento brillante en la parte superior */
.tool-card.active::before {
  content: '';
  position: absolute; top: 0; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(59,130,246,0.5),
    rgba(147,197,253,0.95),
    rgba(59,130,246,0.5),
    transparent
  );
  border-radius: 50%;
  transition: opacity 0.4s ease;
}

.tool-card.active:hover {
  border-color: rgba(59,130,246,0.4);
  background: linear-gradient(135deg, rgba(15,27,61,0.75), rgba(15,27,61,0.5));
  transform: translateY(-4px);
  box-shadow:
    0 28px 70px rgba(0,0,0,0.5),
    0 0 60px rgba(59,130,246,0.18),
    0 0 0 1px rgba(59,130,246,0.18) inset;
}
.tool-card.active:hover::after { opacity: 1; }

.tool-card.soon {
  opacity: 0.55;
  cursor: not-allowed;
  filter: grayscale(40%);
}
.tool-card.soon::before { display: none; }

/* ── Icono unificado en azul BGI ───────────────────────── */
.tool-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  background: linear-gradient(135deg, rgba(59,130,246,0.22), rgba(59,130,246,0.08));
  border: 1px solid rgba(59,130,246,0.3);
  box-shadow: 0 8px 24px rgba(59,130,246,0.12), inset 0 1px 0 rgba(255,255,255,0.08);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease;
  position: relative; z-index: 2;
}
.tool-card.active:hover .tool-icon {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 12px 32px rgba(59,130,246,0.28), inset 0 1px 0 rgba(255,255,255,0.12);
}
.tool-card.soon .tool-icon {
  background: rgba(148,163,184,0.08);
  border-color: rgba(148,163,184,0.2);
  box-shadow: none;
}

/* ── Texto ─────────────────────────────────────────────── */
.tool-name {
  font-size: 17px; font-weight: 600; color: white;
  letter-spacing: -0.015em; margin-bottom: 6px;
  position: relative; z-index: 2;
}
.tool-desc {
  font-size: 13.5px; color: rgba(255,255,255,0.5); line-height: 1.65;
  position: relative; z-index: 2;
}

.tool-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: 18px;
  border-top: 1px solid rgba(59,130,246,0.1);
  position: relative; z-index: 2;
}
.tool-tag {
  display: inline-flex; align-items: center;
  font-size: 10.5px; font-weight: 600; padding: 5px 11px;
  border-radius: 999px;
  text-transform: uppercase; letter-spacing: 0.1em;
  border: 1px solid;
}
.tag-active {
  background: rgba(59,130,246,0.12);
  border-color: rgba(59,130,246,0.35);
  color: var(--bgi-blue-light);
}
.tag-soon {
  background: rgba(148,163,184,0.08);
  border-color: rgba(148,163,184,0.2);
  color: var(--bgi-text-secondary);
}
.tool-cta {
  font-size: 13px; font-weight: 600; color: var(--bgi-blue-light);
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.3s ease, color 0.3s ease;
}
.tool-card.active:hover .tool-cta {
  gap: 12px; color: white;
}

/* ── Footer de página ──────────────────────────────────── */
.hub-footer {
  border-top: 1px solid rgba(59,130,246,0.08);
  padding: 36px 24px; text-align: center;
  color: rgba(255,255,255,0.25); font-size: 13px;
  position: relative; z-index: 1;
}
.hub-footer span { color: var(--bgi-blue-light); font-weight: 600; }

/* ── Animaciones ───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.tools-grid .tool-card:nth-child(1) { animation: fadeUp 0.65s cubic-bezier(0.22,1,0.36,1) both 0.40s; }
.tools-grid .tool-card:nth-child(2) { animation: fadeUp 0.65s cubic-bezier(0.22,1,0.36,1) both 0.50s; }
.tools-grid .tool-card:nth-child(3) { animation: fadeUp 0.65s cubic-bezier(0.22,1,0.36,1) both 0.60s; }
.tools-grid .tool-card:nth-child(4) { animation: fadeUp 0.65s cubic-bezier(0.22,1,0.36,1) both 0.70s; }
.tools-grid .tool-card:nth-child(5) { animation: fadeUp 0.65s cubic-bezier(0.22,1,0.36,1) both 0.78s; }
.tools-grid .tool-card:nth-child(6) { animation: fadeUp 0.65s cubic-bezier(0.22,1,0.36,1) both 0.86s; }

/* ── Accesibilidad ─────────────────────────────────────── */
:focus-visible { outline: 2px solid var(--bgi-accent); outline-offset: 3px; border-radius: 4px; }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 640px) {
  .hub-hero  { padding: 72px 20px 56px; }
  .hub-tools { padding: 40px 20px 60px; }
  .tools-grid { grid-template-columns: 1fr; }
  .topbar-inner { padding: 12px 16px; }
}

/* ── Skeletons / Loading shimmer ──────────────────────── */
.bgi-skeleton {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(15,27,61,0.55), rgba(15,27,61,0.35));
  border: 1px solid rgba(59,130,246,0.12);
  border-radius: 16px;
}
.bgi-skeleton::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(59,130,246,0.10) 40%,
    rgba(147,197,253,0.18) 50%,
    rgba(59,130,246,0.10) 60%,
    transparent 100%);
  animation: skeletonShimmer 1.6s ease-in-out infinite;
}
@keyframes skeletonShimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Spinner glass con halo azul */
.bgi-spinner {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 3px solid rgba(59,130,246,0.18);
  border-top-color: var(--bgi-blue);
  animation: bgiSpin 0.8s linear infinite;
  box-shadow: 0 0 24px rgba(59,130,246,0.3);
}
@keyframes bgiSpin { to { transform: rotate(360deg); } }

/* ── Microinteracciones inputs (focus respiración) ───── */
.bgi-input-respira:focus {
  animation: inputRespira 1.4s ease-in-out;
}
@keyframes inputRespira {
  0%, 100% { box-shadow: 0 0 0 4px rgba(59,130,246,0.10); }
  50%      { box-shadow: 0 0 0 7px rgba(59,130,246,0.18); }
}

/* ── prefers-reduced-motion (refuerzo global) ─────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  /* Silenciar orbs flotantes y shimmers */
  body::after,
  .bgi-skeleton::after,
  .btn-login::after { animation: none !important; }
  .hub-title span,
  .login-title { animation: none !important; }
}
