/* ==========================================================================
   G13 Group - Stylesheet
   Premium, Dark Mode, High-Contrast Corporate Theme
   ========================================================================== */

:root {
  /* Colors */
  --g13-dark-primary: #050505;
  --g13-dark-secondary: #0A0A0A;
  --g13-dark-tertiary: #121212;

  --g13-neon-cyan: #8DE969;
  /*00F0FF*/
  --g13-neon-purple: #3da5d9;
  /*#B400FF*/

  --g13-white: #FFFFFF;
  --g13-gray-light: #DEE2E6;
  --g13-gray: #A1A1AA;

  /* Layout constraints */
  --g13-border-white-10: rgba(255, 255, 255, 0.1);
  --g13-border-white-5: rgba(255, 255, 255, 0.05);

  /* Typography */
  --font-syne: 'Syne', sans-serif;
  --font-inter: 'Inter', sans-serif;

  /* Transitions from Readme */
  --trans-micro: 0.08s ease-out;
  /* 80ms micro */
  --trans-hover: 0.15s ease-out;
  /* 150ms hover */
  --trans-reveal: 0.3s ease-out;
  /* 220-300ms reveal */
  --trans-smooth: 0.3s ease-in-out;
}

/* ==========================================================================
   Global Resets & Overrides
   ========================================================================== */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-inter);
  background-color: var(--g13-dark-primary);
  color: var(--g13-gray-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.font-syne {
  font-family: var(--font-syne);
}

.ls-1 {
  letter-spacing: 1px;
}

.ls-2 {
  letter-spacing: 2px;
}

.uppercase {
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-syne);
  color: var(--g13-white);
  font-weight: 700;
}

.bg-dark {
  background-color: var(--g13-dark-primary) !important;
}

.bg-dark-secondary {
  background-color: var(--g13-dark-secondary) !important;
}

.bg-dark-tertiary {
  background-color: var(--g13-dark-tertiary) !important;
}

.text-neon-cyan {
  color: var(--g13-neon-cyan) !important;
}

.text-neon-purple {
  color: var(--g13-neon-purple) !important;
}

.text-gray {
  color: var(--g13-gray) !important;
}

.border-white-10 {
  border-color: var(--g13-border-white-10) !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.py-10 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

@media (min-width: 992px) {
  .py-10 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

/* ==========================================================================
   Buttons & Interactions
   ========================================================================== */
.btn-neon-cyan {
  background-color: var(--g13-neon-cyan);
  color: var(--g13-dark-primary) !important;
  border: 1px solid var(--g13-neon-cyan);
  transition: var(--trans-hover);
  box-shadow: 0 0 15px rgba(141, 233, 105, 0.2);
}

.btn-neon-cyan:hover,
.btn-neon-cyan:focus {
  background-color: var(--g13-dark-primary);
  color: var(--g13-neon-cyan) !important;
  box-shadow: 0 0 30px rgba(141, 233, 105, 0.5);
  transform: translateY(-2px);
}

.btn-neon-cyan:disabled,
.btn-neon-cyan.disabled {
  background-color: var(--g13-neon-cyan) !important;
  color: var(--g13-dark-primary) !important;
  opacity: 0.8 !important;
  box-shadow: none !important;
  transform: none !important;
  cursor: not-allowed;
}

.btn-outline-light {
  transition: var(--trans-hover);
}

.btn-outline-light:hover {
  background-color: var(--g13-white);
  color: var(--g13-dark-primary);
}

.hover-neon {
  transition: var(--trans-hover);
}

.hover-neon:hover {
  color: var(--g13-neon-cyan) !important;
}

.hover-white {
  transition: var(--trans-hover);
}

.hover-white:hover {
  color: var(--g13-white) !important;
}

.transition-quick {
  transition: var(--trans-micro);
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
  background-color: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--g13-border-white-5);
  padding-top: 1rem;
  padding-bottom: 1rem;
  transition: var(--trans-smooth);
}

.navbar .nav-link {
  color: var(--g13-gray-light);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--trans-quick);
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--g13-neon-cyan) !important;
  text-shadow: 0 0 8px rgba(141, 233, 105, 0.4);
}

.navbar .nav-link.active {
  position: relative;
}

/* Fix active dropdown item color (Bootstrap default is blue) */
.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:active {
  background-color: var(--g13-neon-cyan);
  color: var(--g13-dark-primary) !important;
  font-weight: 700;
}

/* Evitar subrayado en botones que sean nav-links */
.navbar .nav-link.btn.active::after {
  display: none !important;
}

.navbar .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 25px;
  height: 2px;
  background-color: var(--g13-neon-cyan);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--g13-neon-cyan);
}

/* Fix mobile toggle */
.navbar-toggler:focus {
  box-shadow: none;
}

/* ==========================================================================
   Cards & Effects
   ========================================================================== */
.premium-shadow {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.bg-glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.card-hover {
  transition: var(--trans-smooth);
}

.card-hover:hover {
  transform: translateY(-10px);
  background-color: #171717 !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.grayscale-hover {
  filter: grayscale(100%);
  transition: var(--trans-smooth);
}

.grayscale-hover:hover,
.card-glow:hover .grayscale-hover {
  filter: grayscale(0%);
}

.card-glow {
  transition: var(--trans-smooth);
}

.card-glow:hover {
  border-color: rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
}

.hover-scale {
  transition: var(--trans-smooth);
}

.hover-scale:hover {
  transform: scale(1.02);
}

/* ==========================================================================
   Backgrounds & Shapes
   ========================================================================== */
.bg-radial-glow {
  background: radial-gradient(circle at center, rgba(0, 240, 255, 0.15) 0%, rgba(5, 5, 5, 0) 60%);
  z-index: 1;
  pointer-events: none;
}

.container-gradient-glow {
  position: relative;
}

.container-gradient-glow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(180, 0, 255, 0.05) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

/* ==========================================================================
   Framework Layer Visuals
   ========================================================================== */
.framework-layer {
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid var(--g13-border-white-10);
  transition: var(--trans-smooth);
}

.framework-layer::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 10px;
  width: 10px;
  height: 10px;
  background-color: var(--g13-neon-cyan);
  border-radius: 50%;
  transition: var(--trans-smooth);
  box-shadow: 0 0 10px var(--g13-neon-cyan);
}

.framework-layer:hover {
  border-color: var(--g13-neon-purple);
}

.framework-layer:hover::before {
  background-color: var(--g13-neon-purple);
  box-shadow: 0 0 10px var(--g13-neon-purple);
}

/* ==========================================================================
   Form Customizations
   ========================================================================== */
.form-control-dark {
  background-color: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid var(--g13-border-white-10) !important;
  color: var(--g13-white) !important;
}

.form-control-dark:focus {
  background-color: rgba(255, 255, 255, 0.05) !important;
  border-color: var(--g13-neon-cyan) !important;
  box-shadow: 0 0 0 0.25rem rgba(0, 240, 255, 0.1) !important;
}

.form-floating>label {
  color: var(--g13-gray);
}

/* Fix autocomplete backdrop color */
input:-webkit-autofill,
textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #121212 inset !important;
  -webkit-text-fill-color: var(--g13-white) !important;
  border-color: var(--g13-border-white-10) !important;
}

/* ==========================================================================
   Custom Pills (Tabs)
   ========================================================================== */
.custom-pills .nav-link {
  color: var(--g13-gray);
  background-color: var(--g13-dark-secondary);
  border: 1px solid var(--g13-border-white-10);
  border-radius: 0.5rem;
  font-family: var(--font-syne);
  font-size: 1.1rem;
  padding: 1rem 1.5rem;
  transition: var(--trans-smooth);
}

.custom-pills .nav-link:hover {
  background-color: var(--g13-dark-tertiary);
  color: var(--g13-white);
  border-color: rgba(255, 255, 255, 0.2);
}

.custom-pills .nav-link.active {
  background-color: var(--g13-dark-tertiary);
  color: var(--g13-white);
  border-color: var(--g13-neon-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
}

#pills-b2b-tab.active {
  border-color: var(--g13-neon-purple);
  box-shadow: 0 0 15px rgba(180, 0, 255, 0.2);
}

#pills-b2c-tab.active {
  border-color: var(--g13-neon-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

#pills-b2e-tab.active {
  border-color: var(--g13-white);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   Platform Tool Cards (#platforms section)
   ========================================================================== */

/* Logo placeholder box */
.platform-logo-placeholder {
  width: 100%;
  aspect-ratio: 3 / 1.6;
  background: var(--ph-color, rgba(255, 255, 255, 0.05));
  border: 1px dashed var(--ph-border, rgba(255, 255, 255, 0.15));
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s, background 0.25s;
  position: relative;
  overflow: hidden;
}

/* Shimmer sweep on placeholder */
.platform-logo-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
      transparent 35%,
      rgba(255, 255, 255, 0.04) 50%,
      transparent 65%);
  background-size: 200% 100%;
  animation: ph-shimmer 2.8s infinite linear;
}

@keyframes ph-shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* Tool card wrapper */
.platform-tool-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.platform-tool-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.18) !important;
}

.platform-tool-card:hover .platform-logo-placeholder {
  background: var(--ph-color, rgba(255, 255, 255, 0.08));
  border-color: var(--ph-border, rgba(255, 255, 255, 0.25));
}

/* Category row label line (desktop only) */
@media (max-width: 767.98px) {
  .platform-logo-placeholder {
    aspect-ratio: 3 / 1.8;
  }
}

/* ==========================================================================
   Hero Logo Reveal — Animated SVG Effect
   ========================================================================== */

.logo-animated-wrap {
  filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0));
  transition: filter 1.5s ease;
}

.logo-animated-wrap.is-filled {
  filter: drop-shadow(0 0 35px rgba(0, 240, 255, 0.45));
}

/* Initially, paths are transparent fill, neon cyan stroke */
.logo-animated-svg .svg-paths path,
.logo-animated-svg .svg-paths polygon {
  fill-opacity: 0;
  stroke: var(--g13-neon-cyan);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: fill-opacity 1.5s ease, stroke-opacity 1.5s ease;
}

/* When animation completes, fill fades in and stroke fades out */
.logo-animated-svg.is-filled .svg-paths path,
.logo-animated-svg.is-filled .svg-paths polygon {
  fill-opacity: 1;
  stroke-opacity: 0;
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.opacity-90 {
  opacity: 0.9 !important;
}

.g13-fit-content { width: fit-content; }
.g13-max-w-540 { max-width: 540px; }
.g13-max-w-600 { max-width: 600px; }
.g13-max-w-620 { max-width: 620px; }
.g13-max-w-640 { max-width: 640px; }
.g13-max-w-680 { max-width: 680px; }
.g13-max-w-700 { max-width: 700px; }
.g13-clickable { cursor: pointer; transition: all 0.3s ease; }
.g13-stroke-text {
  color: transparent;
  -webkit-text-stroke: 2px var(--g13-neon-cyan);
  letter-spacing: 10px;
  animation: subtlePulse 2.5s infinite ease-in-out;
}
.g13-bounce-anim { animation: bounce 2s infinite; }
.g13-hero-img {
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.g13-glow-purple-blur {
  background: rgba(180,0,255,0.15);
  filter: blur(50px);
  z-index: -1;
}
.g13-img-cover-tall { min-height: 400px; object-fit: cover; }
.g13-object-cover { object-fit: cover; }
.g13-min-h-350 { min-height: 350px; }
.g13-sticky-img-tall { height: 75vh; min-height: 600px; }
.g13-sticky-top-120 { top: 120px; }
.g13-img-h-60 { height: 60px; }
.g13-card-img-180 { height: 180px; object-fit: cover; }
.g13-hidden-init { opacity: 0; }
.g13-logo-wrap { width: min(320px, 100%); }
.g13-ecosystem-wrap { width: min(450px, 100%); }
.g13-slogan-svg { overflow: visible; max-width: 420px; }
.g13-parallax-shape {
  top: -100px; right: -50px; width: 300px; height: 300px;
  border: 20px solid rgba(180, 0, 255, 0.05); border-radius: 50%;
}
.g13-parallax-shape-cyan {
  top: -100px; right: -50px; width: 300px; height: 300px;
  border: 20px solid rgba(0, 240, 255, 0.05); border-radius: 50%;
}
.g13-footer-heading { font-size: 1.05rem; }
.g13-btn-sm-label { font-size: 0.75rem; }
.g13-min-h-60vh { min-height: 60vh; }
.g13-badge-opacity-80 { opacity: 0.8; }

/* Icon cube backgrounds */
.g13-icon-cube-cyan { width: 48px; height: 48px; background: rgba(0,240,255,0.12); }
.g13-icon-cube-purple { width: 48px; height: 48px; background: rgba(180,0,255,0.12); }
.g13-icon-cube-white { width: 48px; height: 48px; background: rgba(255,255,255,0.06); }
.g13-icon-circle-sm-cyan { width: 40px; height: 40px; background: rgba(0,240,255,0.12); }
.g13-icon-circle-sm-purple { width: 40px; height: 40px; background: rgba(180,0,255,0.12); }
.g13-icon-circle-sm-white { width: 40px; height: 40px; background: rgba(255,255,255,0.06); }
.g13-circle-lg { width: 60px; height: 60px; }
.g13-circle-xl { width: 80px; height: 80px; }
.g13-badge-circle-cyan { width: 32px; height: 32px; background: rgba(0,240,255,0.1); border: 1px solid rgba(0,240,255,0.3); }
.g13-badge-circle-purple { width: 32px; height: 32px; background: rgba(180,0,255,0.1); border: 1px solid rgba(180,0,255,0.3); }
.g13-step-circle-01 { width: 36px; height: 36px; background: rgba(180,0,255,0.12); border: 1px solid rgba(180,0,255,0.3); }
.g13-step-circle-02 { width: 36px; height: 36px; background: rgba(180,0,255,0.14); border: 1px solid rgba(180,0,255,0.35); }
.g13-step-circle-03 { width: 36px; height: 36px; background: rgba(180,0,255,0.18); border: 1px solid rgba(180,0,255,0.4); }
.g13-step-circle-04 { width: 36px; height: 36px; background: rgba(180,0,255,0.22); border: 1px solid rgba(180,0,255,0.45); }
.g13-stat-circle-warning { width: 55px; height: 55px; background: rgba(255,193,7,0.1); }
.g13-operator-circle { width: 50px; height: 50px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); }
.g13-step-box-01 { background: rgba(0,240,255,0.07); border: 1px solid rgba(0,240,255,0.2); }
.g13-step-box-02 { background: rgba(0,240,255,0.12); border: 1px solid rgba(0,240,255,0.3); }
.g13-step-box-purple { background: rgba(180,0,255,0.03); border: 1px solid rgba(180,0,255,0.18); }
.g13-box-white-02 { background: rgba(255,255,255,0.02); }
.g13-box-white-02-border { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); }
.g13-box-white-03-border { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); }
.g13-box-white-03-dashed { background: rgba(255,255,255,0.03); border: 1px dashed rgba(255,255,255,0.1); }
.g13-box-cyan-04-border { background: rgba(0,240,255,0.04); border: 1px solid rgba(0,240,255,0.15); }
.g13-box-cyan-06-border { background: rgba(0,240,255,0.06); border: 1px solid rgba(0,240,255,0.25); }
.g13-box-purple-04-border { background: rgba(180,0,255,0.04); border: 1px solid rgba(180,0,255,0.15); }
.g13-box-gradient-mixed { background: linear-gradient(135deg,rgba(0,240,255,0.08),rgba(180,0,255,0.08)); border: 1px solid rgba(255,255,255,0.15); }
.g13-dashed-border { border: 1px dashed rgba(255,255,255,0.15) !important; }
.g13-microcopy-box { background: rgba(255,255,255,0.04); border: 1px dashed rgba(255,255,255,0.1); }
.g13-mono-icon-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(5px);
  width: 44px; height: 32px; font-size: 0.9rem;
}
.g13-node-box-cyan { background: rgba(180,0,255,0.08); border: 1px solid rgba(180,0,255,0.35); }
.g13-node-box-cyan-mid { background: rgba(180,0,255,0.12); border: 1px solid rgba(180,0,255,0.4); }
.g13-node-box-cyan-strong { background: rgba(180,0,255,0.16); border: 1px solid rgba(180,0,255,0.5); }
.g13-hero-section-meta {
  min-height: 50vh; padding-top: 8rem; padding-bottom: 5rem;
  background: radial-gradient(ellipse at 30% 50%, rgba(0,240,255,0.08), transparent 55%),
              radial-gradient(ellipse at 75% 60%, rgba(180,0,255,0.07), transparent 50%), #050505;
}
.g13-hero-section-eco {
  min-height: 45vh; padding-top: 7rem; padding-bottom: 4rem;
  background: radial-gradient(ellipse at 70% 50%, rgba(180,0,255,0.09), transparent 55%),
              radial-gradient(ellipse at 20% 60%, rgba(0,240,255,0.07), transparent 50%), #050505;
}
.g13-hero-section-industry {
  min-height: 50vh; padding-top: 10rem;
  background: radial-gradient(circle at 10% 20%, rgba(180, 0, 255, 0.1), transparent 40%), #050505;
}
.g13-glow-ambient-cyan { background: radial-gradient(ellipse at 25% 60%, rgba(0,240,255,0.05) 0%, transparent 55%), radial-gradient(ellipse at 75% 40%, rgba(180,0,255,0.05) 0%, transparent 50%); }
.g13-glow-ambient-cyan2 { background: radial-gradient(ellipse at 80% 40%, rgba(0,240,255,0.06), transparent 60%); }
.g13-glow-ambient-purple { background: radial-gradient(ellipse at 20% 50%, rgba(180,0,255,0.07), transparent 60%); }
.g13-glow-ambient-white { background: radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.03), transparent 60%); }
.g13-glow-ambient-green { background: radial-gradient(ellipse at 50% 55%, rgba(141,233,105,0.06) 0%, transparent 60%); }
.g13-glow-center-purple { background: radial-gradient(circle at 50% 50%, rgba(180,0,255,0.03) 0%, transparent 60%); }
.g13-glow-center-cyan { background: radial-gradient(circle at 50% 50%, rgba(0,240,255,0.02) 0%, transparent 60%); }
.g13-glow-center-orange { background: radial-gradient(circle at 50% 50%, rgba(255,100,0,0.04) 0%, transparent 70%); }
.g13-glow-center-cyan-strong { background: radial-gradient(circle at 30% 50%, rgba(0, 240, 255, 0.06) 0%, transparent 50%); }
.g13-glow-center-purple-strong { background: radial-gradient(ellipse at center, rgba(180,0,255,0.4), transparent 70%); }
.g13-glow-gradient-top {
  background: linear-gradient(90deg,transparent,var(--g13-neon-cyan),transparent);
}
.g13-glow-gradient-top-purple {
  background: linear-gradient(90deg,transparent,var(--g13-neon-purple),transparent);
}
.g13-glow-gradient-top-white {
  background: linear-gradient(90deg,transparent,rgba(255,255,255,0.3),transparent);
}
.g13-glow-connector { background: linear-gradient(90deg,rgba(0,240,255,0.03),rgba(180,0,255,0.03)); }
.g13-glow-connector-purple { background: linear-gradient(90deg,rgba(180,0,255,0.4),rgba(180,0,255,0.1)); }
.g13-glow-connector-purple-rev { background: linear-gradient(90deg,rgba(180,0,255,0.1),rgba(180,0,255,0.4)); }
.g13-glow-hero-bg { background: radial-gradient(circle at 70% 30%, rgba(0, 240, 255, 0.05), transparent 50%); }
.g13-glow-parallax-cyan { background: radial-gradient(circle at 20% 80%, rgba(0, 240, 255, 0.1), transparent 50%); }
.g13-glow-parallax-purple { background: radial-gradient(circle at 80% 20%, rgba(180, 0, 255, 0.12), transparent 50%); }
.g13-glow-overlay { background: linear-gradient(135deg, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.8) 100%); }
.g13-glow-overlay-fade { background: linear-gradient(to top, rgba(8,8,8,1) 0%, rgba(8,8,8,0) 100%); }
.g13-glow-diag-cta { background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,100,0,0.05) 100%); }
.g13-glow-hero-dt {
  background: radial-gradient(ellipse at 60% 50%, rgba(180, 0, 255, 0.12) 0%, transparent 65%), #09090b;
}
.g13-glow-hero-com {
  background: radial-gradient(ellipse at 30% 60%, rgba(0, 240, 255, 0.1) 0%, transparent 55%),
              radial-gradient(ellipse at 75% 30%, rgba(180, 0, 255, 0.09) 0%, transparent 50%), #09090b;
}
.g13-glow-flywheel-bg { background: radial-gradient(ellipse at 50% 50%, rgba(0,240,255,0.05), transparent 70%); }
.g13-glow-orb-top { top: 15%; left: 65%; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(180,0,255,0.18), transparent 70%); filter: blur(40px); }
.g13-glow-orb-bottom { top: 55%; left: 5%; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(0,240,255,0.1), transparent 70%); filter: blur(30px); }
.g13-glow-orb-1 { top: 10%; left: 70%; width: 350px; height: 350px; border-radius: 50%; background: radial-gradient(circle, rgba(0,240,255,0.15), transparent 70%); filter: blur(50px); }
.g13-glow-orb-2 { top: 60%; left: -5%; width: 250px; height: 250px; border-radius: 50%; background: radial-gradient(circle, rgba(180,0,255,0.1), transparent 70%); filter: blur(35px); }
.g13-glow-badge-cyan-01 { background: rgba(0,240,255,0.1); color: #00f0ff; font-size: .72rem; }
.g13-glow-badge-purple-01 { background: rgba(180,0,255,0.1); color: #d580ff; font-size: .72rem; }
.g13-glow-badge-white-01 { background: rgba(255,255,255,0.08); color: #ffffff; font-size: .72rem; }
.g13-glow-badge-infinity {
  background: transparent; border: 1px solid rgba(141,233,105,0.5); color: #8DE969;
}
.g13-link-card { font-size: 0.8rem; letter-spacing: 0.5px; }
.g13-link-card-purple { font-size: 0.8rem; letter-spacing: 0.5px; }
.g13-model-header-cyan { background: linear-gradient(135deg, rgba(0,240,255,0.08), transparent); }
.g13-model-header-cyan-purple { background: linear-gradient(135deg, rgba(0,240,255,0.12), rgba(180,0,255,0.06)); }
.g13-model-header-purple { background: linear-gradient(135deg, rgba(180,0,255,0.08), transparent); }
.g13-model-highlight {
  border-color: rgba(0,240,255,0.3);
  box-shadow: 0 0 40px rgba(0,240,255,0.08);
}
.g13-badge-special {
  background: linear-gradient(135deg, #00f0ff, #b400ff);
  font-size: 0.7rem; color: #fff;
  padding: 0.2rem 0.6rem; border-radius: 4px;
  font-weight: 800; margin-bottom: 1rem; display: inline-block;
}
.g13-subtitle-accent { color: #d580ff; font-size: 1.1rem; }
.g13-quote-text { font-size: 1.15rem; font-style: italic; }
.g13-stat-warn-box { box-shadow: 0 0 20px rgba(255,193,7,0.05); }
.g13-hero-badge-wfit { width: fit-content !important; }
.g13-wglow-brand { max-width: 220px; filter: drop-shadow(0 0 10px rgba(61, 165, 217, 0.2)); opacity: 0.9; }
.g13-glow-center-flywheel {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(ellipse at 50% 50%, rgba(0,240,255,0.05), transparent 70%);
  pointer-events: none;
}
.g13-img-max-h-110 { max-height: 110px; opacity: 0.7; }
.g13-hero-orb-bg {
  background: rgba(180,0,255,0.15); filter: blur(50px); z-index: -1;
}
.g13-mb-n2 { margin-bottom: -0.5rem; }
.g13-mb-n3 { margin-bottom: -0.75rem; }
.g13-me-n5 { margin-right: -1.25rem; }
.g13-ms-n5 { margin-left: -1.25rem; }
.g13-mt-n2 { margin-top: -0.5rem; }
.g13-text-balance { text-align: balance; }
.g13-card-purple-accent { background: rgba(180,0,255,0.03); }
.g13-card-cyan-accent { background: rgba(0,240,255,0.03); }
.g13-card-purple-glow { box-shadow: 0 0 20px rgba(180, 0, 255, 0.15); }
.g13-card-cyan-glow { box-shadow: 0 0 20px rgba(0, 240, 255, 0.15); }
.g13-card-success-glow { box-shadow: 0 0 20px rgba(25, 135, 84, 0.15); }
.g13-card-warning-glow { box-shadow: 0 0 20px rgba(255, 193, 7, 0.15); }
.g13-step-inner-dashed { border: 1px dashed rgba(255, 193, 7, 0.5); }
.g13-audience-bar {
  height: 8px; border-radius: 4px;
  background: linear-gradient(90deg, #00f0ff, #b400ff);
  margin-top: .5rem;
}
.g13-fs-08 { font-size: .8rem; }
.g13-fs-08-lh-14 { font-size: 0.8rem; line-height: 1.4; }
.g13-fs-08-muted { font-size: 0.8rem; color: #a0aec0; }
.g13-fs-072 { font-size: .72rem; }
.g13-fs-078 { font-size: .78rem; }
.g13-fs-065-lh-13 { font-size: .65rem; line-height: 1.3; }
.g13-fs-25-lh-1 { font-size: 2.5rem; line-height: 1; }
.g13-h-60 { height: 60px; }
.g13-min-w-60 { min-width: 60px; }
.g13-max-h-480 { max-height: 480px; }
.g13-icon-24 { width: 24px; height: 24px; font-size: 10px; }
.g13-bg-purple-15 { background: rgba(180,0,255,0.15); }
.g13-bg-purple-12 { background: rgba(180,0,255,0.12); }
.g13-bg-purple-11 { background: rgba(180,0,255,0.11); }
.g13-bg-purple-08 { background: rgba(180,0,255,0.08); }
.g13-bg-purple-03 { background: rgba(180,0,255,0.03); }
.g13-bg-cyan-06 { background: rgba(0,240,255,0.06); }
.g13-bg-white-02 { background: rgba(255,255,255,0.02); }
.g13-bg-white-03 { background: rgba(255,255,255,0.03); }
.g13-bg-white-04 { background: rgba(255,255,255,0.04); }
.g13-bg-white-05 { background: rgba(255,255,255,0.05); }
.g13-bg-white-08 { background: rgba(255,255,255,0.08); }
.g13-glow-orb-cyan-lg {
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,240,255,0.06), transparent 70%);
}
.g13-glow-badge-cyan-muted {
  background: rgba(0,240,255,0.15); color: #00f0ff;
}
.g13-glow-badge-purple-muted {
  background: rgba(180,0,255,0.15); color: #d580ff;
}
.g13-glow-badge-white {
  background: rgba(255,255,255,0.08); color: #ffffff; font-size: .72rem;
}
.g13-box-white-04-dashed {
  background: rgba(255,255,255,0.04); border: 1px dashed rgba(255,255,255,0.1);
}
.g13-fs-08-ls { font-size: 0.8rem; letter-spacing: 0.5px; }
.g13-card-img-180 { height: 180px; object-fit: cover; }
.g13-sticky-hero { height: 100vh; }
.g13-z-10-noevents { z-index: 10; pointer-events: none; }
.g13-h-screen { height: 100vh; }
.g13-max-w-420 { max-width: 420px; }
.g13-fs-italic { font-style: italic; }
.g13-line-cyan { width: 40px; height: 1px; background: var(--g13-neon-cyan); }
.g13-text-muted2 { color: #a0aec0; }
.g13-fs-085 { font-size: 0.85rem; }
.g13-mt-5rem { margin-top: 5rem; }
.g13-pb-10rem { padding-bottom: 10rem; }
.g13-text-right { text-align: right; }
.g13-m-0 { margin: 0; }
.g13-fs-07 { font-size: 0.7rem; }
.g13-glass-dark { backdrop-filter: blur(10px); background: rgba(10, 10, 10, 0.7); }
.g13-glow-topright-purple { background: radial-gradient(circle at top right, rgba(180, 0, 255, 0.1) 0%, transparent 70%); pointer-events: none; }
.g13-fw-300 { font-weight: 300; }
.g13-min-w-160 { min-width: 160px; }
.g13-text-neon { color: #8DE969; }
.g13-text-brand-mid { color: #6890d0; }
.g13-text-purple-imp { color: #d580ff !important; }
.g13-card-img-200 { height: 200px; object-fit: cover; }
.g13-hero-evo { padding-top: 7rem; min-height: 90vh; }

/* ========================================================
   css/evolucion.css — G13 Group Evolutionary Timeline
   Neural Tree V3 - Organic Vertical Design
======================================================== */

/* ── Base ─────────────────────────────────────────────── */
body.evolucion-page {
  background-color: #040817;
  /* Very dark blue/black space */
  color: #fff;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

body.evolucion-page::-webkit-scrollbar {
  width: 6px;
}

body.evolucion-page::-webkit-scrollbar-track {
  background: #040817;
}

body.evolucion-page::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
}

/* ── Starfield / Background ───────────────────────────── */
.starfield {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 30%, rgba(180, 0, 255, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 50% 70%, rgba(0, 240, 255, 0.03) 0%, transparent 40%);
}

.star {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {

  0%,
  100% {
    opacity: 0.1
  }

  50% {
    opacity: 0.7
  }
}

/* ── Page wrapper ─────────────────────────────────────── */
#evo-page {
  position: relative;
  z-index: 1;
  max-width: 1500px;
  margin: 0 auto;
  padding: 2rem 2%;
  display: flex;
  flex-direction: column;
}

/* ── Hero V3 ──────────────────────────────────────────── */

.hero-text {
  max-width: 500px;
}

.hero-text .g13-logo {
  height: 50px;
  margin-bottom: 2rem;
}

.hero-main-title {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
  letter-spacing: -1px;
}

.hero-main-title .dim {
  color: rgba(255, 255, 255, 0.8);
}

.hero-main-title .accent-cyan {
  background: linear-gradient(90deg, #b400ff, #00f0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #e2e8f0;

  max-width: 350px;
}

.hero-right {
  text-align: left;
  padding-bottom: 1rem;
}

.hero-right p {
  font-size: 0.9rem;
  color: #b0c0d0;
  max-width: 250px;
}

/* ── Neural Grid Structure ────────────────────────────── */
.neural-container {
  position: relative;
  width: 100%;
}

/* The central glowing SVG line */
.neural-line-container {
  position: absolute;
  top: -50px;
  /* Connect to hero */
  bottom: 0;
  left: 60%;
  /* Positioned between content and tags */
  width: 100px;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}

.neural-svg-line {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Row structure */


/* ── Col 1: Phase tracker (Nav) ───────────────────────── */
.neural-nav-node {
  opacity: 0.4;
  transition: all 0.4s ease;
  padding-left: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.neural-nav-node.active {
  opacity: 1;
}

.nav-ring {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 0 15px currentColor inset;
  flex-shrink: 0;
}

.nav-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nav-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.2;
  text-transform: uppercase;
}

.nav-year {
  font-size: 0.75rem;
  color: #a0aec0;
  margin-top: 0.25rem;
}

/* ── Col 2: Text Content ──────────────────────────────── */
.neural-content {
  text-align: left;

}

.n-year {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.n-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 1rem;
}

.n-desc {
  font-size: 0.8rem;
  color: #a0aec0;
  line-height: 1.6;
  max-width: 320px;
}

/* ── Col 3: Central Node (Invisible anchor) ───────────── */
.neural-center {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* We use actual HTML nodes for the glowing orbs for better drop-shadows */
.glowing-orb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  position: relative;
  z-index: 5;
}

.glowing-orb::after {
  content: '';
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  background: inherit;
  filter: blur(15px);
  opacity: 0.7;
  z-index: -1;
}

/* ── Col 4: Visuals & Tags ────────────────────────────── */
.neural-right {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.n-floating-visuals {
  position: relative;
  display: flex;
  gap: 1rem;
  z-index: 2;
  flex-wrap: wrap;
}

.floating-icon-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.8rem;
  backdrop-filter: blur(8px);
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: var(--trans-smooth);
}

.floating-icon-box:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.floating-icon-box .f-icon {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
  color: rgba(255, 255, 255, 0.9);
}

.floating-icon-box .f-label {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.float-icon {
  width: 44px;
  height: 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  backdrop-filter: blur(5px);
}

.n-tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: 220px;
  margin-left: 40px;
  /* Space from center */
  position: relative;
  z-index: 2;
}

.n-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 0.5rem 1rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  z-index: 5;
}

.n-tag:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
}

.n-action-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s;
  flex-shrink: 0;
  margin-left: auto;
}

.n-action-btn:hover {
  color: #fff;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

/* ── Specific Colors per row ──────────────────────────── */
.c-origen {
  --node-color: #b400ff;
}

.c-com {
  --node-color: #36d1dc;
}

.c-cono {
  --node-color: #4ade80;
}

.c-nueva {
  --node-color: #f59e0b;
}

.c-neg {
  --node-color: #f97316;
}

.c-comunidad {
  --node-color: #ec4899;
}

.c-edu {
  --node-color: #38bdf8;
}

.c-eco {
  --node-color: #8b5cf6;
}


.n-year {
  color: var(--node-color);
  text-shadow: 0 0 15px var(--node-color);
}

.glowing-orb {
  background: var(--node-color);
}

.nav-node-color {
  color: var(--node-color);
}

/* ── Final Convergence (G13 Logo) ─────────────────────── */
.convergence-row {
  padding: 5rem 0;
  position: relative;
  z-index: 5;
}

.giant-g13 {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: #040817;
  border: 2px solid #fff;
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.2), inset 0 0 30px rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
  position: relative;
}

.giant-g13 img {
  width: 80%;
}

.convergence-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
}

.convergence-desc {
  font-size: 0.9rem;
  color: #a0aec0;
  max-width: 400px;
  margin-top: 1rem;
}

/* ── Futuro ───────────────────────────────────────────── */
.future-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 4rem;
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.f-title {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

.f-desc {
  font-size: 0.8rem;
  color: #a0aec0;
  margin-top: 0.5rem;
}

.f-icons {
  /* Layout handled by Bootstrap grid */
}

.f-icon-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.f-icon-box .icon-ring {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
}

.f-icon-box span {
  font-size: 0.55rem;
  font-weight: 700;
  color: #a0aec0;
  letter-spacing: 1px;
}

/* ── SVG Line drawing class ───────────────────────────── */
.draw-path {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
}

/* ── Responsive ───────────────────────────────────────── */
@media(max-width: 1200px) {

  .neural-nav-node {
    display: none;
  }

  /* Hide left sidebar on smaller screens */
}

@media(max-width: 768px) {


  .neural-line-container {
    left: 25px;
    transform: none;
    width: 50px;
  }

  .neural-center {
    justify-content: flex-start;
  }

  .neural-right {
    display: none;
  }

  /* Hide floating tags to simplify mobile */
  .future-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Removed f-icons mobile override */
}

/* ── Dynamic Branches (SVG) ───────────────────────────── */
.branch-svg-container {
  position: absolute;
  top: 50%;
  left: 50%;
  /* Start at the center orb */
  transform: translateY(-50%);
  width: 300px;
  height: 150px;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}

.branch-path {
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 5px currentColor);
  /* For animation */
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
}

/* Glowing dots at the end of branches */
.branch-dot {
  fill: currentColor;
  filter: drop-shadow(0 0 8px currentColor);
  opacity: 0;
}

/* Ensure text and tags are above dynamic SVG */
.neural-content,
.neural-right,
.neural-center {
  z-index: 2;
}

.dynamic-branch-svg {
  z-index: 0 !important;
}

/* ═══════════════════════════════════════════════════════════
   EVOLUCIÓN — Hero Nucleus Orb
═══════════════════════════════════════════════════════════ */
.hero-nucleus {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Vertical connector from hero orb down into the timeline */
.hero-connector-line {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 80px;
  background: linear-gradient(to bottom, rgba(180, 0, 255, 0.8), transparent);
  box-shadow: 0 0 10px rgba(180, 0, 255, 0.5);
}

/* Rotating orbital rings */
.hero-orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(180, 0, 255, 0.4);
  animation: orb-spin linear infinite;
}

.ring-1 {
  width: 100%;
  height: 100%;
  border-color: rgba(180, 0, 255, 0.5);
  box-shadow: 0 0 12px rgba(180, 0, 255, 0.3), inset 0 0 12px rgba(180, 0, 255, 0.1);
  animation-duration: 8s;
}

.ring-2 {
  width: 75%;
  height: 75%;
  border-color: rgba(54, 209, 220, 0.5);
  box-shadow: 0 0 10px rgba(54, 209, 220, 0.3), inset 0 0 10px rgba(54, 209, 220, 0.1);
  animation-duration: 5s;
  animation-direction: reverse;
}

.ring-3 {
  width: 50%;
  height: 50%;
  border-color: rgba(139, 92, 246, 0.6);
  box-shadow: 0 0 8px rgba(139, 92, 246, 0.4);
  animation-duration: 3s;
}

@keyframes orb-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Core glow orb */
.hero-orb-core {
  position: relative;
  z-index: 5;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff 0%, #b400ff 40%, #36d1dc 100%);
  box-shadow:
    0 0 20px 8px rgba(180, 0, 255, 0.7),
    0 0 60px 20px rgba(54, 209, 220, 0.35),
    0 0 120px 40px rgba(180, 0, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.4rem;
  animation: core-pulse 3s ease-in-out infinite;
}

@keyframes core-pulse {

  0%,
  100% {
    box-shadow: 0 0 20px 8px rgba(180, 0, 255, 0.7), 0 0 60px 20px rgba(54, 209, 220, 0.35), 0 0 120px 40px rgba(180, 0, 255, 0.15);
  }

  50% {
    box-shadow: 0 0 35px 14px rgba(180, 0, 255, 0.9), 0 0 80px 30px rgba(54, 209, 220, 0.5), 0 0 160px 60px rgba(180, 0, 255, 0.25);
  }
}

/* Satellite mini-nodes orbiting the hero */
.hero-satellite {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  z-index: 6;
}

.hero-satellite::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: inherit;
  filter: blur(6px);
  opacity: 0.8;
}

.s1 {
  background: #b400ff;
  top: 0;
  right: 20%;
  animation: orbit-s1 8s linear infinite;
}

.s2 {
  background: #36d1dc;
  bottom: 10%;
  left: 5%;
  animation: orbit-s2 5s linear infinite;
}

.s3 {
  background: #4ade80;
  top: 40%;
  right: 0;
  animation: orbit-s3 6.5s linear infinite;
}

@keyframes orbit-s1 {
  0% {
    transform: rotate(0deg) translateX(90px);
  }

  100% {
    transform: rotate(360deg) translateX(90px);
  }
}

@keyframes orbit-s2 {
  0% {
    transform: rotate(120deg) translateX(68px);
  }

  100% {
    transform: rotate(480deg) translateX(68px);
  }
}

@keyframes orbit-s3 {
  0% {
    transform: rotate(240deg) translateX(45px);
  }

  100% {
    transform: rotate(600deg) translateX(45px);
  }
}

/* Also ensure the evo-hero-v3 doesn't fight row */
.evo-hero-v3 {
  min-height: 70vh;
}

/* ==========================================================================
   Extracted <style> blocks — index.php (splash hero)
   ========================================================================== */
#sloganAnimatedSvg.is-filled text:nth-child(1) {
  fill: #ffffff !important;
}

#sloganAnimatedSvg.is-filled text:nth-child(2) {
  fill: var(--g13-neon-cyan) !important;
}

#sloganAnimatedSvg text {
  transition: fill 0.8s ease;
}

@keyframes subtlePulse {
  0% { transform: scale(1); opacity: 1; text-shadow: 0 0 10px rgba(0, 240, 255, 0.2); }
  50% { transform: scale(1.03); opacity: 0.8; text-shadow: 0 0 25px rgba(0, 240, 255, 0.6); }
  100% { transform: scale(1); opacity: 1; text-shadow: 0 0 10px rgba(0, 240, 255, 0.2); }
}

.splash-flex-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  transition: all 0.5s ease;
}

@media (min-width: 992px) {
  .splash-flex-container {
    flex-direction: row;
    gap: 4rem;
  }
}

@media (max-width: 768px) {
  #splashWelcome h1 {
    font-size: clamp(2rem, 10vw, 4rem) !important;
    letter-spacing: 4px !important;
  }
  .splash-content-wrapper {
    transform: scale(0.85);
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
  }
  #splashColumns {
    gap: 1rem;
  }
  .splash-scroll-indicator {
    bottom: 2rem !important;
    transform: translateX(-50%) scale(0.8);
    opacity: 0.6;
  }
}

.typewriter-cursor {
  color: var(--g13-neon-cyan);
  animation: blink 0.7s infinite;
  margin-left: -8px;
  font-weight: 300;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

.splash-scroll-indicator {
  transition: all 0.3s ease;
  z-index: 30;
}

.splash-scroll-indicator:hover {
  transform: translateX(-50%) translateY(-5px) !important;
  opacity: 1 !important;
}

/* ==========================================================================
   Restored Splash Hero Classes
   ========================================================================== */
.g13-splash-hero {
  height: 250vh;
  background-color: var(--g13-dark-primary);
  position: relative;
  z-index: 10;
}
.g13-sticky-hero {
  height: 100vh;
}
.g13-glow-center-cyan-strong {
  background: radial-gradient(circle at 30% 50%, rgba(0,240,255,0.06) 0%, transparent 50%);
}
.g13-z-10-noevents {
  z-index: 10;
  pointer-events: none;
}
.g13-stroke-text {
  color: transparent;
  -webkit-text-stroke: 2px var(--g13-neon-cyan);
  letter-spacing: 10px;
  animation: subtlePulse 2.5s infinite ease-in-out;
}
.g13-hidden-init {
  opacity: 0;
}
.g13-logo-wrap {
  width: min(320px, 100%);
}
.g13-slogan-svg {
  width: 100%;
  max-width: 500px;
}
.g13-fs-12 {
  font-size: 1.2rem;
}
.g13-max-w-420 {
  max-width: 420px;
}
.g13-bounce-anim {
  animation: bounce 2s infinite;
}

.splash-scroll-indicator:hover i {
  text-shadow: 0 0 20px var(--g13-neon-cyan);
}

/* ==========================================================================
   Extracted <style> blocks — metodologias.php
   ========================================================================== */
.phase-step {
  position: relative;
  padding-left: 3rem;
}

.phase-step::before {
  content: attr(data-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(0, 240, 255, 0.12);
  border: 1px solid rgba(0, 240, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-syne);
  font-weight: 700;
  font-size: .75rem;
  color: #00f0ff;
  line-height: 2rem;
  text-align: center;
}

.phase-step-purple::before {
  background: rgba(180, 0, 255, 0.12);
  border-color: rgba(180, 0, 255, 0.35);
  color: #d580ff;
}

.phase-step + .phase-step::after {
  content: '';
  position: absolute;
  left: .95rem;
  bottom: 100%;
  width: 1px;
  height: 1.5rem;
  background: rgba(0, 240, 255, 0.2);
}

.phase-step-purple + .phase-step-purple::after {
  background: rgba(180, 0, 255, 0.2);
}

.www-node {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(180, 0, 255, 0.35);
  background: rgba(180, 0, 255, 0.08);
  transition: border-color .3s, background .3s, transform .3s;
  cursor: default;
}

.www-node:hover {
  border-color: rgba(180, 0, 255, 0.7);
  background: rgba(180, 0, 255, 0.16);
  transform: scale(1.07);
}

.www-connector {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(180, 0, 255, 0.4), rgba(180, 0, 255, 0.1));
  position: relative;
  top: -12px;
  min-width: 20px;
}

.kg-flow-line {
  width: 2px;
  height: 2.5rem;
  background: linear-gradient(to bottom, rgba(0, 240, 255, 0.5), rgba(0, 240, 255, 0.1));
  margin: 0 auto;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.nav-methodologies {
  position: sticky;
  top: 70px;
  z-index: 100;
  background: rgba(9, 9, 11, 0.8);
  backdrop-filter: blur(10px);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.methodology-nav-link {
  color: #94a3b8;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  transition: all 0.25s;
  border: 1px solid transparent;
  white-space: nowrap;
}

.methodology-nav-link:hover,
.methodology-nav-link.active {
  color: var(--g13-neon-cyan) !important;
  background: rgba(0, 240, 255, 0.1);
  border-color: rgba(0, 240, 255, 0.3);
  text-shadow: 0 0 8px rgba(0, 240, 255, 0.4);
}

/* ==========================================================================
   Extracted <style> blocks — soluciones-industria.php
   ========================================================================== */
.industry-section {
  padding: 8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.industry-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.3s ease;
}

.industry-card:hover {
  border-color: rgba(0, 240, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.level-badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 700;
}

.level-basic {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.level-intermediate {
  background: rgba(0, 240, 255, 0.15);
  color: #00f0ff;
}

.level-advanced {
  background: rgba(180, 0, 255, 0.15);
  color: #d580ff;
}

.ishikawa-box {
  background: rgba(220, 53, 69, 0.05);
  border-left: 4px solid #dc3545;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 0 1rem 1rem 0;
}

.solution-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.85rem;
  display: inline-block;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.www-box {
  background: rgba(0, 240, 255, 0.03);
  border-radius: 1rem;
  padding: 1.25rem;
  font-size: 0.9rem;
  border: 1px solid rgba(0, 240, 255, 0.1);
}

.nav-industries {
  position: sticky;
  top: 70px;
  z-index: 100;
  background: rgba(9, 9, 11, 0.8);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.industry-nav-link {
  color: #94a3b8;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  transition: all 0.25s;
  border: 1px solid transparent;
}

.industry-nav-link:hover,
.industry-nav-link.active {
  color: var(--g13-neon-cyan) !important;
  background: rgba(141, 233, 105, 0.1);
  border-color: var(--g13-neon-cyan);
  text-shadow: 0 0 8px rgba(141, 233, 105, 0.4);
}

.case-study-badge {
  background: linear-gradient(135deg, #00f0ff, #b400ff);
  font-size: 0.7rem;
  color: #fff;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-weight: 800;
  margin-bottom: 1rem;
  display: inline-block;
}

/* ==========================================================================
   Extracted <style> blocks — desarrollo-tecnologico.php
   ========================================================================== */
.hero-dt {
  background: radial-gradient(ellipse at 60% 50%, rgba(180, 0, 255, 0.12) 0%, transparent 65%), #09090b;
}

.stat-card {
  background: rgba(180, 0, 255, 0.08);
  border: 1px solid rgba(180, 0, 255, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(180, 0, 255, 0.25);
}

.tech-pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: .4rem 1rem;
  font-size: .82rem;
  color: #cbd5e1;
  transition: all .25s;
}

.tech-pill:hover {
  background: rgba(180, 0, 255, 0.15);
  border-color: rgba(180, 0, 255, 0.5);
  color: #e2bbff;
}

.stack-card {
  border-left: 3px solid #b400ff;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 .75rem .75rem 0;
  padding: 1.5rem 2rem;
  transition: background .3s;
}

.stack-card:hover {
  background: rgba(180, 0, 255, 0.07);
}

.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.process-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(180, 0, 255, 0.15);
  border: 2px solid rgba(180, 0, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #d580ff;
}

.gradient-text-purple {
  background: linear-gradient(135deg, #b400ff, #00f0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Standardize card image heights (was duplicated in 3 files) */
.card-glow .card-img-top {
  height: 200px;
  object-fit: cover;
}

/* ==========================================================================
   Extracted <style> blocks — representante-virtual.php
   ========================================================================== */
.module-card .icon-box {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 1.5rem;
}

.list-check-custom {
  list-style: none;
  padding-left: 0;
}

.list-check-custom li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  color: var(--bs-gray);
}

.list-check-custom li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--bs-neon-cyan, #00f0ff);
}

/* ==========================================================================
   Extracted <style> blocks — plataformas-comunidad.php
   ========================================================================== */
.hero-com {
  background: radial-gradient(ellipse at 30% 60%, rgba(0, 240, 255, 0.1) 0%, transparent 55%), radial-gradient(ellipse at 75% 30%, rgba(180, 0, 255, 0.09) 0%, transparent 50%), #09090b;
}

.community-stat {
  background: rgba(0, 240, 255, 0.07);
  border: 1px solid rgba(0, 240, 255, 0.18);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}

.community-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
}

.model-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}

.model-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(240, 255, 0.12);
}

.model-card-header {
  padding: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.model-card-body {
  padding: 2rem;
}

.feature-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: .75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-row:last-child {
  border-bottom: none;
}

.feature-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: .6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 240, 255, 0.1);
}

.platform-pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50px;
  padding: .4rem 1rem;
  font-size: .82rem;
  color: #cbd5e1;
  transition: all .25s;
}

.platform-pill:hover {
  background: rgba(0, 240, 255, 0.12);
  border-color: rgba(0, 240, 255, 0.45);
  color: #a0f0ff;
}

.gradient-text-com {
  background: linear-gradient(135deg, #00f0ff, #b400ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.flywheel-step {
  position: relative;
}

.flywheel-step::after {
  content: '';
  position: absolute;
  left: 24px;
  top: 100%;
  width: 2px;
  height: 2rem;
  background: linear-gradient(180deg, rgba(0, 240, 255, 0.4), transparent);
}

.flywheel-step:last-child::after {
  display: none;
}

.flywheel-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 240, 255, 0.12);
  border: 2px solid rgba(0, 240, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #00f0ff;
}

/* ===== Component: Header ===== */
.g13-nav-logo { max-height: 40px; }

/* ===== Component: Footer ===== */
.g13-footer-logo { max-height: 48px; width: auto; }
.g13-footer-heading { font-size: 1.05rem; }
.g13-footer-cta { font-size: 0.75rem; }

/* ===== Component: Contact Form ===== */
.g13-textarea { height: 120px; }