

@font-face {
    font-family: 'Inter';
    src: url('Inter.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg: #000000;
    --bg-elevated: #0a0a0a;
    --bg-card: #111111;
    
    --purple: #b794f4;
    --purple-dim: #9f7aea;
    --purple-glow: rgba(183, 148, 244, 0.5);
    
    --aqua: #d6bcfa;
    --aqua-dim: #c4a8e8;
    --aqua-glow: rgba(214, 188, 250, 0.5);
    
    
    --accent-100: 214, 188, 250;  
    --accent-200: 183, 148, 244;
    --accent-300: 159, 122, 234;
    --accent-400: 139, 92, 246;   
    --accent-500: 100, 60, 180;   
    --accent-600: 80, 45, 140;    
    
    --white: #ffffff;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --gray-100: rgba(255, 255, 255, 0.9);
    --gray-200: rgba(255, 255, 255, 0.7);
    --gray-300: rgba(255, 255, 255, 0.5);
    --gray-400: rgba(255, 255, 255, 0.3);
    --gray-500: rgba(255, 255, 255, 0.15);
    --gray-600: rgba(255, 255, 255, 0.08);
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}



[data-theme="light"] {
    --bg: #f5f5f7;
    --bg-elevated: #ffffff;
    --bg-card: #ffffff;
    
    --white: #1d1d1f;
    --text-primary: #1d1d1f;
    --text-secondary: #86868b;
    --gray-100: #1d1d1f;
    --gray-200: #424245;
    --gray-300: #6e6e73;
    --gray-400: #86868b;
    --gray-500: rgba(0, 0, 0, 0.08);
    --gray-600: rgba(0, 0, 0, 0.04);
    
    --purple-glow: rgba(183, 148, 244, 0.2);
    --aqua-glow: rgba(214, 188, 250, 0.2);
}



[data-theme="protanopia"] {
    --purple: #5BA4C6;
    --purple-dim: #4A8FB0;
    --purple-glow: rgba(91, 164, 198, 0.4);
    
    --aqua: #7CBFD4;
    --aqua-dim: #5AAFC7;
    --aqua-glow: rgba(124, 191, 212, 0.4);
    
    --accent-100: 124, 191, 212;
    --accent-200: 91, 164, 198;
    --accent-300: 74, 143, 176;
    --accent-400: 58, 124, 158;
    --accent-500: 42, 100, 130;
    --accent-600: 30, 75, 100;
}



[data-theme="deuteranopia"] {
    --purple: #C8956E;
    --purple-dim: #BBA05C;
    --purple-glow: rgba(200, 149, 110, 0.4);
    
    --aqua: #BBA05C;
    --aqua-dim: #C9B577;
    --aqua-glow: rgba(187, 160, 92, 0.4);
    
    --accent-100: 201, 181, 119;
    --accent-200: 200, 149, 110;
    --accent-300: 180, 130, 90;
    --accent-400: 160, 110, 70;
    --accent-500: 130, 85, 50;
    --accent-600: 100, 65, 35;
}



[data-theme="tritanopia"] {
    --purple: #B86B55;
    --purple-dim: #C8956E;
    --purple-glow: rgba(184, 107, 85, 0.4);
    
    --aqua: #C8956E;
    --aqua-dim: #BBA05C;
    --aqua-glow: rgba(200, 149, 110, 0.4);
    
    --accent-100: 200, 149, 110;
    --accent-200: 184, 107, 85;
    --accent-300: 165, 90, 70;
    --accent-400: 145, 75, 55;
    --accent-500: 120, 55, 40;
    --accent-600: 95, 40, 30;
}


[data-theme="light"] .cursor-glow {
    display: none;
}


[data-theme="light"] .header {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(120%);
    -webkit-backdrop-filter: blur(20px) saturate(120%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .nav-links li a {
    color: rgba(0, 0, 0, 0.6);
}

[data-theme="light"] .nav-links li a:hover {
    color: rgba(0, 0, 0, 0.9);
    background: rgba(0, 0, 0, 0.05);
}


[data-theme="light"] .boot-overlay {
    background: #f5f5f7;
}

[data-theme="light"] .boot-ascii {
    color: var(--purple);
    text-shadow: none;
}

[data-theme="light"] .loader-bar {
    background: rgba(0, 0, 0, 0.08);
}


[data-theme="light"] .bg-container::before,
[data-theme="light"] .bg-container::after {
    display: none;
}

[data-theme="light"] .pixel {
    background: var(--purple);
    opacity: 0.15;
}

[data-theme="mono"] {
    --bg: #070707;
    --bg-elevated: #0d0d0f;
    --bg-card: #111113;
    
    --purple: #b0b0b5;
    --purple-dim: #8f8f95;
    --purple-glow: rgba(176, 176, 181, 0.4);
    
    --aqua: #d2d2d2;
    --aqua-dim: #b8b8b8;
    --aqua-glow: rgba(210, 210, 210, 0.35);
    
    --white: #f2f2f2;
    --text-primary: #ededed;
    --text-secondary: rgba(237, 237, 237, 0.65);
    --gray-100: #efefef;
    --gray-200: #d6d6d6;
    --gray-300: #bdbdbd;
    --gray-400: #9e9e9e;
    --gray-500: rgba(255, 255, 255, 0.08);
    --gray-600: rgba(255, 255, 255, 0.04);
}


[data-theme="mono"] .bg-container,
[data-theme="mono"] main,
[data-theme="mono"] .header,
[data-theme="mono"] .footer {
    filter: grayscale(1) saturate(0) brightness(1.04) contrast(0.94);
    transition: filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}


.bg-container,
main,
.header,
.footer {
    transition: filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}


[data-theme="mono"] .preloader {
    filter: grayscale(1) saturate(0) brightness(1.1) contrast(1);
}

[data-theme="mono"] .preloader-title {
    color: #ffffff !important;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

[data-theme="mono"] .preloader-subtitle {
    color: rgba(255, 255, 255, 0.7) !important;
}

[data-theme="mono"] .pulsar-core {
    background: radial-gradient(circle, #ffffff 0%, #888888 50%, #333333 100%) !important;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.6), 0 0 80px rgba(255, 255, 255, 0.3) !important;
}

[data-theme="mono"] .pulsar-ring {
    border-color: rgba(255, 255, 255, 0.3) !important;
}

[data-theme="mono"] .preloader-fill {
    background: linear-gradient(90deg, #666666, #ffffff) !important;
}


[data-theme="light"] .feature-card,
[data-theme="light"] .feature-item,
[data-theme="light"] .testimonial-card,
[data-theme="light"] .network-stat,
[data-theme="light"] .cta-card {
    background: rgba(192, 192, 192, 0.04);
    border: 1px solid rgba(192, 192, 192, 0.1);
    box-shadow: 
        0 4px 20px rgba(192, 192, 192, 0.08),
        0 8px 40px rgba(0, 0, 0, 0.05);
}


[data-theme="light"] .bento-card {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(252, 250, 255, 0.95) 50%,
        rgba(255, 255, 255, 0.98) 100%
    );
    border: 1px solid transparent;
}

[data-theme="light"] .bento-card::before {
    background: linear-gradient(90deg,
        #7c3aed 0%,
        #a855f7 15%,
        #c084fc 30%,
        #e879f9 45%,
        #c084fc 60%,
        #a855f7 75%,
        #7c3aed 90%,
        #6366f1 100%
    );
    opacity: 0.7;
}

[data-theme="light"] .bento-card::after {
    background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(168, 85, 247, 0.15) 0%,
        rgba(124, 58, 237, 0.08) 30%,
        transparent 60%
    );
}

[data-theme="light"] .bento-card:hover {
    box-shadow:
        0 20px 60px rgba(124, 58, 237, 0.25),
        0 0 40px rgba(168, 85, 247, 0.2),
        0 0 80px rgba(192, 132, 252, 0.15);
}

[data-theme="light"] .bento-mockup-editor,
[data-theme="light"] .bento-mockup-dropdown,
[data-theme="light"] .bento-mockup-image-gen,
[data-theme="light"] .bento-mockup-sidebar {
    background: linear-gradient(135deg,
        rgba(248, 246, 252, 0.98) 0%,
        rgba(252, 250, 255, 0.95) 100%
    );
    border: 1px solid rgba(124, 58, 237, 0.2);
    box-shadow:
        0 4px 16px rgba(124, 58, 237, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .bento-mockup-context {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(252, 250, 255, 0.98) 100%
    );
    border: 1px solid rgba(124, 58, 237, 0.25);
    box-shadow:
        0 10px 40px rgba(124, 58, 237, 0.2),
        0 0 30px rgba(168, 85, 247, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

[data-theme="light"] .cta-card:hover {
    background: rgba(192, 192, 192, 0.08);
    box-shadow: 
        0 8px 30px rgba(192, 192, 192, 0.12),
        0 15px 50px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .cta-blob {
    opacity: 0.5;
}

[data-theme="light"] .feature-card:hover,
[data-theme="light"] .feature-item:hover,
[data-theme="light"] .testimonial-card:hover {
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.06),
        0 8px 24px rgba(0, 0, 0, 0.08);
}


[data-theme="light"] .code-terminal {
    background: #1d1d1f;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.12),
        0 12px 40px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .code-terminal .terminal-header {
    background: #2d2d2d;
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .code-terminal .terminal-body {
    color: #ffffff;
}

[data-theme="light"] .code-terminal .code-keyword {
    color: #808080;
}

[data-theme="light"] .code-terminal .code-comment {
    color: #6e6e73;
}


[data-theme="light"] .network-section {
    background: rgba(0, 0, 0, 0.02);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .network-map {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .neon-map-container {
    background: #fafafa;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .section-glow-bg {
    background: transparent;
}


[data-theme="light"] .btn-primary {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .btn-primary:hover {
    box-shadow: 0 2px 8px rgba(192, 192, 192, 0.3);
}

[data-theme="light"] .btn-ghost {
    border-color: rgba(0, 0, 0, 0.15);
    color: var(--white);
}

[data-theme="light"] .btn-ghost:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.2);
}


[data-theme="light"] .footer {
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}


[data-theme="light"] .testimonials-section {
    background: #f5f5f7;
}

[data-theme="light"] .liquid-blob {
    opacity: 0.4;
}

[data-theme="light"] .testimonial-card.glass-card {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(192, 192, 192, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .testimonial-card.glass-card:hover {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.1),
        0 0 30px rgba(192, 192, 192, 0.08);
}

[data-theme="light"] .card-glow {
    background: radial-gradient(
        ellipse at 50% 0%,
        rgba(192, 192, 192, 0.1) 0%,
        transparent 60%
    );
}

[data-theme="light"] .author-avatar {
    background: rgba(192, 192, 192, 0.08);
    border-color: rgba(192, 192, 192, 0.15);
}

[data-theme="light"] .marquee-section {
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}


[data-theme="light"] .feature-image {
    background: #f5f5f7;
}



[data-theme="light"] ::-webkit-scrollbar {
    display: none;
}


[data-theme="light"] .hero-eyebrow {
    background: rgba(192, 192, 192, 0.08);
    border: 1px solid rgba(192, 192, 192, 0.15);
    box-shadow: none;
}


[data-theme="light"] .logo-orb {
    box-shadow: 0 2px 8px rgba(192, 192, 192, 0.25);
}


[data-theme="light"] .network-stat {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
}


[data-theme="light"] .map-footer {
    border-top-color: rgba(0, 0, 0, 0.08);
}

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


.cursor-glow {
    display: none;
}

html {
    scroll-behavior: smooth;
    overflow-y: auto;
}


body {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: none;
}


.section {
    content-visibility: auto;
    contain-intrinsic-size: auto 800px;
}


.section.is-hidden * {
    animation-play-state: paused !important;
}

.section.is-hidden .bento-floating-particle,
.section.is-hidden .galaxy-glow,
.section.is-hidden .left-glow {
    opacity: 0 !important;
    transition: opacity 0.3s ease;
}




::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

html, body {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

* {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--white);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}





.hero-content,
.hero-visual,
.section-header,
.feature-card,
.feature-item,
.network-map,
.network-stat,
.code-content,
.code-terminal,
.testimonial-card,
.cta-card,
.key-stats,
.security-info-block {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
    transition: 
        opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


.hero-content.animate-in,
.hero-visual.animate-in,
.section-header.animate-in,
.feature-card.animate-in,
.feature-item.animate-in,
.network-map.animate-in,
.network-stat.animate-in,
.code-content.animate-in,
.code-terminal.animate-in,
.testimonial-card.animate-in,
.cta-card.animate-in,
.key-stats.animate-in,
.security-info-block.animate-in,
.bento-card.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}


.feature-card:nth-child(1) { transition-delay: 0ms; }
.feature-card:nth-child(2) { transition-delay: 100ms; }
.feature-card:nth-child(3) { transition-delay: 200ms; }

.feature-item:nth-child(1) { transition-delay: 0ms; }
.feature-item:nth-child(2) { transition-delay: 60ms; }
.feature-item:nth-child(3) { transition-delay: 120ms; }
.feature-item:nth-child(4) { transition-delay: 180ms; }
.feature-item:nth-child(5) { transition-delay: 240ms; }
.feature-item:nth-child(6) { transition-delay: 300ms; }

.network-stat:nth-child(1) { transition-delay: 100ms; }
.network-stat:nth-child(2) { transition-delay: 200ms; }
.network-stat:nth-child(3) { transition-delay: 300ms; }

.testimonial-card:nth-child(1) { transition-delay: 0ms; }
.testimonial-card:nth-child(2) { transition-delay: 120ms; }
.testimonial-card:nth-child(3) { transition-delay: 240ms; }


.hero-content {
    transform: translateY(30px);
    transition: 
        opacity 0.6s ease-out,
        transform 0.6s ease-out;
}

.hero-visual {
    transform: translateY(80px) scale(0.92);
    transition: 
        opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s,
        transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}


.section-header {
    filter: blur(4px);
}

.section-header.animate-in {
    filter: blur(0);
}


@keyframes appleSpringIn {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    60% {
        opacity: 1;
        transform: translateY(-8px) scale(1.02);
    }
    80% {
        transform: translateY(4px) scale(0.99);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


@keyframes appleFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-visual.animate-in .video-container {
    animation: none;
}


@keyframes appleShimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}


@keyframes appleMaskReveal {
    0% {
        clip-path: inset(0 100% 0 0);
    }
    100% {
        clip-path: inset(0 0 0 0);
    }
}


@keyframes appleGlowPulse {
    0% {
        box-shadow: 0 0 0 rgba(192, 192, 192, 0);
    }
    50% {
        box-shadow: 0 0 40px rgba(192, 192, 192, 0.4), 0 0 80px rgba(192, 192, 192, 0.2);
    }
    100% {
        box-shadow: 0 0 20px rgba(192, 192, 192, 0.2);
    }
}

.btn-primary.animate-in {
    animation: appleGlowPulse 1.5s ease-out 0.8s;
}


@keyframes appleScalePop {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    70% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
    }
}

.stat-value.animate-in {
    animation: appleScalePop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}


@keyframes appleSubtleRotate {
    0%, 100% {
        transform: rotate(-1deg);
    }
    50% {
        transform: rotate(1deg);
    }
}


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



.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease-out, visibility 0s 0.4s;
    pointer-events: none;
}


.preloader-rain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 250;
    overflow: hidden;
    opacity: 0;
    background: #000;
}

.preloader-rain.active {
    opacity: 1;
}

.preloader-rain.jump {
    animation: hyperJump 0.3s ease-out forwards;
}

@keyframes hyperJump {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.97);
    }
    100% {
        transform: scale(1);
    }
}

.warp-line {
    position: absolute;
    background: linear-gradient(
        rgba(255, 255, 255, 0) 0%,
        rgba(214, 188, 250, 0.4) 50%,
        rgba(255, 255, 255, 0.95) 100%
    );
    border-radius: 1px;
    box-shadow: 0 0 4px rgba(183, 148, 244, 0.6);
    will-change: transform, opacity;
}


.falling-star {
    position: absolute;
    width: 12px;
    height: 16px;
    background: rgba(183, 148, 244, 0.6);
    clip-path: polygon(
        50% 0%,
        54% 42%,
        72% 28%,
        56% 46%,
        100% 50%,
        56% 54%,
        72% 72%,
        54% 58%,
        50% 100%,
        46% 58%,
        28% 72%,
        44% 54%,
        0% 50%,
        44% 46%,
        28% 28%,
        46% 42%
    );
    opacity: 0;
    pointer-events: none;
    z-index: 5;
}

@keyframes snowfallStar {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: translateY(100vh);
    }
}

@keyframes preloaderPulseOut {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

@keyframes preloaderGlowPulse {
    0% {
        box-shadow: 0 0 20px rgba(183, 148, 244, 0.3);
    }
    50% {
        box-shadow: 0 0 60px rgba(183, 148, 244, 0.8), 0 0 100px rgba(183, 148, 244, 0.4);
    }
    100% {
        box-shadow: 0 0 150px rgba(183, 148, 244, 1), 0 0 200px rgba(183, 148, 244, 0.5);
    }
}

@keyframes particleTrail {
    0% {
        filter: drop-shadow(0 0 4px currentColor);
    }
    50% {
        filter: drop-shadow(0 0 2px currentColor);
    }
    100% {
        filter: drop-shadow(0 0 0px currentColor);
    }
}

.boot-particle {
    animation: particleTrail 1s ease-out forwards;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: var(--particle-opacity, 0.15);
    }
    25% {
        transform: translateY(-15px) translateX(8px);
        opacity: var(--particle-opacity, 0.2);
    }
    50% {
        transform: translateY(-30px) translateX(-5px);
        opacity: var(--particle-opacity, 0.25);
    }
    75% {
        transform: translateY(-15px) translateX(-10px);
        opacity: var(--particle-opacity, 0.2);
    }
}

.ambient-particle {
    will-change: transform, opacity;
}

body.no-scroll {
    overflow: hidden !important;
}


html.no-scroll {
    overflow: hidden !important;
}


.preloader-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}


.preloader-ambient-glow {
    position: absolute;
    inset: 0;
    background: 
        
        radial-gradient(
            circle at 50% 50%,
            rgba(183, 148, 244, 0.15) 0%,
            rgba(159, 122, 234, 0.08) 30%,
            transparent 60%
        ),
        
        radial-gradient(
            ellipse 80% 50% at 50% 0%,
            rgba(138, 100, 220, 0.12) 0%,
            transparent 50%
        ),
        
        radial-gradient(
            ellipse 50% 80% at 0% 50%,
            rgba(159, 122, 234, 0.1) 0%,
            transparent 50%
        ),
        
        radial-gradient(
            ellipse 50% 80% at 100% 50%,
            rgba(159, 122, 234, 0.1) 0%,
            transparent 50%
        ),
        
        radial-gradient(circle at 15% 15%, rgba(183, 148, 244, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 85% 15%, rgba(183, 148, 244, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 15% 85%, rgba(183, 148, 244, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 85% 85%, rgba(183, 148, 244, 0.08) 0%, transparent 30%);
    pointer-events: none;
}


.preloader-ambient-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 120px 120px;
    opacity: 0.12;
    mix-blend-mode: overlay;
    pointer-events: none;
}


.preloader-horizon {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 60%;
    pointer-events: none;
    overflow: hidden;
}

.preloader-horizon-glow {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 100%;
    background: 
        
        radial-gradient(
            ellipse 50% 90% at 50% 100%,
            rgba(183, 148, 244, 0.8) 0%,
            rgba(159, 122, 234, 0.5) 15%,
            rgba(138, 100, 220, 0.3) 30%,
            rgba(120, 80, 200, 0.15) 50%,
            transparent 70%
        ),
        
        radial-gradient(
            ellipse 90% 70% at 50% 100%,
            rgba(159, 122, 234, 0.4) 0%,
            rgba(138, 90, 200, 0.2) 25%,
            transparent 55%
        );
}


.preloader-beam {
    position: absolute;
    left: 50%;
    top: 0;
    width: 20px;
    height: calc(50% - 60px);
    transform: translateX(-50%);
    transform-origin: bottom;
    background: linear-gradient(to bottom,
        rgba(183, 148, 244, 0.3) 0%,
        rgba(183, 148, 244, 0.6) 30%,
        rgba(214, 188, 250, 0.85) 70%,
        rgba(255, 255, 255, 1) 100%
    );
    pointer-events: none;
    z-index: 100;
    clip-path: polygon(
        30% 0%,
        70% 0%,
        52% 100%,
        48% 100%
    );
    opacity: 0;
}


.preloader-beam.active {
    animation: beamGrow 1.6s ease-out forwards;
}

@keyframes beamGrow {
    0% {
        clip-path: polygon(
            30% 0%,
            70% 0%,
            70% 0%,
            30% 0%
        );
        opacity: 0;
    }
    5% {
        opacity: 0.8;
    }
    15% {
        opacity: 1;
    }
    100% {
        clip-path: polygon(
            30% 0%,
            70% 0%,
            52% 100%,
            48% 100%
        );
        opacity: 1;
    }
}


.preloader-flash {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(255, 255, 255, 1) 0%,
        rgba(220, 200, 255, 0.9) 20%,
        rgba(183, 148, 244, 0.7) 40%,
        rgba(100, 60, 160, 0.5) 60%,
        rgba(20, 10, 40, 0.8) 80%,
        rgba(0, 0, 0, 1) 100%
    );
    opacity: 0;
    pointer-events: none;
    z-index: 200;
}

.preloader-flash.active {
    animation: flashToDark 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes flashToDark {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    30% {
        opacity: 1;
        transform: scale(1.2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        background: radial-gradient(
            circle at 50% 50%,
            rgba(30, 20, 50, 1) 0%,
            rgba(10, 5, 20, 1) 50%,
            rgba(0, 0, 0, 1) 100%
        );
    }
}


.pulsar-impact {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(183, 148, 244, 0.6) 30%, transparent 70%);
    opacity: 0;
    transform: scale(0.5);
    pointer-events: none;
}

.pulsar-impact.active {
    animation: impactBurst 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes impactBurst {
    0% {
        opacity: 1;
        transform: scale(0.5);
    }
    50% {
        opacity: 0.8;
        transform: scale(2);
    }
    100% {
        opacity: 0;
        transform: scale(4);
    }
}


.pulsar.impact .pulsar-core {
    animation: coreFlash 0.5s ease-out;
}

@keyframes coreFlash {
    0% {
        box-shadow: 
            0 0 30px rgba(183, 148, 244, 1),
            0 0 60px rgba(183, 148, 244, 0.8),
            0 0 100px rgba(255, 255, 255, 0.6);
        background: rgba(255, 255, 255, 1);
    }
    100% {
        box-shadow: 
            0 0 15px rgba(183, 148, 244, 0.6),
            0 0 30px rgba(183, 148, 244, 0.3);
    }
}

.preloader-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.preloader-orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(183, 148, 244, 0.15);
    top: 20%;
    left: 20%;
    animation: orbDrift1 12s ease-in-out infinite;
}

.preloader-orb-2 {
    width: 500px;
    height: 500px;
    background: rgba(159, 122, 234, 0.12);
    bottom: 10%;
    right: 15%;
    animation: orbDrift2 15s ease-in-out infinite;
}

@keyframes orbDrift1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(80px, 40px); }
}

@keyframes orbDrift2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-60px, -30px); }
}


.preloader-content {
    position: relative;
    z-index: 150;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
}


.pulsar {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 150;
    perspective: 400px;
    transform-style: preserve-3d;
}

.pulsar-core {
    width: 38px;
    height: 54px;
    background: #b794f4;
    clip-path: polygon(
        50% 0%,
        54% 42%,
        72% 28%,
        56% 46%,
        100% 50%,
        56% 54%,
        72% 72%,
        54% 58%,
        50% 100%,
        46% 58%,
        28% 72%,
        44% 54%,
        0% 50%,
        44% 46%,
        28% 28%,
        46% 42%
    );
    filter: drop-shadow(0 0 10px rgba(183, 148, 244, 0.6));
}

.pulsar-core-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(183, 148, 244, 0.8))
            drop-shadow(0 0 30px rgba(183, 148, 244, 0.5));
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 15px rgba(183, 148, 244, 0.8))
                drop-shadow(0 0 30px rgba(183, 148, 244, 0.5));
    }
    50% { 
        transform: scale(1.15);
        filter: drop-shadow(0 0 25px rgba(183, 148, 244, 1))
                drop-shadow(0 0 50px rgba(183, 148, 244, 0.7));
    }
}

@keyframes corePulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            0 0 20px #b794f4,
            0 0 40px rgba(183, 148, 244, 0.6),
            0 0 60px rgba(183, 148, 244, 0.4);
    }
    50% { 
        transform: scale(1.2);
        box-shadow: 
            0 0 30px #b794f4,
            0 0 60px rgba(183, 148, 244, 0.8),
            0 0 80px rgba(183, 148, 244, 0.5);
    }
}

.pulsar-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(183, 148, 244, 0.6);
    transform-style: preserve-3d;
}

.pulsar-ring-1 {
    width: 20px;
    height: 20px;
    animation: ring3D-1 2.5s ease-out infinite;
    animation-delay: 0s;
    border-width: 2px;
    border-color: rgba(183, 148, 244, 0.8);
}

.pulsar-ring-2 {
    width: 25px;
    height: 25px;
    animation: ring3D-2 3.2s ease-out infinite;
    animation-delay: 0.4s;
    border-color: rgba(183, 148, 244, 0.6);
}

.pulsar-ring-3 {
    width: 30px;
    height: 30px;
    animation: ring3D-3 4s ease-out infinite;
    animation-delay: 0.8s;
    border-color: rgba(183, 148, 244, 0.5);
}

.pulsar-ring-4 {
    width: 22px;
    height: 22px;
    animation: ring3D-4 3.5s ease-out infinite;
    animation-delay: 1.2s;
    border-color: rgba(183, 148, 244, 0.4);
}

.pulsar-ring-5 {
    width: 28px;
    height: 28px;
    animation: ring3D-5 4.5s ease-out infinite;
    animation-delay: 1.8s;
    border-color: rgba(183, 148, 244, 0.3);
}

@keyframes ring3D-1 {
    0% {
        transform: rotateX(70deg) rotateY(0deg) scale(1);
        opacity: 1;
    }
    100% {
        transform: rotateX(70deg) rotateY(360deg) scale(5);
        opacity: 0;
    }
}

@keyframes ring3D-2 {
    0% {
        transform: rotateX(60deg) rotateZ(30deg) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: rotateX(60deg) rotateZ(30deg) scale(6);
        opacity: 0;
    }
}

@keyframes ring3D-3 {
    0% {
        transform: rotateX(75deg) rotateZ(-20deg) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: rotateX(75deg) rotateZ(-20deg) scale(7);
        opacity: 0;
    }
}

@keyframes ring3D-4 {
    0% {
        transform: rotateX(55deg) rotateZ(45deg) scale(1);
        opacity: 0.7;
    }
    100% {
        transform: rotateX(55deg) rotateZ(45deg) scale(6);
        opacity: 0;
    }
}

@keyframes ring3D-5 {
    0% {
        transform: rotateX(80deg) rotateZ(-40deg) scale(1);
        opacity: 0.5;
    }
    100% {
        transform: rotateX(80deg) rotateZ(-40deg) scale(8);
        opacity: 0;
    }
}


.preloader-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preloader-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.preloader-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    text-transform: capitalize;
    letterp-spacing:1px;
}

.preloader-subtitle {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}


.preloader-progress {
    width: 160px;
}

.preloader-bar {
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.preloader-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #9f7aea, #b794f4);
    border-radius: 2px;
    transition: width 0.15s ease-out;
    box-shadow: 0 0 10px rgba(183, 148, 244, 0.5);
}


[data-theme="light"] .preloader {
    background: #fafafa;
}

[data-theme="light"] .preloader-ambient-glow {
    background: 
        radial-gradient(circle at 50% 50%, rgba(183, 148, 244, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(138, 100, 220, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 50% 80% at 0% 50%, rgba(159, 122, 234, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 50% 80% at 100% 50%, rgba(159, 122, 234, 0.06) 0%, transparent 50%);
}

[data-theme="light"] .preloader-ambient-noise {
    opacity: 0.08;
}

[data-theme="light"] .preloader-horizon-glow {
    background: 
        radial-gradient(
            ellipse 50% 90% at 50% 100%,
            rgba(183, 148, 244, 0.5) 0%,
            rgba(159, 122, 234, 0.3) 15%,
            rgba(138, 100, 220, 0.15) 30%,
            transparent 60%
        ),
        radial-gradient(
            ellipse 90% 70% at 50% 100%,
            rgba(159, 122, 234, 0.25) 0%,
            rgba(138, 90, 200, 0.1) 25%,
            transparent 55%
        );
}

[data-theme="light"] .beam-line {
    filter: url(#beamGlow) drop-shadow(0 0 4px rgba(159, 122, 234, 0.6));
}

[data-theme="light"] .preloader-flash {
    background: radial-gradient(
        circle at 50% 50%,
        rgba(255, 255, 255, 1) 0%,
        rgba(240, 230, 255, 0.95) 30%,
        rgba(220, 210, 240, 0.8) 60%,
        rgba(250, 250, 255, 1) 100%
    );
}

[data-theme="light"] .preloader-flash.active {
    animation: flashToLight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes flashToLight {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    30% {
        opacity: 1;
        transform: scale(1.2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        background: rgba(250, 250, 255, 1);
    }
}

[data-theme="light"] .preloader-title {
    color: rgba(0, 0, 0, 0.8);
}

[data-theme="light"] .preloader-bar {
    background: rgba(0, 0, 0, 0.06);
}



.bg-container {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    background: #000000;
}


.bg-grid {
    position: absolute;
    inset: 0;
    mask-image: radial-gradient(ellipse at 50% 40%, black 0%, transparent 85%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 0%, transparent 85%);
}


.bg-grid::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(183, 148, 244, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(183, 148, 244, 0.08) 1px, transparent 1px);
    background-size: 120px 120px;
}


.bg-grid::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(183, 148, 244, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(183, 148, 244, 0.04) 1px, transparent 1px),
        
        linear-gradient(45deg, transparent 49.5%, rgba(214, 188, 250, 0.03) 49.5%, rgba(214, 188, 250, 0.03) 50.5%, transparent 50.5%),
        linear-gradient(-45deg, transparent 49.5%, rgba(214, 188, 250, 0.03) 49.5%, rgba(214, 188, 250, 0.03) 50.5%, transparent 50.5%);
    background-size: 60px 60px, 60px 60px, 240px 240px, 240px 240px;
    background-position: 30px 30px, 30px 30px, 0 0, 0 0;
}


.grid-line-spark {
    position: absolute;
    pointer-events: none;
    opacity: 0;
}

.grid-line-spark.horizontal {
    height: 1px;
    left: 0;
    right: 0;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(183, 148, 244, 0.2) 20%,
        rgba(214, 188, 250, 0.6) 50%,
        rgba(183, 148, 244, 0.2) 80%,
        transparent 100%
    );
    background-size: 300px 1px;
    background-repeat: no-repeat;
}

.grid-line-spark.vertical {
    width: 1px;
    top: 0;
    bottom: 0;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(183, 148, 244, 0.2) 20%,
        rgba(214, 188, 250, 0.6) 50%,
        rgba(183, 148, 244, 0.2) 80%,
        transparent 100%
    );
    background-size: 1px 300px;
    background-repeat: no-repeat;
}

.grid-line-spark.horizontal.active {
    animation: sparkLineH 3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.grid-line-spark.vertical.active {
    animation: sparkLineV 3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes sparkLineH {
    0% {
        opacity: 0;
        background-position: -300px 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        background-position: calc(100% + 300px) 0;
    }
}

@keyframes sparkLineV {
    0% {
        opacity: 0;
        background-position: 0 -300px;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        background-position: 0 calc(100% + 300px);
    }
}


.bg-container .bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
}

.bg-container .bg-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(192, 192, 192, 0.08) 0%, transparent 70%);
    top: -100px;
    left: -100px;
}

.bg-container .bg-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 212, 212, 0.06) 0%, transparent 70%);
    bottom: 10%;
    right: -100px;
}

.bg-container .bg-orb-3 {
    display: none;
}


.bg-container::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(192, 192, 192, 0.1) 0%, transparent 60%);
    top: -200px;
    left: -200px;
    filter: blur(80px);
}

.bg-container::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 212, 212, 0.08) 0%, transparent 60%);
    bottom: -150px;
    right: -150px;
    filter: blur(100px);
}


.pixel {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    opacity: 0;
    animation: pixelFloat linear infinite;
}

@keyframes pixelFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) rotate(0deg);
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) rotate(180deg);
    }
}

.particles {
    position: absolute;
    inset: 0;
}



.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    padding: 24px 0;
}

.container {
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 0 24px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    height: 48px;
    padding: 0 20px;
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(20px) saturate(120%);
    -webkit-backdrop-filter: blur(20px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    width: fit-content;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--white);
}

.logo-orb {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--purple), var(--aqua));
    border-radius: 50%;
    box-shadow: 0 0 16px var(--aqua-glow);
}

.logo-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.logo-text {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.logo-badge {
    font-size: 8px;
    font-weight: 700;
    padding: 2px 5px;
    background: rgba(192, 192, 192, 0.15);
    color: var(--purple);
    border-radius: 4px;
    letter-spacing: 0.04em;
    border: 1px solid rgba(192, 192, 192, 0.2);
}

.nav-links {
    display: flex;
    gap: 8px;
    list-style: none;
}

.nav-links li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-links li a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.nav {
    padding: 0;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.network-status {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(183, 148, 244, 0.05);
    border: 1px solid rgba(183, 148, 244, 0.1);
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    color: #b794f4;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.pulse-ring {
    width: 6px;
    height: 6px;
    background: #b794f4;
    border-radius: 50%;
    box-shadow: 0 0 8px #b794f4;
}

.btn-nav {
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--purple), var(--aqua-dim));
    border: none;
    border-radius: var(--radius-md);
    color: var(--bg);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-nav:hover {
    background: linear-gradient(135deg, var(--purple), var(--aqua));
    box-shadow: 0 0 24px var(--aqua-glow);
}


.theme-dropdown {
    position: relative;
}

.theme-dropdown-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.theme-dropdown-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.theme-icon {
    width: 15px;
    height: 15px;
    opacity: 0.8;
}

.dropdown-arrow {
    width: 12px;
    height: 12px;
    opacity: 0.6;
    transition: transform 0.3s ease;
}

.theme-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.theme-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 160px;
    background: rgba(10, 10, 15, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.theme-dropdown.open .theme-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.theme-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 14px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.theme-option:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.theme-option.active {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.theme-option-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.theme-option-dot.dark {
    background: linear-gradient(135deg, var(--purple), var(--aqua));
    border-color: rgba(139, 92, 246, 0.4);
}

.theme-option-dot.mono {
    background: linear-gradient(135deg, #fff, #666);
    border-color: rgba(255, 255, 255, 0.3);
}

.theme-option-dot.protanopia {
    background: linear-gradient(135deg, #5BA4C6, #7CBFD4);
    border-color: rgba(91, 164, 198, 0.4);
}

.theme-option-dot.deuteranopia {
    background: linear-gradient(135deg, #C8956E, #BBA05C);
    border-color: rgba(200, 149, 110, 0.4);
}

.theme-option-dot.tritanopia {
    background: linear-gradient(135deg, #B86B55, #C8956E);
    border-color: rgba(184, 107, 85, 0.4);
}

.theme-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 6px 8px;
}

.theme-label {
    display: block;
    padding: 4px 14px 6px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.3);
}




.mono-transition-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 11998;
    overflow: hidden;
}


.mono-backdrop {
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0;
}

.mono-backdrop.animate {
    animation: backdropFlash 1.2s ease-out forwards;
}

@keyframes backdropFlash {
    0% { opacity: 0; }
    15% { opacity: 1; }
    60% { opacity: 1; }
    100% { opacity: 0; }
}


.mono-flash-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    will-change: transform, opacity;
    box-shadow:
        0 0 60px 30px #fff,
        0 0 120px 60px rgba(255, 255, 255, 0.8),
        0 0 200px 100px rgba(183, 148, 244, 0.6),
        0 0 350px 175px rgba(139, 92, 246, 0.4),
        0 0 500px 250px rgba(88, 28, 135, 0.2);
}

.mono-flash-core.animate {
    animation: coreFlash 0.9s ease-out forwards;
}

@keyframes coreFlash {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
    25% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    60% {
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}


body {
    transition: filter 1s cubic-bezier(0.16, 1, 0.3, 1);
}



.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--white);
}



.hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 100px;
    z-index: 1;
}

.hero > .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: linear-gradient(
        135deg,
        rgba(192, 192, 192, 0.15) 0%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(192, 192, 192, 0.1) 100%
    );
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    font-size: 12px;
    color: var(--gray-100);
    margin-bottom: 24px;
    box-shadow: 
        0 4px 24px rgba(192, 192, 192, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-eyebrow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.15),
        transparent
    );
    animation: liquidShine 4s ease-in-out infinite;
}

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

.eyebrow-icon {
    color: var(--purple);
    display: flex;
    align-items: center;
}

.eyebrow-icon svg {
    width: 14px;
    height: 14px;
}

.hero-title {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--purple) 0%, var(--aqua) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
}

.hero-desc {
    font-size: 16px;
    color: var(--gray-200);
    max-width: 480px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 12px;
    margin-bottom: 48px;
}

.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--purple), var(--aqua-dim));
    border: none;
    border-radius: var(--radius-md);
    color: var(--bg);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--purple), var(--aqua));
    box-shadow: 0 0 32px var(--aqua-glow);
}

.btn-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    animation: shine 3s infinite;
}

@keyframes shine {
    50%, 100% { transform: translateX(100%); }
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: transparent;
    border: 1px solid var(--gray-500);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-ghost:hover {
    background: var(--gray-600);
    border-color: var(--gray-400);
}

.hero-stats {
    display: flex;
    gap: 32px;
}

.stat-item {
    text-align: left;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--purple), var(--aqua));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 12px;
    color: var(--gray-300);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    background: var(--gray-500);
}


.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-xl);
    object-fit: cover;
}

.video-glow {
    display: none;
}

@keyframes videoGlowPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.video-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 1px;
    -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);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 10;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.scroll-indicator {
    width: 20px;
    height: 28px;
    border: 1px solid var(--gray-500);
    border-radius: 10px;
    position: relative;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 6px;
    background: var(--purple);
    border-radius: 2px;
    animation: scrollBounce 1.5s infinite;
}

@keyframes scrollBounce {
    50% { transform: translateX(-50%) translateY(8px); opacity: 0.3; }
}



.marquee-section {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--gray-600);
    border-bottom: 1px solid var(--gray-600);
    background: var(--bg);
}

.marquee {
    overflow: hidden;
    padding: 16px 0;
}

.marquee-track {
    display: flex;
    gap: 48px;
    animation: marquee 30s linear infinite;
}

.marquee-track span {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-400);
    white-space: nowrap;
}

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



.section {
    position: relative;
    z-index: 1;
    padding: 120px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
    position: relative;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--purple);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding: 8px 16px;
    background: rgba(183, 148, 244, 0.08);
    border: 1px solid rgba(183, 148, 244, 0.2);
    border-radius: 100px;
    position: relative;
    overflow: hidden;
    animation: tagPulse 3s ease-in-out infinite;
}

.section-tag::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(183, 148, 244, 0.2) 50%,
        transparent 100%
    );
    animation: tagShine 2s ease-in-out infinite;
}

@keyframes tagPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(183, 148, 244, 0.2);
    }
    50% {
        box-shadow: 0 0 25px rgba(183, 148, 244, 0.4);
    }
}

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

.section-tag-icon {
    width: 12px;
    height: 12px;
    animation: iconRotate 4s linear infinite;
}

@keyframes iconRotate {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
}

.map-title-icon {
    width: 10px;
    height: 10px;
    margin-right: 4px;
}

.section-header h2 {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    position: relative;
    background: linear-gradient(
        90deg,
        var(--text-primary) 0%,
        var(--text-primary) 40%,
        rgba(255, 255, 255, 0.9) 50%,
        var(--text-primary) 60%,
        var(--text-primary) 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: titleShimmer 3s ease-in-out infinite;
}

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

.section-header p {
    font-size: 16px;
    color: var(--gray-200);
}



.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--gray-600);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    transform-style: preserve-3d;
    transform: perspective(1000px) 
                translateX(var(--tx, 0px)) 
                translateY(var(--ty, 0px)) 
                rotateX(var(--rx, 0deg)) 
                rotateY(var(--ry, 0deg));
    transition: box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    will-change: transform;
}

.feature-card.is-hovering {
    transition: box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.feature-card::before,
.feature-card::after {
    display: none;
}

.feature-card:hover {
    background: rgba(192, 192, 192, 0.08);
    border-color: rgba(192, 192, 192, 0.3);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(192, 192, 192, 0.15);
}

.feature-card:hover::before,
.feature-card:hover::after {
    opacity: 1;
}

.feature-image {
    height: 160px;
    overflow: hidden;
    background: var(--bg-elevated);
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 0.3s;
}

.feature-card:hover .feature-image img {
    transform: scale(1.05);
}

.feature-image-overlay {
    display: none;
}

.feature-content {
    padding: 24px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--gray-600);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    color: var(--purple);
}

.feature-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: var(--gray-300);
    line-height: 1.6;
}

.feature-link {
    display: inline-block;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--purple);
    text-decoration: none;
}

.feature-link:hover {
    text-decoration: underline;
}


.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: transparent;
    border: 1px solid var(--gray-600);
    border-radius: 999px;
    transform-style: preserve-3d;
    transform: perspective(1000px) 
                translateX(var(--tx, 0px)) 
                translateY(var(--ty, 0px)) 
                rotateX(var(--rx, 0deg)) 
                rotateY(var(--ry, 0deg));
    transition: background 0.25s ease, border-color 0.25s ease;
    will-change: transform;
}

.feature-item.is-hovering {
    transition: background 0.25s ease, border-color 0.25s ease;
}

.feature-item:hover {
    background: rgba(192, 192, 192, 0.1);
    border-color: rgba(192, 192, 192, 0.3);
}

.feature-item-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item-icon svg {
    width: 16px;
    height: 16px;
    color: var(--purple);
    transition: color 0.25s ease;
}

.feature-item:hover .feature-item-icon svg {
    color: var(--aqua);
}

.feature-item h4 {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-200);
    margin: 0;
}

.feature-item p {
    display: none;
}

.feature-item > div:last-child {
    display: flex;
    align-items: center;
}



.network-section {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(40px) saturate(1.2);
    -webkit-backdrop-filter: blur(40px) saturate(1.2);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}


.section-glow-bg {
    position: absolute;
    inset: 0;
    background: #000;
    pointer-events: none;
    z-index: 0;
}

.holo-shimmer,
.dark-hole,
.ambient-glow,
.matrix-canvas,
.ripple-container {
    display: none;
}


.liquid-blob,
.liquid-blob-secondary {
    display: none;
}

.network-section .container {
    position: relative;
    z-index: 1;
}

.network-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 32px;
}

.network-map {
    background: rgba(192, 192, 192, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(192, 192, 192, 0.2);
    border-radius: var(--radius-lg);
    padding: 24px;
    overflow: hidden;
}



.neon-map-container {
    position: relative;
    width: 100%;
    height: 300px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(192, 192, 192, 0.15);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.neon-map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.map-nodes-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
}

.connection-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.connection-lines line {
    stroke: url(#neonGradient);
    stroke-width: 1;
    opacity: 0.35;
    filter: drop-shadow(0 0 4px var(--purple));
}

.connection-lines .pulse-line {
    stroke: var(--purple);
    stroke-width: 2;
    stroke-dasharray: 8 4;
    animation: dashMove 2s linear infinite;
    opacity: 0.8;
    filter: drop-shadow(0 0 8px var(--purple));
}

@keyframes dashMove {
    to { stroke-dashoffset: -24; }
}


.neon-node {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 20;
}

.neon-node .node-ping {
    position: absolute;
    width: 40px;
    height: 40px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(192, 192, 192, 0.4) 0%, transparent 70%);
    animation: nodePingPulse 3s ease-out infinite;
    opacity: 0;
}

@keyframes nodePingPulse {
    0% { transform: translate(-50%, -50%) scale(0.3); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

.neon-node .node-core {
    position: relative;
    display: block;
    width: 10px;
    height: 10px;
    background: var(--purple);
    border-radius: 50%;
    box-shadow: 
        0 0 8px var(--purple),
        0 0 16px var(--purple),
        0 0 32px rgba(192, 192, 192, 0.6),
        inset 0 0 4px rgba(255, 255, 255, 0.5);
    animation: coreGlow 2s ease-in-out infinite alternate;
}

@keyframes coreGlow {
    0% { 
        box-shadow: 
            0 0 8px var(--purple),
            0 0 16px var(--purple),
            0 0 32px rgba(192, 192, 192, 0.6),
            inset 0 0 4px rgba(255, 255, 255, 0.5);
    }
    100% { 
        box-shadow: 
            0 0 12px var(--purple),
            0 0 24px var(--purple),
            0 0 48px rgba(192, 192, 192, 0.8),
            inset 0 0 6px rgba(255, 255, 255, 0.8);
    }
}

.neon-node .node-label {
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    margin-top: 6px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #22c55e;
    text-shadow: 
        0 0 4px #22c55e,
        0 0 8px #22c55e,
        0 0 12px rgba(34, 197, 94, 0.5);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.neon-node:hover .node-label,
.neon-node.active .node-label {
    opacity: 1;
}

.neon-node:hover .node-core {
    transform: scale(1.4);
    background: #22c55e;
    box-shadow: 
        0 0 12px #22c55e,
        0 0 24px #22c55e,
        0 0 48px rgba(34, 197, 94, 0.8);
}

.neon-node.active .node-core {
    background: #22c55e;
    box-shadow: 
        0 0 12px #22c55e,
        0 0 24px #22c55e,
        0 0 48px rgba(34, 197, 94, 0.8);
}


.neon-node:nth-child(1) .node-ping { animation-delay: 0s; }
.neon-node:nth-child(2) .node-ping { animation-delay: 0.25s; }
.neon-node:nth-child(3) .node-ping { animation-delay: 0.5s; }
.neon-node:nth-child(4) .node-ping { animation-delay: 0.75s; }
.neon-node:nth-child(5) .node-ping { animation-delay: 1s; }
.neon-node:nth-child(6) .node-ping { animation-delay: 1.25s; }
.neon-node:nth-child(7) .node-ping { animation-delay: 1.5s; }
.neon-node:nth-child(8) .node-ping { animation-delay: 1.75s; }
.neon-node:nth-child(9) .node-ping { animation-delay: 2s; }
.neon-node:nth-child(10) .node-ping { animation-delay: 2.25s; }
.neon-node:nth-child(11) .node-ping { animation-delay: 2.5s; }

.map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.map-title {
    display: flex;
    align-items: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #22c55e;
    text-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}

.map-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #22c55e;
    text-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px #22c55e;
    animation: statusBlink 2s ease-in-out infinite;
}

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

.map-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(192, 192, 192, 0.2);
}

.map-nodes {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.map-node {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--gray-300);
    transition: all 0.2s;
}

.map-node:hover {
    color: #22c55e;
    text-shadow: 0 0 6px rgba(34, 197, 94, 0.5);
}

.node-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 6px #22c55e;
}

.map-node:hover .node-dot {
    background: #22c55e;
    box-shadow: 0 0 8px #22c55e;
}

.map-stats {
    display: flex;
    gap: 20px;
}

.map-stats span {
    font-size: 10px;
    letter-spacing: 0.05em;
    color: var(--gray-400);
}

.map-stats strong {
    color: #22c55e;
    text-shadow: 0 0 6px rgba(34, 197, 94, 0.3);
}

.map-legend {
    display: flex;
    gap: 24px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-600);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--gray-300);
}

.legend-dot {
    width: 8px;
    height: 8px;
    background: var(--purple);
    border-radius: 50%;
}

.legend-dot.pulse {
    box-shadow: 0 0 12px var(--purple-glow);
    animation: nodePulse 2s infinite;
}

.legend-line {
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, var(--purple), transparent);
}

@keyframes nodePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.3); }
}


.network-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.network-stat {
    padding: 24px;
    background: rgba(192, 192, 192, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(192, 192, 192, 0.2);
    border-radius: var(--radius-lg);
    transform-style: preserve-3d;
    transform: perspective(1000px) 
                translateX(var(--tx, 0px)) 
                translateY(var(--ty, 0px)) 
                rotateX(var(--rx, 0deg)) 
                rotateY(var(--ry, 0deg));
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

.network-stat.is-hovering {
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.network-stat:hover {
    background: rgba(192, 192, 192, 0.15);
    border-color: rgba(192, 192, 192, 0.35);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 20px rgba(192, 192, 192, 0.1);
}

.network-stat-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.stat-icon { 
    font-size: 18px;
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
}
.stat-title { 
    font-size: 11px;
    font-weight: 500;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--purple);
}

.stat-desc {
    font-size: 13px;
    color: var(--gray-300);
    margin-top: 4px;
}



.code-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 64px;
    align-items: center;
}

.code-content h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    margin: 12px 0 16px;
    letter-spacing: -0.02em;
}

.code-content > p {
    font-size: 16px;
    color: var(--gray-200);
    margin-bottom: 28px;
}

.code-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.code-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.check {
    color: #22c55e;
}

.code-terminal {
    background: var(--bg-card);
    border: 1px solid var(--gray-600);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.code-terminal::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(192, 192, 192, 0.05) 50%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.code-terminal:hover {
    border-color: rgba(192, 192, 192, 0.3);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(192, 192, 192, 0.1);
}

.code-terminal:hover::before {
    opacity: 1;
}

.terminal-header {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--gray-600);
}

.terminal-dots {
    display: flex;
    gap: 6px;
}

.terminal-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.terminal-dots span:nth-child(1) { background: #ff5f57; }
.terminal-dots span:nth-child(2) { background: #febc2e; }
.terminal-dots span:nth-child(3) { background: #28c840; }

.terminal-tabs {
    display: flex;
    margin-left: auto;
}

.terminal-tab {
    padding: 6px 14px;
    background: transparent;
    border: none;
    color: var(--gray-400);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
}

.terminal-tab.active {
    color: var(--purple);
    background: var(--gray-600);
    border-radius: var(--radius-sm);
}

.terminal-body {
    padding: 24px;
}

.terminal-code {
    font-family: 'JetBrains Mono', 'SF Mono', monospace;
    font-size: 13px;
    line-height: 1.8;
}

.code-keyword { color: var(--purple); }
.code-string { color: #a8a8a8; }
.code-method { color: #22c55e; }
.code-comment { color: var(--gray-400); }



.testimonials-section {
    background: transparent;
    position: relative;
    overflow: hidden;
}


.testimonials-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.liquid-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.8;
    animation: liquidFloat 20s ease-in-out infinite;
}

.liquid-blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(192, 192, 192, 0.5) 0%, rgba(192, 192, 192, 0.2) 40%, transparent 70%);
    top: -150px;
    left: -100px;
    animation-delay: 0s;
}

.liquid-blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 212, 212, 0.45) 0%, rgba(212, 212, 212, 0.15) 40%, transparent 70%);
    bottom: -100px;
    right: -50px;
    animation-delay: -7s;
    animation-duration: 25s;
}

.liquid-blob-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(192, 192, 192, 0.4) 0%, rgba(192, 192, 192, 0.15) 40%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
    animation-duration: 18s;
}

@keyframes liquidFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    25% {
        transform: translate(30px, -40px) scale(1.1) rotate(5deg);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.95) rotate(-5deg);
    }
    75% {
        transform: translate(40px, 30px) scale(1.05) rotate(3deg);
    }
}


.liquid-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(192, 192, 192, 0.03) 50%,
        rgba(212, 212, 212, 0.05) 100%
    );
    animation: waveMove 8s ease-in-out infinite;
}

@keyframes waveMove {
    0%, 100% {
        transform: translateY(0) scaleY(1);
    }
    50% {
        transform: translateY(-20px) scaleY(1.1);
    }
}

.testimonials-section .container {
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}


.testimonial-card.glass-card {
    padding: 28px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transform: perspective(1000px) 
                translateX(var(--tx, 0px)) 
                translateY(var(--ty, 0px)) 
                rotateX(var(--rx, 0deg)) 
                rotateY(var(--ry, 0deg));
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

.testimonial-card.glass-card.is-hovering {
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}


.card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 50% 0%,
        rgba(192, 192, 192, 0.15) 0%,
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}


.testimonial-card.glass-card:hover {
    background: rgba(192, 192, 192, 0.1);
    border-color: rgba(192, 192, 192, 0.25);
    transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(-5px);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(192, 192, 192, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.testimonial-card.glass-card:hover .card-glow {
    opacity: 1;
}

.testimonial-quote {
    font-size: 48px;
    background: linear-gradient(135deg, var(--purple), var(--aqua));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
    opacity: 0.8;
}

.testimonial-card blockquote {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--gray-200);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: rgba(192, 192, 192, 0.1);
    border: 1px solid rgba(192, 192, 192, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.author-avatar svg {
    width: 22px;
    height: 22px;
    color: var(--purple);
    transition: color 0.3s ease;
}

.testimonial-card.glass-card:hover .author-avatar svg {
    color: var(--aqua);
}

.testimonial-card.glass-card:hover .author-avatar {
    background: rgba(192, 192, 192, 0.15);
    border-color: rgba(192, 192, 192, 0.3);
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.2);
}

.author-info strong {
    display: block;
    font-size: 14px;
    color: var(--white);
}

.author-info span {
    font-size: 12px;
    color: var(--gray-400);
}



.cta-section {
    padding: 80px 0;
    position: relative;
}

.cta-card {
    position: relative;
    padding: 64px;
    background: rgba(192, 192, 192, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(192, 192, 192, 0.15);
    border-radius: var(--radius-xl);
    text-align: center;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(192, 192, 192, 0.1) 0%,
        rgba(212, 212, 212, 0.08) 25%,
        rgba(192, 192, 192, 0.12) 50%,
        rgba(212, 212, 212, 0.08) 75%,
        rgba(192, 192, 192, 0.1) 100%
    );
    background-size: 400% 400%;
    animation: liquidGradient 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

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


.cta-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 100%
    );
    animation: ctaShimmer 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes ctaShimmer {
    0%, 100% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
}

.cta-card:hover {
    background: rgba(192, 192, 192, 0.1);
    border-color: rgba(192, 192, 192, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(192, 192, 192, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cta-blob {
    position: absolute;
    inset: -50px;
    background: radial-gradient(
        ellipse at 30% 20%,
        rgba(192, 192, 192, 0.25) 0%,
        transparent 50%
    ),
    radial-gradient(
        ellipse at 70% 80%,
        rgba(212, 212, 212, 0.2) 0%,
        transparent 50%
    );
    filter: blur(40px);
    animation: ctaBlobMove 10s ease-in-out infinite;
}

@keyframes ctaBlobMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(20px, -20px) scale(1.05);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

.cta-content {
    position: relative;
}

.cta-content h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 16px;
    color: var(--gray-200);
    margin-bottom: 28px;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}




.hero-beta {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.hero-beta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 250px;
    background: linear-gradient(to top, rgba(50, 30, 80, 0.7) 0%, rgba(40, 25, 70, 0.4) 40%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}


.hero-liquid-glow {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 900px;
    height: auto;
    pointer-events: none;
    z-index: 0;
    opacity: 0.8;
    filter: blur(20px);
    mix-blend-mode: screen;
}


.hero-sun-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 500px;
    background: 
        radial-gradient(
            ellipse 80% 60% at 50% 0%,
            rgba(183, 148, 244, 0.25) 0%,
            rgba(139, 92, 246, 0.15) 30%,
            rgba(100, 60, 180, 0.08) 50%,
            transparent 70%
        );
    pointer-events: none;
    z-index: 0;
}


.hero-stars-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 3;
    overflow: hidden;
}


.hero-falling-star {
    position: absolute;
    background: rgba(214, 188, 250, 0.7);
    clip-path: polygon(
        50% 0%, 54% 42%, 72% 28%, 56% 46%,
        100% 50%, 56% 54%, 72% 72%, 54% 58%,
        50% 100%, 46% 58%, 28% 72%, 44% 54%,
        0% 50%, 44% 46%, 28% 28%, 46% 42%
    );
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    filter: drop-shadow(0 0 2px rgba(214, 188, 250, 0.8)) drop-shadow(0 0 4px rgba(183, 148, 244, 0.5));
    animation: snowfallStar var(--duration, 1000ms) linear forwards;
}


.hero-horizon {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 600px;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}


.horizon-glow {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 180%;
    height: 550px;
    background: 
        
        radial-gradient(
            ellipse 40% 80% at 50% 100%,
            rgba(183, 148, 244, 0.8) 0%,
            rgba(159, 122, 234, 0.5) 20%,
            rgba(138, 100, 220, 0.3) 40%,
            transparent 60%
        ),
        
        radial-gradient(
            ellipse 80% 60% at 50% 100%,
            rgba(159, 122, 234, 0.4) 0%,
            rgba(138, 90, 200, 0.2) 30%,
            transparent 55%
        ),
        
        radial-gradient(
            ellipse 120% 45% at 50% 100%,
            rgba(120, 80, 180, 0.25) 0%,
            rgba(100, 60, 160, 0.1) 40%,
            transparent 60%
        );
}


.horizon-glow::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background:
        
        linear-gradient(0deg, rgba(200, 170, 255, 0.4) 0%, transparent 60%),
        
        linear-gradient(15deg, rgba(180, 150, 240, 0.15) 0%, transparent 50%),
        
        linear-gradient(-15deg, rgba(180, 150, 240, 0.15) 0%, transparent 50%),
        
        linear-gradient(35deg, rgba(160, 130, 220, 0.08) 0%, transparent 40%),
        
        linear-gradient(-35deg, rgba(160, 130, 220, 0.08) 0%, transparent 40%);
    mask-image: radial-gradient(ellipse 60% 100% at 50% 100%, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 60% 100% at 50% 100%, black 0%, transparent 70%);
}


.horizon-glow::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(220, 200, 255, 0.3) 20%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(220, 200, 255, 0.3) 80%,
        transparent 100%
    );
    filter: blur(2px);
    box-shadow: 
        0 0 30px rgba(183, 148, 244, 0.8),
        0 0 60px rgba(183, 148, 244, 0.5),
        0 0 100px rgba(183, 148, 244, 0.3);
}


.horizon-noise {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 550px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 150px 150px;
    opacity: 0.35;
    mix-blend-mode: overlay;
    mask-image: 
        radial-gradient(
            ellipse 90% 100% at 50% 100%,
            black 0%,
            rgba(0,0,0,0.8) 20%,
            rgba(0,0,0,0.4) 50%,
            transparent 70%
        );
    -webkit-mask-image: 
        radial-gradient(
            ellipse 90% 100% at 50% 100%,
            black 0%,
            rgba(0,0,0,0.8) 20%,
            rgba(0,0,0,0.4) 50%,
            transparent 70%
        );
}

.hero-beta .hero-beta-container {
    position: relative;
    z-index: 2;
}

.hero-beta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}


.hero-visual-beta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(-30px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-visual-beta.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.visual-glow {
    position: absolute;
    inset: -150px;
    background: radial-gradient(circle, rgba(183, 148, 244, 0.3) 0%, transparent 70%);
    filter: blur(80px);
    animation: visualGlow 4s ease-in-out infinite;
}

@keyframes visualGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.hero-dragon {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: auto;
    z-index: 1;
    transform: scale(1.2) translateX(-30px);
    transform-origin: center center;
}


.hero-content-beta {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.15s;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
}

.hero-content-beta.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.hero-title-wrapper {
    position: relative;
    margin-bottom: 20px;
    padding: 0;
}

.hero-content-beta .hero-title {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 0;
    position: relative;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    text-align: center;
}

.title-row {
    display: block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.title-row-primary {
    font-size: 0.4em;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 4px;
    opacity: 0.7;
}

.title-row-gradient {
    font-size: 1em;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-top: 0;
}

.hero-title-wrapper:hover .title-row {
    transform: translateY(-1px);
}

.title-decoration {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--purple), var(--aqua), transparent);
    background-size: 200% 100%;
    border-radius: 3px;
    opacity: 0.7;
    animation: decorationSlide 3s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
}

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

.hero-content-beta .hero-desc {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 24px;
    max-width: 420px;
    font-weight: 400;
    letter-spacing: 0;
    opacity: 0.85;
}


.launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(183, 148, 244, 0.06);
    border: 1px solid rgba(183, 148, 244, 0.12);
    border-radius: 100px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--purple);
    margin-bottom: 16px;
}

.launch-badge:hover {
    background: rgba(183, 148, 244, 0.1);
    border-color: rgba(183, 148, 244, 0.2);
}

.badge-pulse {
    width: 6px;
    height: 6px;
    background: var(--purple);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(183, 148, 244, 0.6);
    animation: dotPulse 2s ease-in-out infinite;
}

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


.waitlist-form {
    width: 100%;
    max-width: 440px;
}

.input-wrapper {
    display: flex;
    gap: 0;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 6px;
    transition: all 0.3s ease;
}

.input-wrapper:focus-within {
    border-color: rgba(255, 255, 255, 0.15);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-8px); }
    40% { transform: translateX(8px); }
    60% { transform: translateX(-6px); }
    80% { transform: translateX(6px); }
}

.email-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 14px 20px;
    font-size: 15px;
    color: var(--text-primary);
    outline: none;
    min-width: 0;
}

.email-input::placeholder {
    color: var(--gray-400);
}

.btn-waitlist {
    padding: 14px 24px;
    border-radius: 100px;
    white-space: nowrap;
}

.waitlist-hint {
    font-size: 13px;
    color: var(--gray-400);
    margin-top: 16px;
}


.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 28px;
    max-width: 520px;
}

.hero-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.35);
    cursor: default;
    transition: color 0.2s ease;
    position: relative;
}


.hero-tag:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -12px;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.hero-tag-icon {
    width: 13px;
    height: 13px;
    stroke: rgba(255, 255, 255, 0.2);
    transition: stroke 0.2s ease;
    flex-shrink: 0;
}

.hero-tag span {
    letter-spacing: 0.3px;
}

.hero-tag:hover {
    color: rgba(255, 255, 255, 0.6);
}

.hero-tag:hover .hero-tag-icon {
    stroke: rgba(255, 255, 255, 0.45);
}


.waitlist-divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 16px;
}

.waitlist-trust {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--gray-400);
}

.waitlist-trust span {
    display: flex;
    align-items: center;
    gap: 4px;
}


.waitlist-stats {
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.waitlist-counter {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.waitlist-counter.visible {
    opacity: 1;
    transform: translateY(0);
}

.counter-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--purple);
}

.counter-label {
    font-size: 14px;
    color: var(--gray-400);
}


.section-features-beta {
    padding: 120px 0;
    background: linear-gradient(180deg, 
        #0a0812 0%,
        #0d0a15 30%,
        #12101c 60%,
        #0a0812 100%
    );
    position: relative;
    overflow: hidden;
    border-radius: 48px 48px 0 0;
    margin-top: -48px;
    z-index: 10;
}



.section-bento {
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, 
        rgba(10, 8, 18, 0) 0%,
        rgba(15, 10, 30, 0.8) 20%,
        rgba(20, 15, 40, 0.9) 50%,
        rgba(15, 10, 30, 0.8) 80%,
        rgba(10, 8, 18, 0) 100%
    );
}

.bento-stars {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(1px 1px at 20px 30px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 40px 70px, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1px 1px at 50px 160px, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(1.5px 1.5px at 160px 120px, rgba(168, 85, 247, 0.8), transparent),
        radial-gradient(1px 1px at 200px 50px, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1px 1px at 250px 90px, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(1.5px 1.5px at 280px 150px, rgba(192, 132, 252, 0.7), transparent),
        radial-gradient(1px 1px at 320px 60px, rgba(255, 255, 255, 0.4), transparent);
    background-size: 350px 200px;
    animation: bentoStarsTwinkle 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

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

.bento-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto;
    gap: 20px;
}


.bento-card {
    background: linear-gradient(135deg,
        rgba(18, 12, 30, 0.98) 0%,
        rgba(22, 14, 36, 0.95) 50%,
        rgba(16, 10, 28, 0.98) 100%
    );
    border-radius: 20px;
    border: 1px solid transparent;
    overflow: visible;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
}


.bento-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(90deg,
        #7c3aed 0%,
        #a855f7 15%,
        #c084fc 30%,
        #e879f9 45%,
        #c084fc 60%,
        #a855f7 75%,
        #7c3aed 90%,
        #6366f1 100%
    );
    background-size: 200% 200%;
    -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);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: chromaBorder 3s linear infinite;
    opacity: 0.6;
    filter: blur(0.5px);
}

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


.bento-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(168, 85, 247, 0.12) 0%,
        rgba(124, 58, 237, 0.06) 30%,
        transparent 60%
    );
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.bento-card:hover::before {
        opacity: 1;
    filter: blur(0px);
    animation: chromaBorderFast 2s linear infinite;
}

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

.bento-card:hover::after {
    opacity: 1;
}

.bento-card:hover {
    transform: translateY(-6px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateX(var(--tx, 0px)) translateY(var(--ty, 0px));
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(124, 58, 237, 0.3),
        0 0 80px rgba(168, 85, 247, 0.2);
}

.bento-card-inner {
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 20px;
}


.bento-card-large {
    min-height: 380px;
}

.bento-card-medium {
    min-height: 420px;
}

.bento-card-orb {
    grid-row: span 2;
    min-height: 480px;
}

.bento-card-small {
    min-height: 320px;
}


.bento-card-text {
    margin-top: auto;
}

.bento-card-text-top {
    margin-top: 0;
    margin-bottom: 24px;
}

.bento-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.bento-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin: 0;
}


.ai-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.6);
    animation: aiDotPulse 2s ease-in-out infinite;
}

@keyframes aiDotPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 10px rgba(168, 85, 247, 0.6); }
    50% { opacity: 0.7; box-shadow: 0 0 20px rgba(168, 85, 247, 0.8); }
}



.bento-mockup-editor {
    background: linear-gradient(135deg,
        rgba(14, 10, 24, 0.98) 0%,
        rgba(18, 12, 28, 0.95) 100%
    );
    border-radius: 14px;
    border: 1px solid rgba(75, 45, 150, 0.25);
    overflow: hidden;
    margin-bottom: 20px;
    flex-shrink: 0;
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(124, 58, 237, 0.15);
}

.editor-toolbar {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 16px;
    background: rgba(25, 22, 40, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.toolbar-dropdown {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    cursor: pointer;
}

.toolbar-dropdown svg {
    opacity: 0.6;
}

.toolbar-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 8px;
}

.toolbar-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.toolbar-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.toolbar-btn-ai {
    width: auto;
    padding: 6px 14px;
    gap: 8px;
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: #c084fc;
    font-weight: 500;
    margin-left: auto;
}

.toolbar-btn-ai:hover {
    background: rgba(168, 85, 247, 0.25);
}

.editor-content {
    padding: 16px;
}

.editor-content p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.highlight-text {
    background: linear-gradient(90deg,
        rgba(124, 58, 237, 0.35) 0%,
        rgba(168, 85, 247, 0.3) 50%,
        rgba(124, 58, 237, 0.35) 100%
    );
    border-left: 2px solid #a855f7;
    padding: 2px 6px;
    border-radius: 0 4px 4px 0;
    color: #e9d5ff;
    box-shadow:
        0 0 15px rgba(124, 58, 237, 0.25),
        inset 0 0 8px rgba(168, 85, 247, 0.12);
}



.bento-mockup-dropdown {
    background: linear-gradient(135deg,
        rgba(14, 10, 24, 0.98) 0%,
        rgba(18, 12, 28, 0.95) 100%
    );
    border-radius: 14px;
    border: 1px solid rgba(75, 45, 150, 0.25);
    overflow: hidden;
    flex: 1;
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(124, 58, 237, 0.15);
}

.dropdown-input {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: linear-gradient(90deg, rgba(168, 85, 247, 0.15), rgba(139, 92, 246, 0.08));
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dropdown-placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.dropdown-options {
    padding: 8px 0;
}

.dropdown-option {
    padding: 12px 18px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dropdown-option:hover {
    background: rgba(168, 85, 247, 0.1);
    color: #fff;
}



.bento-mockup-image-gen {
    background: linear-gradient(135deg,
        rgba(14, 10, 24, 0.98) 0%,
        rgba(18, 12, 28, 0.95) 100%
    );
    border-radius: 14px;
    border: 1px solid rgba(75, 45, 150, 0.25);
    padding: 16px;
    margin-top: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(124, 58, 237, 0.15);
}

.image-gen-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.gen-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.gen-tab:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.gen-tab-active {
    background: rgba(168, 85, 247, 0.2);
    border-color: rgba(168, 85, 247, 0.4);
    color: #c084fc;
}

.image-gen-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    margin-bottom: 16px;
}

.image-gen-input span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.gen-input-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.2s ease;
}

.gen-input-btn:hover {
    background: rgba(168, 85, 247, 0.3);
    color: #fff;
}

.image-gen-preview {
    display: flex;
    gap: 12px;
    flex: 1;
    min-height: 100px;
}

.gen-preview-item {
    flex: 1;
    border-radius: 12px;
    min-height: 80px;
}

.gen-preview-gradient-1 {
    background: linear-gradient(135deg, 
        #f97316 0%, 
        #fb923c 25%, 
        #c084fc 50%, 
        #a855f7 75%, 
        #7c3aed 100%
    );
    animation: gradientShift1 6s ease-in-out infinite;
}

.gen-preview-gradient-2 {
    background: linear-gradient(135deg, 
        #7c3aed 0%, 
        #a855f7 25%, 
        #c084fc 50%, 
        #818cf8 75%, 
        #6366f1 100%
    );
    animation: gradientShift2 6s ease-in-out infinite reverse;
}

@keyframes gradientShift1 {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(20deg); }
}

@keyframes gradientShift2 {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(-20deg); }
}



.bento-orb-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.bento-orb-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.bento-orb {
    width: 160px;
    height: 160px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orb-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, 
        rgba(168, 85, 247, 0.4) 0%, 
        rgba(139, 92, 246, 0.2) 30%, 
        transparent 70%
    );
    filter: blur(20px);
    animation: orbGlowPulse 4s ease-in-out infinite;
}

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

.orb-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.orb-ring-1 {
    width: 100%;
    height: 100%;
    animation: orbRingSpin 20s linear infinite;
}

.orb-ring-2 {
    width: 130%;
    height: 130%;
    animation: orbRingSpin 30s linear infinite reverse;
    border-style: dashed;
}

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

.orb-core {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%,
        rgba(192, 132, 252, 0.9) 0%,
        rgba(168, 85, 247, 0.8) 30%,
        rgba(139, 92, 246, 0.6) 60%,
        rgba(88, 28, 135, 0.4) 100%
    );
    box-shadow: 
        0 0 40px rgba(168, 85, 247, 0.5),
        0 0 80px rgba(139, 92, 246, 0.3),
        inset 0 0 30px rgba(255, 255, 255, 0.1);
    animation: orbCorePulse 3s ease-in-out infinite;
}

@keyframes orbCorePulse {
    0%, 100% { 
        box-shadow: 
            0 0 40px rgba(168, 85, 247, 0.5),
            0 0 80px rgba(139, 92, 246, 0.3),
            inset 0 0 30px rgba(255, 255, 255, 0.1);
    }
    50% { 
        box-shadow: 
            0 0 60px rgba(168, 85, 247, 0.7),
            0 0 100px rgba(139, 92, 246, 0.4),
            inset 0 0 40px rgba(255, 255, 255, 0.15);
    }
}



.bento-mockup-context {
    background: linear-gradient(135deg,
        rgba(14, 10, 24, 0.98) 0%,
        rgba(18, 12, 28, 0.98) 100%
    );
    border-radius: 12px;
    border: 1px solid rgba(75, 45, 150, 0.3);
    padding: 6px 0;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(124, 58, 237, 0.2),
        inset 0 1px 0 rgba(168, 85, 247, 0.15);
    width: 100%;
    max-width: 200px;
}

.context-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.15s ease;
}

.context-option:hover {
    background: rgba(168, 85, 247, 0.15);
}

.context-option svg {
    opacity: 0.6;
    flex-shrink: 0;
}

.context-option span:not(.context-shortcut):not(.ai-dot) {
    flex: 1;
}

.context-shortcut {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    margin-left: auto;
}

.context-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 6px 0;
}

.context-option-danger {
    color: rgba(248, 113, 113, 0.9);
}

.context-option-danger:hover {
    background: rgba(248, 113, 113, 0.1);
}



.bento-mockup-sidebar {
    background: linear-gradient(135deg,
        rgba(14, 10, 24, 0.98) 0%,
        rgba(18, 12, 28, 0.95) 100%
    );
    border-radius: 12px;
    border: 1px solid rgba(75, 45, 150, 0.25);
    overflow: hidden;
    margin-bottom: 20px;
    flex: 1;
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(124, 58, 237, 0.15);
}

.sidebar-header {
    padding: 14px 16px;
    background: rgba(25, 22, 40, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

.sidebar-content {
    padding: 16px;
}

.sidebar-content p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}



@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-card-orb {
        grid-row: span 1;
        min-height: 400px;
    }
    
    .bento-orb-inner {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr auto;
    }
    
    .bento-orb-container {
        min-height: 200px;
    }
    
    .bento-mockup-context {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .section-bento {
        padding: 60px 16px;
    }
    
    .bento-grid {
        gap: 16px;
    }
    
    .bento-card {
        border-radius: 20px;
    }
    
    .bento-card-inner {
        padding: 20px;
    }
    
    .bento-title {
        font-size: 1.3rem;
    }
    
    .bento-card-large,
    .bento-card-medium,
    .bento-card-orb,
    .bento-card-small {
        min-height: 320px;
    }
    
    .bento-orb {
        width: 120px;
        height: 120px;
    }
    
    .orb-core {
        width: 70px;
        height: 70px;
    }
    
    .editor-toolbar {
        flex-wrap: wrap;
        gap: 6px;
    }
    
    .toolbar-btn-ai {
        margin-left: 0;
        margin-top: 8px;
        width: 100%;
        justify-content: center;
    }
}


.bento-card {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: 
        opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:nth-child(1) { transition-delay: 0s; }
.bento-card:nth-child(2) { transition-delay: 0.1s; }
.bento-card:nth-child(3) { transition-delay: 0.2s; }
.bento-card:nth-child(4) { transition-delay: 0.3s; }
.bento-card:nth-child(5) { transition-delay: 0.4s; }

.bento-card.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.bento-card.is-hovering {
    transform: perspective(1000px)
                translateX(var(--tx, 0px))
                translateY(var(--ty, 0px))
                rotateX(var(--rx, 0deg))
                rotateY(var(--ry, 0deg))
                scale(1.02);
}


.orb-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 1200px;
    z-index: 0;
    pointer-events: none;
}


.orb-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: 
        radial-gradient(circle, rgba(192, 132, 252, 0.6) 0%, transparent 40%),
        radial-gradient(circle, rgba(147, 51, 234, 0.5) 0%, transparent 50%),
        radial-gradient(circle, rgba(126, 34, 206, 0.3) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(80px);
    animation: orbPulse 5s ease-in-out infinite;
}


.orb-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle,
        rgba(216, 180, 254, 0.8) 0%,
        rgba(192, 132, 252, 0.5) 30%,
        transparent 60%
    );
    border-radius: 50%;
    filter: blur(40px);
    animation: corePulse 3s ease-in-out infinite;
}


.orb-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 2px solid rgba(168, 85, 247, 0.4);
    transform-origin: center;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
}

.orb-ring-1 {
    width: 700px;
    height: 700px;
    margin-left: -350px;
    margin-top: -350px;
    animation: ringRotate 25s linear infinite;
}

.orb-ring-2 {
    width: 900px;
    height: 900px;
    margin-left: -450px;
    margin-top: -450px;
    border-width: 1px;
    border-color: rgba(168, 85, 247, 0.2);
    animation: ringRotate 40s linear infinite reverse;
}


.orb-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #c084fc;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    margin-left: 345px;
    margin-top: -8px;
    box-shadow: 
        0 0 30px #a855f7, 
        0 0 60px rgba(168, 85, 247, 0.6),
        0 0 100px rgba(168, 85, 247, 0.4);
    animation: ringRotate 25s linear infinite;
    transform-origin: -345px 8px;
}

@keyframes orbPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 0.85;
    }
}

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

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


.section-features-beta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(168, 85, 247, 0.3) 30%, 
        rgba(168, 85, 247, 0.5) 50%, 
        rgba(168, 85, 247, 0.3) 70%, 
        transparent 100%
    );
    border-radius: 48px 48px 0 0;
    z-index: 3;
}

.section-features-beta .container {
    position: relative;
    z-index: 2;
    width: min(1400px, 100%);
}


.graph-network {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}


.graph-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}


.graph-line {
    stroke: rgba(183, 148, 244, 0.06);
    stroke-width: 1;
    fill: none;
}

.graph-line-diagonal {
    stroke: rgba(183, 148, 244, 0.08);
    stroke-dasharray: 8 4;
}


.graph-pulse-path {
    stroke: transparent;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
}

.graph-pulse-path::after {
    stroke: url(#pulse-gradient);
}


@keyframes dataPulse {
    0% {
        stroke-dashoffset: 800;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 0;
    }
}

.graph-pulse-path {
    stroke: rgba(183, 148, 244, 0.4);
    stroke-dasharray: 20 780;
    animation: dataPulse 8s ease-in-out infinite;
}

.graph-pulse-path-2 {
    animation-delay: 4s;
    stroke: rgba(100, 200, 255, 0.3);
}


.graph-node {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(183, 148, 244, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.graph-node::before {
    content: '';
    position: absolute;
    inset: -2px;
    border: 1px solid rgba(183, 148, 244, 0.15);
    border-radius: 50%;
}


.graph-node-active {
    width: 6px;
    height: 6px;
    background: rgba(183, 148, 244, 0.6);
    box-shadow: 0 0 10px rgba(183, 148, 244, 0.3);
}

.graph-node-active::before {
    inset: -4px;
    border-color: rgba(183, 148, 244, 0.2);
    animation: nodeRing 3s ease-out infinite;
}

.graph-node-active::after {
    content: '';
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(183, 148, 244, 0.1);
    border-radius: 50%;
    animation: nodeRing 3s ease-out infinite 0.5s;
}

@keyframes nodeRing {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}


.graph-node-active:nth-of-type(2)::before { animation-delay: 0.5s; }
.graph-node-active:nth-of-type(2)::after { animation-delay: 1s; }
.graph-node-active:nth-of-type(3)::before { animation-delay: 1s; }
.graph-node-active:nth-of-type(3)::after { animation-delay: 1.5s; }
.graph-node-active:nth-of-type(4)::before { animation-delay: 1.5s; }
.graph-node-active:nth-of-type(4)::after { animation-delay: 2s; }


@media (max-width: 768px) {
    .graph-node:nth-child(n+10) {
        display: none;
    }
    .graph-lines {
        opacity: 0.5;
    }
}

.section-desc {
    font-size: 17px;
    color: var(--text-secondary);
    margin-top: 12px;
}


.key-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 60px 0;
    padding: 0 40px;
}

.key-stat-item {
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(183, 148, 244, 0.15);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.key-stat-item:hover {
    background: rgba(183, 148, 244, 0.05);
    border-color: rgba(183, 148, 244, 0.3);
    transform: translateY(-4px);
}

.key-stat-number {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--purple), var(--aqua));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.key-stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
}


.security-info-block {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    margin: 60px 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(183, 148, 244, 0.15);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.security-info-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 20% 50%,
        rgba(183, 148, 244, 0.08) 0%,
        transparent 50%
    );
    pointer-events: none;
}

.info-block-content {
    position: relative;
    z-index: 1;
}

.info-block-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.info-block-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.info-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}

.info-feature svg {
    width: 20px;
    height: 20px;
    color: var(--purple);
    flex-shrink: 0;
    margin-top: 2px;
}

.info-block-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.info-visual-orb {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(183, 148, 244, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: orbPulse 4s ease-in-out infinite;
}

@keyframes orbPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.info-visual-text {
    position: relative;
    text-align: center;
}

.info-visual-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-big {
    font-size: 72px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--purple), var(--aqua));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-small {
    font-size: 14px;
    color: var(--text-secondary);
    text-align: center;
    max-width: 200px;
}

.features-beta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 24px;
    margin-top: 48px;
}


.features-intro {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    margin-top: 24px;
    padding: 16px 0;
}

.features-intro-text {
    max-width: 520px;
}

.features-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #c084fc;
    padding: 6px 12px;
    border: 1px solid rgba(192, 132, 252, 0.4);
    border-radius: 999px;
    background: rgba(192, 132, 252, 0.08);
}

.features-intro-text h3 {
    font-size: 1.35rem;
    color: #fff;
    margin: 10px 0 12px;
    line-height: 1.5;
    background: linear-gradient(135deg, #fff 0%, #c084fc 45%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-intro-text p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

.features-intro-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 560px;
}

.intro-point {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: 14px;
    background: rgba(168, 85, 247, 0.08);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.intro-point:hover {
    background: rgba(168, 85, 247, 0.15);
    border-color: rgba(168, 85, 247, 0.4);
    transform: translateY(-2px);
}

.intro-point-icon {
    font-size: 1.1rem;
}

.intro-point:hover {
    border-color: rgba(168, 85, 247, 0.45);
    color: #fff;
}

@media (max-width: 1100px) {
    .features-intro {
        flex-direction: column;
        gap: 16px;
    }
    
    .features-intro-points {
        max-width: none;
    }
}



.bento-grid {
    display: grid;
    grid-template-columns: 1.05fr 1.05fr 1.25fr;
    grid-template-rows: 260px 220px 220px;
    gap: 20px;
    margin-top: 40px;
}

.bento-card {
    position: relative;
    background: rgba(168, 85, 247, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
    transition: transform 0.1s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}


.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
    border-radius: 24px 24px 0 0;
    pointer-events: none;
}


.bento-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(168, 85, 247, 0.2) 0%,
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 24px;
}

.bento-card:hover::after {
    opacity: 1;
}

.bento-card:hover {
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(168, 85, 247, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}


.bento-card--wide {
    grid-column: span 2;
}

.bento-card--full {
    grid-column: 1 / -1;
}

.bento-card--tall {
    grid-row: span 2;
}


.bento-card--glass {
    background: linear-gradient(145deg, rgba(168,85,247,0.14), rgba(99,102,241,0.1));
}

.bento-card--soft {
    background: rgba(168, 85, 247, 0.06);
    border-color: rgba(168, 85, 247, 0.2);
}

.bento-card--mesh {
    background: radial-gradient(circle at 20% 20%, rgba(192,132,252,0.15), transparent 40%), 
                radial-gradient(circle at 80% 80%, rgba(99,102,241,0.12), transparent 35%),
                rgba(168,85,247,0.06);
}

.bento-card--glow {
    box-shadow: 0 0 35px rgba(192,132,252,0.2);
}

.bento-card--dark {
    background: linear-gradient(160deg, rgba(16,12,24,0.8), rgba(35,21,46,0.7));
    border-color: rgba(168, 85, 247, 0.25);
}

.bento-card--alert {
    background: linear-gradient(140deg, rgba(217, 70, 239, 0.16), rgba(126,34,206,0.1));
    border-color: rgba(217, 70, 239, 0.3);
}


@media (max-width: 1200px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(auto-fill, minmax(180px, auto));
        gap: 16px;
    }
    .bento-card--tall {
        grid-row: span 2;
    }
    .bento-card--wide {
        grid-column: span 2;
    }
    .bento-card--full {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    .features-intro {
        flex-direction: column;
        gap: 16px;
    }
    
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 12px;
    }
    .bento-card {
        min-height: 160px;
    }
    .bento-card--tall {
        grid-row: span 2;
        min-height: 332px;
    }
    .bento-card--wide {
        grid-column: span 2;
    }
    .bento-card--full {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .features-intro-text h3 {
        font-size: 1.15rem;
    }
    .features-intro-text p {
        font-size: 0.95rem;
    }
    .intro-point {
        font-size: 0.82rem;
        padding: 10px 12px;
        gap: 6px;
    }
    .intro-point-icon {
        font-size: 0.95rem;
    }
    .features-intro-points {
        gap: 8px;
    }
    
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .bento-card {
        padding: 16px;
        min-height: 140px;
        border-radius: 16px;
    }
    .bento-card--tall {
        grid-row: span 2;
        min-height: 290px;
    }
    .bento-card--wide {
        grid-column: span 2;
    }
    .bento-card--full {
        grid-column: 1 / -1;
    }
    .bento-card h3 {
        font-size: 1rem;
    }
    .bento-card p {
        font-size: 0.8rem;
    }
    .big-stat {
        font-size: 2rem;
    }
    .big-label {
        font-size: 0.75rem;
    }
    .card-badge {
        font-size: 9px;
        padding: 4px 8px;
    }
    .card-tag {
        font-size: 10px;
        padding: 4px 8px;
    }
    .card-icon-large {
        width: 50px;
        height: 50px;
    }
    .mini-stats {
        flex-direction: column;
        gap: 4px;
    }
    .mini-stat {
        font-size: 0.7rem;
    }
}

@media (max-width: 400px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .bento-card {
        padding: 12px;
        min-height: 120px;
        border-radius: 12px;
    }
    .bento-card--tall {
        min-height: 248px;
    }
    .big-stat {
        font-size: 1.6rem;
    }
    .card-icon-large {
        width: 40px;
        height: 40px;
    }
    .features-intro-text h3 {
        font-size: 1rem;
    }
    .features-intro-text p {
        font-size: 0.85rem;
    }
    .intro-point {
        font-size: 0.75rem;
        padding: 8px 10px;
    }
    .intro-point-icon {
        font-size: 0.85rem;
    }
}


.bento-card--highlight {
    background: linear-gradient(135deg, 
        rgba(168, 85, 247, 0.15) 0%,
        rgba(139, 92, 246, 0.1) 100%
    );
    border-color: rgba(168, 85, 247, 0.35);
}


.bento-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.card-icon-large {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.3));
}


.card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(168, 85, 247, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.4);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    color: #c084fc;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}


.card-tags {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.card-tag {
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.3);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}


.card-note {
    display: block;
    margin-top: 8px;
    font-size: 11px;
    color: rgba(168, 85, 247, 0.8);
    font-style: italic;
}


.bento-content--horizontal {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 100%;
}

.stat-block {
    display: flex;
    flex-direction: column;
}

.card-text-block {
    flex: 1;
}

.card-text-block p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 16px;
}


.mini-stats {
    display: flex;
    gap: 20px;
}

.mini-stat {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.mini-stat span {
    color: #a855f7;
    font-weight: 600;
}


.chain-icons {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.chain-icon {
    background: rgba(168, 85, 247, 0.2);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    color: #c084fc;
}


.feature-list {
    display: flex;
    gap: 16px;
    margin-top: auto;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(168, 85, 247, 0.1);
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.feature-item span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}


.bento-content {
    margin-top: auto;
    position: relative;
    z-index: 2;
}

.bento-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.2;
}

.bento-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.bento-content--center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
}


.shield-3d {
    width: 100px;
    height: 120px;
    filter: drop-shadow(0 10px 30px rgba(168, 85, 247, 0.3));
    animation: floatShield 4s ease-in-out infinite;
}

.shield-3d svg {
    width: 100%;
    height: 100%;
}

@keyframes floatShield {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}


.globe-visual {
    width: 80px;
    height: 80px;
}

.globe-visual svg {
    width: 100%;
    height: 100%;
}


.spec-block {
    text-align: center;
}

.spec-value {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #a855f7;
    margin-bottom: 4px;
}

.spec-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}


.big-stat {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.big-label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.small-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}




.cubes-3d {
    width: 160px;
    height: 160px;
    position: relative;
    transform-style: preserve-3d;
    animation: cubesRotate 20s linear infinite;
}

.cube {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, 
        rgba(168, 85, 247, 0.4) 0%, 
        rgba(99, 102, 241, 0.3) 50%,
        rgba(236, 72, 153, 0.3) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.cube-1 { top: 10px; left: 10px; transform: rotate(-10deg); }
.cube-2 { top: 10px; right: 10px; transform: rotate(15deg); background: linear-gradient(135deg, rgba(59, 130, 246, 0.4), rgba(147, 51, 234, 0.3)); }
.cube-3 { bottom: 10px; left: 10px; transform: rotate(5deg); background: linear-gradient(135deg, rgba(236, 72, 153, 0.4), rgba(168, 85, 247, 0.3)); }
.cube-4 { bottom: 10px; right: 10px; transform: rotate(-5deg); background: linear-gradient(135deg, rgba(52, 211, 153, 0.3), rgba(59, 130, 246, 0.3)); }

@keyframes cubesRotate {
    0%, 100% { transform: rotateY(0deg) rotateX(5deg); }
    50% { transform: rotateY(10deg) rotateX(-5deg); }
}


.shield-glass {
    width: 120px;
    height: 140px;
}

.shield-glass svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 30px rgba(100, 180, 255, 0.3));
}


.rings-pattern {
    position: relative;
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.ring {
    position: absolute;
    width: 40px;
    height: 60px;
    border: 2px solid rgba(168, 85, 247, 0.5);
    border-radius: 50%;
    transform: rotateX(70deg);
}

.ring-1 { right: 0; animation: ringFloat 3s ease-in-out infinite; }
.ring-2 { right: 30px; animation: ringFloat 3s ease-in-out 0.2s infinite; }
.ring-3 { right: 60px; animation: ringFloat 3s ease-in-out 0.4s infinite; }
.ring-4 { right: 90px; animation: ringFloat 3s ease-in-out 0.6s infinite; }
.ring-5 { right: 120px; animation: ringFloat 3s ease-in-out 0.8s infinite; }

@keyframes ringFloat {
    0%, 100% { transform: rotateX(70deg) translateY(0); }
    50% { transform: rotateX(70deg) translateY(-10px); }
}


.bento-content--stats {
    display: flex;
    align-items: flex-end;
    gap: 24px;
}

.stat-big {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin-top: 8px;
}

.stat-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 280px;
    line-height: 1.5;
}


.spiral-visual {
    width: 150px;
    height: 150px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spiral-ring {
    position: absolute;
    border: 2px solid;
    border-color: rgba(168, 85, 247, 0.6) transparent rgba(236, 72, 153, 0.6) transparent;
    border-radius: 50%;
    width: calc(30px + var(--i) * 25px);
    height: calc(30px + var(--i) * 25px);
    animation: spiralSpin calc(3s + var(--i) * 0.5s) linear infinite;
}

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


.proof-visual {
    width: 100px;
    height: 100px;
}

.proof-visual svg {
    width: 100%;
    height: 100%;
}


.vpn-globe {
    width: 120px;
    height: 120px;
    animation: globeSpin 20s linear infinite;
}

.vpn-globe svg {
    width: 100%;
    height: 100%;
}

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


.icon-row {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.feature-icon-item {
    width: 44px;
    height: 44px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a855f7;
    transition: all 0.2s ease;
}

.feature-icon-item:hover {
    background: rgba(168, 85, 247, 0.2);
    transform: translateY(-2px);
}

.feature-icon-item svg {
    width: 22px;
    height: 22px;
}


@media (max-width: 1100px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .bento-card--wide {
        grid-column: span 2;
    }
}



.holo-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    overflow: hidden;
    transform-style: preserve-3d;
    transform: perspective(1100px)
        translateX(var(--tx, 0px))
        translateY(var(--ty, 0px))
        rotateX(var(--rx, 0deg))
        rotateY(var(--ry, 0deg));
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}


.holo-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(183, 148, 244, 0.15) 0%,
        rgba(214, 188, 250, 0.08) 20%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.holo-card.is-hovering::after {
    opacity: 1;
    animation: rippleEffect 2s ease-out infinite;
}


.holo-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(183, 148, 244, 0.4) 25%,
        rgba(214, 188, 250, 0.6) 50%,
        rgba(183, 148, 244, 0.4) 75%,
        transparent 100%
    );
    -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);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: borderRotate 3s linear infinite;
}

.holo-card.is-hovering::before {
    opacity: 1;
}

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

@keyframes rippleEffect {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.holo-card.is-hovering {
    border-color: rgba(183, 148, 244, 0.25);
    box-shadow:
        0 30px 70px -25px rgba(0, 0, 0, 0.55),
        0 0 40px rgba(183, 148, 244, 0.08),
        inset 0 1px 0 rgba(183, 148, 244, 0.15),
        inset 0 -1px 0 rgba(183, 148, 244, 0.05);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}


.feature-beta-card {
    padding: 32px 28px;
    opacity: 0;
    transform-style: preserve-3d;
    transition: opacity 0.8s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
    position: relative;
    overflow: hidden;
}

.feature-beta-card::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: conic-gradient(
        from 0deg at 50% 50%,
        transparent 0deg,
        rgba(183, 148, 244, 0.15) 60deg,
        transparent 120deg,
        rgba(214, 188, 250, 0.1) 180deg,
        transparent 240deg,
        rgba(183, 148, 244, 0.15) 300deg,
        transparent 360deg
    );
    opacity: 0;
    transition: opacity 0.6s ease;
    animation: rotateBg 8s linear infinite;
    pointer-events: none;
}

.feature-beta-card.is-hovering::before {
    opacity: 1;
}

@keyframes rotateBg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.feature-beta-card:not(.animate-in) {
    transform: translateY(30px);
}

.feature-beta-card.animate-in {
    opacity: 1;
    transform: perspective(1100px)
                translateX(var(--tx, 0px))
                translateY(var(--ty, 0px))
                rotateX(var(--rx, 0deg))
                rotateY(var(--ry, 0deg));
}

.feature-beta-card.is-hovering {
    transition: opacity 0.8s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-beta-card:nth-child(1) { transition-delay: 0s; }
.feature-beta-card:nth-child(2) { transition-delay: 0.1s; }
.feature-beta-card:nth-child(3) { transition-delay: 0.15s; }
.feature-beta-card:nth-child(4) { transition-delay: 0.2s; }
.feature-beta-card:nth-child(5) { transition-delay: 0.25s; }
.feature-beta-card:nth-child(6) { transition-delay: 0.3s; }


.feature-beta-card--large {
    grid-column: span 1;
    grid-row: span 2;
    padding: 40px 32px;
}

.feature-beta-card--large .feature-beta-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-beta-card--large h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.feature-beta-card--large p {
    font-size: 15px;
    line-height: 1.7;
    flex-grow: 1;
}

.feature-beta-content {
    position: relative;
    z-index: 3;
}

.feature-beta-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(183, 148, 244, 0.15) 0%, rgba(159, 122, 234, 0.1) 100%);
    border-radius: 14px;
    border: 1px solid rgba(183, 148, 244, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-beta-icon::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(183, 148, 244, 0.3) 50%,
        transparent 70%
    );
    animation: iconShine 3s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.holo-card.is-hovering .feature-beta-icon::before {
    opacity: 1;
}

@keyframes iconShine {
    0%, 100% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    50% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.holo-card.is-hovering .feature-beta-icon {
    background: linear-gradient(135deg, rgba(183, 148, 244, 0.2) 0%, rgba(159, 122, 234, 0.15) 100%);
    border-color: rgba(183, 148, 244, 0.4);
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 0 20px rgba(183, 148, 244, 0.3);
}

.feature-beta-icon svg {
    width: 26px;
    height: 26px;
    color: var(--purple);
    transition: all 0.3s ease;
    animation: iconFloat 3s ease-in-out infinite;
}

.holo-card.is-hovering .feature-beta-icon svg {
    animation: iconSpin 2s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-3px) scale(1.02);
    }
}

@keyframes iconSpin {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(-5deg) scale(1.1);
    }
    75% {
        transform: rotate(5deg) scale(1.1);
    }
}

.feature-beta-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--purple);
    background: rgba(183, 148, 244, 0.1);
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 12px;
    border: 1px solid rgba(183, 148, 244, 0.2);
    transition: all 0.3s ease;
}

.holo-card.is-hovering .feature-beta-tag {
    background: rgba(183, 148, 244, 0.2);
    border-color: rgba(183, 148, 244, 0.4);
    box-shadow: 0 0 15px rgba(183, 148, 244, 0.3);
    transform: scale(1.05);
}

.feature-beta-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.holo-card.is-hovering h3 {
    color: #fff;
    text-shadow: 0 0 20px rgba(183, 148, 244, 0.5);
    transform: translateX(2px);
}

.feature-beta-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.holo-card.is-hovering p {
    color: rgba(255, 255, 255, 0.85);
}


.feature-beta-list {
    list-style: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-beta-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    padding: 6px 0;
    transition: all 0.3s ease;
}

.feature-beta-list li:last-child {
    margin-bottom: 0;
}

.holo-card.is-hovering .feature-beta-list li {
    padding-left: 5px;
    color: rgba(255, 255, 255, 0.85);
}

.feature-beta-list li:nth-child(1) { animation-delay: 0.1s; }
.feature-beta-list li:nth-child(2) { animation-delay: 0.2s; }
.feature-beta-list li:nth-child(3) { animation-delay: 0.3s; }

.holo-card.is-hovering .feature-beta-list li:nth-child(1) {
    animation: listItemSlide 0.4s ease-out 0s forwards;
}

.holo-card.is-hovering .feature-beta-list li:nth-child(2) {
    animation: listItemSlide 0.4s ease-out 0.1s forwards;
}

.holo-card.is-hovering .feature-beta-list li:nth-child(3) {
    animation: listItemSlide 0.4s ease-out 0.2s forwards;
}

@keyframes listItemSlide {
    from {
        opacity: 0.7;
        transform: translateX(0);
    }
    to {
        opacity: 1;
        transform: translateX(5px);
    }
}

.feature-beta-list .check-icon {
    color: var(--purple);
    font-weight: 600;
    font-size: 16px;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(183, 148, 244, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.holo-card.is-hovering .feature-beta-list .check-icon {
    background: rgba(183, 148, 244, 0.2);
    box-shadow: 0 0 10px rgba(183, 148, 244, 0.4);
    transform: scale(1.1) rotate(360deg);
}


[data-theme="light"] .holo-card {
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .holo-card.is-hovering {
    border-color: rgba(183, 148, 244, 0.3);
    box-shadow: 
        0 30px 60px -20px rgba(0, 0, 0, 0.12),
        0 0 30px rgba(183, 148, 244, 0.08);
}


.section-howitworks {
    padding: 100px 0 80px;
    background: var(--bg);
    position: relative;
    overflow: hidden;
    text-align: center;
    min-height: 750px;
}


.section-howitworks::after {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    height: 400px;
    background: linear-gradient(
        to bottom,
        rgba(8, 6, 14, 1) 0%,
        rgba(8, 6, 14, 0.95) 15%,
        rgba(8, 6, 14, 0.85) 30%,
        rgba(8, 6, 14, 0.7) 45%,
        rgba(8, 6, 14, 0.5) 60%,
        rgba(8, 6, 14, 0.3) 75%,
        rgba(8, 6, 14, 0.1) 90%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 0;
}


.section-howitworks::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
    z-index: 0;
}


.howitworks-grid-bg {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(139, 92, 246, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
    mask-image: radial-gradient(ellipse 60% 45% at 50% 45%, black 0%, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 60% 45% at 50% 45%, black 0%, black 30%, transparent 70%);
}


.howitworks-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(80px);
}

.howitworks-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    top: 10%;
    left: 5%;
    animation: orbFloat1 15s ease-in-out infinite;
}

.howitworks-orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(100, 60, 180, 0.12) 0%, transparent 70%);
    bottom: 20%;
    right: 10%;
    animation: orbFloat2 18s ease-in-out infinite;
}

.howitworks-orb-3 {
    width: 350px;
    height: 350px;
    background: 
        radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, rgba(220, 200, 255, 0.15) 15%, transparent 40%),
        radial-gradient(circle, rgba(180, 150, 255, 0.2) 0%, rgba(139, 92, 246, 0.15) 30%, transparent 60%);
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbFloat3 20s ease-in-out infinite;
}


.howitworks-orb-3::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(230, 210, 255, 0.2) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    animation: glowPulse 3s ease-in-out infinite;
}

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

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -20px); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-25px, 15px); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}


.howitworks-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.2), transparent);
    pointer-events: none;
    z-index: 0;
}

.howitworks-line-1 {
    width: 200px;
    top: 25%;
    left: 10%;
    transform: rotate(-15deg);
    animation: lineFade 4s ease-in-out infinite;
}

.howitworks-line-2 {
    width: 150px;
    top: 60%;
    right: 15%;
    transform: rotate(20deg);
    animation: lineFade 5s ease-in-out infinite 1s;
}

.howitworks-line-3 {
    width: 180px;
    bottom: 30%;
    left: 20%;
    transform: rotate(10deg);
    animation: lineFade 6s ease-in-out infinite 2s;
}

@keyframes lineFade {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}


.howitworks-corner-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    pointer-events: none;
    z-index: 0;
}

.howitworks-corner-tl {
    top: -200px;
    left: -200px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
}

.howitworks-corner-br {
    bottom: -200px;
    right: -200px;
    background: radial-gradient(circle, rgba(100, 60, 180, 0.08) 0%, transparent 60%);
}


.arc-bg {
    position: absolute;
    width: 1400px;
    height: 1400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(139, 92, 246, 0.15) 0%,
        rgba(139, 92, 246, 0.08) 25%,
        rgba(139, 92, 246, 0.03) 45%,
        transparent 65%
    );
    filter: blur(40px);
}


.arc-bg::before {
    content: '';
    position: absolute;
    inset: 15%;
    border-radius: 50%;
    background: radial-gradient(
        circle at 50% 45%,
        rgba(183, 148, 244, 0.12) 0%,
        rgba(139, 92, 246, 0.06) 40%,
        transparent 70%
    );
    filter: blur(60px);
}


.arc-bg::after {
    content: '';
    position: absolute;
    inset: -10%;
    border-radius: 50%;
    background: radial-gradient(
        ellipse 80% 60% at 50% 40%,
        rgba(139, 92, 246, 0.08) 0%,
        transparent 50%
    );
    filter: blur(80px);
}


.arc-glow {
    position: absolute;
    inset: 10%;
    border-radius: 50%;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(183, 148, 244, 0.1) 0%,
        rgba(139, 92, 246, 0.05) 30%,
        transparent 60%
    );
    filter: blur(100px);
    animation: glowPulse 8s ease-in-out infinite;
}

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


.arc-glow::before {
    display: none;
}

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


.arc-particles {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    overflow: visible;
}

.arc-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--purple);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--purple), 0 0 20px rgba(139, 92, 246, 0.5);
}

.arc-particle:nth-child(1) { top: 10%; left: 50%; animation: particleFloat 4s ease-out infinite; }
.arc-particle:nth-child(2) { top: 20%; left: 15%; animation: particleFloat 5s ease-out infinite 0.5s; }
.arc-particle:nth-child(3) { top: 20%; right: 15%; animation: particleFloat 4.5s ease-out infinite 1s; }
.arc-particle:nth-child(4) { top: 50%; left: 5%; animation: particleFloat 5.5s ease-out infinite 1.5s; }
.arc-particle:nth-child(5) { top: 50%; right: 5%; animation: particleFloat 4s ease-out infinite 2s; }
.arc-particle:nth-child(6) { top: 80%; left: 20%; animation: particleFloat 5s ease-out infinite 2.5s; }
.arc-particle:nth-child(7) { top: 80%; right: 20%; animation: particleFloat 4.5s ease-out infinite 3s; }
.arc-particle:nth-child(8) { bottom: 10%; left: 50%; animation: particleFloat 5s ease-out infinite 3.5s; }

@keyframes particleFloat {
    0% { 
        opacity: 0; 
        transform: translate(0, 0) scale(0.5); 
    }
    20% { 
    opacity: 1;
        transform: translate(var(--tx, -20px), var(--ty, -30px)) scale(1); 
    }
    100% { 
        opacity: 0; 
        transform: translate(calc(var(--tx, -20px) * 3), calc(var(--ty, -30px) * 3)) scale(0.3); 
    }
}

.arc-particle:nth-child(1) { --tx: 0; --ty: -40px; }
.arc-particle:nth-child(2) { --tx: -30px; --ty: -25px; }
.arc-particle:nth-child(3) { --tx: 30px; --ty: -25px; }
.arc-particle:nth-child(4) { --tx: -40px; --ty: 0; }
.arc-particle:nth-child(5) { --tx: 40px; --ty: 0; }
.arc-particle:nth-child(6) { --tx: -25px; --ty: 30px; }
.arc-particle:nth-child(7) { --tx: 25px; --ty: 30px; }
.arc-particle:nth-child(8) { --tx: 0; --ty: 40px; }


.sparkle {
    position: absolute;
    pointer-events: none;
    background: rgba(183, 148, 244, 0.8);
    clip-path: polygon(
        50% 0%, 54% 42%, 72% 28%, 56% 46%,
        100% 50%, 56% 54%, 72% 72%, 54% 58%,
        50% 100%, 46% 58%, 28% 72%, 44% 54%,
        0% 50%, 44% 46%, 28% 28%, 46% 42%
    );
    animation: sparkleFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 0 6px rgba(139, 92, 246, 0.8));
}

.sparkle-1 { 
    top: 5%; left: 20%; 
    width: 18px; height: 18px;
    animation-delay: 0s; 
}
.sparkle-2 { 
    top: 8%; right: 18%; 
    width: 22px; height: 22px;
    background: linear-gradient(135deg, var(--purple), #c4b5fd);
    animation-delay: 1s; 
}
.sparkle-3 { 
    top: 18%; left: 10%; 
    width: 12px; height: 12px;
    background: rgba(183, 148, 244, 0.7);
    animation-delay: 0.5s; 
}
.sparkle-4 { 
    top: 30%; right: 12%; 
    width: 10px; height: 10px;
    background: rgba(139, 92, 246, 0.6);
    animation-delay: 1.5s; 
}
.sparkle-5 { 
    top: 50%; left: 8%; 
    width: 8px; height: 8px;
    background: rgba(183, 148, 244, 0.5);
    animation-delay: 2s; 
}
.sparkle-6 { 
    top: 55%; right: 6%; 
    width: 6px; height: 6px;
    background: rgba(139, 92, 246, 0.5);
    animation-delay: 0.8s; 
}
.sparkle-7 { 
    top: 70%; left: 15%; 
    width: 10px; height: 10px;
    background: rgba(139, 92, 246, 0.4);
    animation-delay: 2.5s; 
}
.sparkle-8 { 
    top: 40%; left: 4%; 
    width: 7px; height: 7px;
    background: rgba(183, 148, 244, 0.5);
    animation-delay: 1.2s; 
}

@keyframes sparkleFloat {
    0%, 100% { 
        opacity: 0.6; 
        transform: translateY(0) scale(1) rotate(0deg); 
    }
    50% { 
        opacity: 1; 
        transform: translateY(-8px) scale(1.2) rotate(22.5deg); 
    }
}


.howitworks-header {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto 40px;
}

.howitworks-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    color: #cbb4ff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 999px;
    margin-bottom: 28px;
    background: linear-gradient(135deg, rgba(140, 84, 255, 0.14) 0%, rgba(87, 61, 177, 0.08) 100%);
    border: 1px solid rgba(183, 148, 244, 0.22);
    box-shadow: 0 10px 30px rgba(30, 16, 70, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.howitworks-badge::before {
    content: '';
    position: absolute;
    inset: -30%;
    background: radial-gradient(circle at 30% 30%, rgba(183, 148, 244, 0.18), transparent 52%);
    transform: translate3d(0,0,0);
    pointer-events: none;
}

.howitworks-badge svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

.howitworks-title {
    font-size: clamp(38px, 5vw, 56px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.howitworks-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}


.howitworks-stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
}

.howitworks-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform 0.1s ease-out;
    transform: translateY(var(--stat-ty, 0px));
    will-change: transform;
}

.howitworks-stat.stat-featured {
    transform: translateY(calc(var(--stat-ty, 0px) - 15px));
}

.howitworks-stat.stat-featured .stat-number {
    font-size: clamp(56px, 7vw, 84px);
    color: #fff;
    text-shadow: 0 0 40px rgba(139, 92, 246, 0.5);
}

.howitworks-stat.stat-featured .stat-label {
    color: rgba(255, 255, 255, 0.7);
}

.stat-number {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 600;
    color: var(--purple);
    line-height: 1;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


.howitworks-cta {
    position: relative;
    z-index: 1;
    max-width: 900px;
    width: 90%;
    margin: 45px auto 0;
    padding: 32px 50px;
    background: 
        radial-gradient(circle 180px at 50% 0%, rgba(139, 92, 246, 0.5) 0%, transparent 100%),
        radial-gradient(ellipse 80% 100% at 0% 50%, rgba(0, 0, 0, 0.7) 0%, transparent 40%),
        radial-gradient(ellipse 80% 100% at 100% 50%, rgba(0, 0, 0, 0.7) 0%, transparent 40%),
        radial-gradient(ellipse 100% 60% at 50% 100%, rgba(0, 0, 0, 0.6) 0%, transparent 50%),
        linear-gradient(180deg, rgba(20, 15, 35, 0.6) 0%, rgba(10, 8, 18, 0.85) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-align: center;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3),
        0 25px 50px rgba(0, 0, 0, 0.5);
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateX(var(--tx, 0px)) translateY(var(--ty, 0px));
    transition: box-shadow 0.3s ease, transform 0.15s ease-out;
    will-change: transform;
}

.howitworks-cta:hover {
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3),
        0 35px 70px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(139, 92, 246, 0.2);
}


.cta-glow {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle 150px at 50% 0%, rgba(139, 92, 246, 0.7) 0%, rgba(100, 60, 200, 0.3) 50%, transparent 100%),
        radial-gradient(circle 80px at 30% 20%, rgba(139, 92, 246, 0.2) 0%, transparent 100%),
        radial-gradient(circle 80px at 70% 20%, rgba(160, 100, 255, 0.2) 0%, transparent 100%);
    pointer-events: none;
    animation: liquidMove 6s ease-in-out infinite;
}

@keyframes liquidMove {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.03);
        opacity: 0.85;
    }
}


.howitworks-cta::before {
    content: '';
    position: absolute;
    inset: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-radial-gradient(circle at 50% 50%, 
            transparent 0px, 
            rgba(255,255,255,0.03) 1px, 
            transparent 2px, 
            rgba(0,0,0,0.05) 3px
        );
    pointer-events: none;
    z-index: 2;
    animation: tvNoise 0.05s steps(2) infinite;
}

.cta-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.12;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 3;
    border-radius: 20px;
    animation: tvFlicker 0.08s steps(4) infinite;
}

@keyframes tvNoise {
    0% { transform: translate(0, 0); }
    50% { transform: translate(-2%, -2%); }
    100% { transform: translate(2%, 1%); }
}

@keyframes tvFlicker {
    0% { opacity: 0.1; }
    25% { opacity: 0.15; }
    50% { opacity: 0.08; }
    75% { opacity: 0.13; }
    100% { opacity: 0.1; }
}


.howitworks-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    box-shadow: 
        0 0 20px 5px rgba(139, 92, 246, 0.4),
        0 0 40px 10px rgba(139, 92, 246, 0.2);
    z-index: 5;
}

.cta-title {
    position: relative;
    z-index: 1;
    font-size: 26px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.cta-desc {
    position: relative;
    z-index: 1;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.02em;
    border-radius: 50px;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
    overflow: hidden;
    text-shadow: 0 0 20px rgba(183, 148, 244, 0.5);
    transform-style: preserve-3d;
    transform: perspective(500px) rotateX(var(--btn-rx, 0deg)) rotateY(var(--btn-ry, 0deg));
}


.cta-button::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(
        circle at calc(var(--btn-x, 50%) * 0.5 + 25%) calc(var(--btn-y, 50%) * 0.5 + 25%),
        rgba(183, 148, 244, 0.6) 0%,
        rgba(139, 92, 246, 0.4) 20%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}


.cta-button::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(183, 148, 244, 0.6) 25%,
        rgba(139, 92, 246, 0.8) 50%,
        rgba(183, 148, 244, 0.6) 75%,
        transparent 100%
    );
    -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);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    background-size: 200% 100%;
    animation: borderSweep 2s linear infinite;
}

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

.cta-button:hover {
    text-shadow: 0 0 25px rgba(183, 148, 244, 0.7);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3);
}

.cta-button:hover::before {
    opacity: 1;
}


@media (max-width: 900px) {
    .section-howitworks {
        min-height: 900px;
    }
    
    .howitworks-stats {
        grid-template-columns: 1fr;
        max-width: 300px;
        gap: 40px;
    }
    
    .arc-bg {
        width: 1200px;
        height: 1200px;
        top: 50%;
        transform: translate(-50%, -45%);
    }
}

@media (max-width: 600px) {
    .section-howitworks {
        padding: 100px 0 80px;
        min-height: 850px;
    }
    
    .howitworks-title {
        font-size: 32px;
    }
    
    .stat-number {
        font-size: 48px;
    }
    
    .arc-bg {
        width: 1000px;
        height: 1000px;
    }
    
    .sparkle-1, .sparkle-2 {
        width: 10px;
        height: 10px;
    }
}



.faq-card {
    position: relative;
    z-index: 1;
    max-width: 900px;
    width: 90%;
    margin: 20px auto 0;
    padding: 40px 45px;
    background: 
        radial-gradient(circle 150px at 50% 0%, rgba(139, 92, 246, 0.12) 0%, transparent 100%),
        linear-gradient(180deg, rgba(18, 14, 30, 0.95) 0%, rgba(10, 8, 18, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 20px 40px rgba(0, 0, 0, 0.4);
    
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateX(var(--tx, 0px)) translateY(var(--ty, 0px));
    transition: box-shadow 0.3s ease, transform 0.15s ease-out;
    will-change: transform;
}

.faq-card:hover {
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(139, 92, 246, 0.08);
}


.faq-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.faq-decor-grid {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 160px;
    height: 160px;
    opacity: 0.8;
}

.faq-decor-corner {
    position: absolute;
    top: -1px;
    right: -1px;
    width: 100px;
    height: 100px;
    opacity: 1;
}

.faq-decor-dots {
    position: absolute;
    top: 20px;
    left: 45px;
    display: flex;
    gap: 6px;
}

.faq-decor-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.4);
}

.faq-decor-dots span:nth-child(2) {
    background: rgba(139, 92, 246, 0.25);
}

.faq-decor-dots span:nth-child(3) {
    background: rgba(139, 92, 246, 0.15);
}

.faq-decor-lines {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 150px;
    opacity: 0.7;
}

.faq-decor-hex {
    position: absolute;
    left: 50%;
    bottom: 15px;
    transform: translateX(-50%);
    width: 50px;
    height: 60px;
    opacity: 0.5;
}


.faq-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.fp {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.3);
    animation: faqFloat 6s ease-in-out infinite;
}

.fp-1 { top: 15%; right: 25%; animation-delay: 0s; }
.fp-2 { top: 60%; right: 8%; width: 2px; height: 2px; animation-delay: -1s; }
.fp-3 { top: 80%; left: 35%; width: 2px; height: 2px; animation-delay: -2s; }
.fp-4 { top: 25%; left: 55%; animation-delay: -3s; }
.fp-5 { top: 45%; right: 35%; width: 4px; height: 4px; animation-delay: -4s; background: rgba(139, 92, 246, 0.2); }

@keyframes faqFloat {
    0%, 100% { 
        opacity: 0.3;
        transform: translateY(0); 
    }
    50% { 
        opacity: 0.6;
        transform: translateY(-8px); 
    }
}

.faq-glow {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 50%, 
        rgba(139, 92, 246, 0.08) 0%, 
        transparent 60%
    );
    pointer-events: none;
}


.faq-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 150px 150px;
    opacity: 0.05;
    pointer-events: none;
    z-index: 1;
    border-radius: inherit;
}


.faq-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.4), transparent);
}

.faq-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.8fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.faq-left {
    position: sticky;
    top: 100px;
    padding-top: 10px;
}

.faq-title {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.faq-right {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question span:first-child {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
    text-align: left;
}

.faq-question:hover span:first-child {
    color: #fff;
}

.faq-icon {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.3);
    transition: transform 0.2s ease, color 0.2s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--purple);
}

.faq-answer {
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    padding-bottom: 20px;
}

.faq-answer p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    text-align: left;
}


@media (max-width: 900px) {
    .faq-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq-left {
        position: static;
    }
    
    .faq-title {
        font-size: 32px;
    }
    
    .faq-card {
        padding: 40px 30px;
    }
}

@media (max-width: 600px) {
    .faq-card {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .faq-title {
        font-size: 28px;
    }
    
    .faq-question span:first-child {
        font-size: 14px;
    }
}



.contact-card {
    position: relative;
    z-index: 1;
    max-width: 550px;
    width: 90%;
    margin: 80px auto 0;
    padding: 0;
}


.contact-header {
    text-align: center;
    margin-bottom: 35px;
}

.contact-title {
    font-size: 36px;
    font-weight: 600;
    font-style: italic;
    background: linear-gradient(135deg, #b794f4 0%, #9f7aea 50%, #805ad5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.contact-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    max-width: 380px;
    margin: 0 auto;
    line-height: 1.7;
}


.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-input {
    width: 100%;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.contact-input::placeholder {
    color: rgba(183, 148, 244, 0.5);
}

.contact-input:hover {
    border-color: rgba(183, 148, 244, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.contact-input:focus {
    border-color: rgba(183, 148, 244, 0.4);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 
        0 0 0 3px rgba(183, 148, 244, 0.1),
        0 8px 32px rgba(0, 0, 0, 0.2);
}

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

.contact-submit {
    margin-top: 8px;
    padding: 18px 32px;
    background: rgba(183, 148, 244, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(183, 148, 244, 0.3);
    border-radius: 12px;
    color: #b794f4;
    font-size: 15px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(183, 148, 244, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-submit:hover {
    border-color: rgba(183, 148, 244, 0.5);
    color: #fff;
    box-shadow: 
        0 0 30px rgba(183, 148, 244, 0.2),
        0 10px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.contact-submit:hover::before {
    opacity: 1;
}

.contact-submit:active {
    transform: translateY(0);
}


@media (max-width: 600px) {
    .contact-title {
        font-size: 28px;
    }
    
    .contact-input {
        padding: 16px 18px;
    }
}



.footer-new {
    position: relative;
    padding: 140px 0 100px;
    overflow: hidden;
    background: var(--bg);
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
}


.footer-glow {
    position: absolute;
    inset: 0;
    background: 
        
        radial-gradient(
            ellipse 50% 60% at 50% 50%,
            rgba(var(--accent-400), 0.5) 0%,
            rgba(var(--accent-500), 0.3) 30%,
            rgba(var(--accent-600), 0.15) 50%,
            transparent 70%
        ),
        
        radial-gradient(
            ellipse 80% 40% at 50% 0%,
            rgba(var(--accent-200), 0.4) 0%,
            rgba(var(--accent-400), 0.2) 40%,
            transparent 70%
        ),
        
        radial-gradient(
            ellipse 70% 35% at 50% 100%,
            rgba(var(--accent-300), 0.35) 0%,
            rgba(var(--accent-500), 0.15) 50%,
            transparent 80%
        );
    pointer-events: none;
    z-index: 0;
}


.footer-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}


.footer-grid::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        
        linear-gradient(rgba(var(--accent-400), 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--accent-400), 0.08) 1px, transparent 1px),
        
        linear-gradient(rgba(var(--accent-200), 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--accent-200), 0.04) 1px, transparent 1px);
    background-size: 80px 80px, 80px 80px, 20px 20px, 20px 20px;
    mask-image: radial-gradient(ellipse 90% 85% at 50% 50%, black 0%, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 90% 85% at 50% 50%, black 0%, black 30%, transparent 70%);
}


.footer-grid::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        
        radial-gradient(circle 3px at center, rgba(var(--accent-200), 0.35) 0%, transparent 100%),
        
        radial-gradient(circle 1.5px at center, rgba(var(--accent-400), 0.2) 0%, transparent 100%);
    background-size: 80px 80px, 40px 40px;
    background-position: 0 0, 20px 20px;
    mask-image: radial-gradient(ellipse 75% 70% at 50% 50%, black 0%, transparent 65%);
    -webkit-mask-image: radial-gradient(ellipse 75% 70% at 50% 50%, black 0%, transparent 65%);
}


.footer-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.12;
    z-index: 2;
    pointer-events: none;
    mix-blend-mode: soft-light;
}


.footer-noise::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='turbulence' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23grain)'/%3E%3C/svg%3E");
    opacity: 0.08;
    mix-blend-mode: overlay;
}


.footer-edge-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.footer-edge-glow::before {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--accent-400), 0.25) 0%, rgba(var(--accent-500), 0.1) 40%, transparent 70%);
    top: -10%;
    left: -5%;
    filter: blur(60px);
    animation: orbFloat1 15s ease-in-out infinite;
}

.footer-edge-glow::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--accent-300), 0.2) 0%, rgba(var(--accent-600), 0.08) 50%, transparent 70%);
    bottom: -15%;
    right: -5%;
    filter: blur(60px);
    animation: orbFloat2 18s ease-in-out infinite;
}


.footer-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.footer-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(var(--accent-200), 0.15), transparent);
    height: 1px;
}

.footer-line-1 {
    top: 20%;
    left: 0;
    right: 0;
    animation: lineSlide 8s ease-in-out infinite;
}

.footer-line-2 {
    top: 50%;
    left: 10%;
    right: 10%;
    animation: lineSlide 10s ease-in-out infinite reverse;
}

.footer-line-3 {
    top: 80%;
    left: 5%;
    right: 5%;
    animation: lineSlide 12s ease-in-out infinite;
}

@keyframes lineSlide {
    0%, 100% { opacity: 0.3; transform: scaleX(0.8); }
    50% { opacity: 0.6; transform: scaleX(1); }
}


.footer-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.footer-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(var(--accent-200), 0.6);
    filter: blur(1px);
    animation: particleFloat 6s ease-in-out infinite;
}

.footer-particle.fp-1 {
    width: 4px;
    height: 4px;
    top: 15%;
    left: 20%;
    animation-delay: 0s;
}

.footer-particle.fp-2 {
    width: 3px;
    height: 3px;
    top: 30%;
    right: 25%;
    animation-delay: 1s;
}

.footer-particle.fp-3 {
    width: 5px;
    height: 5px;
    top: 60%;
    left: 15%;
    animation-delay: 2s;
}

.footer-particle.fp-4 {
    width: 3px;
    height: 3px;
    top: 45%;
    right: 18%;
    animation-delay: 3s;
}

.footer-particle.fp-5 {
    width: 4px;
    height: 4px;
    bottom: 25%;
    left: 30%;
    animation-delay: 4s;
}

.footer-particle.fp-6 {
    width: 3px;
    height: 3px;
    bottom: 35%;
    right: 30%;
    animation-delay: 5s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 0.8;
    }
}


.footer-top-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(var(--accent-400), 0.3) 20%,
        rgba(var(--accent-200), 0.6) 50%,
        rgba(var(--accent-400), 0.3) 80%,
        transparent 100%
    );
    box-shadow: 
        0 0 20px rgba(var(--accent-200), 0.5),
        0 0 40px rgba(var(--accent-400), 0.3);
    z-index: 2;
}

.footer-inner-minimal {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.footer-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(183, 148, 244, 0.6));
    margin-bottom: 10px;
}

.footer-eyebrow {
    position: relative;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.footer-eyebrow::before,
.footer-eyebrow::after {
    content: "";
    width: 58px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    display: block;
}

.footer-title {
    font-size: clamp(32px, 5vw, 46px);
    font-weight: 700;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.footer-subtitle {
    font-size: clamp(26px, 4vw, 36px);
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
}

.footer-subtitle .text-gradient {
    background: linear-gradient(135deg, var(--purple), var(--aqua));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.footer-desc {
    margin: 6px 0 20px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
}

.footer-form {
    margin: 10px 0 30px;
    width: 100%;
    max-width: 480px;
}

.footer-form .input-wrapper {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.footer-form .input-wrapper:focus-within {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(var(--accent-200), 0.25);
}

.btn-glass {
    position: relative;
    padding: 14px 28px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 100px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-shadow: 0 0 25px rgba(var(--accent-200), 0.7);
    box-shadow: 0 10px 30px rgba(var(--accent-400), 0.25);
    transform-style: preserve-3d;
    transform: perspective(500px) rotateX(var(--btn-rx, 0deg)) rotateY(var(--btn-ry, 0deg));
    transition: color 0.3s ease, text-shadow 0.3s ease, box-shadow 0.3s ease;
}


.btn-glass::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(
        circle at calc(var(--btn-x, 50%) * 0.5 + 25%) calc(var(--btn-y, 50%) * 0.5 + 25%),
        rgba(var(--accent-200), 0.6) 0%,
        rgba(var(--accent-400), 0.4) 20%,
        transparent 50%
    );
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}


.btn-glass::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(var(--accent-200), 0.6) 25%,
        rgba(var(--accent-400), 0.8) 50%,
        rgba(var(--accent-200), 0.6) 75%,
        transparent 100%
    );
    -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);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    background-size: 200% 100%;
    animation: btnGlassBorderSweep 2s linear infinite;
}

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

.btn-glass:hover {
    text-shadow: 0 0 30px rgba(var(--accent-200), 0.9);
    box-shadow: 0 20px 50px rgba(var(--accent-400), 0.4);
}

.btn-footer {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-md);
    border: none;
    background: linear-gradient(135deg, var(--purple), var(--aqua-dim));
    color: var(--bg);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    overflow: hidden;
    box-shadow:
        0 0 30px rgba(183, 148, 244, 0.4),
        0 10px 40px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.btn-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(255, 255, 255, 0.25) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.btn-footer:hover {
    transform: translateY(-3px);
    box-shadow:
        0 0 50px rgba(183, 148, 244, 0.5),
        0 15px 50px rgba(139, 92, 246, 0.4);
}

.btn-footer:hover::before {
    transform: translateX(100%);
}

.btn-footer svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

.footer-socials-minimal {
    margin: 6px 0 8px;
    gap: 18px;
}


.footer-brand-large {
    font-size: clamp(120px, 22vw, 240px);
    font-weight: 600;
    text-align: center;
    letter-spacing: -0.05em;
    line-height: 0.88;
    margin-bottom: 60px;
    user-select: none;
    color: rgba(255, 255, 255, 0.02);
    text-shadow: none;
}


.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-social:hover {
    color: var(--purple);
    filter: drop-shadow(0 0 10px rgba(183, 148, 244, 0.5));
}


.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.01);
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.25);
}

.footer-email {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
}

.footer-email:hover {
    color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 640px) {
    .footer-new {
        padding: 100px 0 120px;
    }

    .footer-socials-minimal {
        gap: 14px;
    }
}


@media (max-width: 600px) {
    .footer-new {
        padding: 60px 0 30px;
    }
    
    .footer-brand-large {
        margin-bottom: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

.footer-beta-links a {
    font-size: 13px;
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-beta-links a:hover {
    color: var(--purple);
}


[data-theme="light"] .input-wrapper {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .input-wrapper:focus-within {
    border-color: var(--purple);
}

[data-theme="light"] .feature-beta-card {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .feature-beta-card.is-hovering {
    background: rgba(183, 148, 244, 0.08);
    border-color: rgba(183, 148, 244, 0.2);
}

[data-theme="light"] .stat-beta-card {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.06);
}


@media (max-width: 1024px) {
    .features-beta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-beta-card--large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .key-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
    }
    
    .security-info-block {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    
    .info-visual-orb {
        width: 150px;
        height: 150px;
    }
    
    .stat-big {
        font-size: 56px;
    }
}

@media (max-width: 968px) {
    .hero-tags {
        max-width: 100%;
    }
    
    .hero-dragon {
        max-width: 600px;
        transform: scale(1.1);
    }
    
    .hero-content-beta .hero-desc {
        max-width: 100%;
    }
    
    .waitlist-form {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-beta {
        padding-top: 100px;
        padding-bottom: 60px;
        min-height: auto;
    }
    
    .hero-horizon {
        height: 400px;
    }
    
    .horizon-glow {
        height: 350px;
    }
    
    .horizon-glow::after {
        width: 200px;
        bottom: 10px;
    }
    
    .horizon-noise {
        height: 350px;
    }
    
    .hero-content-beta .hero-title {
        font-size: clamp(26px, 7vw, 36px);
    }
    
    .title-row-primary {
        font-size: 0.4em;
        margin-bottom: 4px;
    }
    
    .title-row-gradient {
        font-size: 1em;
    }
    
    .hero-title-wrapper {
        padding: 0;
        margin-bottom: 16px;
    }
    
    .title-decoration {
        width: 50px;
    }
    
    .hero-content-beta .hero-desc {
        font-size: 13px;
    }
    
    .hero-dragon {
        max-width: 380px;
        transform: scale(1.05);
    }
    
    .hero-tags {
        gap: 6px 16px;
    }
    
    .hero-tag {
        font-size: 11px;
    }
    
    .hero-tag:not(:last-child)::after {
        right: -10px;
    }
    
    .waitlist-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .waitlist-divider {
        display: none;
    }
    
    .waitlist-trust {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .input-wrapper {
        flex-direction: column;
        border-radius: 16px;
        padding: 8px;
    }
    
    .email-input {
        text-align: center;
        padding: 16px;
    }
    
    .btn-waitlist {
        width: 100%;
        justify-content: center;
    }
    
    .features-beta-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-beta-card--large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .feature-beta-card--large h3 {
        font-size: 20px;
    }
    
    .footer-beta-content {
        flex-direction: column;
        gap: 16px;
    }
    
    .key-stats {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0;
        margin: 40px 0;
    }
    
    .security-info-block {
        padding: 24px;
        margin: 40px 0;
        gap: 30px;
    }
    
    .info-block-content h3 {
        font-size: 22px;
    }
    
    .info-block-content p {
        font-size: 14px;
    }
    
    .stat-big {
        font-size: 48px;
    }
}



.footer {
    position: relative;
    z-index: 1;
    background: var(--bg);
    border-top: 1px solid var(--gray-600);
    padding: 64px 0 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--gray-400);
    margin: 12px 0 20px;
    max-width: 260px;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: var(--gray-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    text-decoration: none;
    transition: all 0.2s;
}

.footer-social a:hover {
    background: var(--purple);
    color: var(--bg);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.footer-col h4 {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gray-400);
    margin-bottom: 16px;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 10px; }

.footer-col a {
    font-size: 14px;
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--gray-600);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-400);
}

.footer-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--gray-300);
}

.status-indicator {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px #22c55e;
}



@media (max-width: 1024px) {
    .hero > .container { grid-template-columns: 1fr; text-align: center; }
    .hero-content { max-width: 600px; margin: 0 auto; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-cta, .hero-stats { justify-content: center; }
    .hero-visual { margin-top: 40px; }
    .video-container { max-width: 400px; margin: 0 auto; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .network-grid { grid-template-columns: 1fr; }
    .code-grid { grid-template-columns: 1fr; gap: 40px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
    .hero-visual { display: none; }
}

@media (max-width: 768px) {
    .container { padding: 0 16px; }
    
    .header {
        width: calc(100% - 32px);
        top: 12px;
    }
    
    .header-inner {
        justify-content: space-between;
        padding: 0 12px;
    }
    
    .logo {
        border-right: none;
        padding-right: 0;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        padding: 8px;
        background: rgba(20, 20, 20, 0.95);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
    }
    
    .nav.open {
        display: block;
    }
    
    .nav-links { 
        flex-direction: column;
        gap: 4px;
    }
    .nav-links li a { 
        display: block; 
        padding: 12px 16px;
        border-radius: 8px;
    }
    .nav-toggle { display: flex; }
    .network-status { display: none; }
    .hero { padding: 120px 0 80px; }
    .hero-stats { flex-wrap: wrap; gap: 24px; }
    .stat-divider { display: none; }
    .hero-cta { flex-direction: column; }
    .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
    .features-grid { grid-template-columns: 1fr; }
    .features-list { justify-content: flex-start; }
    .cta-card { padding: 40px 20px; }
    .cta-buttons { flex-direction: column; }
    .footer-links { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    
    
    .neon-map-container { height: 220px; }
    .neon-node .node-core { width: 8px; height: 8px; }
    .neon-node .node-label { font-size: 7px; margin-top: 4px; opacity: 1; }
    .map-footer { flex-direction: column; gap: 12px; align-items: flex-start; }
    .map-nodes { gap: 8px; }
    .map-stats { gap: 12px; }
}



.section-bento-new {
    padding: 100px 0;
    position: relative;
    background: 
        linear-gradient(180deg, 
            rgba(60, 40, 90, 0.4) 0%, 
            rgba(30, 20, 50, 0.2) 15%,
            var(--bg) 35%
        ),
        var(--bg);
    border-radius: 48px 48px 0 0;
    margin-top: -30px;
    z-index: 10;
    border-top: 1px solid rgba(183, 148, 244, 0.25);
    border-left: 1px solid rgba(183, 148, 244, 0.15);
    border-right: 1px solid rgba(183, 148, 244, 0.15);
    box-shadow:
        0 -30px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.section-bento-new::before {
    display: none;
}

.section-bento-new::after {
    display: none;
}


.section-top-decor {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    pointer-events: none;
    z-index: 3;
    overflow: hidden;
    border-radius: 48px 48px 0 0;
}


.top-decor-line {
    position: absolute;
    top: 20px;
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(183, 148, 244, 0.3), transparent);
}

.top-decor-line.left {
    left: 60px;
    transform: rotate(0deg);
}

.top-decor-line.right {
    right: 60px;
}


.top-decor-dots {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.top-decor-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(183, 148, 244, 0.4);
    box-shadow: 0 0 10px rgba(183, 148, 244, 0.3);
}

.top-decor-dots span:nth-child(2) {
    background: rgba(183, 148, 244, 0.6);
    box-shadow: 0 0 15px rgba(183, 148, 244, 0.5);
}


.top-decor-stars {
    position: absolute;
    inset: 0;
}

.decor-star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(183, 148, 244, 0.6);
    animation: starTwinkle 3s ease-in-out infinite;
}

.decor-star.star-1 {
    top: 30px;
    left: 15%;
    animation-delay: 0s;
}

.decor-star.star-2 {
    top: 50px;
    left: 25%;
    width: 2px;
    height: 2px;
    animation-delay: 0.5s;
}

.decor-star.star-3 {
    top: 25px;
    right: 20%;
    animation-delay: 1s;
}

.decor-star.star-4 {
    top: 60px;
    right: 30%;
    width: 2px;
    height: 2px;
    animation-delay: 1.5s;
}

.decor-star.star-5 {
    top: 40px;
    left: 40%;
    width: 2px;
    height: 2px;
    animation-delay: 2s;
}

@keyframes starTwinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}


.top-decor-particles {
    position: absolute;
    inset: 0;
}

.decor-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(183, 148, 244, 0.3);
    animation: particleFloat 8s ease-in-out infinite;
}

.decor-particle.p1 {
    width: 4px;
    height: 4px;
    top: 40px;
    left: 10%;
    animation-delay: 0s;
}

.decor-particle.p2 {
    width: 3px;
    height: 3px;
    top: 60px;
    left: 20%;
    animation-delay: 1s;
}

.decor-particle.p3 {
    width: 5px;
    height: 5px;
    top: 35px;
    right: 15%;
    animation-delay: 2s;
}

.decor-particle.p4 {
    width: 3px;
    height: 3px;
    top: 70px;
    right: 25%;
    animation-delay: 3s;
}

.decor-particle.p5 {
    width: 4px;
    height: 4px;
    top: 50px;
    left: 35%;
    animation-delay: 4s;
}

.decor-particle.p6 {
    width: 3px;
    height: 3px;
    top: 45px;
    right: 40%;
    animation-delay: 5s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-10px) translateX(5px);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-5px) translateX(-3px);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-15px) translateX(2px);
        opacity: 0.7;
    }
}


.bento-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}


.ambient-stars {
    position: absolute;
    inset: 0;
}

.ambient-star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(183, 148, 244, 0.6);
    animation: ambientTwinkle 4s ease-in-out infinite;
}

.ambient-star.as-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.ambient-star.as-2 {
    top: 25%;
    left: 22%;
    animation-delay: 0.5s;
}

.ambient-star.as-3 {
    top: 40%;
    left: 6%;
    animation-delay: 1s;
}

.ambient-star.as-4 {
    top: 55%;
    left: 15%;
    animation-delay: 1.5s;
}

.ambient-star.as-5 {
    top: 70%;
    left: 8%;
    animation-delay: 2s;
}

.ambient-star.as-6 {
    top: 85%;
    left: 18%;
    animation-delay: 2.5s;
}

.ambient-star.as-7 {
    top: 20%;
    right: 12%;
    animation-delay: 0.3s;
}

.ambient-star.as-8 {
    top: 35%;
    right: 20%;
    animation-delay: 0.8s;
}

.ambient-star.as-9 {
    top: 50%;
    right: 8%;
    animation-delay: 1.3s;
}

.ambient-star.as-10 {
    top: 65%;
    right: 16%;
    animation-delay: 1.8s;
}

.ambient-star.as-11 {
    top: 80%;
    right: 10%;
    animation-delay: 2.3s;
}

.ambient-star.as-12 {
    top: 30%;
    left: 50%;
    animation-delay: 0.6s;
}

.ambient-star.as-13 {
    top: 60%;
    left: 45%;
    animation-delay: 1.4s;
}

.ambient-star.as-14 {
    top: 45%;
    right: 48%;
    animation-delay: 2.1s;
}

.ambient-star.as-15 {
    top: 75%;
    right: 52%;
    animation-delay: 2.7s;
}

@keyframes ambientTwinkle {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.4); }
}


.corner-accents {
    position: absolute;
    inset: 0;
}

.corner-accent {
    position: absolute;
    width: 120px;
    height: 120px;
    opacity: 0.35;
}

.corner-accent::before,
.corner-accent::after {
    content: '';
    position: absolute;
    background: linear-gradient(90deg, rgba(183, 148, 244, 0.5), transparent);
    box-shadow: 0 0 10px rgba(183, 148, 244, 0.3);
}

.corner-accent.ca-tl {
    top: 80px;
    left: 30px;
}

.corner-accent.ca-tl::before {
    top: 0;
    left: 0;
    width: 60px;
    height: 2px;
}

.corner-accent.ca-tl::after {
    top: 0;
    left: 0;
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, rgba(183, 148, 244, 0.5), transparent);
}

.corner-accent.ca-tr {
    top: 80px;
    right: 30px;
}

.corner-accent.ca-tr::before {
    top: 0;
    right: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(270deg, rgba(183, 148, 244, 0.5), transparent);
}

.corner-accent.ca-tr::after {
    top: 0;
    right: 0;
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, rgba(183, 148, 244, 0.5), transparent);
}

.corner-accent.ca-bl {
    bottom: 80px;
    left: 30px;
}

.corner-accent.ca-bl::before {
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
}

.corner-accent.ca-bl::after {
    bottom: 0;
    left: 0;
    width: 2px;
    height: 60px;
    background: linear-gradient(0deg, rgba(183, 148, 244, 0.5), transparent);
}

.corner-accent.ca-br {
    bottom: 80px;
    right: 30px;
}

.corner-accent.ca-br::before {
    bottom: 0;
    right: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(270deg, rgba(183, 148, 244, 0.5), transparent);
}

.corner-accent.ca-br::after {
    bottom: 0;
    right: 0;
    width: 2px;
    height: 60px;
    background: linear-gradient(0deg, rgba(183, 148, 244, 0.5), transparent);
}


.section-orbs {
    position: absolute;
    inset: 0;
}

.section-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
    animation: orbFloat 12s ease-in-out infinite;
}

.section-orb.orb-1 {
    top: 20%;
    left: 15%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(183, 148, 244, 0.4) 0%, transparent 70%);
    animation-delay: 0s;
}

.section-orb.orb-2 {
    top: 60%;
    right: 20%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(128, 90, 213, 0.3) 0%, transparent 70%);
    animation-delay: 4s;
}

.section-orb.orb-3 {
    bottom: 15%;
    left: 25%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(214, 188, 250, 0.35) 0%, transparent 70%);
    animation-delay: 8s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -30px) scale(1.1); }
    66% { transform: translate(-15px, 20px) scale(0.9); }
}


.section-lines {
    position: absolute;
    inset: 0;
}

.section-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(183, 148, 244, 0.2), transparent);
    height: 1px;
    animation: lineShimmer 8s ease-in-out infinite;
}

.section-line.line-1 {
    top: 25%;
    left: 0;
    right: 0;
    animation-delay: 0s;
}

.section-line.line-2 {
    top: 50%;
    left: 0;
    right: 0;
    animation-delay: 2s;
}

.section-line.line-3 {
    top: 75%;
    left: 0;
    right: 0;
    animation-delay: 4s;
}

.section-line.line-4 {
    top: 35%;
    left: 0;
    right: 0;
    animation-delay: 6s;
    opacity: 0.5;
}

@keyframes lineShimmer {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.4; }
}


.bento-grid-lines {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(183, 148, 244, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(183, 148, 244, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 0%, transparent 70%);
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 0%, transparent 70%);
}


.bento-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.bento-glow-1 {
    top: 10%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(183, 148, 244, 0.15) 0%, transparent 70%);
    animation: glowFloat1 15s ease-in-out infinite;
}

.bento-glow-2 {
    bottom: 20%;
    right: 5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
    animation: glowFloat2 18s ease-in-out infinite;
}

@keyframes glowFloat1 {
    0%, 100% { transform: translate(0, 0); opacity: 0.3; }
    50% { transform: translate(30px, 20px); opacity: 0.5; }
}

@keyframes glowFloat2 {
    0%, 100% { transform: translate(0, 0); opacity: 0.25; }
    50% { transform: translate(-25px, -15px); opacity: 0.4; }
}


.bento-floating-particle {
    position: absolute;
    border-radius: 50%;
    background: var(--purple);
    opacity: 0.3;
    animation: particleFloatUp 20s linear infinite;
}

.fp-1 { width: 3px; height: 3px; left: 5%; animation-duration: 18s; animation-delay: 0s; }
.fp-2 { width: 2px; height: 2px; left: 15%; animation-duration: 22s; animation-delay: -3s; }
.fp-3 { width: 4px; height: 4px; left: 25%; animation-duration: 20s; animation-delay: -6s; }
.fp-4 { width: 2px; height: 2px; left: 45%; animation-duration: 25s; animation-delay: -9s; }
.fp-5 { width: 3px; height: 3px; left: 65%; animation-duration: 19s; animation-delay: -12s; }
.fp-6 { width: 2px; height: 2px; left: 75%; animation-duration: 23s; animation-delay: -15s; }
.fp-7 { width: 3px; height: 3px; left: 85%; animation-duration: 21s; animation-delay: -5s; }
.fp-8 { width: 2px; height: 2px; left: 92%; animation-duration: 24s; animation-delay: -10s; }

@keyframes particleFloatUp {
    0% { bottom: -10px; opacity: 0; }
    10% { opacity: 0.4; }
    90% { opacity: 0.2; }
    100% { bottom: 100%; opacity: 0; }
}


.galaxy-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1800px;
    height: 1800px;
    z-index: 0;
}


.galaxy-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1400px;
    height: 1400px;
    background: radial-gradient(
        circle,
        rgba(183, 148, 244, 0.7) 0%,
        rgba(159, 122, 234, 0.5) 15%,
        rgba(139, 92, 246, 0.35) 30%,
        rgba(128, 90, 213, 0.2) 45%,
        rgba(100, 70, 180, 0.1) 60%,
        transparent 80%
    );
    filter: blur(100px);
    animation: centerGlowPulse 5s ease-in-out infinite;
}

@keyframes centerGlowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.9; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}


.galaxy-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(214, 188, 250, 0.3) 25%,
        rgba(183, 148, 244, 0.2) 50%,
        transparent 75%
    );
    border-radius: 50%;
    filter: blur(30px);
}


.galaxy-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid;
}

.ring-1 {
    width: 400px;
    height: 400px;
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 40px rgba(183, 148, 244, 0.2);
}

.ring-2 {
    width: 700px;
    height: 700px;
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 0 35px rgba(183, 148, 244, 0.15);
}

.ring-3 {
    width: 1000px;
    height: 1000px;
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 30px rgba(183, 148, 244, 0.1);
}

.ring-4 {
    width: 1300px;
    height: 1300px;
    border-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 25px rgba(183, 148, 244, 0.05);
}


.galaxy-moon {
    display: none;
}


.left-decoration {
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 500px;
    z-index: 0;
    pointer-events: none;
}

.left-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(183, 148, 244, 0.4) 0%,
        rgba(139, 92, 246, 0.2) 30%,
        rgba(128, 90, 213, 0.1) 50%,
        transparent 70%
    );
    filter: blur(60px);
    animation: leftGlowPulse 6s ease-in-out infinite;
}

@keyframes leftGlowPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.9; transform: translate(-50%, -50%) scale(1.1); }
}

.left-hexagon {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 1px solid rgba(183, 148, 244, 0.3);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: rgba(183, 148, 244, 0.05);
    animation: hexFloat 8s ease-in-out infinite;
}

.hex-1 {
    top: 15%;
    left: 30%;
    animation-delay: 0s;
}

.hex-2 {
    top: 45%;
    left: 10%;
    width: 60px;
    height: 60px;
    animation-delay: -2s;
}

.hex-3 {
    top: 70%;
    left: 40%;
    width: 50px;
    height: 50px;
    animation-delay: -4s;
}

@keyframes hexFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.5; }
    50% { transform: translateY(-15px) rotate(10deg); opacity: 0.8; }
}

.left-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 400px;
}

.left-lines svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.left-line {
    opacity: 0.6;
}

.left-dot {
    opacity: 0.8;
    animation: dotPulse 3s ease-in-out infinite;
}

.left-dot:nth-child(7) { animation-delay: 0s; }
.left-dot:nth-child(8) { animation-delay: 0.5s; }
.left-dot:nth-child(9) { animation-delay: 1s; }
.left-dot:nth-child(10) { animation-delay: 1.5s; }

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


@media (max-width: 1400px) {
    .left-decoration {
        left: -100px;
        opacity: 0.5;
    }
}

@media (max-width: 1200px) {
    .left-decoration {
        display: none;
    }
}

.bento-new-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}


.bento-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.bento-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(183, 148, 244, 0.1);
    border: 1px solid rgba(183, 148, 244, 0.3);
    border-radius: 100px;
    margin-bottom: 24px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #b794f4;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: #b794f4;
    border-radius: 50%;
    animation: badgePulse 2s ease-in-out infinite;
}

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

.bento-section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.text-gradient-purple {
    background: linear-gradient(135deg, #b794f4 0%, #9f7aea 50%, #805ad5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bento-section-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}


.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.bento-card {
    background: rgba(15, 10, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.bento-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.bento-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
    margin: 0;
}


.card-accent-title {
    color: #b794f4 !important;
    font-size: 16px !important;
    margin-bottom: 20px !important;
}

.growth-chart {
    position: relative;
    height: 160px;
    margin-bottom: 16px;
}

.chart-grid {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 20px);
}

.chart-bars {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 6px;
}

.bar {
    flex: 1;
    background: linear-gradient(to top, #b794f4, #805ad5);
    border-radius: 4px 4px 0 0;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
}


.code-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px;
    opacity: 0.1;
    filter: blur(2px);
}

.code-bg code {
    display: block;
    font-family: 'Monaco', monospace;
    font-size: 11px;
    color: #fff;
    line-height: 1.6;
}

.preview-box {
    position: relative;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    width: 200px;
    height: 140px;
}

.preview-icon {
    width: 48px;
    height: 48px;
    color: #b794f4;
}

.preview-badges {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    gap: 6px;
}

.badge-small {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.badge-reviewed {
    background: rgba(39, 202, 64, 0.2);
    color: #27ca40;
}

.badge-new {
    background: rgba(183, 148, 244, 0.2);
    color: #b794f4;
}

.preview-info {
    position: absolute;
    bottom: 24px;
    left: 24px;
}

.preview-name {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.preview-time {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}


.curve-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(183, 148, 244, 0.08) 1px, transparent 1px);
    background-size: 20px 20px;
}

.growth-curve {
    width: 100%;
    height: 180px;
    margin-bottom: 16px;
}

.curve-dot {
    animation: dotPulse 2s ease-in-out infinite;
}

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


.action-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 20px 0;
}

.action-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: rgba(255, 255, 255, 0.6);
}

.action-btn:hover {
    border-color: #b794f4;
    color: #b794f4;
}

.action-btn svg {
    width: 24px;
    height: 24px;
}


.avatar-stack {
    display: flex;
    margin: 20px 0;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid;
    overflow: hidden;
    margin-left: -20px;
    position: relative;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar img {
    width: 100%;
    height: 100%;
}

.avatar-name {
    position: absolute;
    bottom: -8px;
    right: -8px;
    background: #b794f4;
    color: #fff;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 600;
}


.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.2s ease;
}

.tag:hover {
    border-color: #b794f4;
    background: rgba(183, 148, 244, 0.1);
    color: #b794f4;
}

.tag-emoji {
    font-size: 16px;
}

@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

@media (max-width: 600px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .avatar-stack {
        justify-content: center;
    }
}



.bento-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr 280px;
    grid-template-rows: auto auto auto;
    gap: 16px;
    margin-bottom: 40px;
}


.bento-card-v2 {
    background: rgba(12, 10, 20, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    
    opacity: 0;
    transform: translateY(30px) scale(0.97);
    transition: 
        opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.3s ease,
        box-shadow 0.3s ease;
    transform-style: preserve-3d;
    will-change: transform;
}

.bento-card-v2.animate-in {
    opacity: 1;
    transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateX(var(--tx, 0px)) translateY(var(--ty, 0px));
}

.bento-card-v2.animate-in:not(.is-hovering) {
    transition: 
        opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.bento-card-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        
        linear-gradient(0deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 32px 32px;
    border-radius: inherit;
    pointer-events: none;
    z-index: 1;
    opacity: 0.8;
}


.bento-card-v2 > * {
    position: relative;
    z-index: 2;
}


.bento-card-v2::after {
    content: '';
    position: absolute;
    inset: -20px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 180px 180px;
    opacity: 0.18;
    pointer-events: none;
    z-index: 50;
    
    filter: sepia(80%) saturate(150%) hue-rotate(220deg) brightness(0.9);
    
    -webkit-mask-image: radial-gradient(
        ellipse 85% 80% at 50% 50%,
        black 0%,
        black 15%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.2) 75%,
        transparent 100%
    );
    mask-image: radial-gradient(
        ellipse 85% 80% at 50% 50%,
        black 0%,
        black 15%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.2) 75%,
        transparent 100%
    );
}

.bento-card-v2:nth-child(1) { transition-delay: 0s; }
.bento-card-v2:nth-child(2) { transition-delay: 0.08s; }
.bento-card-v2:nth-child(3) { transition-delay: 0.16s; }
.bento-card-v2:nth-child(4) { transition-delay: 0.24s; }
.bento-card-v2:nth-child(5) { transition-delay: 0.32s; }
.bento-card-v2:nth-child(6) { transition-delay: 0.4s; }

.bento-card-v2:hover {
    border-color: rgba(183, 148, 244, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}


.bento-card-v2.is-hovering {
    transform: perspective(1000px)
                translateX(var(--tx, 0px))
                translateY(var(--ty, 0px))
                rotateX(var(--rx, 0deg))
                rotateY(var(--ry, 0deg))
                scale(1.02);
    transition: 
        border-color 0.3s ease,
        box-shadow 0.3s ease;
    will-change: transform;
}


.card-title-v2 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 6px 0;
}

.card-desc-v2 {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.card-desc-top-v2 {
    margin-bottom: 20px;
}


.card-destroyer-v2 {
    grid-column: 3;
    grid-row: 1 / 3;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    background: 
        radial-gradient(ellipse at 50% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 70%, rgba(88, 28, 135, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 90%, rgba(183, 148, 244, 0.06) 0%, transparent 40%),
        rgba(12, 10, 20, 0.45);
}

.destroyer-container {
    position: relative;
    flex: 1;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    padding-bottom: 15px;
    overflow: hidden;
}


.destroyer-cannon {
    position: relative;
    width: 60px;
    height: 70px;
    z-index: 10;
}

.cannon-base {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 28px;
    background: linear-gradient(to top, #1a1a2e, #2d2d44);
    border-radius: 8px 8px 0 0;
    border: 1px solid rgba(183, 148, 244, 0.3);
    box-shadow: 0 0 15px rgba(183, 148, 244, 0.2);
}

.cannon-barrel {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 40px;
    background: linear-gradient(to top, #2d2d44, #4a4a6a);
    border-radius: 4px 4px 2px 2px;
    border: 1px solid rgba(183, 148, 244, 0.4);
}

.cannon-muzzle {
    position: absolute;
    bottom: 58px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 8px;
    background: linear-gradient(to top, #4a4a6a, #5a5a7a);
    border-radius: 2px;
    border: 1px solid rgba(183, 148, 244, 0.5);
}

.cannon-glow {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, rgba(183, 148, 244, 0.5) 0%, transparent 60%);
    animation: cannonGlowPulse 0.5s ease-in-out infinite;
}

@keyframes cannonGlowPulse {
    0%, 100% { opacity: 0.4; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.3); }
}


.muzzle-flash {
    position: absolute;
    bottom: 65px;
    left: 50%;
    width: 20px;
    height: 30px;
    background: linear-gradient(to top, var(--purple), #fff, transparent);
    transform-origin: bottom center;
    opacity: 0;
    z-index: 11;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.mf-1 { animation: muzzleFlash 2s ease-out infinite; }
.mf-2 { animation: muzzleFlash 2s ease-out infinite -0.5s; }
.mf-3 { animation: muzzleFlash 2s ease-out infinite -1s; }

@keyframes muzzleFlash {
    0%, 36% { opacity: 0; transform: translateX(-50%) scaleY(0); }
    38% { opacity: 1; transform: translateX(-50%) scaleY(1); }
    42% { opacity: 0; transform: translateX(-50%) scaleY(0.3); }
    100% { opacity: 0; }
}


.virus {
    position: absolute;
    width: 20px;
    height: 20px;
    z-index: 5;
}

.virus-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: radial-gradient(circle at 30% 30%, #ff6b6b, #cc0000);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 0, 0, 0.6), inset 0 0 4px rgba(0,0,0,0.3);
}

.virus-spike {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ff4444;
    border-radius: 50%;
    box-shadow: 0 0 3px rgba(255, 68, 68, 0.8);
}

.virus-spike::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 6px;
    background: #ff6666;
    transform: translate(-50%, -100%);
    border-radius: 2px;
}

.vs-1 { top: -2px; left: 50%; transform: translateX(-50%); }
.vs-2 { top: 50%; right: -2px; transform: translateY(-50%) rotate(90deg); }
.vs-3 { bottom: -2px; left: 50%; transform: translateX(-50%) rotate(180deg); }
.vs-4 { top: 50%; left: -2px; transform: translateY(-50%) rotate(-90deg); }
.vs-5 { top: 2px; right: 2px; transform: rotate(45deg); }
.vs-6 { bottom: 2px; left: 2px; transform: rotate(-135deg); }

.v-1 { left: 50%; transform: translateX(-50%); animation: virusFall1 2s linear infinite; }
.v-2 { left: 50%; transform: translateX(-50%); animation: virusFall2 2s linear infinite -0.5s; }
.v-3 { left: 50%; transform: translateX(-50%); animation: virusFall3 2s linear infinite -1s; }
.v-4 { left: 50%; transform: translateX(-50%); animation: virusFall4 2s linear infinite -1.5s; }

@keyframes virusFall1 {
    0% { top: -25px; left: 20%; opacity: 0; transform: rotate(0deg); }
    10% { opacity: 1; }
    50% { top: 45%; opacity: 1; transform: rotate(180deg); }
    55% { opacity: 0; transform: rotate(200deg) scale(0); }
    100% { top: 45%; left: 20%; opacity: 0; }
}

@keyframes virusFall2 {
    0% { top: -25px; left: 50%; opacity: 0; transform: translateX(-50%) rotate(0deg); }
    10% { opacity: 1; }
    50% { top: 40%; opacity: 1; transform: translateX(-50%) rotate(180deg); }
    55% { opacity: 0; transform: translateX(-50%) rotate(200deg) scale(0); }
    100% { top: 40%; left: 50%; opacity: 0; }
}

@keyframes virusFall3 {
    0% { top: -25px; left: 75%; opacity: 0; transform: rotate(0deg); }
    10% { opacity: 1; }
    50% { top: 50%; opacity: 1; transform: rotate(180deg); }
    55% { opacity: 0; transform: rotate(200deg) scale(0); }
    100% { top: 50%; left: 75%; opacity: 0; }
}

@keyframes virusFall4 {
    0% { top: -25px; left: 35%; opacity: 0; transform: rotate(0deg); }
    10% { opacity: 1; }
    50% { top: 42%; opacity: 1; transform: rotate(180deg); }
    55% { opacity: 0; transform: rotate(200deg) scale(0); }
    100% { top: 42%; left: 35%; opacity: 0; }
}


.bullet {
    position: absolute;
    bottom: 70px;
    left: 50%;
    width: 4px;
    height: 12px;
    background: linear-gradient(to top, var(--purple), #fff);
    border-radius: 2px;
    opacity: 0;
    z-index: 9;
    box-shadow: 0 0 10px var(--purple), 0 0 20px var(--purple);
    transform-origin: bottom center;
}

.bullet::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 20px;
    background: linear-gradient(to bottom, rgba(183, 148, 244, 0.6), transparent);
}

.bullet-1 { animation: bulletShoot1 2s ease-out infinite; }
.bullet-2 { animation: bulletShoot2 2s ease-out infinite -0.5s; }
.bullet-3 { animation: bulletShoot3 2s ease-out infinite -1s; }
.bullet-4 { animation: bulletShoot4 2s ease-out infinite -1.5s; }

@keyframes bulletShoot1 {
    0%, 35% { opacity: 0; transform: translateX(-50%) rotate(-25deg) translateY(0); }
    38% { opacity: 1; transform: translateX(-50%) rotate(-25deg) translateY(0); }
    50% { opacity: 1; transform: translateX(-50%) rotate(-25deg) translateY(-120px); }
    52%, 100% { opacity: 0; transform: translateX(-50%) rotate(-25deg) translateY(-120px); }
}

@keyframes bulletShoot2 {
    0%, 35% { opacity: 0; transform: translateX(-50%) rotate(0deg) translateY(0); }
    38% { opacity: 1; transform: translateX(-50%) rotate(0deg) translateY(0); }
    50% { opacity: 1; transform: translateX(-50%) rotate(0deg) translateY(-100px); }
    52%, 100% { opacity: 0; transform: translateX(-50%) rotate(0deg) translateY(-100px); }
}

@keyframes bulletShoot3 {
    0%, 35% { opacity: 0; transform: translateX(-50%) rotate(25deg) translateY(0); }
    38% { opacity: 1; transform: translateX(-50%) rotate(25deg) translateY(0); }
    50% { opacity: 1; transform: translateX(-50%) rotate(25deg) translateY(-130px); }
    52%, 100% { opacity: 0; transform: translateX(-50%) rotate(25deg) translateY(-130px); }
}

@keyframes bulletShoot4 {
    0%, 35% { opacity: 0; transform: translateX(-50%) rotate(-12deg) translateY(0); }
    38% { opacity: 1; transform: translateX(-50%) rotate(-12deg) translateY(0); }
    50% { opacity: 1; transform: translateX(-50%) rotate(-12deg) translateY(-110px); }
    52%, 100% { opacity: 0; transform: translateX(-50%) rotate(-12deg) translateY(-110px); }
}


.virus-explosion {
    position: absolute;
    width: 30px;
    height: 30px;
    opacity: 0;
    z-index: 8;
}

.vexp-1 { left: 20%; animation: vexpAppear1 2s ease-out infinite; }
.vexp-2 { left: 50%; animation: vexpAppear2 2s ease-out infinite -0.5s; }
.vexp-3 { left: 75%; animation: vexpAppear3 2s ease-out infinite -1s; }

@keyframes vexpAppear1 {
    0%, 48% { top: 45%; opacity: 0; }
    50% { top: 45%; opacity: 1; }
    60% { top: 45%; opacity: 0; }
    100% { opacity: 0; }
}

@keyframes vexpAppear2 {
    0%, 48% { top: 40%; opacity: 0; transform: translateX(-50%); }
    50% { top: 40%; opacity: 1; transform: translateX(-50%); }
    60% { top: 40%; opacity: 0; transform: translateX(-50%); }
    100% { opacity: 0; }
}

@keyframes vexpAppear3 {
    0%, 48% { top: 50%; opacity: 0; }
    50% { top: 50%; opacity: 1; }
    60% { top: 50%; opacity: 0; }
    100% { opacity: 0; }
}

.exp-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border: 2px solid rgba(255, 100, 100, 0.8);
    border-radius: 50%;
    animation: ringExpand 0.4s ease-out infinite;
}

@keyframes ringExpand {
    0% { width: 10px; height: 10px; opacity: 1; }
    100% { width: 40px; height: 40px; opacity: 0; }
}

.exp-particle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    background: #ff6b6b;
    border-radius: 50%;
    box-shadow: 0 0 6px #ff6b6b;
}

.ep-1 { animation: particleFly 0.5s ease-out infinite; --px: -20px; --py: -15px; }
.ep-2 { animation: particleFly 0.5s ease-out infinite; --px: 20px; --py: -12px; }
.ep-3 { animation: particleFly 0.5s ease-out infinite; --px: -15px; --py: 18px; }
.ep-4 { animation: particleFly 0.5s ease-out infinite; --px: 18px; --py: 15px; }

@keyframes particleFly {
    0% { transform: translate(-50%, -50%); opacity: 1; }
    100% { transform: translate(calc(-50% + var(--px)), calc(-50% + var(--py))); opacity: 0; }
}


.destroyer-stats {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 15;
}

.destroy-counter {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.counter-value {
    font-size: 28px;
    font-weight: 700;
    color: #22c55e;
    text-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
    font-variant-numeric: tabular-nums;
}

.counter-value.flash {
    animation: counterFlash 0.3s ease-out;
}

@keyframes counterFlash {
    0% { transform: scale(1); color: #22c55e; }
    50% { transform: scale(1.15); color: #4ade80; text-shadow: 0 0 30px rgba(34, 197, 94, 0.8); }
    100% { transform: scale(1); color: #22c55e; }
}

.counter-label {
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}


.card-growth-v2 {
    grid-column: span 1;
    min-height: 320px;
}

.card-accent-title-v2 {
    font-size: 15px;
    font-weight: 600;
    color: var(--purple);
    margin: 0 0 20px 0;
}

.growth-chart-v2 {
    position: relative;
    height: 140px;
    margin-bottom: 16px;
}

.chart-grid-v2 {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.04) 0px,
        rgba(255, 255, 255, 0.04) 1px,
        transparent 1px,
        transparent 20px
    );
}

.chart-bars-v2 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.bar-v2 {
    width: 8px;
    height: var(--h);
    background: linear-gradient(to top, var(--purple-dim), var(--purple));
    border-radius: 4px 4px 0 0;
    flex-shrink: 0;
    transition: height 0.5s ease, transform 0.2s ease;
    animation: barGrow 1s ease-out forwards;
    animation-delay: calc(var(--i, 0) * 0.05s);
    transform-origin: bottom;
}

.bar-v2:nth-child(1) { --i: 1; }
.bar-v2:nth-child(2) { --i: 2; }
.bar-v2:nth-child(3) { --i: 3; }
.bar-v2:nth-child(4) { --i: 4; }
.bar-v2:nth-child(5) { --i: 5; }
.bar-v2:nth-child(6) { --i: 6; }
.bar-v2:nth-child(7) { --i: 7; }
.bar-v2:nth-child(8) { --i: 8; }
.bar-v2:nth-child(9) { --i: 9; }
.bar-v2:nth-child(10) { --i: 10; }
.bar-v2:nth-child(11) { --i: 11; }
.bar-v2:nth-child(12) { --i: 12; }
.bar-v2:nth-child(13) { --i: 13; }
.bar-v2:nth-child(14) { --i: 14; }
.bar-v2:nth-child(15) { --i: 15; }

@keyframes barGrow {
    from {
        transform: scaleY(0);
    }
    to {
        transform: scaleY(1);
    }
}

.card-growth-v2:hover .bar-v2 {
    filter: brightness(1.2);
}

.chart-labels-v2 {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-secondary);
    opacity: 0.6;
}

.card-description-v2 {
    font-size: 12px;
    color: var(--text-secondary);
    opacity: 0.5;
    margin-top: 16px;
    line-height: 1.5;
    letter-spacing: 0.2px;
}


.card-preview-v2 {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
}

.code-bg-v2 {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    opacity: 0.08;
    filter: blur(1.5px);
    pointer-events: none;
}

.code-bg-v2 code {
    display: block;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
    font-size: 10px;
    color: #fff;
    line-height: 1.8;
    white-space: nowrap;
}

.preview-box-v2 {
    position: relative;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 20px;
    width: 200px;
    height: 140px;
    margin-bottom: 20px;
    z-index: 1;
}

.preview-icon-v2 {
    width: 40px;
    height: 40px;
    color: var(--purple);
}

.preview-badges-v2 {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    gap: 6px;
}

.badge-small-v2 {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge-reviewed-v2 {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.badge-new-v2 {
    background: rgba(183, 148, 244, 0.15);
    color: var(--purple);
}

.preview-info-v2 {
    position: absolute;
    bottom: 16px;
    left: 20px;
}

.preview-name-v2 {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 2px 0;
}

.preview-time-v2 {
    font-size: 11px;
    color: var(--text-secondary);
    margin: 0;
}


.card-preview-v2 {
    min-height: 340px;
}


.card-curve-v2 {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
    min-height: 340px;
}

.curve-mesh-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0.6;
}

.mesh-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(183, 148, 244, 0.3), transparent);
    animation: meshFloat 8s ease-in-out infinite;
}

.mesh-line-1 {
    top: 30%;
    left: 0;
    right: 0;
    animation-delay: 0s;
}

.mesh-line-2 {
    top: 50%;
    left: 0;
    right: 0;
    animation-delay: -2s;
}

.mesh-line-3 {
    top: 70%;
    left: 0;
    right: 0;
    animation-delay: -4s;
}

@keyframes meshFloat {
    0%, 100% { transform: translateX(-20%) scaleX(0.8); opacity: 0.3; }
    50% { transform: translateX(20%) scaleX(1.2); opacity: 0.8; }
}

.mesh-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    width: 160px;
    height: 160px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(183, 148, 244, 0.18) 0%, transparent 75%);
    animation: meshGlowPulse 4s ease-in-out infinite;
}

@keyframes meshGlowPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.5); opacity: 0.8; }
}

.growth-curve-v2 {
    width: 100%;
    height: 180px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.curve-path-bg {
    opacity: 0.3;
}

.curve-path-v2 {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: drawCurve 2s ease-out forwards;
}

@keyframes drawCurve {
    to { stroke-dashoffset: 0; }
}

.curve-dot-v2 {
    animation: curveDotPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(183, 148, 244, 0.8));
}

.curve-dot-ring {
    opacity: 0.5;
    animation: dotRingExpand 2s ease-out infinite;
}

@keyframes dotRingExpand {
    0% { r: 10; opacity: 0.8; }
    100% { r: 32; opacity: 0; }
}

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

.curve-stats {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.curve-stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--purple);
    text-shadow: 0 0 20px rgba(183, 148, 244, 0.5);
}

.curve-stat-label {
    font-size: 12px;
    color: var(--text-secondary);
}


.card-actions-v2 {
    grid-column: span 1;
    min-height: 360px;
}

.neural-network {
    position: relative;
    width: 100%;
    height: 200px;
    margin-bottom: 16px;
}

.neural-connections {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.connection {
    stroke: rgba(183, 148, 244, 0.2);
    stroke-width: 1;
    stroke-dasharray: 4 4;
    animation: connectionPulse 3s ease-in-out infinite;
}

.connection:nth-child(odd) { animation-delay: -1.5s; }

@keyframes connectionPulse {
    0%, 100% { stroke-opacity: 0.2; }
    50% { stroke-opacity: 0.6; }
}

.neural-node {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(183, 148, 244, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    z-index: 2;
}

.neural-node svg {
    width: 20px;
    height: 20px;
}

.neural-node:hover {
    border-color: var(--purple);
    color: var(--purple);
    transform: scale(1.15);
    box-shadow: 0 0 20px rgba(183, 148, 244, 0.4);
}

.node-1 { top: 15%; left: 10%; animation: nodeFloat 4s ease-in-out infinite; }
.node-2 { top: 5%; left: 50%; transform: translateX(-50%); animation: nodeFloat 4s ease-in-out infinite -0.5s; }
.node-3 { top: 15%; right: 10%; animation: nodeFloat 4s ease-in-out infinite -1s; }
.node-4 { bottom: 15%; left: 10%; animation: nodeFloat 4s ease-in-out infinite -1.5s; }
.node-5 { bottom: 5%; left: 50%; transform: translateX(-50%); animation: nodeFloat 4s ease-in-out infinite -2s; }
.node-6 { bottom: 15%; right: 10%; animation: nodeFloat 4s ease-in-out infinite -2.5s; }

@keyframes nodeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.node-2, .node-5 {
    animation: nodeFloatCenter 4s ease-in-out infinite;
}

@keyframes nodeFloatCenter {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-5px); }
}

.neural-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    z-index: 3;
}

.core-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(183, 148, 244, 0.3);
}

.core-ring-1 {
    animation: coreRingSpin 8s linear infinite;
    border-style: dashed;
}

.core-ring-2 {
    inset: -8px;
    animation: coreRingSpin 12s linear infinite reverse;
    border-color: rgba(183, 148, 244, 0.15);
}

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

.core-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(183, 148, 244, 0.3), rgba(128, 90, 213, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 
        0 0 30px rgba(183, 148, 244, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    animation: corePulse 2s ease-in-out infinite;
}

.core-center svg {
    width: 24px;
    height: 24px;
}

@keyframes corePulse {
    0%, 100% { box-shadow: 0 0 30px rgba(183, 148, 244, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.1); }
    50% { box-shadow: 0 0 50px rgba(183, 148, 244, 0.6), inset 0 0 30px rgba(255, 255, 255, 0.2); }
}

.data-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--purple);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--purple);
}

.particle-1 {
    animation: particleFlow1 3s linear infinite;
}

.particle-2 {
    animation: particleFlow2 3s linear infinite -1s;
}

.particle-3 {
    animation: particleFlow3 3s linear infinite -2s;
}

@keyframes particleFlow1 {
    0% { top: 20%; left: 15%; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { top: 50%; left: 50%; opacity: 0; }
}

@keyframes particleFlow2 {
    0% { top: 80%; left: 15%; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { top: 50%; left: 50%; opacity: 0; }
}

@keyframes particleFlow3 {
    0% { top: 20%; right: 15%; left: auto; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { top: 50%; right: 50%; left: auto; opacity: 0; }
}


.card-team-v2 {
    grid-column: 1 / 3;
    min-height: 340px;
    overflow: hidden;
    background: 
        radial-gradient(ellipse at 50% 40%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(88, 28, 135, 0.06) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 20%, rgba(183, 148, 244, 0.05) 0%, transparent 40%),
        rgba(12, 10, 20, 0.45);
}


.shield-graph-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.6;
}

.graph-lines {
    width: 100%;
    height: 100%;
}

.pulse-graph-line {
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    animation: pulseLineAnim 4s ease-in-out infinite;
}

@keyframes pulseLineAnim {
    0% {
        stroke-dashoffset: 800;
        opacity: 0.2;
    }
    50% {
        stroke-dashoffset: 0;
        opacity: 0.5;
    }
    100% {
        stroke-dashoffset: -800;
        opacity: 0.2;
    }
}


.shield-noise {
    position: absolute;
    inset: -20px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 150px 150px;
    opacity: 0.25;
    pointer-events: none;
    z-index: 2;
    filter: sepia(100%) saturate(400%) hue-rotate(230deg) brightness(0.7);
    -webkit-mask-image: radial-gradient(
        ellipse 70% 65% at 50% 50%,
        black 0%,
        rgba(0, 0, 0, 0.5) 50%,
        transparent 100%
    );
    mask-image: radial-gradient(
        ellipse 70% 65% at 50% 50%,
        black 0%,
        rgba(0, 0, 0, 0.5) 50%,
        transparent 100%
    );
}


.shield-noise-glow {
    display: none;
}

.shield-arena {
    position: relative;
    width: 100%;
    height: 180px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


.space-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}


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

.space-star::after {
    content: '';
    position: absolute;
    inset: -1px;
    background: radial-gradient(circle, rgba(183, 148, 244, 0.8) 0%, transparent 70%);
    border-radius: 50%;
}

.star-1 { top: 10%; left: 8%; animation-delay: 0s; }
.star-2 { top: 15%; left: 85%; animation-delay: 0.5s; width: 3px; height: 3px; }
.star-3 { top: 25%; left: 20%; animation-delay: 1s; }
.star-4 { top: 30%; left: 75%; animation-delay: 1.5s; width: 1px; height: 1px; }
.star-5 { top: 60%; left: 5%; animation-delay: 2s; }
.star-6 { top: 70%; left: 90%; animation-delay: 0.3s; width: 3px; height: 3px; }
.star-7 { top: 80%; left: 15%; animation-delay: 0.8s; }
.star-8 { top: 85%; left: 70%; animation-delay: 1.3s; width: 1px; height: 1px; }
.star-9 { top: 45%; left: 3%; animation-delay: 1.8s; }
.star-10 { top: 50%; left: 95%; animation-delay: 2.3s; width: 2px; height: 2px; }
.star-11 { top: 5%; left: 50%; animation-delay: 0.7s; width: 1px; height: 1px; }
.star-12 { top: 92%; left: 45%; animation-delay: 1.2s; }

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}


.space-dust {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(183, 148, 244, 0.1) 0%, transparent 70%);
    animation: floatDust 8s ease-in-out infinite;
}

.dust-1 { top: 20%; left: 10%; animation-delay: 0s; width: 40px; height: 40px; }
.dust-2 { top: 60%; left: 80%; animation-delay: 2s; width: 25px; height: 25px; }
.dust-3 { top: 40%; left: 5%; animation-delay: 4s; width: 35px; height: 35px; }
.dust-4 { top: 75%; left: 25%; animation-delay: 1s; width: 20px; height: 20px; }
.dust-5 { top: 10%; left: 70%; animation-delay: 3s; width: 30px; height: 30px; }

@keyframes floatDust {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translate(10px, -10px) scale(1.2);
        opacity: 0.6;
    }
}


.destroyer-particles .star-1 { top: 5%; left: 15%; }
.destroyer-particles .star-2 { top: 12%; left: 80%; }
.destroyer-particles .star-3 { top: 20%; left: 10%; }
.destroyer-particles .star-4 { top: 28%; left: 85%; }
.destroyer-particles .star-5 { top: 40%; left: 5%; }
.destroyer-particles .star-6 { top: 50%; left: 92%; }
.destroyer-particles .star-7 { top: 65%; left: 8%; }
.destroyer-particles .star-8 { top: 75%; left: 88%; }

.destroyer-particles .dust-1 { top: 15%; left: 70%; }
.destroyer-particles .dust-2 { top: 45%; left: 10%; }
.destroyer-particles .dust-3 { top: 70%; left: 75%; }


.shield-orb {
    position: relative;
    width: 80px;
    height: 80px;
    z-index: 10;
}

.shield-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, 
        rgba(214, 188, 250, 0.9) 0%,
        rgba(183, 148, 244, 0.8) 40%,
        rgba(128, 90, 213, 0.6) 100%
    );
    box-shadow: 
        0 0 30px rgba(183, 148, 244, 0.6),
        0 0 60px rgba(183, 148, 244, 0.3),
        inset 0 0 15px rgba(255, 255, 255, 0.3);
    animation: shieldCorePulse 2s ease-in-out infinite;
}

@keyframes shieldCorePulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 30px rgba(183, 148, 244, 0.6), 0 0 60px rgba(183, 148, 244, 0.3), inset 0 0 15px rgba(255, 255, 255, 0.3);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 0 50px rgba(183, 148, 244, 0.8), 0 0 80px rgba(183, 148, 244, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.4);
    }
}

.shield-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 2px solid rgba(183, 148, 244, 0.4);
}

.shield-ring-1 {
    width: 60px;
    height: 60px;
    transform: translate(-50%, -50%);
    animation: shieldRingSpin 6s linear infinite;
}

.shield-ring-2 {
    width: 80px;
    height: 80px;
    transform: translate(-50%, -50%);
    border-color: rgba(183, 148, 244, 0.25);
    border-style: dashed;
    animation: shieldRingSpin 10s linear infinite reverse;
}

.shield-ring-3 {
    width: 100px;
    height: 100px;
    transform: translate(-50%, -50%);
    border-color: rgba(183, 148, 244, 0.15);
    animation: shieldRingSpin 15s linear infinite;
}

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

.shield-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(183, 148, 244, 0.6);
    animation: shieldPulseExpand 2s ease-out infinite;
}

@keyframes shieldPulseExpand {
    0% { 
        width: 40px;
        height: 40px;
        opacity: 0.8;
    }
    100% { 
        width: 140px;
        height: 140px;
        opacity: 0;
    }
}


.asteroid {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    box-shadow: 0 0 15px rgba(255, 107, 107, 0.6);
    z-index: 5;
}

.asteroid-trail {
    position: absolute;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, rgba(255, 107, 107, 0.6), transparent);
    border-radius: 3px;
    top: 50%;
    transform: translateY(-50%);
}

.asteroid-1 {
    animation: asteroidAttack1 3s ease-in infinite;
}

.asteroid-1 .asteroid-trail {
    right: 100%;
}

.asteroid-2 {
    animation: asteroidAttack2 3s ease-in infinite -0.75s;
}

.asteroid-2 .asteroid-trail {
    left: 100%;
    transform: translateY(-50%) rotate(180deg);
}

.asteroid-3 {
    animation: asteroidAttack3 3s ease-in infinite -1.5s;
}

.asteroid-3 .asteroid-trail {
    right: 100%;
    transform: translateY(-50%) rotate(-30deg);
}

.asteroid-4 {
    animation: asteroidAttack4 3s ease-in infinite -2.25s;
}

.asteroid-4 .asteroid-trail {
    left: 100%;
    transform: translateY(-50%) rotate(150deg);
}

@keyframes asteroidAttack1 {
    0% { left: -20px; top: 50%; opacity: 0; transform: translateY(-50%); }
    10% { opacity: 1; }
    45% { left: calc(50% - 60px); top: 50%; opacity: 1; transform: translateY(-50%); }
    50% { left: calc(50% - 55px); transform: translateY(-50%) scale(0.5); opacity: 0; }
    100% { left: calc(50% - 55px); opacity: 0; }
}

@keyframes asteroidAttack2 {
    0% { right: -20px; left: auto; top: 50%; opacity: 0; transform: translateY(-50%); }
    10% { opacity: 1; }
    45% { right: calc(50% - 60px); top: 50%; opacity: 1; transform: translateY(-50%); }
    50% { right: calc(50% - 55px); transform: translateY(-50%) scale(0.5); opacity: 0; }
    100% { right: calc(50% - 55px); opacity: 0; }
}

@keyframes asteroidAttack3 {
    0% { left: 10%; top: -20px; opacity: 0; }
    10% { opacity: 1; }
    45% { left: calc(50% - 40px); top: calc(50% - 40px); opacity: 1; }
    50% { transform: scale(0.5); opacity: 0; }
    100% { opacity: 0; }
}

@keyframes asteroidAttack4 {
    0% { right: 10%; left: auto; bottom: -20px; top: auto; opacity: 0; }
    10% { opacity: 1; }
    45% { right: calc(50% - 40px); bottom: calc(50% - 40px); opacity: 1; }
    50% { transform: scale(0.5); opacity: 0; }
    100% { opacity: 0; }
}


.deflected {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--purple);
    box-shadow: 0 0 12px var(--purple);
    opacity: 0;
    z-index: 6;
}

.deflected-1 {
    animation: deflect1 3s ease-out infinite;
}

.deflected-2 {
    animation: deflect2 3s ease-out infinite -0.75s;
}

.deflected-3 {
    animation: deflect3 3s ease-out infinite -1.5s;
}

.deflected-4 {
    animation: deflect4 3s ease-out infinite -2.25s;
}

@keyframes deflect1 {
    0%, 45% { left: 50%; top: 50%; opacity: 0; transform: translate(-50%, -50%); }
    50% { left: 50%; top: 50%; opacity: 1; transform: translate(-50%, -50%); }
    100% { left: -10%; top: 30%; opacity: 0; transform: translate(-50%, -50%); }
}

@keyframes deflect2 {
    0%, 45% { left: 50%; top: 50%; opacity: 0; transform: translate(-50%, -50%); }
    50% { left: 50%; top: 50%; opacity: 1; transform: translate(-50%, -50%); }
    100% { left: 110%; top: 70%; opacity: 0; transform: translate(-50%, -50%); }
}

@keyframes deflect3 {
    0%, 45% { left: 50%; top: 50%; opacity: 0; transform: translate(-50%, -50%); }
    50% { left: 50%; top: 50%; opacity: 1; transform: translate(-50%, -50%); }
    100% { left: 20%; top: -10%; opacity: 0; transform: translate(-50%, -50%); }
}

@keyframes deflect4 {
    0%, 45% { left: 50%; top: 50%; opacity: 0; transform: translate(-50%, -50%); }
    50% { left: 50%; top: 50%; opacity: 1; transform: translate(-50%, -50%); }
    100% { left: 80%; top: 110%; opacity: 0; transform: translate(-50%, -50%); }
}


.shield-stats {
    position: absolute;
    bottom: 10px;
    right: 20px;
    text-align: right;
}

.shield-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-num {
    font-size: 24px;
    font-weight: 700;
    color: #22c55e;
    text-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
}

.stat-text {
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.bento-text-block {
    grid-column: 3;
    grid-row: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 10px;
}

.bento-text-header {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.bento-text-paragraph {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0 0 16px 0;
}

.bento-text-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--purple) 0%, #805ad5 100%);
    border-radius: 10px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

.bento-text-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(183, 148, 244, 0.4);
}

.bento-text-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.bento-text-btn:hover svg {
    transform: translateX(4px);
}


.feature-tags-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 14px;
    justify-content: center;
    margin-top: 30px;
    padding: 20px 0;
}


.tag-glass {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.tag-glass-bg,
.tag-glass-shine {
    display: none;
}


.tag-icon {
    width: 15px;
    height: 15px;
    stroke: rgba(255, 255, 255, 0.35);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.tag-glass span {
    position: relative;
    z-index: 2;
    letter-spacing: 0.2px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}


.tag-glass::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(
        circle at calc(var(--x, 50%) * 0.5 + 25%) calc(var(--y, 50%) * 0.5 + 25%),
        rgba(183, 148, 244, 0.5) 0%,
        rgba(139, 92, 246, 0.3) 20%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
    z-index: 0;
}


.tag-glass::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(183, 148, 244, 0.6) 25%,
        rgba(139, 92, 246, 0.8) 50%,
        rgba(183, 148, 244, 0.6) 75%,
        transparent 100%
    );
    -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);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    background-size: 200% 100%;
    background-position: 100% 0;
    opacity: 0;
    transition: opacity 0.4s ease, background-position 0.6s ease;
}


.tag-glass:hover {
    color: #fff;
    border-color: transparent;
    text-shadow: 0 0 20px rgba(183, 148, 244, 0.5);
    z-index: 10;
}

.tag-glass:hover::before {
    opacity: 1;
}

.tag-glass:hover::after {
    opacity: 1;
    background-position: 0 0;
}

.tag-glass:hover .tag-icon {
    stroke: var(--purple);
    filter: drop-shadow(0 0 8px rgba(183, 148, 244, 0.8));
}

.tag-glass:hover span {
    text-shadow: 0 0 15px rgba(183, 148, 244, 0.6);
}


.tag-glass:active {
    opacity: 0.9;
    transition: all 0.1s ease;
}


@media (max-width: 1100px) {
    .bento-grid-v2 {
        
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    
    .bento-grid-v2 > * {
        width: 100%;
    }
    
    .card-destroyer-v2 {
        grid-column: 1;
        grid-row: auto;
        min-height: 340px;
    }
    
    .destroyer-container {
        min-height: 240px;
    }
    
    .card-team-v2 {
        grid-column: 1;
    }
    
    
    .bento-text-block {
        text-align: center;
        align-items: center;
    }
    
    .bento-text-btn {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 700px) {
    .card-destroyer-v2 {
        min-height: 350px;
    }
    
    .destroyer-container {
        min-height: 250px;
    }
    
    .avatar-stack-v2 {
        justify-content: center;
    }
    
    .preview-box-v2 {
        width: 100%;
        max-width: 200px;
    }
    
    .action-grid-v2 {
        justify-items: center;
    }
    
    
    .feature-tags-v2 {
        gap: 10px;
    }
    
    .tag-glass {
        width: calc(50% - 8px);
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .bento-card-v2 {
        padding: 20px;
    }
    
    .avatar-v2 {
        width: 60px;
        height: 60px;
        margin-left: -15px;
    }
    
    .action-btn-v2 {
        width: 50px;
        height: 50px;
    }
    
    .action-btn-v2 svg {
        width: 18px;
        height: 18px;
    }
}


.card-title {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-top: auto;
    margin-bottom: 8px;
}

.card-title-top {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.card-desc {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

.card-desc-top {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}


.ai-indicator {
    width: 8px;
    height: 8px;
    background: #b794f4;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #b794f4;
}


.mockup-toolbar {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    margin-bottom: 16px;
}

.toolbar-dropdown {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
}

.toolbar-dropdown svg {
    opacity: 0.6;
}

.toolbar-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 8px;
}

.toolbar-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.toolbar-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.toolbar-btn-ai {
    width: auto;
    padding: 6px 12px;
    gap: 8px;
    background: rgba(183, 148, 244, 0.15);
    border: 1px solid rgba(183, 148, 244, 0.3);
    color: #b794f4;
    font-size: 12px;
    font-weight: 500;
    margin-left: auto;
}

.toolbar-btn-ai:hover {
    background: rgba(183, 148, 244, 0.25);
}


.mockup-content {
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    margin-bottom: 20px;
    flex: 1;
}

.mockup-content p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.highlight-bracket {
    color: #b794f4;
}

.highlight-text {
    color: #f9a8d4;
    background: rgba(249, 168, 212, 0.1);
    padding: 2px 4px;
    border-radius: 3px;
}


.mockup-dropdown {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.dropdown-input {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dropdown-placeholder {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.dropdown-options {
    padding: 8px;
}

.dropdown-option {
    padding: 10px 14px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.dropdown-option:hover {
    background: rgba(255, 255, 255, 0.06);
}


.mockup-generator {
    margin-top: 16px;
}

.gen-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.gen-tab {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.2s ease;
}

.gen-tab:hover {
    background: rgba(255, 255, 255, 0.06);
}

.gen-tab-active {
    background: rgba(183, 148, 244, 0.15);
    border-color: rgba(183, 148, 244, 0.3);
    color: #b794f4;
}

.gen-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.gen-input-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: none;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
}

.gen-preview {
    display: flex;
    gap: 10px;
}

.gen-preview-item {
    flex: 1;
    height: 60px;
    border-radius: 8px;
}

.gen-gradient-1 {
    background: linear-gradient(135deg, #f97316 0%, #ec4899 50%, #8b5cf6 100%);
}

.gen-gradient-2 {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 50%, #3b82f6 100%);
}


.bento-orb-layout {
    position: relative;
    min-height: 280px;
}

.orb-floating-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px;
    font-size: 11px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.25);
    pointer-events: none;
}

.orb-action-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -80px);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    font-size: 13px;
    color: #fff;
    cursor: pointer;
    z-index: 2;
}

.security-orb {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 140px;
}

.orb-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, transparent 70%);
    animation: orbPulse 3s ease-in-out infinite;
}

.orb-ring {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50%;
}

.orb-ring-1 {
    animation: orbRing1 4s linear infinite;
}

.orb-ring-2 {
    inset: 15px;
    animation: orbRing2 3s linear infinite reverse;
}

.orb-core {
    position: absolute;
    inset: 30px;
    background: radial-gradient(circle, #a78bfa 0%, #7c3aed 50%, #5b21b6 100%);
    border-radius: 50%;
    box-shadow:
        0 0 40px rgba(167, 139, 250, 0.6),
        0 0 80px rgba(167, 139, 250, 0.4),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
}

@keyframes orbPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

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

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


.bento-split-layout {
    display: flex;
    gap: 16px;
}

.mockup-context {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 8px;
}

.context-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.context-option:hover {
    background: rgba(255, 255, 255, 0.06);
}

.context-option svg {
    opacity: 0.6;
}

.context-shortcut {
    margin-left: auto;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

.context-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 6px 0;
}

.context-option-danger {
    color: #f87171;
}

.context-option-danger svg {
    color: #f87171;
}


.info-card {
    flex: 1;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
}

.info-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.info-text {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

.text-purple {
    color: #b794f4;
}


.mini-shield {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    padding: 20px;
}

.mini-shield svg {
    width: 70px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(183, 148, 244, 0.4));
}


[data-theme="light"] .bento-new-card {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .bento-new-card:hover {
    border-color: rgba(0, 0, 0, 0.12);
}

[data-theme="light"] .card-title,
[data-theme="light"] .card-title-top,
[data-theme="light"] .info-title {
    color: #1a1a2e;
}

[data-theme="light"] .card-desc,
[data-theme="light"] .card-desc-top,
[data-theme="light"] .mockup-content p,
[data-theme="light"] .dropdown-placeholder,
[data-theme="light"] .dropdown-option,
[data-theme="light"] .gen-tab,
[data-theme="light"] .gen-input,
[data-theme="light"] .context-option,
[data-theme="light"] .info-text {
    color: rgba(0, 0, 0, 0.6);
}

[data-theme="light"] .toolbar-dropdown,
[data-theme="light"] .toolbar-btn {
    color: rgba(0, 0, 0, 0.7);
}

[data-theme="light"] .mockup-toolbar,
[data-theme="light"] .mockup-content,
[data-theme="light"] .mockup-dropdown,
[data-theme="light"] .mockup-context,
[data-theme="light"] .gen-tabs,
[data-theme="light"] .gen-input,
[data-theme="light"] .info-card {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .bento-header-badge {
    background: rgba(183, 148, 244, 0.1);
    border-color: rgba(183, 148, 244, 0.3);
}

[data-theme="light"] .orb-action-btn {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    color: #1a1a2e;
}


@media (max-width: 900px) {
    .bento-new-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bento-new-card--tall {
        grid-row: span 1;
        grid-column: span 2;
    }

    .bento-section-title {
        font-size: 32px;
    }

    .bento-split-layout {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .bento-new-grid {
        grid-template-columns: 1fr;
    }

    .bento-new-card--tall,
    .bento-new-card--orb {
        grid-column: span 1;
    }

    .section-bento-new {
        padding: 60px 0;
    }

    .bento-new-card {
        padding: 20px;
    }

    .bento-section-title {
        font-size: 26px;
    }

    .mockup-toolbar {
        flex-wrap: wrap;
    }

    .gen-tabs {
        flex-wrap: wrap;
    }
}

