/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Futuristic LionForge Theme */
    --black: #000000;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --blue-dark: #021d32;
    --blue-mid: #02355d;
    --blue-accent: #00d4ff;
    --cyan-glow: #00ffff;
    --electric-blue: #0099ff;
    --neon-green: #00ff88;
    --white: #ffffff;
    --gray-light: #e0e0e0;
    --gray-dark: #333333;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --container-padding: 1rem;
    --section-padding: 6rem 0;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.6s ease;
    
    /* Effects */
    --glow-intensity: 0 0 20px;
    --glow-color: rgba(0, 212, 255, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--white);
    background-color: var(--dark-bg);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 153, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 255, 136, 0.05) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    line-height: 1.7;
}

/* LionForge Glowbox Buttons */
.glowbox {
    isolation: isolate;
    overflow: hidden;
    border-radius: 999px;
    position: relative;
    width: 100%;
    max-width: 320px;
    margin: auto;
    --animation-speed: 3s;
}

.glowbox-active .glowbox-animations,
.glowbox-active .glowbox-borders-masker {
    opacity: 1;
}

.glowbox-animations,
.glowbox-borders {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 1;
}

.glowbox-animations:before,
.glowbox-borders:before {
    content: "";
    float: left;
    padding-top: 100%;
}

.glowbox-animations:after,
.glowbox-borders:after {
    clear: both;
    content: "";
    display: block;
}

.glowbox-animations {
    opacity: 0;
    pointer-events: none;
    transition: 1s ease opacity;
}

.glowbox-animations * {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.glowbox-borders,
.glowbox-glow,
.glowbox-stars {
    animation: borderTurn var(--animation-speed) infinite linear;
    background-image: conic-gradient(
        from 0 at 50% 50%,
        var(--blue-accent) 0deg,
        var(--cyan-glow) 45deg,
        var(--electric-blue) 90deg,
        var(--blue-mid) 135deg,
        var(--blue-accent) 180deg,
        var(--cyan-glow) 225deg,
        var(--electric-blue) 270deg,
        var(--blue-mid) 315deg,
        var(--blue-accent) 360deg
    );
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.glowbox-stars-masker {
    -webkit-mask: url("data:image/svg+xml,%3Csvg width='28' height='24' viewBox='0 0 28 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.0534 15.732C13.8444 15.283 14.2848 14.8489 14.7326 15.051C14.8296 15.0959 14.9043 15.1707 14.949 15.268C15.1506 15.717 14.7177 16.1511 14.2698 15.949C14.1728 15.9041 14.0982 15.8293 14.0534 15.732Z' fill='black'/%3E%3Cpath d='M18.8001 13.5093C19.0016 13.0603 18.5687 12.6263 18.1209 12.8283C18.0239 12.8732 17.9492 12.9481 17.9045 13.0453C17.6955 13.4944 18.1358 13.9284 18.5837 13.7264C18.6807 13.6815 18.7553 13.6066 18.8001 13.5093Z' fill='black'/%3E%3Cpath d='M0.949043 2.732C1.15057 2.28297 0.717663 1.84891 0.269836 2.05097C0.172806 2.09587 0.098162 2.17071 0.0533793 2.268C-0.155607 2.71703 0.284759 3.15109 0.732587 2.94903C0.829616 2.90413 0.90426 2.82929 0.949043 2.732Z' fill='black'/%3E%3Cpath d='M26.9489 7.732C27.151 7.28297 26.7169 6.84891 26.2679 7.05097C26.1706 7.09587 26.0958 7.17071 26.0508 7.268C25.8488 7.71703 26.2828 8.15109 26.7319 7.94903C26.8292 7.90413 26.904 7.82929 26.9489 7.732Z' fill='black'/%3E%3Cpath d='M13.0534 5.732C12.8444 5.28297 13.2848 4.84891 13.7326 5.05097C13.8296 5.09587 13.9043 5.17071 13.949 5.268C14.1506 5.71703 13.7177 6.15109 13.2698 5.94903C13.1728 5.90413 13.0982 5.82929 13.0534 5.732Z' fill='black'/%3E%3Cpath d='M10.0534 17.732C9.84439 17.283 10.2848 16.8489 10.7326 17.051C10.8296 17.0959 10.9043 17.1707 10.949 17.268C11.1506 17.717 10.7177 18.1511 10.2698 17.949C10.1728 17.9041 10.0982 17.8293 10.0534 17.732Z' fill='black'/%3E%3Cpath d='M15.0534 21.732C14.8444 21.283 15.2848 20.8489 15.7326 21.051C15.8296 21.0959 15.9043 21.1707 15.949 21.268C16.1506 21.717 15.7177 22.1511 15.2698 21.949C15.1728 21.9041 15.0982 21.8293 15.0534 21.732Z' fill='black'/%3E%3C/svg%3E%0A");
    mask: url("data:image/svg+xml,%3Csvg width='28' height='24' viewBox='0 0 28 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.0534 15.732C13.8444 15.283 14.2848 14.8489 14.7326 15.051C14.8296 15.0959 14.9043 15.1707 14.949 15.268C15.1506 15.717 14.7177 16.1511 14.2698 15.949C14.1728 15.9041 14.0982 15.8293 14.0534 15.732Z' fill='black'/%3E%3Cpath d='M18.8001 13.5093C19.0016 13.0603 18.5687 12.6263 18.1209 12.8283C18.0239 12.8732 17.9492 12.9481 17.9045 13.0453C17.6955 13.4944 18.1358 13.9284 18.5837 13.7264C18.6807 13.6815 18.7553 13.6066 18.8001 13.5093Z' fill='black'/%3E%3Cpath d='M0.949043 2.732C1.15057 2.28297 0.717663 1.84891 0.269836 2.05097C0.172806 2.09587 0.098162 2.17071 0.0533793 2.268C-0.155607 2.71703 0.284759 3.15109 0.732587 2.94903C0.829616 2.90413 0.90426 2.82929 0.949043 2.732Z' fill='black'/%3E%3Cpath d='M26.9489 7.732C27.151 7.28297 26.7169 6.84891 26.2679 7.05097C26.1706 7.09587 26.0958 7.17071 26.0508 7.268C25.8488 7.71703 26.2828 8.15109 26.7319 7.94903C26.8292 7.90413 26.904 7.82929 26.9489 7.732Z' fill='black'/%3E%3Cpath d='M13.0534 5.732C12.8444 5.28297 13.2848 4.84891 13.7326 5.05097C13.8296 5.09587 13.9043 5.17071 13.949 5.268C14.1506 5.71703 13.7177 6.15109 13.2698 5.94903C13.1728 5.90413 13.0982 5.82929 13.0534 5.732Z' fill='black'/%3E%3Cpath d='M10.0534 17.732C9.84439 17.283 10.2848 16.8489 10.7326 17.051C10.8296 17.0959 10.9043 17.1707 10.949 17.268C11.1506 17.717 10.7177 18.1511 10.2698 17.949C10.1728 17.9041 10.0982 17.8293 10.0534 17.732Z' fill='black'/%3E%3Cpath d='M15.0534 21.732C14.8444 21.283 15.2848 20.8489 15.7326 21.051C15.8296 21.0959 15.9043 21.1707 15.949 21.268C16.1506 21.717 15.7177 22.1511 15.2698 21.949C15.1728 21.9041 15.0982 21.8293 15.0534 21.732Z' fill='black'/%3E%3C/svg%3E%0A");
    mask-repeat: repeat;
    -webkit-mask-repeat: repeat;
    mask-size: auto;
    -webkit-mask-size: auto;
}

.glowbox-glow {
    filter: blur(12px);
    opacity: 0.15;
}

.glowbox-borders {
    animation-name: borderTurnWithTranslate;
}

.glowbox-borders-masker {
    border-radius: 999px;
    content: "";
    height: 100%;
    inset: 0;
    left: 0;
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    padding: 2px;
    pointer-events: none;
    position: absolute;
    top: 0;
    transition: 1s ease opacity;
    width: 100%;
    z-index: 1;
}

.glowbox a {
    text-decoration: none;
}

@keyframes borderTurn {
    0% {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes borderTurnWithTranslate {
    0% {
        transform: translate(-50%, -50%) rotate(0);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Container do Botão */
.btn-cta-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 12px 20px 12px 14px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 100px;
    box-shadow: 
        0 0 30px rgba(0, 212, 255, 0.2),
        inset 0 0 20px rgba(0, 212, 255, 0.1);
    flex-wrap: nowrap;
    transition: all var(--transition-normal);
    position: relative;
    z-index: 2;
    max-width: 280px;
}

.btn-cta-box:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 0 40px rgba(0, 212, 255, 0.3),
        0 0 80px rgba(0, 153, 255, 0.2),
        inset 0 0 30px rgba(0, 212, 255, 0.15);
    border-color: var(--blue-accent);
}

/* Botão em si (texto) */
.btn-cta {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 14px 16px;
    background: linear-gradient(
        135deg,
        rgba(0, 212, 255, 0.4) 0%,
        rgba(0, 153, 255, 0.2) 50%,
        rgba(0, 212, 255, 0.3) 100%
    );
    border: 1px solid rgba(0, 212, 255, 0.5);
    border-radius: 100px;
    letter-spacing: 1px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 15px;
    color: var(--white);
    box-shadow:
        0 4px 20px rgba(0, 212, 255, 0.2),
        inset 0 0 20px rgba(0, 212, 255, 0.1);
    overflow: hidden;
    text-transform: uppercase;
    transition: all var(--transition-normal);
}

.btn-cta::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 ease;
    z-index: -1;
}

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

.btn-cta:hover {
    background: linear-gradient(
        135deg,
        rgba(0, 212, 255, 0.6) 0%,
        rgba(0, 153, 255, 0.4) 50%,
        rgba(0, 212, 255, 0.5) 100%
    );
    border-color: var(--cyan-glow);
    box-shadow:
        0 6px 30px rgba(0, 212, 255, 0.3),
        inset 0 0 30px rgba(0, 212, 255, 0.2);
}

/* Botão Secundário */
.btn-cta-box-secondary {
    background: rgba(10, 10, 10, 0.6);
    border-color: rgba(0, 212, 255, 0.2);
}

.btn-cta-box-secondary:hover {
    background: rgba(10, 10, 10, 0.8);
    border-color: var(--blue-accent);
}

/* Ícone do Leão */
.lion-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    opacity: 1;
    transition: all 0.5s ease;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.5));
}

.btn-cta-box:hover .lion-icon {
    transform: rotate(360deg) scale(1.1);
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.8));
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--white);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--blue-accent), transparent);
    box-shadow: 0 0 10px var(--blue-accent);
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--gray-light);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* CTA Container */
.cta-container {
    text-align: center;
    margin-top: 3rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -2;
}

.hero-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(2,29,50,0.7), rgba(0,0,0,0.6)), 
                url('assets/leao-rugindo.jpg') center/cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(180deg, rgba(10,10,10,0.8), rgba(0,0,0,0.9)),
        radial-gradient(circle at 50% 50%, rgba(0,212,255,0.1) 0%, transparent 70%);
    z-index: -1;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(0,212,255,0.03) 50%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(0,153,255,0.03) 50%, transparent 52%);
    background-size: 100px 100px;
    animation: scanLines 6s linear infinite;
    z-index: 1;
}

@keyframes scanLines {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    z-index: 1;
}

.hero-title {
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Logos Section */
.logos-section {
    padding: var(--section-padding);
    background: var(--darker-bg);
    position: relative;
}

.logos-note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--gray-light);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue-accent), transparent);
    box-shadow: 0 0 10px var(--blue-accent);
}

.logo-marquee {
    overflow: hidden;
    margin: 2rem 0;
    position: relative;
}

.logo-track {
    display: flex;
    animation: marquee 15s linear infinite;
    gap: 3rem;
    align-items: center;
}

.logo-item {
    flex-shrink: 0;
    opacity: 0.7;
    transition: all var(--transition-normal);
    filter: grayscale(100%) brightness(0.8);
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-item:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--blue-accent);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.logo-item img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
    transition: all var(--transition-normal);
}

.logo-item:hover img {
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
}

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

/* Alternative marquee animation for more logos */
@keyframes marquee-slow {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-track[data-speed="slow"] {
    animation: marquee-slow 60s linear infinite;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .logo-track {
        animation: none;
    }
    
    .logo-track:hover {
        animation: marquee 30s linear infinite;
    }
}

/* Pillars Section */
.pillars-section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.pillars-copy {
    max-width: 780px;
    margin: 0 auto 3rem;
    text-align: center;
}

.pillars-copy p {
    color: var(--gray-light);
    margin-bottom: 1.25rem;
}

.pillars-headline {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.pillars-question {
    font-weight: 700;
    color: var(--blue-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
}

.pillars-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue-accent), transparent);
    box-shadow: 0 0 10px var(--blue-accent);
    z-index: 10;
}

.pillars-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.pillars-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -2;
}

.pillars-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
}

.pillars-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(180deg, rgba(10,10,10,0.85), rgba(0,0,0,0.9)),
        radial-gradient(circle at 50% 50%, rgba(0,212,255,0.08) 0%, transparent 70%);
    z-index: -1;
}

.pillars-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(0,212,255,0.02) 50%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(0,153,255,0.02) 50%, transparent 52%);
    background-size: 150px 150px;
    animation: scanLines 8s linear infinite;
    z-index: 1;
}

@keyframes scanLines {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

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

.feature-card {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 0;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
    transition: all var(--transition-normal);
    border: 1px solid rgba(0, 212, 255, 0.3);
    position: relative;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 100%, 20px 100%);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 153, 255, 0.1));
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 0 40px rgba(0, 212, 255, 0.3),
        0 0 80px rgba(0, 153, 255, 0.2);
    border-color: var(--blue-accent);
    background: rgba(10, 10, 10, 0.95);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--blue-accent), var(--electric-blue));
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--black);
    box-shadow: 0 0 20px var(--glow-color);
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 100%, 15px 100%);
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--cyan-glow), var(--blue-accent));
    z-index: -1;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 100%, 15px 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.feature-card:hover .feature-icon::before {
    opacity: 1;
}

.feature-title {
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-text {
    color: var(--gray-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: var(--section-padding);
    background: var(--darker-bg);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue-accent), transparent);
    box-shadow: 0 0 10px var(--blue-accent);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.about-text {
    padding-right: 2rem;
}

.about-history {
    margin-bottom: 2rem;
}

.about-history p {
    font-size: 1.25rem;
    color: var(--white);
    font-weight: 500;
    line-height: 1.7;
}

.about-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-item {
    padding: 1.5rem;
    background: var(--dark-bg);
    border: 1px solid var(--gray-dark);
    position: relative;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 100%, 15px 100%);
}

.about-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.03), rgba(0, 153, 255, 0.03));
    z-index: -1;
}

.about-item h3 {
    color: var(--blue-accent);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.about-item p {
    font-size: 1rem;
    color: var(--gray-light);
    line-height: 1.6;
}

/* Founders Section */
.founders-section {
    width: 100%;
}

.founders-title {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.founders-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--blue-accent), transparent);
    box-shadow: 0 0 8px var(--blue-accent);
}

.founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.founder-card {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 0;
    border: 2px solid rgba(0, 212, 255, 0.3);
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 100%, 15px 100%);
    transition: all var(--transition-normal);
    position: relative;
    text-align: center;
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(0, 153, 255, 0.05));
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.founder-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--blue-accent);
    box-shadow: 
        0 0 30px rgba(0, 212, 255, 0.3),
        0 0 60px rgba(0, 153, 255, 0.2);
    background: rgba(10, 10, 10, 0.9);
}

.founder-card:hover::before {
    opacity: 1;
}

.founder-image {
    position: relative;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.founder-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--blue-accent);
    box-shadow: 
        0 0 20px rgba(0, 212, 255, 0.4),
        inset 0 0 20px rgba(0, 212, 255, 0.1);
    transition: all var(--transition-normal);
    position: relative;
    z-index: 2;
}

.founder-image::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, var(--cyan-glow), var(--blue-accent), var(--electric-blue), var(--neon-green));
    background-size: 400% 400%;
    border-radius: 50%;
    animation: gradientShift 3s ease infinite;
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 1;
}

.founder-card:hover .founder-image::before {
    opacity: 0.7;
}

.founder-card:hover .founder-image img {
    transform: scale(1.05);
    box-shadow: 
        0 0 30px rgba(0, 212, 255, 0.6),
        inset 0 0 30px rgba(0, 212, 255, 0.2);
}

.founder-info {
    position: relative;
    z-index: 2;
}

.founder-name {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-role {
    color: var(--blue-accent);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Platform Section */
.platform-section {
    padding: var(--section-padding);
    background: var(--dark-bg);
    position: relative;
}

.platform-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue-accent), transparent);
    box-shadow: 0 0 10px var(--blue-accent);
}

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

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

.capability-card {
    background: var(--darker-bg);
    padding: 2.5rem;
    border-radius: 0;
    position: relative;
    border: 2px solid var(--gray-dark);
    transition: all var(--transition-normal);
    position: relative;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 100%, 20px 100%);
}

.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(0, 153, 255, 0.05));
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.capability-card:hover {
    border-color: var(--blue-accent);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 0 30px rgba(0, 212, 255, 0.2),
        0 0 60px rgba(0, 153, 255, 0.1);
}

.capability-card:hover::before {
    opacity: 1;
}

.capability-step {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.5), rgba(0, 153, 255, 0.35));
    border: 2px solid rgba(0, 212, 255, 0.4);
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.25);
}

.capability-card h3 {
    margin-bottom: 1rem;
}

.capability-card p {
    color: var(--gray-light);
}

.reasons-section {
    padding: var(--section-padding);
    background: var(--dark-bg);
}

.reasons-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.reasons-list li {
    background: rgba(5, 5, 5, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 1.75rem;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.08);
    color: var(--gray-light);
    line-height: 1.7;
}

.impact-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.95), rgba(2, 29, 50, 0.9));
}

.impact-intro,
.impact-outro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--gray-light);
}

.impact-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 0 0 2.5rem 0;
    padding: 0;
}

.impact-list li {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 1.75rem;
    border-radius: 12px;
    color: var(--gray-light);
    box-shadow: 0 0 30px rgba(0, 153, 255, 0.08);
}

.consulting-section {
    padding: var(--section-padding);
    background: var(--darker-bg);
    text-align: center;
}

.consulting-intro,
.consulting-highlight,
.consulting-note {
    max-width: 720px;
    margin: 0 auto 1.5rem;
    color: var(--gray-light);
}

.consulting-highlight {
    font-size: clamp(1.3rem, 3vw, 1.75rem);
    font-weight: 700;
    color: var(--blue-accent);
}

.consulting-note {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.capability-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--blue-accent), var(--electric-blue));
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--black);
    box-shadow: 0 0 20px var(--glow-color);
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 100%, 15px 100%);
    position: relative;
}

.capability-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--cyan-glow), var(--blue-accent));
    z-index: -1;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 100%, 15px 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.capability-card:hover .capability-icon::before {
    opacity: 1;
}

.capability-title {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.capability-text {
    color: var(--gray-light);
    font-size: 1rem;
    line-height: 1.6;
}

.checklist-section {
    background: var(--darker-bg);
    padding: 2.5rem;
    border-radius: 0;
    margin-bottom: 3rem;
    border: 2px solid var(--gray-dark);
    position: relative;
    clip-path: polygon(20px 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
}

.checklist-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.03), rgba(0, 153, 255, 0.03));
    z-index: -1;
}

.checklist-section h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.checklist {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.checklist li {
    position: relative;
    padding-left: 2.5rem;
    color: var(--gray-light);
    font-size: 1rem;
    line-height: 1.6;
}

.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--blue-accent);
    font-weight: bold;
    font-size: 1.125rem;
    text-shadow: 0 0 10px var(--blue-accent);
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --container-padding: 1rem;
        --section-padding: 3rem 0;
    }
    
    .hero-section {
        min-height: 80vh;
        padding: 2rem 0;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-video {
        object-position: center center;
    }
    
    .hero-overlay::before {
        background-size: 50px 50px;
        animation-duration: 6s;
    }
    
    .pillars-video {
        object-position: center center;
    }
    
    .logo-item {
        padding: 0.75rem;
    }
    
    .logo-item img {
        height: 40px;
    }
    
    .logo-track {
        gap: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .founders-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .founder-card {
        padding: 1.5rem;
    }
    
    .founder-image img {
        width: 100px;
        height: 100px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
    
    .checklist {
        grid-template-columns: 1fr;
    }
    
    .glowbox {
        max-width: 300px;
    }
    
    .btn-cta-box {
        gap: 12px;
        padding: 10px 18px 10px 12px;
        max-width: 260px;
    }
    
    .btn-cta {
        font-size: 14px;
        padding: 12px 14px;
    }
    
    .lion-icon {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .feature-card,
    .capability-card {
        padding: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .logo-item {
        padding: 0.5rem;
    }
    
    .logo-item img {
        height: 35px;
    }
    
    .logo-track {
        gap: 1.5rem;
    }
    
    .founder-card {
        padding: 1rem;
    }
    
    .founder-image img {
        width: 80px;
        height: 80px;
    }
    
    .founder-name {
        font-size: 1rem;
    }
    
    .founder-role {
        font-size: 0.8rem;
    }
    
    .founders-title {
        font-size: 1.25rem;
    }
    
    .glowbox {
        max-width: 280px;
    }
    
    .btn-cta-box {
        gap: 10px;
        padding: 8px 14px 8px 10px;
        max-width: 240px;
    }
    
    .btn-cta {
        font-size: 13px;
        padding: 10px 12px;
    }
    
    .lion-icon {
        width: 20px;
        height: 20px;
    }
    
    .footer {
        padding: 2rem 0;
    }
    
    .social-icons {
        gap: 1.5rem;
    }
    
    .social-icons a {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.logo-item:focus {
    outline: 2px solid var(--blue-accent);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .feature-card,
    .capability-card {
        border: 2px solid var(--black);
    }
    
    .btn-secondary {
        border-width: 3px;
    }
}

/* Reduced motion and data saving */
@media (prefers-reduced-motion: reduce) {
    .hero-video,
    .pillars-video {
        display: none;
    }
    
    .hero-overlay::before,
    .pillars-overlay::before {
        animation: none;
    }
    
    .scanLines {
        animation: none;
    }
    
    .feature-card:hover {
        transform: none;
    }
}

@media (prefers-reduced-data: reduce) {
    .hero-video,
    .pillars-video {
        display: none;
    }
}

/* Print styles */
@media print {
    .hero-background {
        background: white !important;
    }
    
    .hero-content {
        color: black !important;
    }
    
    .btn {
        border: 2px solid black !important;
        background: white !important;
        color: black !important;
    }
    
    .logo-marquee {
        display: none;
    }
}

/* Enhanced animations for better UX */
.feature-card,
.capability-card {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.feature-card.animate-in,
.capability-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Enhanced focus styles for better accessibility */
.btn:focus-visible,
.logo-item:focus-visible {
    outline: 3px solid var(--blue-accent);
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(2, 121, 214, 0.2);
}

/* Futuristic Effects */
.futuristic-glow {
    position: relative;
}

.futuristic-glow::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--cyan-glow), var(--blue-accent), var(--electric-blue), var(--neon-green));
    background-size: 400% 400%;
    animation: gradientShift 3s ease infinite;
    z-index: -1;
    opacity: 0.7;
    filter: blur(8px);
}

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

/* Animated background particles - REMOVED for performance */

/* Cyber grid overlay */
.cyber-grid {
    position: relative;
}

.cyber-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(var(--blue-accent) 1px, transparent 1px),
        linear-gradient(90deg, var(--blue-accent) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.05;
    z-index: -1;
    pointer-events: none;
}

/* Holographic effect for cards */
.holographic {
    background: linear-gradient(45deg, 
        rgba(0, 212, 255, 0.1),
        rgba(0, 153, 255, 0.1),
        rgba(0, 255, 136, 0.1),
        rgba(0, 212, 255, 0.1));
    background-size: 400% 400%;
    animation: holographicShift 4s ease infinite;
}

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

/* Footer */
.footer {
    padding: 3rem 0;
    background: var(--darker-bg);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.1);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue-accent), transparent);
    box-shadow: 0 0 10px var(--blue-accent);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(10, 10, 10, 0.8);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    color: var(--blue-accent);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all var(--transition-normal);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 153, 255, 0.2));
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.social-icons a:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: var(--cyan-glow);
    box-shadow: 
        0 0 30px rgba(0, 212, 255, 0.4),
        0 0 60px rgba(0, 153, 255, 0.3);
    color: var(--white);
}

.social-icons a:hover::before {
    opacity: 1;
}

.footer p {
    text-align: center;
    color: var(--gray-light);
    font-size: 0.9rem;
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
