/* SCR-N Seven font import for titles */
@font-face {
    font-family: 'SCR-N Seven';
    src: url('fonts/SCR-N-Seven.woff2') format('woff2'),
         url('fonts/SCR-N-Seven.woff') format('woff'),
         url('fonts/SCR-N-Seven.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Global Styles */
:root {
    --primary-color: #0040ff;
    --secondary-color: #1fa2ff;
    --accent-color: #a6f0ff;
    --text-color: #ffffff;
    --light-bg: #111111;
    --dark-bg: #000000;
    --card-bg: #111111;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--dark-bg);
}

/* Navigation */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.menu-container a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: var(--transition);
    position: relative;
    opacity: 0.8;
}

.menu-container a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.menu-container a:hover,
.menu-container a.active {
    opacity: 1;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.menu-container a:hover::after,
.menu-container a.active::after {
    transform: scaleX(1);
}

/* Right-aligned demo button in top menu */
.menu-container .menu-demo {
    margin-left: auto;
    background: linear-gradient(135deg, #04106a 0%, #0b68f5 100%);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.35);
    box-shadow: 0 4px 18px rgba(11,104,245,0.25);
}

.menu-container .menu-demo:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(11,104,245,0.4);
}

.demo-note {
    font-size: 0.85rem;
    opacity: 0.75;
    margin-top: 0.6rem;
}

/* Hero Section */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
    background: var(--dark-bg);
    animation: fadeInScale 1s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.98);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.layer {
    position: absolute;
    width: 200%;
    height: 100%;
    left: -50%;
    top: 0;
    will-change: transform;
}

.layer svg {
    width: 100%;
    height: 100%;
}

.l1 {
    animation: mover 60s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
}

.l2 {
    animation: mover 45s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite reverse;
}

.l3 {
    animation: mover 75s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
}

@keyframes mover {
    0% { transform: translateX(0); }
    50% { transform: translateX(-25%); }
    100% { transform: translateX(0); }
}

.glow {
    filter: drop-shadow(0 0 20px rgba(0,140,255,.9));
}

.wave-container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wave-container h1 {
    font-family: 'SCR-N Seven', 'Orbitron', monospace;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.2;
    font-weight: 700;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s backwards;
    letter-spacing: 2px;
}

.wave-container p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    opacity: 0.9;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.7s backwards;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.9s backwards;
}

.cta-buttons button {
  width: 165px;
  height: 62px;
  cursor: pointer;
  color: #fff;
  font-size: 17px;
  border-radius: 1rem;
  border: none;
  position: relative;
  background: linear-gradient(135deg, #04106a 0%, #0b68f5 100%);
  transition: background 0.2s, color 0.2s, transform 0.1s;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 2px 12px 0 rgba(4,16,106,0.12);
}

.cta-buttons button::after {
  content: '';
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 60% 40%, #0b68f5 0%, #04106a 100%);
  filter: blur(18px);
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.4;
  pointer-events: none;
}

.cta-buttons button:active {
  transform: scale(0.96) rotate(2deg);
  background: linear-gradient(135deg, #04106a 0%, #064bdb 100%);
  color: #fff;
  transition: 0.15s;
}

.cta-buttons button:hover {
  background: linear-gradient(135deg, #04106a 0%, #064bdb 100%);
  color: #fff;
  box-shadow: 0 4px 24px 0 #0b68f5aa;
}

.cta-buttons button:disabled {
  background: #000000;
  color: #94a3b8;
  cursor: not-allowed;
  opacity: 0.7;
}

.cta-buttons button.secondary {
  background: #04106a;
  color: #cbd5e1;
}



.cta-buttons button::after {
  content: '';
  width: 100%;
  height: 100%;
  background-image: radial-gradient( circle farthest-corner at 10% 20%,  rgba(255,94,247,1) 17.8%, rgba(2,245,255,1) 100.2% );
  filter: blur(15px);
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
}

.cta-buttons button:active {
  transform: scale(0.9) rotate(3deg);
  background: radial-gradient( circle farthest-corner at 10% 20%,  rgba(255,94,247,1) 17.8%, rgba(2,245,255,1) 100.2% );
  transition: 0.5s;
}

/* Opcional: mejora para evitar que el texto quede detrás del after */
.cta-buttons button > * {
  position: relative;
  z-index: 2;
}


/* Button Styles */
.btn-glow {  
    position: relative;  
    padding: 1em 2em;  
    background: #222;  
    color: white;  
    border: 2px solid #444;  
    font-size: 16px;  
    border-radius: 8px;  
    cursor: pointer;  
    transition: box-shadow 0.3s ease;  
}

.btn-glow:hover {  
    box-shadow: 0 0 15px #00f, 0 0 30px #0ff inset;  
}

/* Update existing button styles to use glow effect */
.cta-button {
    display: inline-block;
    padding: 1em 2em;
    background: #222;
    color: var(--text-color);
    border: 2px solid #444;
    font-size: 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    box-shadow: 0 0 15px #00f, 0 0 30px #0ff inset;
    transform: translateY(-2px);
}

.watch-demo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    text-decoration: none;
    padding: 1em 2em;
    background: #222;
    border: 2px solid #444;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.watch-demo:hover {
    box-shadow: 0 0 15px #00f, 0 0 30px #0ff inset;
    transform: translateY(-2px);
}

.play-icon {
    font-size: 0.8em;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .overview-header h2 {
        font-size: 2.5rem;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
    }
    
    #overview {
        padding: 6rem 1rem;
    }
}

/* Overview Section */
#overview {
    padding: 8rem 2rem;
    background: var(--dark-bg);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.overview-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.overview-header {
    text-align: center;
    margin-bottom: 4rem;
}

.tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.overview-header h2 {
    font-family: 'SCR-N Seven', 'Orbitron', monospace;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #a6f0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    letter-spacing: 2px;
}

.subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

kbd {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.9em;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.overview-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.overview-card h3 {
    font-family: 'SCR-N Seven', 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    letter-spacing: 1px;
}

.overview-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.overview-cta {
    text-align: center;
}

@media (max-width: 768px) {
    .tech-grid,
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
}

/* Technology Section */
#technology {
    padding: 6rem 2rem;
    background: var(--dark-bg);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
    color: var(--text-color);
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.8);
}

/* Use Cases Section */
#use-cases {
    padding: 6rem 2rem;
    background: var(--dark-bg);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.use-case-card {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    color: var(--text-color);
}

.use-case-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Interface Section */
#interface {
    padding: 6rem 2rem;
    background: var(--dark-bg);
}

.interface-glow {
    position: relative;
    padding: 2rem;
    border-radius: 16px;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.03), transparent 80%);
    box-shadow: 0 0 40px rgba(0, 204, 255, 0.25), 0 0 80px rgba(255, 100, 0, 0.2);
    overflow: hidden;
    z-index: 1;
}

.interface-glow::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at top left, rgba(255, 100, 0, 0.15), transparent 70%),
                radial-gradient(circle at bottom right, rgba(0, 204, 255, 0.2), transparent 70%);
    filter: blur(30px);
    z-index: 0;
}

.dashboard-preview {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.dashboard-preview img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.caption {
    margin-top: 1rem;
    color: var(--text-color);
    font-style: italic;
}

/* Contact Section */
#contact {
    padding: 6rem 2rem;
    background: var(--dark-bg);
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

/* Polished contact card aligned with site style */
.contact-card {
    position: relative;
    padding: 1.75rem 2rem;
    background: rgba(30, 40, 60, 0.35);
    background-image: linear-gradient(120deg, rgba(0,212,255,0.12) 0%, rgba(9,30,80,0.1) 100%);
    border-radius: 1.25rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
    border: 1px solid rgba(0, 212, 255, 0.28);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.contact-intro {
    font-size: 1.05rem;
    opacity: .92;
    margin-bottom: 1rem;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.4rem 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    line-height: 1.9;
    margin: .15rem 0;
}

.contact-list strong { color: #e8f7ff; }
.contact-list em { color: #9fb8c6; }

.contact-link {
    color: var(--accent-color);
    text-decoration: none;
}
.contact-link:hover { color: var(--secondary-color); }

.demo-button {
    display: inline-block;
    margin-top: .25rem;
    padding: 0.95em 1.8em;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.35);
    background: linear-gradient(135deg, #04106a 0%, #0b68f5 100%);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 6px 22px rgba(11,104,245,0.28);
    transition: transform .15s ease, box-shadow .25s ease, background .25s ease;
}
.demo-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(11,104,245,0.4);
    background: linear-gradient(135deg, #04106a 0%, #064bdb 100%);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #333;
    border-radius: 4px;
    font-size: 1rem;
    background: var(--card-bg);
    color: var(--text-color);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.submit-button {
    padding: 1em 2em;
    background: #222;
    color: var(--text-color);
    border: 2px solid #444;
    font-size: 16px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.submit-button:hover {
    box-shadow: 0 0 15px #00f, 0 0 30px #0ff inset;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: var(--dark-bg);
    color: var(--text-color);
    padding: 2rem;
    border-top: 1px solid var(--light-bg);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    text-align: left;
    width: 100%;
}

.footer-column {
    flex: 1;
    padding: 0 1rem;
}

.footer-column h4 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: var(--text-color);
    opacity: 0.7;
    text-decoration: none;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Section Headers */
section h2 {
    font-family: 'SCR-N Seven', 'Orbitron', monospace;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-container {
        flex-direction: column;
        align-items: center;
        padding: 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-column {
        padding: 0;
    }

    .wave-container h1 {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .tech-grid,
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: fadeIn 0.8s ease-out;
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Height of the fixed header */
}

/* Ensure sections have enough padding for smooth scroll */
section {
    scroll-margin-top: 80px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* How It Works large handwritten copy */

.howitworks-copy {
    font-family: 'SCR-N Seven', 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 0.08em;          /* más separación entre letras */
    word-spacing: 0.12em;            /* mejora legibilidad en líneas largas */
    line-height: 1.45;               /* aire vertical cómodo */
    font-weight: 700;
    color: #fff;
    text-align: center;
    width: 100%;
    margin: 0;
    text-wrap: balance;              /* rompe líneas de forma más uniforme */
    overflow-wrap: anywhere;         /* evita desbordes raros */
    /* Tamaño fluido que llena el cuadro sin exagerar */
    font-size: clamp(0.9rem, 0.7rem + 1.2vw, 1.6rem);
}

.howitworks-copy p {
    margin: 0 0 1.4rem 0;            /* espacio entre párrafos moderado */
}

.howitworks-copy .accent {
    color: #5ea0d6;
}
/* Enhanced Overview Card Effect */
.overview-card.enhanced {
    background: linear-gradient(145deg, #1a1a1a, #222);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.overview-card.enhanced:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0,255,255,0.3);
}

.overview-card.enhanced:hover .card-icon {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

/* Electric blue lightning effect for enhanced overview cards */
.overview-card.enhanced::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,255,255,0.3) 0%, transparent 80%);
    opacity: 0;
    pointer-events: none;
    animation: lightningPulse 3s infinite ease-in-out;
    z-index: 0;
}

.overview-card.enhanced:hover::before {
    opacity: 1;
}

@keyframes lightningPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.1;
    }
    25% {
        transform: scale(1.05) rotate(10deg);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1) rotate(-10deg);
        opacity: 0.5;
    }
    75% {
        transform: scale(1.05) rotate(5deg);
        opacity: 0.3;
    }
}

/* Magenta lightning effect for enhanced tech cards */
.tech-card.enhanced {
    background: linear-gradient(145deg, #1b0036, #2a004c);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 4px 15px rgba(128,0,128,0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.tech-card.enhanced:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 10px 25px rgba(255,0,255,0.4);
}

.tech-card.enhanced::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,0,255,0.3) 0%, transparent 80%);
    opacity: 0;
    pointer-events: none;
    animation: lightningPulseTech 3s infinite ease-in-out;
    z-index: 0;
}

.tech-card.enhanced:hover::before {
    opacity: 1;
}

@keyframes lightningPulseTech {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.1;
    }
    25% {
        transform: scale(1.05) rotate(10deg);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1) rotate(-10deg);
        opacity: 0.5;
    }
    75% {
        transform: scale(1.05) rotate(5deg);
        opacity: 0.3;
    }
}
/* Glow around dashboard image only */

/* Glow around dashboard image only via drop-shadow */
.image-glow {
    display: inline-block;
}

.image-glow img {
    display: block;
    border-radius: 8px;
    filter:
        drop-shadow(0 0 30px rgba(0,204,255,0.8))
        drop-shadow(0 0 60px rgba(255,100,0,0.6));
}

/* Loader Radar Animation for Analytics Icon */
.loader {
  position: relative;
  width: 60px;
  height: 60px;
  background: transparent;
  border-radius: 50%;
  box-shadow: 10px 10px 30px rgba(0,0,0,0.35);
  border: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.loader::before {
  content: '';
  position: absolute;
  inset: 8px;
  background: transparent;
  border: 1px dashed #444;
  border-radius: 50%;
  box-shadow: inset -2px -2px 10px rgba(0,0,0,0.18),
    inset 2px 2px 15px rgba(0,0,0,0.18);
}
.loader::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px dashed #444;
  box-shadow: inset -2px -2px 10px rgba(0,0,0,0.18),
    inset 2px 2px 15px rgba(0,0,0,0.18);
}
.loader span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 100%;
  background: transparent;
  transform-origin: top left;
  animation: radar81 2s linear infinite;
  border-top: 1px dashed #fff;
}
.loader span::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: seagreen;
  transform-origin: top left;
  transform: rotate(-55deg);
  filter: blur(10px) drop-shadow(8px 8px 8px seagreen);
}
@keyframes radar81 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Nuevo loader solo para Analytics */
.loader-analytics {
  background-color: black;
  position: relative;
  width: 2.5em;
  height: 2.5em;
  transform-origin: center;
  transition: 1s;
  border-radius: 50px;
  box-shadow: inset 0px 0px 10px purple,
    inset 5px 5px 12px rgba(44, 0, 114, 0.8),
    inset 8px 8px 1px rgba(160, 120, 255, 0.7),
    0px 0px 1px rgba(160, 120, 255, 0.6);
  animation: 4.42s linear infinite 0s running first682;
}

.loader-analytics div {
  width: inherit;
  height: inherit;
  position: absolute;
}

.loader-analytics #first {
  transform: rotate(90deg)
}

.loader-analytics #first::before {
  --width: 1em;
  --height: 1em;
  content: "";
  position: absolute;
  top: 100%;
  left: calc(50% - var(--width)/2);
  width: 1em;
  height: 1em;
  background-color: rgb(44, 0, 114);
  box-shadow: inset 5px 5px 10px rgb(160, 120, 255),
    0px 0px 2px white;
  border-radius: 50px;
  animation: 1.28s ease-in 0s infinite running jump2;
}

.loader-analytics #second {
  transform: rotate(90deg);
}

.loader-analytics #second::before {
  --width: 1em;
  --height: 1em;
  content: "";
  position: absolute;
  top: 100%;
  left: calc(50% - var(--width)/2);
  width: 1em;
  height: 1em;
  background-color: rgb(44, 0, 114);
  box-shadow: inset 5px 5px 10px rgb(160, 120, 255),
    0px 0px 2px white;
  border-radius: 50px;
  animation: 2.4s ease-in 0s infinite running jump2;
}

.loader-analytics #third {
  transform: rotate(90deg)
}

.loader-analytics #third::before {
  --width: 1em;
  --height: 1em;
  content: "";
  position: absolute;
  top: 100%;
  left: calc(50% - var(--width)/2);
  width: 1em;
  height: 1em;
  background-color: rgb(44, 0, 114);
  box-shadow: inset 5px 5px 10px rgb(160, 120, 255),
    0px 0px 2px white;
  border-radius: 50px;
  animation: 2.56s ease-in 0s infinite running jump2;
}

.loader-analytics::after {
  --width: 1em;
  --height: 1em;
  content: "";
  position: absolute;
  top: 100%;
  left: calc(50% - var(--width)/2);
  width: 1em;
  height: 1em;
  background-color: rgb(44, 0, 114);
  box-shadow: inset 5px 5px 10px rgb(160, 120, 255),
    0px 0px 2px white;
  border-radius: 50px;
  animation: 1.92s ease-in 1.6s alternate infinite running jump2;
}

@keyframes first682 {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(0deg);
    transform: rotate(90deg)
  }
  50% {
    transform: rotate(90deg);
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(180deg);
    transform: rotate(270deg)
  }
  100% {
    transform: rotate(270deg);
    transform: rotate(360deg);
  }
}

@keyframes jump2 {
  0% {
    top: 100%;
  }
  25% {
    top: 230%
  }
  50% {
    top: 100%;
  }
  75% {
    height: 0.6em
  }
  100% {
    height: 1em
  }
}

/* Nuevo loader solo para Automation */
.loader-automation {
  margin: 0 auto;
  display: flex;
  width: 12rem;
  height: 12rem;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  border-radius: 50%;
  border: 0.4rem solid #52c5ff;
}

.container[class*="1"] {
  animation-delay: 1s;
}

.container[class*="2"] {
  animation-delay: 1.3s;
}

.container[class*="3"] {
  animation-delay: 1.6s;
}

.container[class*="4"] {
  animation-delay: 1.9s;
}

.tars {
  z-index: 0;
  position: absolute;
  height: 100px;
  width: 130px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  transform-style: preserve-3d;
  animation: rotateX3D 6s ease-in-out infinite;
  animation-delay: 1s;
}

.container {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: rotateY3D 3s ease-in infinite both;
}

.shape {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  position: relative;
  z-index: -1;
}

.shape div {
  display: block;
  position: absolute;
  text-align: center;
}

.container:nth-child(2) .f::after,
.container:nth-child(3) .f::after {
  position: absolute;
  content: '';
  width: 100%;
  z-index: -1;
  height: 20px;
  background-image: radial-gradient(#54ff6e 2px, transparent 1%);
  background-size: 20px 5px;
  left: 0;
  top: 20%;
  border: 0;
  animation: animMove 2s linear infinite alternate-reverse;
  overflow: hidden;
}

.container:nth-child(2) .f::before,
.container:nth-child(3) .f::before {
  position: absolute;
  content: '';
  width: 85%;
  z-index: -1;
  height: 20px;
  left: 0;
  top: 20%;
  border: 0;
  background: #181818;
  border: 2px solid #52c5ff;
  overflow: hidden;
}

.container:nth-child(1),
.container:nth-child(4) {
  /* Nested selectors for .f, .r, .l */
}

.container:nth-child(1) .b::before,
.container:nth-child(4) .b::before {
  position: absolute;
  content: '';
  width: 95%;
  z-index: -1;
  height: 5px;
  left: 0;
  top: 69%;
  border: 0;
  border: 1px solid #52c5ff;
  overflow: hidden;
}

.f {
  transform: rotateY(0deg) translateZ(15px);
  border-radius: 2px;
  overflow: hidden;
  transform-style: preserve-3d;
}

.b {
  transform: rotateX(180deg) translateZ(15px);
  border-radius: 2px;
}

.f,.b {
  width: 30px;
  height: 100px;
  background: #212121;
  box-shadow: inset 0 0 0 2px #52c5ff;
  border: 2px solid #52c5ff;
}

.l {
  transform: rotateY(-90deg) translateZ(0px);
  border-radius: 2px;
}

.r {
  transform: rotateY(90deg) translateZ(-30px);
  border-radius: 2px;
}

.l,.r {
  width: 30px;
  height: 100px;
  left: 15px;
  position: relative;
  z-index: -1;
  background: #212121;
  box-shadow: inset 0 0 0 2px #52c5ff;
  border: 2px solid #52c5ff;
}

.t {
  transform: rotateX(90deg) translateZ(40px);
  border-radius: 2px;
}

.bot {
  transform: rotateX(-90deg) translateZ(60px);
  border-radius: 2px;
}

.t,.bot {
  width: 30px;
  height: 30px;
  top: 25px;
  position: relative;
  z-index: -1;
  background: #212121;
  box-shadow: inset 0 0 0 2px #52c5ff;
  border: 2px solid #52c5ff;
}

@keyframes rotateY3D {
  0% {
    transform: translateZ(0px) rotateX(0);
  }
  50% {
    transform: translateZ(0px) rotateX(-360deg);
  }
  100% {
    transform: translateZ(0px) rotateX(-360deg);
  }
}

@keyframes rotateX3D {
  0% {
    transform: translateX(0px) rotateY(0);
  }
  50% {
    transform: translateX(0px) rotateY(180deg);
  }
  100% {
    transform: translateX(0px) rotateY(360deg);
  }
}

@keyframes animMove {
  0% {
    transform: translateX(20px);
  }
  100% {
    transform: translateX(-10px);
  }
}

.wiw-circles {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  gap: 3vw;
  width: 100%;
  margin: 2.5vw 0 2vw 0;
  min-height: 180px;
}

.wiw-circles > div,
.wiw-circles .wiw-circle {
  width: 8rem !important;
  height: 8rem !important;
  min-width: 8rem !important;
  min-height: 8rem !important;
  max-width: 8rem !important;
  max-height: 8rem !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 1.5rem;
  box-sizing: border-box;
  position: relative;
}

.wiw-circle-sensors .loader-container {
  transform: scale(0.75);
}

.wiw-circle-sensors {
  width: 6rem !important;
  height: 6rem !important;
  min-width: 6rem !important;
  min-height: 6rem !important;
  max-width: 6rem !important;
  max-height: 6rem !important;
}

.wiw-circles svg,
.wiw-circles .loader-sensors,
.wiw-circles .loader-analytics,
.wiw-circles .loader-automation,
.wiw-circles .loader {
  width: 5rem !important;
  height: 5rem !important;
  min-width: 5rem !important;
  min-height: 5rem !important;
  max-width: 5rem !important;
  max-height: 5rem !important;
  margin-bottom: 0.5rem;
  box-sizing: border-box;
}

#evidence-radar-keyfeatures {
  width: 7rem !important;
  height: 7rem !important;
  min-width: 7rem !important;
  min-height: 7rem !important;
  max-width: 7rem !important;
  max-height: 7rem !important;
  display: block;
  margin-bottom: 0.5rem;
}


.wiw-circles .wiw-label {
  margin-top: 0.6rem;
  font-size: 1.35rem;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 2px 10px #000a;
  letter-spacing: 0.01em;
  text-align: center;

  font-size: 1.5rem;
  margin-top: 0.5rem;
  color: #fff;
  text-align: center;
}

/* NALA Title - Retro Pixelated Style */
.nala-title {
    text-align: center;
    margin: 60px 0 40px 0;
    padding: 20px 0;
    font-family: 'Courier New', monospace;
    font-size: 4rem;
    font-weight: bold;
    letter-spacing: 0.5rem;
    text-shadow: 
        2px 2px 0px #000,
        4px 4px 0px rgba(0,0,0,0.3);
}

.nala-subtitle {
    text-align: center;
    margin: -20px 0 40px 0;
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 0.3rem;
    color: #00d2ff;
    text-shadow: 1px 1px 0px #000;
}

.nala-title .letter {
    display: inline-block;
    margin: 0 5px;
    animation: pixelGlow 2s ease-in-out infinite alternate;
}

.nala-title .letter:nth-child(1) { /* N */
    color: #ff0080;
    animation-delay: 0s;
}

.nala-title .letter:nth-child(2) { /* A */
    color: #00ff80;
    animation-delay: 0.2s;
}

.nala-title .letter:nth-child(3) { /* L */
    color: #8000ff;
    animation-delay: 0.4s;
}

.nala-title .letter:nth-child(4) { /* A */
    color: #ff8000;
    animation-delay: 0.6s;
}

@keyframes pixelGlow {
    0% {
        text-shadow: 
            2px 2px 0px #000,
            4px 4px 0px rgba(0,0,0,0.3),
            0 0 10px currentColor;
    }
    100% {
        text-shadow: 
            2px 2px 0px #000,
            4px 4px 0px rgba(0,0,0,0.3),
            0 0 20px currentColor,
            0 0 30px currentColor;
    }
}

@media (max-width: 768px) {
    .nala-title {
        font-size: 2.5rem;
        letter-spacing: 0.3rem;
    }
    
    .nala-subtitle {
        font-size: 1rem;
        letter-spacing: 0.2rem;
    }
}