.landing-card-dark {
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(4, 44, 83, 0.5);
  border-radius: 16px;
  color: rgba(248, 250, 252, 0.96);
  backdrop-filter: blur(12px);
}

.landing-hero-card {
  position: relative;
  overflow: visible; /* orbit needs to bleed outside the card */
  transform-style: preserve-3d;
  transition: box-shadow 0.6s ease;
  z-index: 1;
}

/* clip just the shimmer & image, not the orbit ring */
.landing-hero-card > img,
.landing-hero-card .hero-shimmer {
  overflow: hidden;
}

.landing-hero-orbit {
  position: absolute;
  top: -60px;
  right: -50px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(56, 189, 248, 0.45);
  box-shadow: 0 0 50px rgba(56, 189, 248, 0.22), inset 0 0 30px rgba(56, 189, 248, 0.05);
  animation: landing-orbit 18s linear infinite;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.landing-hero-orbit span {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle, #38bdf8 0%, rgba(56, 189, 248, 0.2) 70%);
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.6);
}

.landing-hero-orbit span:nth-child(1) {
  top: 20px;
  left: 40px;
}

.landing-hero-orbit span:nth-child(2) {
  top: 140px;
  right: 20px;
  width: 14px;
  height: 14px;
  background: radial-gradient(circle, #34d399 0%, rgba(52, 211, 153, 0.2) 70%);
  box-shadow: 0 0 20px rgba(52, 211, 153, 0.6);
}

.landing-hero-orbit span:nth-child(3) {
  bottom: 30px;
  left: 90px;
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, #fbbf24 0%, rgba(251, 191, 36, 0.2) 70%);
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.6);
}

@keyframes landing-orbit {
  0% {
    transform: rotate(0deg) translateZ(0);
  }
  100% {
    transform: rotate(360deg) translateZ(0);
  }
}

.landing-muted {
  color: rgba(255, 255, 255, 0.72);
}

.landing-hero .text-muted,
.landing-card-dark .text-muted,
.landing-card-dark .text-dark,
.landing-hero .text-dark,
.bg-dark .text-muted {
  color: rgba(248, 250, 252, 0.72) !important;
}

.landing-hero .text-secondary,
.landing-card-dark .text-secondary,
.bg-dark .text-secondary {
  color: rgba(226, 232, 240, 0.78) !important;
}

.landing-section {
  padding: 88px 0;
}

.landing-section-tight {
  padding: 64px 0;
}

.landing-feature-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(13, 110, 253, 0.10);
  color: #185FA5;
}

.landing-anchor {
  scroll-margin-top: 80px;
}

/* GSAP ANIMATION STATES */
.gsap-reveal {
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity;
}

.feature-card-col, .process-step {
  opacity: 0;
  will-change: transform, opacity;
}

/* PERFORMANCE & REFINEMENTS */
.landing-hero-card, .landing-card, .landing-card-dark {
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

/* VIBRANT BLUE GRADIENTS */
.vibrant-blue-text {
  background: linear-gradient(135deg, #185FA5 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.vibrant-blue-glow {
  box-shadow: 0 0 20px rgba(13, 110, 253, 0.4), 0 0 40px rgba(56, 189, 248, 0.2);
}

::selection {
  background: rgba(13, 110, 253, 0.2);
  color: #185FA5;
}

/* -- index.html -- */
/* ── CSS Custom Properties ─────────────────────────────────────────── */
    :root {
      --sge-void:    #010912;
      --sge-deep:    #020B18;
      --sge-navy:    #042C53;
      --sge-blue:    #185FA5;
      --sge-mid:     #378ADD;
      --sge-sky:     #85B7EB;
      --sge-cyan:    #00E5FF;
      --sge-teal:    #64FFDA;
      --sge-white:   #E8F4FD;
      --sge-glass:   rgba(255,255,255,0.04);
      --sge-border:  rgba(0,229,255,0.12);
    }

    /* ── Preloader ─────────────────────────────────────────────────────── */
    #sge-preloader {
      position: fixed; inset: 0; z-index: 9999;
      background: #010912;
      display: flex; align-items: center; justify-content: center;
      pointer-events: none;
    }
    #preloader-logo {
      width: 80px; height: 80px;
      opacity: 0;
      animation: preloaderLogoIn .3s ease forwards, preloaderLogoOut .4s ease-in .85s forwards;
    }
    #preloader-ring {
      stroke-dasharray: 220;
      stroke-dashoffset: 220;
      animation: preloaderRingDraw .6s ease-in-out .1s forwards;
    }
    /* GOV-SEC-83: secuencia autoplay via CSS @keyframes -- antes era un
       gsap.timeline() con tweens directos sobre .style (opacity/scale/
       strokeDashoffset), violaba style-src-attr igual que el resto de GSAP.
       JS solo escucha 'animationend' para saber cuando arrancar el hero y
       ocultar el preloader (con classList, no con .style.display). */
    @keyframes preloaderLogoIn  { from { opacity: 0; } to { opacity: 1; } }
    @keyframes preloaderRingDraw { from { stroke-dashoffset: 220; } to { stroke-dashoffset: 0; } }
    @keyframes preloaderLogoOut {
      from { transform: scale(1); opacity: 1; }
      to   { transform: scale(.55); opacity: 0; }
    }
    #sge-preloader.preloader-done {
      opacity: 0;
      transition: opacity .4s ease-in-out;
    }
    #sge-preloader.preloader-hidden { display: none; }
    @media (prefers-reduced-motion: reduce) {
      #preloader-logo, #preloader-ring { animation: none; opacity: 1; stroke-dashoffset: 0; }
    }

    /* ── Canvas partículas ─────────────────────────────────────────────── */
    #hero-particles {
      position: absolute; inset: 0;
      z-index: 0; pointer-events: none;
    }

    /* ── Hero word reveal ──────────────────────────────────────────────── */
    .hero-word {
      display: inline-block;
      clip-path: inset(0 100% 0 0);
      will-change: clip-path;
    }

    /* ── Metric pills ──────────────────────────────────────────────────── */
    .hero-metric {
      display: inline-flex; flex-direction: column; align-items: center;
      padding: 0.65rem 1rem; border-radius: 14px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      backdrop-filter: blur(10px); min-width: 90px;
    }
    .hero-metric-value {
      font-size: 1.5rem; font-weight: 800; line-height: 1;
      background: linear-gradient(135deg, #378ADD, #00E5FF);
      -webkit-background-clip: text; background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero-metric-label { font-size: 0.68rem; color: rgba(255,255,255,0.55); text-align: center; margin-top: 4px; }

    /* ── Avatar strip ──────────────────────────────────────────────────── */
    .avatar-strip { display: flex; align-items: center; }
    .avatar-strip img { width: 30px; height: 30px; border-radius: 50%; border: 2px solid rgba(55,138,221,0.6); margin-left: -8px; }
    .avatar-strip img:first-child { margin-left: 0; }

    /* ── Dashboard mock ────────────────────────────────────────────────── */
    .mock-dashboard {
      background: rgba(4,44,83,0.7); border: 1px solid rgba(55,138,221,0.3);
      border-radius: 12px; padding: 14px; position: relative; overflow: hidden;
    }
    .mock-topbar { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
    .mock-dot { width: 9px; height: 9px; border-radius: 50%; }
    .mock-title { font-size: 0.72rem; color: rgba(255,255,255,0.5); font-weight: 600; margin-left: 4px; }
    .mock-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 12px; }
    .mock-stat { background: rgba(55,138,221,0.12); border: 1px solid rgba(55,138,221,0.2); border-radius: 8px; padding: 8px 10px; }
    .mock-stat-val { font-size: 0.95rem; font-weight: 800; color: #00E5FF; }
    .mock-stat-lbl { font-size: 0.62rem; color: rgba(255,255,255,0.45); margin-top: 1px; }
    .mock-chart { height: 52px; display: flex; align-items: flex-end; gap: 5px; padding-bottom: 2px; }
    .mock-chart-bar { flex: 1; border-radius: 4px 4px 0 0; background: linear-gradient(180deg, rgba(0,229,255,0.7) 0%, rgba(55,138,221,0.3) 100%); }
    .mock-alert { margin-top: 10px; display: flex; align-items: center; gap: 8px; background: rgba(0,229,255,0.08); border: 1px solid rgba(0,229,255,0.25); border-radius: 8px; padding: 7px 10px; font-size: 0.72rem; color: rgba(255,255,255,0.8); }
    .mock-alert-dot { width: 7px; height: 7px; border-radius: 50%; background: #00E5FF; flex-shrink: 0; animation: pulse-dot 1.8s ease-in-out infinite; }
    @keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.7)} }

    /* ── Logo ticker ───────────────────────────────────────────────────── */
    .logo-ticker-section {
      background: var(--sge-deep);
      border-top: 1px solid var(--sge-border);
      border-bottom: 1px solid var(--sge-border);
      padding: 2.2rem 0;
      overflow: hidden;
    }
    .logo-ticker-label {
      text-align: center; font-size: 0.75rem; font-weight: 500;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--sge-sky); margin-bottom: 1.4rem;
      opacity: 0;
    }
    .ticker-row { display: flex; gap: 3rem; align-items: center; white-space: nowrap; }
    .ticker-track {
      display: flex; gap: 3rem; align-items: center;
      /* animation driven by RAF JS — no CSS animation to avoid duration-change jank */
      will-change: transform;
      transform: translateZ(0); /* own compositor layer */
    }
    .ticker-logo {
      display: flex; align-items: center; gap: 8px;
      font-size: 0.85rem; font-weight: 600;
      color: rgba(255,255,255,0.3);
      white-space: nowrap;
      /* only color/opacity on hover — no transform on a GPU-animated parent */
      transition: color 0.3s, opacity 0.3s;
      cursor: default;
      user-select: none;
    }
    .ticker-logo iconify-icon {
      font-size: 1.4rem;
      /* Reserve exact space BEFORE the SVG loads — prevents layout shift */
      display: inline-block;
      width: 1.4rem;
      height: 1.4rem;
      flex-shrink: 0;
      vertical-align: middle;
    }
    .ticker-logo:hover { color: rgba(255,255,255,0.9); opacity: 0.9; }
    .ticker-sep { color: rgba(255,255,255,0.1); font-size: 1.2rem; }


    /* Ticker: pictogramas locales para una lectura estable aun sin red. */
    .ticker-logo { color: rgba(232,244,253,0.74); }
    .ticker-logo__icon {
      display: inline-grid;
      width: 1.8rem;
      height: 1.8rem;
      flex: 0 0 1.8rem;
      place-items: center;
      border: 1px solid rgba(0, 229, 255, 0.22);
      border-radius: 0.58rem;
      background: linear-gradient(145deg, rgba(12, 48, 68, 0.84), rgba(3, 19, 32, 0.84));
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 0.45rem 1.3rem rgba(0, 0, 0, 0.18);
      color: #42dcff;
      font-size: 1.05rem;
      line-height: 1;
    }
    .ticker-logo:hover { color: #f2fbff; opacity: 1; }
    .ticker-logo:hover .ticker-logo__icon { border-color: rgba(91, 230, 255, 0.68); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 0 1.2rem rgba(0, 229, 255, 0.28); color: #91efff; }