@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;600;700;800&family=Space+Grotesk:wght@400;500;700&display=swap');

.statement-left-block {
  position: absolute;
  left: 5%;
  top: 20%;
  transform: translateY(-50%);
  z-index: 10;
  text-align: left;
}

.statement-left-title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-family: "Gill Sans Extrabold", sans-serif;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  margin: 0;
  text-shadow: 0 0 25px rgba(59, 130, 246, 0.2);
}

@media (max-width: 768px) {
  .statement-left-block {
    position: static;
    transform: none;
    text-align: center;
    margin-bottom: 2rem;
  }
}
.statement-title-left {
    position: absolute;
    top: 10%;
    left: 5%;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    z-index: 10;
    text-align: left;
}
/* Reset general de márgenes, padding y modelo de caja */
* {
    cursor: default;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilo general del cuerpo del documento, fuente principal y control de scroll horizontal */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000000;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 20% 50%, #1a1a2e 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, #16213e 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, #0f1419 0%, transparent 50%);
    animation: bgShift 15s ease-in-out infinite;
}

@keyframes bgShift {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
}

/* Navigation */
.dashboard-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.dashboard-nav p{
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-right: auto;
    padding-left: 1rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.nav-link:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
    transition: left 0.5s;
}

.nav-link:hover:before {
    left: 100%;
}

.nav-link:hover {
    background: rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
    border-color: rgba(59, 130, 246, 0.8);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 2rem;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.3)); }
    100% { filter: drop-shadow(0 0 40px rgba(59, 130, 246, 0.6)); }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 3rem;
    color: #e5e7eb;
    line-height: 1.4;
}

.hero-subtitle strong {
    color: #3b82f6;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
    border: 1px solid rgba(59, 130, 246, 0.5);
}

.cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.6);
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.cta-button:hover:before {
    left: 100%;
}

/* Sections */
.services-section,
.benefits-section,
.cta-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #ffffff, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #e5e7eb;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Service List */
.service-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-list li,
.benefits-list li {
    background: rgba(59, 130, 246, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
    font-size: 1.1rem;
    color: #ffffff;
}

.service-list li:hover,
.benefits-list li:hover {
    transform: translateY(-10px);
    background: rgba(59, 130, 246, 0.2);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
}

/* Benefits List */
.benefits-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 30px;
    margin: 3rem auto;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.cta-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-text {
    font-size: 1.2rem;
    color: #e5e7eb;
    margin-bottom: 2rem;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 3rem 2rem;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    color: #9ca3af;
    font-size: 0.9rem;
}

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

/* Floating elements animation */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    animation: float 20s infinite linear;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(59, 130, 246, 0.7);
    animation: bounce 2s infinite;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .dashboard-nav {
        gap: 1rem;
        padding: 1rem;
        flex-wrap: wrap;
    }

    .hero-section {
        padding: 8rem 1rem 2rem;
    }

    .service-list,
    .benefits-list {
        grid-template-columns: 1fr;
    }

    .services-section,
    .benefits-section,
    .cta-section {
        padding: 3rem 1rem;
    }

    .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .dashboard-nav {
        padding: 0.5rem;
        gap: 0.5rem;
    }

    .nav-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* Additional blue accent elements */
.hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

#scroll-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: #3b82f6;
  z-index: 9999;
  transition: width 0.2s ease;
}
/*Preloader inicio*/


       /* Preloader Container */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: 10000;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.8s ease-out;
        }

        /* Highway Background */
        .highway {
            position: absolute;
            width: 100%;
            height: 100%;
            perspective: 800px;
            overflow: hidden;
        }

        /* Single Chasing Line */
        .chase-line {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%) rotateX(85deg);
            width: 6px;
            height: 0;
            background: linear-gradient(to top, 
                #00d4ff 0%, 
                #76ff03 50%, 
                #00d4ff 100%);
            box-shadow: 
                0 0 20px #00d4ff,
                0 0 40px #76ff03,
                0 0 60px #00d4ff;
            animation: chaseLine 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        @keyframes chaseLine {
            0% { 
                height: 0; 
                opacity: 0;
            }
            20% { 
                height: 200px; 
                opacity: 1;
            }
            100% { 
                height: 1200px; 
                opacity: 1;
                transform: translateX(-50%) rotateX(85deg) translateY(-200px);
            }
        }

        /* Multiple Energy Lines */
        .energy-lines {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .energy-line {
            position: absolute;
            width: 2px;
            height: 100%;
            animation: energyPulse 1s linear infinite;
        }

        .energy-line:nth-child(1) {
            left: 15%;
            background: linear-gradient(to bottom, transparent, #ff0080, transparent);
            animation-delay: 0s;
        }

        .energy-line:nth-child(2) {
            right: 15%;
            background: linear-gradient(to bottom, transparent, #00ffff, transparent);
            animation-delay: -0.3s;
        }

        .energy-line:nth-child(3) {
            left: 30%;
            background: linear-gradient(to bottom, transparent, #8b5cf6, transparent);
            animation-delay: -0.6s;
        }

        .energy-line:nth-child(4) {
            right: 30%;
            background: linear-gradient(to bottom, transparent, #00d4ff, transparent);
            animation-delay: -0.9s;
        }

        @keyframes energyPulse {
            0%, 100% { 
                opacity: 0.3; 
                transform: scaleY(0.5);
                box-shadow: 0 0 10px;
            }
            50% { 
                opacity: 1; 
                transform: scaleY(1.2);
                box-shadow: 0 0 30px;
            }
        }

        /* Futuristic Car - More Dynamic */
        .car {
            position: absolute;
            bottom: 40%;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 40px;
            background: linear-gradient(45deg, #001d3d, #ffffff, #8b5cf6);
            border-radius: 20px 20px 8px 8px;
            box-shadow: 
                0 0 30px #001d3d,
                0 0 60px #ffffff,
                inset 0 -10px 20px rgba(0,0,0,0.3);
            animation: carRace 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: 100;
        }

        /* Car Details */
        .car::before {
            content: '';
            position: absolute;
            top: -8px;
            left: 20%;
            width: 60%;
            height: 20px;
            background: linear-gradient(45deg, #00ffff, rgba(255,255,255,0.8), #ff0080);
            border-radius: 15px;
            box-shadow: 0 0 25px #00ffff;
        }

        .car::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 5%;
            width: 90%;
            height: 6px;
            background: linear-gradient(90deg, #ff0080, #00ffff, #ff0080);
            border-radius: 3px;
            box-shadow: 0 0 30px #00ffff;
        }

        /* Car Racing Animation */
        @keyframes carRace {
            0% { 
                transform: translateX(-50%) scale(0.2) rotateZ(-5deg);
                bottom: -20%;
                filter: blur(2px);
            }
            30% { 
                transform: translateX(-50%) scale(0.6) rotateZ(2deg);
                bottom: 25%;
                filter: blur(1px);
            }
            70% { 
                transform: translateX(-50%) scale(1) rotateZ(-1deg);
                bottom: 35%;
                filter: blur(0px);
            }
            100% { 
                transform: translateX(-50%) scale(1.2) rotateZ(0deg);
                bottom: 40%;
                filter: blur(0px);
            }
        }

        /* Speed Lines */
        .speed-lines {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .speed-line {
            position: absolute;
            width: 200px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #00ffff, transparent);
            animation: speedMove 0.3s linear infinite;
        }

        @keyframes speedMove {
            0% { 
                transform: translateX(-250px) translateY(0);
                opacity: 0;
            }
            50% { 
                opacity: 1;
            }
            100% { 
                transform: translateX(100vw) translateY(20px);
                opacity: 0;
            }
        }

        /* Digital Rain Effect */
        .digital-rain {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0.6;
        }

        .rain-drop {
            position: absolute;
            color: #76ff03;
            font-size: 14px;
            animation: rainFall 2s linear infinite;
        }

        @keyframes rainFall {
            0% { 
                transform: translateY(-100px);
                opacity: 0;
            }
            10% { 
                opacity: 1;
            }
            90% { 
                opacity: 1;
            }
            100% { 
                transform: translateY(100vh);
                opacity: 0;
            }
        }

        @keyframes textPulse {
            0%, 100% { 
                opacity: 0;
                transform: translateX(-50%) scale(0.8);
            }
            50% { 
                opacity: 1;
                transform: translateX(-50%) scale(1.1);
            }
        }

        /* MEGA EXPLOSION - Much More Impactful */
        .mega-explosion {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            opacity: 0;
            animation: megaExplode 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            animation-delay: 2.3s;
            animation-fill-mode: forwards;
            z-index: 1000;
        }

        @keyframes megaExplode {
            0% {
                opacity: 0;
                transform: translate(-50%, -50%) scale(0);
                background: radial-gradient(circle, #ff0080, #8b5cf6);
                box-shadow: none;
            }
            15% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(3);
                background: radial-gradient(circle, #ffffff, #ff0080, #00ffff);
                box-shadow: 
                    0 0 100px #ff0080,
                    0 0 200px #00ffff,
                    0 0 300px #8b5cf6;
            }
            30% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(8);
                background: radial-gradient(circle, #ffffff, #00d4ff, #ff0080, #8b5cf6);
                box-shadow: 
                    0 0 200px #ff0080,
                    0 0 400px #00ffff,
                    0 0 600px #8b5cf6,
                    0 0 800px #00d4ff;
            }
            60% {
                opacity: 0.8;
                transform: translate(-50%, -50%) scale(15);
                background: radial-gradient(circle, 
                    rgba(255,255,255,0.9), 
                    rgba(255,0,128,0.8), 
                    rgba(0,255,255,0.6), 
                    rgba(139,92,246,0.4),
                    transparent);
                box-shadow: 
                    0 0 300px #ff0080,
                    0 0 600px #00ffff,
                    0 0 900px #8b5cf6,
                    inset 0 0 100px rgba(255,255,255,0.3);
            }
            100% {
                opacity: 0;
                transform: translate(-50%, -50%) scale(25);
                background: radial-gradient(circle, 
                    transparent, 
                    rgba(255,0,128,0.2), 
                    transparent);
            }
        }

        /* Explosion Shockwave */
        .shockwave {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 10px;
            height: 10px;
            border: 3px solid #76ff03;
            border-radius: 50%;
            opacity: 0;
            animation: shockwaveExpand 1s ease-out;
            animation-delay: 2.4s;
        }

        @keyframes shockwaveExpand {
            0% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(0);
                border-color: #ffffff;
                border-width: 5px;
            }
            50% {
                opacity: 0.8;
                border-color: #76ff03;
                border-width: 3px;
            }
            100% {
                opacity: 0;
                transform: translate(-50%, -50%) scale(50);
                border-color: transparent;
                border-width: 1px;
            }
        }

        /* Flash Effect */
        .flash-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, 
                rgba(255,255,255,0.9) 0%, 
                rgba(0, 212, 255, 0.6) 30%, 
                rgba(0, 8, 20, 0.4) 60%, 
                transparent 100%);
            opacity: 0;
            animation: flashEffect 0.8s ease-out;
            animation-delay: 2.5s;
            z-index: 999;
        }

        @keyframes flashEffect {
            0% { opacity: 0; }
            20% { opacity: 1; }
            100% { opacity: 0; }
        }

        /* Screen Shake */
        .screen-shake {
            animation: screenShake 0.6s ease-in-out;
            animation-delay: 2.4s;
        }

        @keyframes screenShake {
            0%, 100% { transform: translateX(0); }
            10% { transform: translateX(-10px) translateY(5px); }
            20% { transform: translateX(10px) translateY(-5px); }
            30% { transform: translateX(-8px) translateY(8px); }
            40% { transform: translateX(8px) translateY(-8px); }
            50% { transform: translateX(-6px) translateY(6px); }
            60% { transform: translateX(6px) translateY(-6px); }
            70% { transform: translateX(-4px) translateY(4px); }
            80% { transform: translateX(4px) translateY(-4px); }
            90% { transform: translateX(-2px) translateY(2px); }
        }



        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* Hide preloader and show content */
        .preloader.hidden {
            opacity: 0;
            transform: scale(1.2);
            pointer-events: none;
        }

        .main-content.visible {
            opacity: 1;
        }

/* Preloader Section*/



#preloader {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  animation: fadeOut 1s ease-out forwards;
  animation-delay: 2s;
}

.loader-logo {
  font-size: 2.5rem;
  font-weight: bold;
  color: #3b82f6;
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
  animation: pulseLogo 2s infinite ease-in-out;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes pulseLogo {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

.logo-img {
  height: 100px;
  margin-right: 1rem;
}

.logo-preloader {
  width: 400px;
  animation: pulseLogo 2s infinite ease-in-out;
}

/* Portfolio Section */
.portfolio-section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.project-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(59, 130, 246, 0.2);
  padding: 2rem;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(59, 130, 246, 0.2);
}

.project-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.project-card p {
  font-size: 1rem;
  color: #d1d5db;
}

.portfolio-carousel {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

.project-slide {
  height: 100vh;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  position: relative;
  background: #0d1117;
  transition: opacity 0.6s ease, transform 0.6s ease;
  opacity: 0.4;
  transform: scale(0.95);
}

.project-slide.active {
  opacity: 1;
  transform: scale(1);
}

.slide-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #3b82f6;
}

.slide-desc {
  font-size: 1.2rem;
  color: #e5e7eb;
  max-width: 600px;
  text-align: center;
}
  /* About Hero Section */
.about-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #000000 0%, #0f172a 50%, #1e293b 100%);
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(37, 99, 235, 0.08) 0%, transparent 50%);
  animation: heroBackground 20s ease-in-out infinite;
}

@keyframes heroBackground {
  0%, 100% { 
    opacity: 1; 
    transform: scale(1) rotate(0deg); 
  }
  50% { 
    opacity: 0.8; 
    transform: scale(1.1) rotate(180deg); 
  }
}

.about-hero-container {
  text-align: center;
  z-index: 2;
  position: relative;
  max-width: 900px;
  padding: 2rem;
}

.about-hero-title {
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  line-height: 0.9;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

#loopoff-word {
  background: linear-gradient(135deg, #ffffff 0%, #3b82f6 50%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titlePulse 4s ease-in-out infinite;
  display: block;
}

@keyframes titlePulse {
  0%, 100% { 
    filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.3));
    transform: scale(1);
  }
  50% { 
    filter: drop-shadow(0 0 50px rgba(59, 130, 246, 0.6));
    transform: scale(1.05);
  }
}

#scroll-phrase {
  color: #e5e7eb;
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px) scale(0.8);
  display: block;
  min-height: 1.2em;
}

#scroll-phrase.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* About Section */
.about-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem;
  background: radial-gradient(ellipse at center, #0d1117 0%, #000000 100%);
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(37, 99, 235, 0.03) 0%, transparent 40%);
  pointer-events: none;
}

.about-container {
  max-width: 1200px;
  text-align: center;
  animation: fadeInUp 1s ease-out forwards;
  position: relative;
  z-index: 2;
}

.about-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 50%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(59, 130, 246, 0.3);
}

.about-desc {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: #e5e7eb;
  margin-bottom: 4rem;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
  padding: 0 1rem;
}

.about-box {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  padding: 3rem 2rem;
  border-radius: 25px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  /* 3D tilt floating effect */
  transform: perspective(1000px) rotateX(3deg) rotateY(-3deg);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.about-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
  transition: left 0.8s;
}

.about-box:hover::before {
  left: 100%;
}

.about-box:hover {
  transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(-20px) scale(1.03);
  box-shadow: 0 35px 60px rgba(59, 130, 246, 0.3);
  border-color: rgba(59, 130, 246, 0.4);
  background: rgba(59, 130, 246, 0.05);
}

.about-box h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #3b82f6;
  font-weight: 700;
}

.about-box p {
  font-size: 1.1rem;
  color: #d1d5db;
  line-height: 1.6;
}

.about-vision {
  font-size: clamp(1.2rem, 2.5vw, 1.4rem);
  color: #9ca3af;
  margin-top: 3rem;
  font-style: italic;
  font-weight: 300;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.about-vision::before,
.about-vision::after {
  content: '"';
  font-size: 3rem;
  color: #3b82f6;
  opacity: 0.3;
  position: absolute;
  font-family: serif;
}

.about-vision::before {
  top: -1rem;
  left: -2rem;
}

.about-vision::after {
  bottom: -2rem;
  right: -2rem;
}

/* Final CTA Section */
.final-cta-section {
  background: linear-gradient(135deg, #293b58 0%, #334155 50%, #475569 100%);
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 30%);
  animation: ctaBackground 15s ease-in-out infinite;
}

@keyframes ctaBackground {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
  50% { transform: scale(1.1) rotate(180deg); opacity: 0.8; }
}

.final-cta-container {
  max-width: 900px;
  animation: fadeInUp 1s ease-out forwards;
  position: relative;
  z-index: 2;
}

.final-cta-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  animation: subtitleFade 2s ease-out 0.5s both;
}

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

.final-cta-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  margin-bottom: 3rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
  animation: titleSlideIn 2s ease-out 0.8s both;
}

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

.final-cta-title u {
  text-decoration: underline;
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.2em;
  text-decoration-color: rgba(255, 255, 255, 0.7);
}

.final-cta-button {
  display: inline-block;
  padding: 1.5rem 3rem;
  font-size: 1.3rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.95);
  color: #1d4ed8;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: buttonFadeIn 2s ease-out 1.2s both;
}

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

.final-cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
  transition: left 0.6s;
}

.final-cta-button:hover::before {
  left: 100%;
}

.final-cta-button:hover {
  background: #ffffff;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transform: translateY(-5px) scale(1.05);
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .about-hero-title {
    gap: 0.5rem;
  }
  
  .about-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0;
  }
  
  .about-box {
    padding: 2rem 1.5rem;
  }
  
  .about-section,
  .final-cta-section {
    padding: 4rem 1rem;
  }
  
  .about-vision::before,
  .about-vision::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .about-hero {
    padding: 2rem 1rem;
  }
  
  .about-hero-container {
    padding: 1rem;
  }
  
  .final-cta-button {
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
  }
}

/* Contact Page Styles */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000000;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 20% 50%, #1a1a2e 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, #16213e 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, #0f1419 0%, transparent 50%);
    animation: bgShift 15s ease-in-out infinite;
}

@keyframes bgShift {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
}

/* Navigation */
.dashboard-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.nav-link:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
    transition: left 0.5s;
}

.nav-link:hover:before {
    left: 100%;
}

.nav-link:hover {
    background: rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
    border-color: rgba(59, 130, 246, 0.8);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

/* Contact Hero Section */
.contact-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000000 0%, #0f172a 50%, #1e293b 100%);
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(37, 99, 235, 0.08) 0%, transparent 50%);
    animation: heroBackground 20s ease-in-out infinite;
}

@keyframes heroBackground {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1) rotate(0deg); 
    }
    50% { 
        opacity: 0.8; 
        transform: scale(1.1) rotate(180deg); 
    }
}

.contact-container {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 2rem;
  background-color: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.25);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-info {
    animation: fadeInLeft 1s ease-out;
}

.contact-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #3b82f6 50%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    animation: titlePulse 4s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% { 
        filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.3));
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 50px rgba(59, 130, 246, 0.6));
        transform: scale(1.02);
    }
}

.contact-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: #e5e7eb;
    margin-bottom: 3rem;
    line-height: 1.5;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(59, 130, 246, 0.2);
    transform: translateX(10px);
    border-color: rgba(59, 130, 246, 0.4);
}

.contact-icon {
    width: 24px;
    height: 24px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
}

/* Contact Form */
.contact-form-container {
    animation: fadeInRight 1s ease-out;
}

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #e5e7eb;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 15px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    transform: scale(1.02);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(229, 231, 235, 0.5);
}

.submit-button {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.submit-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.6);
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.submit-button:hover:before {
    left: 100%;
}

.submit-button:active {
    transform: translateY(-1px);
}

/* Success Message */
.success-message {
    display: none;
    padding: 1rem;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 15px;
    color: #10b981;
    text-align: center;
    margin-top: 1rem;
    animation: slideDown 0.3s ease-out;
}

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

/* Footer */
.site-footer {
    text-align: center;
    padding: 3rem 2rem;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    color: #9ca3af;
    font-size: 0.9rem;
    margin-top: 5rem;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Floating particles animation */
.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(59, 130, 246, 0.4);
    border-radius: 50%;
    animation: float 25s infinite linear;
    box-shadow: 0 0 6px rgba(59, 130, 246, 0.6);
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Additional hover effects */
.contact-form:hover {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.15);
}

/* Responsive Design */
@media (max-width: 968px) {
    /* Remove grid-template-columns override for .contact-container */
    .contact-container {
        /* grid-template-columns: 1fr; */ /* Removed */
        gap: 3rem;
        text-align: center;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .dashboard-nav {
        gap: 1rem;
        padding: 1rem;
        flex-wrap: wrap;
    }

    .contact-hero {
      min-height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      position: relative;
      padding: 4rem 1rem;
    }

    .contact-container {
      max-width: 800px;
      width: 100%;
      background-color: rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 3rem 2rem;
      box-shadow: 0 0 30px rgba(0, 0, 0, 0.25);

      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
}

/* Sección principal del statement LoopOff: fondo animado y alineación del texto */
.loopoff-statement {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #000000 0%, #0f172a 50%, #1e293b 100%);
  overflow: hidden;
  position: relative;
  text-align: center;
}

/* Efecto de fondo animado sutil usando gradientes radiales */
.loopoff-statement::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
      radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(147, 51, 234, 0.1) 0%, transparent 50%);
  animation: backgroundPulse 8s ease-in-out infinite;
  z-index: 1;
}

/* Línea diagonal animada para efecto visual dinámico */
.flowing-line {
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: linear-gradient(45deg, transparent 48%, rgba(59, 130, 246, 0.2) 49%, rgba(59, 130, 246, 0.2) 51%, transparent 52%);
  animation: flowLine 12s linear infinite;
  z-index: 2;
}

/* Contenedor del texto principal con efecto de flotación */
.statement-container {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  z-index: 10;
  animation: containerFloat 6s ease-in-out infinite;
  padding: 0 1.5rem;
}

/* Cada línea del texto animado principal (colores, animaciones y gradientes) */
.statement-line {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: transparent;
    background: linear-gradient(135deg, #ffffff 0%, #3b82f6 50%, #9333ea 100%);
    background-clip: text;
    -webkit-background-clip: text;
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    animation: fadeUpScale 2s ease forwards;
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

/* Efecto de brillo que cruza el texto para hacerlo más visual */
.statement-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s infinite;
}

.statement-line:nth-child(1) { animation-delay: 0.3s; }
.statement-line:nth-child(1)::before { animation-delay: 0.8s; }

.statement-line:nth-child(2) { animation-delay: 1.5s; }
.statement-line:nth-child(2)::before { animation-delay: 2s; }

.statement-line:nth-child(3) { animation-delay: 3s; }
.statement-line:nth-child(3)::before { animation-delay: 3.5s; }

.statement-line:nth-child(4) { animation-delay: 4.5s; }
.statement-line:nth-child(4)::before { animation-delay: 5s; }

.statement-line:hover {
  transform: translateY(-5px) scale(1.02);
  text-shadow: 0 0 60px rgba(59, 130, 246, 0.5), 0 0 100px rgba(147, 51, 234, 0.3);
  transition: all 0.3s ease;
}

/* Partículas animadas que suben en el fondo como decoración */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(59, 130, 246, 0.8);
  border-radius: 50%;
  animation: particleFloat 8s linear infinite;
}

/* Animación de pulso del fondo */
@keyframes backgroundPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.05); }
}

/* Animación de movimiento de la línea diagonal */
@keyframes flowLine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Animación de flotación del contenedor */
@keyframes containerFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Animación de aparición y escalado de las frases */
@keyframes fadeUpScale {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* Animación del brillo del texto */
@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Animación de flotación de partículas */
@keyframes particleFloat {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% {
    transform: translateY(-100px) scale(1);
    opacity: 0;
  }
}

/* Para el mouse*/


.cursor-particle {
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(100, 150, 255, 0.8), rgba(100, 150, 255, 0));
            animation: particleFade 1.2s ease-out forwards;
        }

        .cursor-particle.white {
            background: radial-gradient(circle, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
        }

        .cursor-particle.blue {
            background: radial-gradient(circle, rgba(64, 128, 255, 0.7), rgba(64, 128, 255, 0));
        }

        .cursor-particle.light-blue {
            background: radial-gradient(circle, rgba(150, 200, 255, 0.5), rgba(150, 200, 255, 0));
        }

        @keyframes particleFade {
            0% {
                opacity: 1;
                transform: scale(1);
            }
            100% {
                opacity: 0;
                transform: scale(0.3);
            }
        }

        /* Partículas de movimiento rápido */
        .fast-particle {
            position: fixed;
            pointer-events: none;
            z-index: 9998;
            width: 1px;
            height: 8px;
            background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
            animation: fastFade 0.6s ease-out forwards;
        }

        @keyframes fastFade {
            0% {
                opacity: 1;
                transform: scale(1);
            }
            100% {
                opacity: 0;
                transform: scale(0) translateY(20px);
            }
        }

        /* Efecto de resplandor sutil */
        .glow-particle {
            position: fixed;
            pointer-events: none;
            z-index: 9997;
            width: 40px;
            height: 40px;
            background: radial-gradient(circle, rgba(100, 150, 255, 0.1), transparent);
            border-radius: 50%;
            animation: glowFade 2s ease-out forwards;
        }

        @keyframes glowFade {
            0% {
                opacity: 1;
                transform: scale(0.5);
            }
            100% {
                opacity: 0;
                transform: scale(2);
            }
        }
        
        /* Título de sección */
.how-works {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 3rem;
  color: #3b82f6;
}

/* Contenedor de todas las tarjetas */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 0 2rem;
}

/* Cada tarjeta individual */
.step {
  background: #1e293b;
  color: #f8fafc;
  border-radius: 1rem;
  padding: 2rem;
  width: 300px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  margin: 2em;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Título de cada tarjeta */
.step-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #38bdf8;
}

/* Descripción de cada tarjeta */
.step-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #cbd5e1;
}

.portfolio-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 3rem;
  color: #3b82f6;
  margin-top: 2rem;
}

.portfolio-desc{
  text-align: center;
  font-size: 1.2rem;
  color: #cbd5e1;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-items{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem;
}
.portfolio-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.portfolio-item img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}
.portfolio-item h3 {
  font-size: 1.5rem;
  margin-top: 1rem;
  color: #3b82f6;
}
.portfolio-item p {
  font-size: 1rem;
  color: #cbd5e1;
  margin-top: 0.5rem;
}

.portfolio-item:nth-child(3) img{
  width: 100%;
  height: 27vh;

}

/*Media*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;700&family=Playfair+Display:wght@200;500&display=swap');

/* Base styles (mobile-first) */



.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: .5em;
  margin-top: 4em;
}

.phone {
  position: static;
  width: 200px;
  margin: 1.5em auto 0;
}

.left, .right {
  width: 100%;
  position: relative;
}

.left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: auto;
}

.right ul {
  list-style: none;
  padding: 0;
  width: 100%;
  margin: 0 auto 2em;
}

li {
  display: flex;
  align-items: center;
  gap: .75em;
  margin-bottom: 1.5em;
}

li img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

h1 {
  width: 70%;
  margin: 0 auto 1.5em;
}

.cta {
  display: inline-block;
  text-decoration: none;
  background: #1DB473;
  color: #fff;
  font-weight: bold;
  padding: 1em;
  border-radius: .3em;
  transition: transform .2s ease, background .3s ease;
}

/* Ocultar preloaders en móvil */
.preloader {
  display: none;
}

/* Tablet: desde 600px */
@media (min-width: 600px) {
  .wrapper {
    padding: 1.5em;
  }
  .phone {
    width: 220px;
    margin-top: 2em;
  }
  .right ul {
    width: 80%;
  }
  h1 {
    font-size: 2em;
  }
  /* si quieres un preloader suave en tablet */
  .preloader {
    display: block;
    /* aquí tu animación CSS */
  }
}

/* Desktop pequeño: desde 900px */
@media (min-width: 900px) {
  .wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
  }
  .phone {
    width: 250px;
    margin: 0;
  }
  .left, .right {
    width: 48%;
  }
  .left {
    text-align: left;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .right {
    margin-top: 0;
  }
}

/* Desktop grande: desde 1200px */
@media (min-width: 1200px) {
  body {
    background-size: 100%;
  }
  h1 {
    font-size: 3em;
  }
  .right ul {
    width: 70%;
  }
  .cta:hover {
    transform: translateY(-8px);
    background: linear-gradient(45deg, #1DB473, #0e8852);
  }
}


.center-hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100vh;
}
.about-columns {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.about-box {
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 1.5rem;
  width: 300px;
  text-align: center;
  flex: 1 1 300px;
  padding: 1rem;
  border-radius: 0.5rem;
}

/* Enhanced Mobile Styles */
@media (max-width: 768px) {
  /* Base container improvements */
  .about-container {
    width: 100%;
    display: block;
    padding: 0 1rem;
    margin-bottom: 1.5rem;
  }
  
  .about-columns {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .about-box {
    width: 100%;
    max-width: 95%;
    margin: 0 auto;
    font-size: 0.9rem; /* Slightly larger for better readability */
    padding: 1rem 1.25rem;
    line-height: 1.5; /* Better text spacing */
  }
  
  .about-title,
  .about-desc {
    text-align: center;
  }
  
  .about-section {
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
  }
  
  /* Content ordering */
  .about-container:first-of-type {
    order: 2;
  }
  
  .about-container:last-of-type {
    order: 1;
  }
  
  /* Typography improvements */
  h1 {
    font-size: 1.75rem; /* Slightly larger */
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  h2 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
  }
  
  .statement-line {
    font-size: 1.4rem;
    margin: 1rem 0.5rem;
    line-height: 1.4;
  }
  
  .hero-title h1{
    font-size: 2.6em;
    margin-bottom: 1rem;
    line-height: 1.1;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
  }
  
  .how-works {
    font-size: 1.8rem;
    line-height: 1.2;
  }
  
  /* Services and benefits */
  .services-section {
    padding: 1.5rem 1rem;
    margin: 0 auto;
  }
  
  .benefits-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .service-list li,
  .benefits-list li {
    background: rgba(59, 130, 246, 0.1);
    padding: 1.25rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.5;
    margin-bottom: 1rem;
    margin-right: 2em;
  }
  
  /* Enhanced CTA button for mobile */
  .cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 280px;
    text-align: center;
    margin: 1rem auto;
    box-sizing: border-box;
    /* Touch-friendly sizing */
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .cta-button:hover,
  .cta-button:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
  }

  
  
  /* Additional mobile optimizations */
  
  /* Ensure all interactive elements are touch-friendly */
  button,
  .cta-button,
  a[role="button"] {
    min-height: 44px;
    min-width: 44px;
  }
  
  /* Better spacing for lists */
  ul, ol {
    padding-left: 1.5rem;
  }
  
  /* Prevent horizontal scroll */
  * {
    max-width: 100%;
    box-sizing: border-box;
  }
  
  /* Images responsive */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Form elements if you have any */
  input, textarea, select {
    width: 100%;
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 0.75rem;
    border-radius: 8px;
  }
}

/* Small mobile devices (phones in portrait) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .about-box {
    font-size: 0.85rem;
    padding: 0.875rem 1rem;
  }
  
  .cta-button {
    font-size: 1rem;
    padding: 0.875rem 1.25rem;
  }
  
  h1 {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.2rem;
  }

}

/* Anime.js interaction layer */
.reveal-on-scroll {
  will-change: opacity, transform;
}

.reveal-visible {
  opacity: 1;
}

.interactive-tilt {
  --mx: 50%;
  --my: 50%;
  --scroll-y: 0px;
  --scroll-x: 0px;
  --scroll-rotate: 0deg;
  --scroll-scale: 1;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --tilt-scale: 1;
  position: relative;
  transform-style: preserve-3d;
  transform: perspective(1000px)
    translate3d(var(--scroll-x), var(--scroll-y), 0)
    rotate(var(--scroll-rotate))
    rotateX(var(--tilt-x))
    rotateY(var(--tilt-y))
    scale(calc(var(--scroll-scale) * var(--tilt-scale)));
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.18s ease-out;
  will-change: transform;
  isolation: isolate;
}

.interactive-tilt::after {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--mx) var(--my),
    rgba(255, 255, 255, 0.26),
    rgba(59, 130, 246, 0.1) 32%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.2s ease;
}

.interactive-tilt.tilt-active::after {
  opacity: 1;
}

.interactive-tilt.tilt-active {
  box-shadow: 0 30px 50px rgba(2, 6, 23, 0.55), 0 0 0 1px rgba(96, 165, 250, 0.35);
}

.scroll-flow:not(.interactive-tilt) {
  --scroll-y: 0px;
  --scroll-x: 0px;
  --scroll-rotate: 0deg;
  --scroll-scale: 1;
  transform: translate3d(var(--scroll-x), var(--scroll-y), 0)
    rotate(var(--scroll-rotate))
    scale(var(--scroll-scale));
  transition: transform 0.16s ease-out;
  will-change: transform;
}

.hero-section,
.about-hero,
.contact-hero {
  position: relative;
  overflow: hidden;
}

.ball-video-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 4;
  opacity: 0.92;
  mix-blend-mode: normal;
  image-rendering: auto;
  contain: strict;
}

.circuit-video-layer {
  opacity: 0.86;
  filter: saturate(1.18) contrast(1.06);
}

.hero-content,
.about-hero-container,
.contact-container,
.statement-container,
.statement-left-block,
.scroll-indicator {
  position: relative;
  z-index: 12;
}

@media (prefers-reduced-motion: reduce) {
  .ball-video-layer {
    display: none;
  }
}

/* LoopOff Premium narrative layer */
.loopoff-premium {
  --bg: #060708;
  --surface: #0d1014;
  --surface-2: #11161d;
  --text: #f3f6fb;
  --muted: #a4afbf;
  --accent: #2f7cff;
  --accent-soft: rgba(47, 124, 255, 0.18);
  background: radial-gradient(circle at 12% 14%, rgba(47, 124, 255, 0.14), transparent 45%), var(--bg);
  color: var(--text);
  font-family: "Sora", "Space Grotesk", sans-serif;
}

.loopoff-premium .dashboard-nav {
  background: rgba(6, 8, 11, 0.72) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
  padding: 0.95rem clamp(1rem, 2vw, 2.2rem);
}

.loopoff-premium .dashboard-nav p {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.loopoff-premium .nav-link {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.loopoff-premium .nav-link:hover {
  border-color: rgba(47, 124, 255, 0.62);
  box-shadow: 0 10px 28px rgba(47, 124, 255, 0.28);
}

.loopoff-premium .hero-title,
.loopoff-premium .about-hero-title,
.loopoff-premium .contact-title {
  font-family: "Space Grotesk", "Sora", sans-serif;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

.loopoff-premium .hero-subtitle,
.loopoff-premium .section-description,
.loopoff-premium .about-desc,
.loopoff-premium .contact-subtitle,
.loopoff-premium .portfolio-desc {
  color: var(--muted);
  max-width: 72ch;
}

.loopoff-premium section {
  padding-inline: clamp(1rem, 3.8vw, 4rem);
}

.loopoff-premium .services-section,
.loopoff-premium .benefits-section,
.loopoff-premium .about-section,
.loopoff-premium .portafolio,
.loopoff-premium .contact-hero,
.loopoff-premium .final-cta-section {
  max-width: 1240px;
  margin-inline: auto;
  border-radius: 26px;
}

.loopoff-premium .service-list li,
.loopoff-premium .benefits-list li,
.loopoff-premium .about-box,
.loopoff-premium .portfolio-item,
.loopoff-premium .step,
.loopoff-premium .contact-item,
.loopoff-premium .contact-container {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)) !important;
  border: 1px solid rgba(255, 255, 255, 0.11) !important;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.36);
}

.loopoff-premium .service-list li:hover,
.loopoff-premium .benefits-list li:hover,
.loopoff-premium .about-box:hover,
.loopoff-premium .portfolio-item:hover,
.loopoff-premium .step:hover,
.loopoff-premium .contact-item:hover {
  border-color: rgba(47, 124, 255, 0.56) !important;
  box-shadow: 0 24px 48px rgba(47, 124, 255, 0.22);
}

.loopoff-premium .portfolio-items {
  gap: clamp(1rem, 2vw, 1.6rem);
}

.loopoff-premium .portfolio-item img {
  border-radius: 12px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.loopoff-premium .cta-button,
.loopoff-premium .final-cta-button {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, #ffffff, #dbeafe) !important;
  color: #051022 !important;
  box-shadow: 0 12px 34px rgba(47, 124, 255, 0.34);
}

.loopoff-premium .final-cta-section {
  background: radial-gradient(circle at 15% 18%, rgba(47, 124, 255, 0.22), transparent 46%), var(--surface);
}

.loopoff-premium .story-panel {
  opacity: 0.58;
  filter: saturate(0.82);
  transition: opacity 0.45s ease, filter 0.45s ease, transform 0.45s ease;
}

.loopoff-premium .story-panel.story-active {
  opacity: 1;
  filter: saturate(1);
}

.narrative-rail {
  position: fixed;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  z-index: 13000;
  display: grid;
  gap: 0.85rem;
  align-items: center;
}

.narrative-rail__track {
  width: 2px;
  height: 152px;
  background: rgba(255, 255, 255, 0.2);
  transform-origin: top;
  position: relative;
  margin: 0 auto;
}

.narrative-rail__progress {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(47, 124, 255, 0.35), rgba(122, 167, 255, 0.95));
  transform-origin: top;
  transform: scaleY(0);
}

.narrative-rail__dots {
  display: grid;
  gap: 0.58rem;
}

.narrative-rail__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.38);
  padding: 0;
  transition: transform 0.22s ease, background-color 0.22s ease;
}

.narrative-rail__dot.is-active {
  background: #7aa7ff;
  transform: scale(1.55);
}

.floating-cta {
  position: fixed;
  bottom: 1.2rem;
  right: 1.2rem;
  z-index: 13000;
  text-decoration: none;
  color: #050d19;
  font-weight: 700;
  font-size: 0.9rem;
  background: linear-gradient(120deg, #f8fbff, #dbeafe);
  border: 1px solid rgba(255, 255, 255, 0.9);
  padding: 0.78rem 1.05rem;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(47, 124, 255, 0.35);
}

.floating-cta:hover {
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .narrative-rail {
    display: none;
  }

  .floating-cta {
    bottom: 0.85rem;
    right: 0.85rem;
    font-size: 0.82rem;
  }
}

/* LoopOff Tech skin */
.loopoff-premium {
  --tech-cyan: #7de6ff;
  --tech-blue: #2f7cff;
  --tech-surface: rgba(8, 13, 24, 0.72);
  background-image:
    radial-gradient(circle at 12% 8%, rgba(46, 163, 255, 0.16), transparent 42%),
    radial-gradient(circle at 88% 84%, rgba(125, 230, 255, 0.11), transparent 38%),
    repeating-linear-gradient(90deg, rgba(125, 230, 255, 0.04) 0 1px, transparent 1px 62px),
    repeating-linear-gradient(0deg, rgba(125, 230, 255, 0.03) 0 1px, transparent 1px 62px),
    linear-gradient(180deg, #04070e 0%, #070d17 50%, #03060d 100%);
  background-attachment: fixed;
}

.loopoff-premium .animated-bg {
  opacity: 0.55;
  filter: saturate(1.2);
}

.loopoff-premium .dashboard-nav {
  position: fixed;
  border-bottom: 1px solid rgba(125, 230, 255, 0.24);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.52), inset 0 -1px 0 rgba(125, 230, 255, 0.16);
}

.loopoff-premium .dashboard-nav::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(125, 230, 255, 0.95), transparent);
  animation: techSweep 6s linear infinite;
}

.loopoff-premium .nav-link {
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.loopoff-premium .hero-title,
.loopoff-premium .about-hero-title,
.loopoff-premium .contact-title {
  text-shadow: 0 0 28px rgba(47, 124, 255, 0.26);
}

.loopoff-premium .hero-section::after,
.loopoff-premium .about-hero::after,
.loopoff-premium .contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  background:
    repeating-linear-gradient(0deg, rgba(125, 230, 255, 0.08) 0 1px, transparent 1px 46px),
    repeating-linear-gradient(90deg, rgba(125, 230, 255, 0.08) 0 1px, transparent 1px 46px);
  mask-image: radial-gradient(circle at 50% 45%, black 28%, transparent 92%);
  opacity: 0.24;
}

.loopoff-premium .hero-content,
.loopoff-premium .about-hero-container,
.loopoff-premium .contact-container {
  position: relative;
}

.loopoff-premium .hero-content::before,
.loopoff-premium .about-hero-container::before,
.loopoff-premium .contact-container::before {
  position: absolute;
  top: -1.2rem;
  left: 0;
  font-family: "Space Grotesk", "Sora", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: rgba(125, 230, 255, 0.84);
  text-transform: uppercase;
}

.loopoff-premium .hero-content::before {
  content: "// Runtime: Active  |  System: LoopOff";
}

.loopoff-premium .about-hero-container::before {
  content: "// Identity Core  |  Human + Code";
}

.loopoff-premium .contact-container::before {
  content: "// Secure Channel  |  Response < 24h";
}

.loopoff-premium .service-list li,
.loopoff-premium .benefits-list li,
.loopoff-premium .about-box,
.loopoff-premium .portfolio-item,
.loopoff-premium .step,
.loopoff-premium .contact-item,
.loopoff-premium .contact-container {
  position: relative;
  overflow: hidden;
}

.loopoff-premium .service-list li::before,
.loopoff-premium .benefits-list li::before,
.loopoff-premium .about-box::before,
.loopoff-premium .portfolio-item::before,
.loopoff-premium .step::before,
.loopoff-premium .contact-item::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  width: 1rem;
  height: 1rem;
  border-top: 1px solid rgba(125, 230, 255, 0.7);
  border-left: 1px solid rgba(125, 230, 255, 0.7);
  pointer-events: none;
}

.loopoff-premium .service-list li::after,
.loopoff-premium .benefits-list li::after,
.loopoff-premium .about-box::after,
.loopoff-premium .portfolio-item::after,
.loopoff-premium .step::after,
.loopoff-premium .contact-item::after {
  content: "";
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  width: 1rem;
  height: 1rem;
  border-right: 1px solid rgba(125, 230, 255, 0.5);
  border-bottom: 1px solid rgba(125, 230, 255, 0.5);
  pointer-events: none;
}

.loopoff-premium .cta-button,
.loopoff-premium .final-cta-button,
.loopoff-premium .floating-cta {
  position: relative;
  overflow: hidden;
}

.loopoff-premium .cta-button::after,
.loopoff-premium .final-cta-button::after,
.loopoff-premium .floating-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 0%, rgba(125, 230, 255, 0.45) 40%, transparent 80%);
  transform: translateX(-130%);
  animation: techButtonSweep 3.8s ease-in-out infinite;
}

.loopoff-premium .narrative-rail__track {
  width: 3px;
  background: rgba(125, 230, 255, 0.18);
}

.loopoff-premium .narrative-rail__dot {
  border-radius: 2px;
  width: 9px;
  height: 9px;
  box-shadow: 0 0 0 1px rgba(125, 230, 255, 0.22);
}

.loopoff-premium .narrative-rail__dot.is-active {
  box-shadow: 0 0 14px rgba(125, 230, 255, 0.72);
}

@keyframes techSweep {
  0% {
    transform: translateX(-35%);
    opacity: 0.25;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateX(35%);
    opacity: 0.25;
  }
}

@keyframes techButtonSweep {
  0%,
  72% {
    transform: translateX(-130%);
    opacity: 0;
  }
  78% {
    opacity: 1;
  }
  100% {
    transform: translateX(130%);
    opacity: 0;
  }
}

@media (max-width: 900px) {
  .loopoff-premium .hero-content::before,
  .loopoff-premium .about-hero-container::before,
  .loopoff-premium .contact-container::before {
    font-size: 0.58rem;
    letter-spacing: 0.11em;
  }
}

/* About page contour + contrast fixes */
.loopoff-premium.pages-about .about-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  align-content: start;
  gap: clamp(1.4rem, 2.6vw, 2.4rem);
  width: 100%;
  min-height: auto;
  padding: clamp(4rem, 7vw, 6rem) clamp(1rem, 3vw, 2rem);
  overflow-x: clip;
}

.loopoff-premium.pages-about .about-container {
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: clamp(1.3rem, 2.2vw, 2rem);
  border-radius: 18px;
  background: linear-gradient(165deg, rgba(8, 13, 24, 0.74), rgba(8, 12, 20, 0.58));
  border: 1px solid rgba(125, 230, 255, 0.14);
  box-shadow: 0 18px 34px rgba(2, 6, 23, 0.36);
  box-sizing: border-box;
  overflow: hidden;
}

.loopoff-premium.pages-about .about-columns {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: clamp(1rem, 2.2vw, 1.6rem);
  padding: 0;
}

.loopoff-premium.pages-about .about-title {
  color: #eaf4ff;
  text-shadow: none;
}

.loopoff-premium.pages-about .about-desc,
.loopoff-premium.pages-about .about-vision,
.loopoff-premium.pages-about .about-box p {
  color: #d7e0ef;
}

.loopoff-premium.pages-about .final-cta-section {
  width: 100%;
  min-height: auto;
  padding: clamp(4rem, 7vw, 6rem) clamp(1rem, 3vw, 2rem);
  overflow: clip;
}

.loopoff-premium.pages-about .final-cta-container {
  width: min(100%, 960px);
  margin: 0 auto;
  padding: clamp(1.5rem, 2.8vw, 2.4rem);
  border-radius: 20px;
  background: linear-gradient(165deg, rgba(7, 12, 24, 0.8), rgba(8, 12, 20, 0.6));
  border: 1px solid rgba(125, 230, 255, 0.16);
  box-shadow: 0 22px 44px rgba(2, 6, 23, 0.44);
  box-sizing: border-box;
}

.loopoff-premium.pages-about .final-cta-subtitle {
  color: rgba(220, 239, 255, 0.85);
  letter-spacing: 0.16em;
}

.loopoff-premium.pages-about .final-cta-title {
  width: min(100%, 22ch);
  margin-inline: auto;
  font-size: clamp(2.1rem, 6vw, 4.4rem);
  line-height: 1.08;
  text-wrap: balance;
  color: #f5faff;
  text-shadow: 0 10px 28px rgba(2, 6, 23, 0.48);
}

@media (max-width: 768px) {
  .loopoff-premium.pages-about .about-container,
  .loopoff-premium.pages-about .final-cta-container {
    padding: 1rem;
  }
}

.loopoff-premium.pages-about .about-team {
  border: 1px solid rgba(125, 230, 255, 0.2);
  background:
    radial-gradient(circle at 10% 16%, rgba(37, 99, 235, 0.18), transparent 36%),
    radial-gradient(circle at 88% 82%, rgba(125, 230, 255, 0.12), transparent 40%),
    linear-gradient(165deg, rgba(8, 13, 24, 0.84), rgba(8, 12, 20, 0.64));
}

.loopoff-premium.pages-about .about-team .about-title,
.loopoff-premium.pages-about .about-team .about-desc,
.loopoff-premium.pages-about .about-team .team-kicker,
.loopoff-premium.pages-about .about-team .team-closer {
  text-align: center;
}

.loopoff-premium.pages-about .about-team .about-desc,
.loopoff-premium.pages-about .about-team .team-closer {
  width: min(100%, 78ch);
  margin-inline: auto;
}

.loopoff-premium.pages-about .team-kicker {
  margin: 0 0 0.7rem;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(125, 230, 255, 0.92);
}

.loopoff-premium.pages-about .team-metrics {
  margin: clamp(1.3rem, 2.8vw, 2.2rem) auto clamp(1.5rem, 3.1vw, 2.35rem);
  width: min(100%, 980px);
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  justify-content: center;
  gap: clamp(0.7rem, 1.6vw, 1.05rem);
}

.loopoff-premium.pages-about .team-metric {
  --metric-progress: 0.35;
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  border: 1px solid rgba(125, 230, 255, 0.24);
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.18), transparent 38%),
    radial-gradient(circle at 58% 68%, rgba(46, 112, 254, 0.28), transparent 68%),
    linear-gradient(165deg, rgba(8, 16, 32, 0.92), rgba(7, 12, 24, 0.78));
  box-shadow:
    inset 0 0 0 1px rgba(125, 230, 255, 0.12),
    0 14px 26px rgba(2, 6, 23, 0.5),
    0 0 22px rgba(56, 189, 248, 0.12);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.loopoff-premium.pages-about .team-metric:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(125, 230, 255, 0.54);
  box-shadow:
    inset 0 0 0 1px rgba(125, 230, 255, 0.18),
    0 20px 34px rgba(8, 20, 43, 0.58),
    0 0 34px rgba(56, 189, 248, 0.23);
}

.loopoff-premium.pages-about .team-attractor::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: conic-gradient(
    from 95deg,
    rgba(56, 189, 248, 0.88) 0deg,
    rgba(96, 165, 250, 0.92) calc(var(--metric-progress) * 360deg),
    rgba(8, 14, 26, 0.18) calc(var(--metric-progress) * 360deg),
    rgba(8, 14, 26, 0.18) 360deg
  );
  filter: blur(0.2px);
  opacity: 0.82;
  z-index: -2;
}

.loopoff-premium.pages-about .team-attractor::after {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: inherit;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.18), transparent 46%),
    radial-gradient(circle at 66% 72%, rgba(30, 64, 175, 0.44), transparent 62%),
    linear-gradient(160deg, rgba(5, 10, 20, 0.86), rgba(4, 8, 16, 0.93));
  border: 1px solid rgba(125, 230, 255, 0.2);
  z-index: -1;
}

.loopoff-premium.pages-about .team-attractor-ring {
  position: absolute;
  inset: 19%;
  border-radius: inherit;
  border: 1px dashed rgba(125, 230, 255, 0.35);
  animation: teamRingSpin 8s linear infinite;
}

.loopoff-premium.pages-about .team-attractor-core {
  position: absolute;
  inset: 36%;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(125, 230, 255, 0.95), rgba(59, 130, 246, 0.25) 64%, rgba(59, 130, 246, 0) 100%);
  box-shadow: 0 0 18px rgba(125, 230, 255, 0.38);
  animation: teamCorePulse 2.6s ease-in-out infinite;
}

.loopoff-premium.pages-about .team-attractor-number {
  position: relative;
  z-index: 2;
  font-size: clamp(1.52rem, 2.8vw, 2.2rem);
  line-height: 1;
  letter-spacing: 0.03em;
  font-weight: 800;
  color: #eef8ff;
  text-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
}

@keyframes teamRingSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes teamCorePulse {
  0%, 100% {
    transform: scale(0.86);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.98;
  }
}

@media (prefers-reduced-motion: reduce) {
  .loopoff-premium.pages-about .team-attractor-ring,
  .loopoff-premium.pages-about .team-attractor-core {
    animation: none;
    
  }
}

.loopoff-premium.pages-about .team-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 1.6rem);
  margin-left: 6em;
}

.loopoff-premium.pages-about .team-card {
  text-align: left;
  border: 1px solid rgba(125, 230, 255, 0.2) !important;
  background:
    linear-gradient(165deg, rgba(10, 18, 34, 0.88), rgba(8, 14, 26, 0.7)) !important;
  box-shadow: 0 16px 36px rgba(2, 6, 23, 0.5);
}

.loopoff-premium.pages-about .team-card:hover {
  border-color: rgba(125, 230, 255, 0.56) !important;
  transform: translateY(-8px) !important;
  box-shadow: 0 24px 54px rgba(29, 78, 216, 0.28) !important;
}

.loopoff-premium.pages-about .team-role {
  margin: 0 0 0.8rem;
  display: inline-flex;
  padding: 0.34rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(125, 230, 255, 0.4);
  background: rgba(30, 64, 175, 0.2);
  color: #dbeafe;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.loopoff-premium.pages-about .team-name {
  margin: 0 0 0.65rem;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.2;
  color: #f8fbff;
}

.loopoff-premium.pages-about .team-bio {
  margin: 0 0 1rem;
  color: #d2deef;
  line-height: 1.58;
  font-size: 0.95rem;
}

.loopoff-premium.pages-about .team-focus {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.loopoff-premium.pages-about .team-focus li {
  position: relative;
  padding-left: 1.1rem;
  color: #dbe7fb;
  font-size: 0.87rem;
}

.loopoff-premium.pages-about .team-focus li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #7dd3fc, #93c5fd);
}

.loopoff-premium.pages-about .team-closer {
  margin: clamp(1.3rem, 2.6vw, 2rem) 0 0;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(125, 230, 255, 0.24);
  background: rgba(8, 15, 28, 0.66);
  color: #d8e5f6;
  font-size: 0.98rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .loopoff-premium.pages-about .team-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .loopoff-premium.pages-about .team-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 560px) {
  .loopoff-premium.pages-about .team-metrics {
    grid-template-columns: minmax(0, 1fr);
  }
}
