        :root {
            --bg-primary: #0B0E14;
            --bg-secondary: #111827;
            --bg-tertiary: #1F2937;
            --green-accent: #00E599;
            --green-gradient: linear-gradient(135deg, #00E599 0%, #00C487 100%);
            --blue-accent: #3B82F6;
            --text-primary: #FFFFFF;
            --text-secondary: #9CA3AF;
            --text-muted: #6B7280;
            --border: #374151;
            --success: #10B981;
            --warning: #F59E0B;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Space Grotesk', sans-serif;
            line-height: 1.2;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 80px;
            background: rgba(11, 14, 20, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            z-index: 1000;
            border-bottom: 1px solid var(--border);
        }

        .nav-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: var(--green-gradient);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            font-size: 18px;
            color: #000;
        }

        .logo-text {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 600;
            font-size: 20px;
        }

        .nav-links {
            display: flex;
            gap: 40px;
        }

        .nav-links a {
            color: var(--text-secondary);
            font-size: 15px;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--text-primary);
        }

        .nav-ctas {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .nav-login {
            color: var(--text-secondary);
            font-size: 15px;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-login:hover {
            color: var(--text-primary);
        }

        .nav-discord {
            color: var(--text-secondary);
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-discord:hover {
            color: #5865F2;
        }

        .nav-twitter {
            color: var(--text-secondary);
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-twitter:hover {
            color: #000000;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 24px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-primary {
            background: var(--green-gradient);
            color: #000;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 229, 153, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-primary);
            border: 1px solid var(--border);
        }

        .btn-secondary:hover {
            border-color: var(--green-accent);
            color: var(--green-accent);
        }

        .btn-large {
            padding: 16px 32px;
            font-size: 16px;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            cursor: pointer;
            padding: 8px;
        }

        .mobile-menu-btn svg {
            width: 24px;
            height: 24px;
        }

        /* Hero Section */
        .hero {
            padding: 160px 0 100px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(0, 229, 153, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .hero-motto {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0, 229, 153, 0.1);
            border: 1px solid rgba(0, 229, 153, 0.3);
            border-radius: 100px;
            padding: 6px 18px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--green-accent);
            margin-bottom: 24px;
        }

        .hero h1 {
            font-size: clamp(40px, 6vw, 64px);
            font-weight: 700;
            margin-bottom: 24px;
            line-height: 1.1;
        }

        .hero h1 span {
            background: var(--green-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 18px;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto 40px;
            line-height: 1.7;
        }

        .hero-ctas {
            display: flex;
            gap: 16px;
            justify-content: center;
            margin-bottom: 60px;
            flex-wrap: wrap;
        }

        .hero-dashboard {
            position: relative;
            max-width: 1120px;
            margin: 0 auto;
        }

        .hero-dashboard img {
            width: 100%;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow:
                0 0 0 1px rgba(0, 0, 0, 0.3),
                0 25px 80px rgba(0, 0, 0, 0.6),
                0 0 150px rgba(0, 229, 153, 0.15),
                0 0 60px rgba(0, 229, 153, 0.1);
        }

        .hero-dashboard::before {
            content: '';
            position: absolute;
            inset: -50px;
            background: var(--green-gradient);
            opacity: 0.25;
            filter: blur(80px);
            border-radius: 30px;
            z-index: -1;
        }

        .hero-dashboard::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 16px;
            pointer-events: none;
            background: linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.1) 0%,
                transparent 15%,
                transparent 85%,
                rgba(0, 0, 0, 0.25) 100%
            );
        }

        .hero-proof {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 24px;
            color: var(--text-muted);
            font-size: 14px;
            margin-top: 40px;
        }

        .hero-proof-divider {
            width: 1px;
            height: 16px;
            background: var(--border);
        }

        /* Stats Ribbon */
        .stats {
            background: var(--bg-secondary);
            padding: 48px 0;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            text-align: center;
        }

        .stat-item h3 {
            font-size: 48px;
            font-weight: 700;
            color: var(--green-accent);
            margin-bottom: 8px;
        }

        .stat-item p {
            color: var(--text-secondary);
            font-size: 16px;
        }

        /* Live Performance Section */
        .live-performance {
            padding: 100px 0;
            background: var(--bg-primary);
        }

        .live-performance .section-header {
            margin-bottom: 48px;
        }

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

        .performance-card {
            position: relative;
        }

        .performance-card img {
            width: 100%;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow:
                0 0 0 1px rgba(0, 0, 0, 0.3),
                0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 100px rgba(0, 229, 153, 0.1);
        }

        .performance-card::before {
            content: '';
            position: absolute;
            inset: -40px;
            background: var(--green-gradient);
            opacity: 0.15;
            filter: blur(60px);
            border-radius: 24px;
            z-index: -1;
        }

        .live-indicator {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--green-accent);
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 12px;
        }

        .live-dot {
            width: 8px;
            height: 8px;
            background: var(--green-accent);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

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

        /* Features Section */
        .features {
            padding: 120px 0;
        }

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

        .section-header h2 {
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 600;
            margin-bottom: 16px;
        }

        .section-header p {
            color: var(--text-secondary);
            font-size: 18px;
        }

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

        .feature-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 32px;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            border-color: var(--green-accent);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            background: rgba(0, 229, 153, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .feature-icon svg {
            width: 28px;
            height: 28px;
            color: var(--green-accent);
        }

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

        .feature-card p {
            color: var(--text-secondary);
            font-size: 15px;
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .feature-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--green-accent);
            font-size: 15px;
            font-weight: 500;
            transition: gap 0.3s ease;
        }

        .feature-link:hover {
            gap: 12px;
        }

        .feature-link svg {
            width: 16px;
            height: 16px;
        }

        /* Deep Dive Sections */
        .deep-dive {
            padding: 100px 0;
        }

        .deep-dive-section {
            display: grid;
            grid-template-columns: 38% 62%;
            gap: 40px;
            align-items: center;
            margin-bottom: 120px;
        }

        .deep-dive-section:nth-child(even) {
            direction: rtl;
        }

        .deep-dive-section:nth-child(even) > * {
            direction: ltr;
        }

        .deep-dive-content h2 {
            font-size: clamp(28px, 3vw, 40px);
            font-weight: 600;
            margin-bottom: 20px;
        }

        .deep-dive-content p {
            color: var(--text-secondary);
            font-size: 17px;
            line-height: 1.8;
            margin-bottom: 32px;
        }

        .deep-dive-image {
            position: relative;
        }

        .deep-dive-image img {
            width: 100%;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow:
                0 0 0 1px rgba(0, 0, 0, 0.3),
                0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 100px rgba(0, 229, 153, 0.1);
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
        }

        .deep-dive-image::before {
            content: '';
            position: absolute;
            inset: -40px;
            background: var(--green-gradient);
            opacity: 0.2;
            filter: blur(60px);
            border-radius: 24px;
            z-index: -1;
        }

        .deep-dive-image::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 16px;
            pointer-events: none;
            background: linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.1) 0%,
                transparent 20%,
                transparent 80%,
                rgba(0, 0, 0, 0.2) 100%
            );
        }

        /* Community Section */
        .community {
            padding: 120px 0;
            background: var(--bg-secondary);
        }

        .community-content {
            display: grid;
            grid-template-columns: 40% 60%;
            gap: 40px;
            align-items: center;
        }

        .community-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .community-stat {
            background: var(--bg-primary);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 24px;
            text-align: center;
        }

        .community-stat h4 {
            font-size: 32px;
            font-weight: 700;
            color: var(--green-accent);
            margin-bottom: 4px;
        }

        .community-stat p {
            color: var(--text-secondary);
            font-size: 14px;
        }

        .community-features {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        .community-feature h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--text-primary);
        }

        .community-feature p {
            color: var(--text-secondary);
            font-size: 15px;
            line-height: 1.7;
        }

        .community-image {
            position: relative;
        }

        .community-image img {
            width: 100%;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow:
                0 0 0 1px rgba(0, 0, 0, 0.3),
                0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 100px rgba(0, 229, 153, 0.1);
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
        }

        .community-image::before {
            content: '';
            position: absolute;
            inset: -40px;
            background: var(--green-gradient);
            opacity: 0.2;
            filter: blur(60px);
            border-radius: 24px;
            z-index: -1;
        }

        .community-image::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 16px;
            pointer-events: none;
            background: linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.1) 0%,
                transparent 20%,
                transparent 80%,
                rgba(0, 0, 0, 0.2) 100%
            );
        }

        /* Platforms Section - Scrolling Banner */
        .platforms {
            padding: 60px 0;
            background: transparent;
            overflow: hidden;
        }

        .platforms-grid {
            display: flex;
            gap: 32px;
            margin-bottom: 0;
            animation: scroll-logos 30s linear infinite;
        }

        .platforms-grid:hover {
            animation-play-state: paused;
        }

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

        .platform-logo {
            width: 160px;
            height: 70px;
            background: rgba(17, 24, 39, 0.8);
            border: 1px solid rgba(55, 65, 81, 0.3);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

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

        .platform-logo img {
            background: transparent !important;
        }

        .platform-logo span {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 600;
            font-size: 16px;
            color: var(--text-secondary);
        }

        .platforms h3 {
            text-align: center;
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .platforms h3:last-of-type {
            margin-top: 48px;
        }

        /* Coming Soon overlay for platform logos */
        .platform-logo.coming-soon {
            position: relative;
        }

        .platform-logo.coming-soon img {
            opacity: 0.35;
        }

        .platform-logo.coming-soon::after {
            content: 'Coming Soon';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 10px;
            font-weight: 700;
            color: #00E599;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            pointer-events: none;
        }

        /* Pricing Section */
        .pricing {
            padding: 120px 0;
            background: var(--bg-secondary);
        }

        .pricing-card {
            max-width: 520px;
            margin: 0 auto;
            background: var(--bg-primary);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 48px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--green-gradient);
        }

        .pricing-badge {
            display: inline-block;
            background: rgba(0, 229, 153, 0.1);
            color: var(--green-accent);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 24px;
        }

        .pricing-card h3 {
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .pricing-price {
            margin-bottom: 8px;
        }

        .pricing-price .original {
            font-size: 24px;
            color: var(--text-muted);
            text-decoration: line-through;
            margin-right: 12px;
        }

        .pricing-price .current {
            font-size: 56px;
            font-weight: 700;
            color: var(--green-accent);
        }

        .pricing-price .period {
            font-size: 18px;
            color: var(--text-secondary);
        }

        .pricing-anchor {
            color: var(--text-muted);
            font-size: 14px;
            margin-bottom: 32px;
        }

        .pricing-features {
            text-align: left;
            margin-bottom: 32px;
        }

        .pricing-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
            color: var(--text-secondary);
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-features svg {
            width: 20px;
            height: 20px;
            color: var(--green-accent);
            flex-shrink: 0;
        }

        /* Testimonials */
        .testimonials {
            padding: 120px 0;
        }

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

        .testimonial-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 32px;
            position: relative;
        }

        .testimonial-quote {
            position: absolute;
            top: 24px;
            right: 24px;
            font-size: 64px;
            font-family: Georgia, serif;
            color: var(--green-accent);
            opacity: 0.3;
            line-height: 1;
        }

        .testimonial-card p {
            color: var(--text-secondary);
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
        }

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

        .testimonial-avatar {
            width: 48px;
            height: 48px;
            background: var(--green-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: #000;
        }

        .testimonial-info h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 2px;
        }

        .testimonial-info p {
            font-size: 14px;
            color: var(--text-muted);
            margin: 0;
        }

        /* FAQ Section */
        .faq {
            padding: 120px 0;
            background: var(--bg-secondary);
        }

        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid var(--border);
        }

        .faq-question {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px 0;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 18px;
            font-weight: 500;
            font-family: 'Space Grotesk', sans-serif;
            cursor: pointer;
            text-align: left;
        }

        .faq-question svg {
            width: 20px;
            height: 20px;
            color: var(--text-muted);
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-question svg {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-answer p {
            color: var(--text-secondary);
            font-size: 16px;
            padding-bottom: 24px;
            line-height: 1.7;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        /* Final CTA */
        .cta {
            padding: 120px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 229, 153, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .cta h2 {
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 600;
            margin-bottom: 16px;
        }

        .cta p {
            color: var(--text-secondary);
            font-size: 18px;
            margin-bottom: 40px;
        }

        .cta-ctas {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-discord {
            background: #5865F2;
            color: white;
        }

        .btn-discord:hover {
            background: #4752C4;
            transform: translateY(-2px);
        }

        /* Footer */
        .footer {
            padding: 80px 0 40px;
            background: var(--bg-secondary);
            border-top: 1px solid var(--border);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr repeat(4, 1fr);
            gap: 48px;
            margin-bottom: 64px;
        }

        .footer-brand p {
            color: var(--text-secondary);
            font-size: 15px;
            margin-top: 16px;
            line-height: 1.7;
        }

        .footer-col h4 {
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--text-muted);
            margin-bottom: 20px;
        }

        .footer-col a {
            display: block;
            color: var(--text-secondary);
            font-size: 15px;
            padding: 8px 0;
            transition: color 0.3s ease;
        }

        .footer-col a:hover {
            color: var(--green-accent);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 32px;
            border-top: 1px solid var(--border);
        }

        .footer-bottom p {
            color: var(--text-muted);
            font-size: 14px;
        }

        .footer-socials {
            display: flex;
            gap: 16px;
        }

        .footer-socials a {
            width: 40px;
            height: 40px;
            background: var(--bg-tertiary);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            transition: all 0.3s ease;
        }

        .footer-socials a:hover {
            background: var(--green-accent);
            color: #000;
        }

        .footer-socials svg {
            width: 20px;
            height: 20px;
        }

        /* Mobile Responsive */
        @media (max-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .deep-dive-section {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .deep-dive-section:nth-child(even) {
                direction: ltr;
            }

            .community-content {
                grid-template-columns: 1fr;
            }

            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-links, .nav-ctas {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero {
                padding: 120px 0 60px;
            }

            .hero-ctas {
                flex-direction: column;
                align-items: center;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .stat-item h3 {
                font-size: 36px;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .pricing-card {
                padding: 32px 24px;
            }

            .pricing-price .current {
                font-size: 44px;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 32px;
            }

            .footer-brand {
                grid-column: span 2;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 24px;
                text-align: center;
            }
        }

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

        .animate-fade-in {
            animation: fadeInUp 0.6s ease forwards;
        }

        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }

        /* Plexus Canvas Background */
        #plexus-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
        }
