:root {
    --mabe-cyan: #00B5E2;
    --mabe-blue: #004B8D;
    --mabe-dark: #001e36;
    --mabe-light: #f4f6f8;
    --glass-white: rgba(255, 255, 255, 0.9);
    --glass-dark: rgba(0, 30, 54, 0.85);
    --success-green: #10b981;
    --warning-yellow: #f59e0b;
    --danger-red: #ef4444;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--mabe-light);
    color: var(--mabe-dark);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* === UTILITIES === */
.text-mabe-cyan {
    color: var(--mabe-cyan);
}

.text-mabe-blue {
    color: var(--mabe-blue);
}

.text-mabe-dark {
    color: var(--mabe-dark);
}

.bg-mabe-cyan {
    background-color: var(--mabe-cyan);
}

.bg-mabe-blue {
    background-color: var(--mabe-blue);
}

.bg-mabe-dark {
    background-color: var(--mabe-dark);
}

.gradient-text {
    background: linear-gradient(135deg, var(--mabe-cyan), var(--mabe-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* === ANIMATIONS === */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 181, 226, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 181, 226, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 181, 226, 0);
    }
}

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

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

@keyframes reverse-spin {
    from {
        transform: rotate(360deg);
    }

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

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-pulse-glow {
    animation: pulse-glow 2s infinite;
}

.animate-spin-slow {
    animation: spin-slow 30s linear infinite;
}

.animate-reverse-spin {
    animation: reverse-spin 25s linear infinite;
}

.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* === COMPONENTS === */
.glass-panel {
    background: var(--glass-white);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

.glass-panel-dark {
    background: var(--glass-dark);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    color: white;
}

.btn-primary {
    background: linear-gradient(135deg, var(--mabe-cyan), var(--mabe-blue));
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px -5px rgba(0, 181, 226, 0.4);
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(0, 181, 226, 0.5);
}

/* === DIAGRAMS === */

/* Evolution Bridge */
.bridge-step {
    position: relative;
    z-index: 10;
    transition: transform 0.3s ease;
}

.bridge-step:hover {
    transform: scale(1.05);
}

.bridge-connector {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #ccc, var(--mabe-cyan), var(--mabe-blue));
    z-index: 0;
    transform: translateY(-50%);
}

/* Retail Matrix */
.matrix-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.matrix-card:hover {
    transform: translateY(-10px) scale(1.02);
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.matrix-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: currentColor;
    opacity: 0.5;
}

/* Concentric Ecosystem */
.orbit-system {
    position: relative;
    width: 600px;
    height: 600px;
    margin: 0 auto;
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.orbit-ring.inner {
    width: 300px;
    height: 300px;
}

.orbit-ring.outer {
    width: 550px;
    height: 550px;
}

.orbit-item {
    position: absolute;
    padding: 1rem;
    background: var(--glass-dark);
    border: 1px solid rgba(0, 181, 226, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 0.85rem;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* === LAYOUT SECTIONS === */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

.hero-bg-shape {
    position: absolute;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(0, 181, 226, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
}

.immersive-section {
    position: relative;
    padding: 6rem 0;
    background-size: cover;
    background-position: center;
}

.overlay-dark {
    position: absolute;
    inset: 0;
    background: rgba(0, 30, 54, 0.92);
    z-index: 1;
}

.active-content {
    position: relative;
    z-index: 2;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--mabe-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--mabe-cyan);
    border-radius: 4px;
}
/* ================================
   ADDITIONAL ANIMATIONS
   ================================ */

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes glowPulse {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(0, 181, 226, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(0, 181, 226, 1));
    }
}

.animate-slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
}

.animate-fade-scale {
    animation: fadeInScale 0.8s ease-out forwards;
}

.animate-bounce-in {
    animation: bounceIn 1s ease-out forwards;
}

.animate-glow {
    animation: glowPulse 2s ease-in-out infinite;
}

/* Animation Delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.hover-scale {
    transition: transform 0.3s ease;
}

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