/*

Apogears

Apogears

*/

@charset "utf-8";
/* CSS Document */

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

        :root {
            --primary-grey: #e5e7eb;
            --primary-orange: #f97316;
            --primary-purple: #7c3aed;
            --secondary-amber: #fbbf24;
            --dark-bg: #1a0b2e;
            --darker-bg: #0f051a;
            --card-bg: rgba(229, 231, 235, 0.03);
            --border-color: rgba(229, 231, 235, 0.2);
            --text-primary: #ffffff;
            --text-secondary: #a1a1aa;
            --primary-cyan: #00ffff;
            --primary-pink: #ff00ff;
            --tile-gap: 1.5rem;
            --nav-scroll-gap: 18px;
        }

        html,
        body {
            min-height: 100%;
            overflow-y: auto;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: calc(78px + var(--nav-scroll-gap));
        }

        body {
            font-family: 'JetBrains Mono', 'Fira Code', monospace;
            background: var(--darker-bg);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        :target {
            scroll-margin-top: calc(78px + var(--nav-scroll-gap));
        }

        /* Enhanced Cyberpunk Background */
        .cyber-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--darker-bg);
            overflow: hidden;
            z-index: -5;
        }

        /* Animated gradient background */
        .cyber-gradient {
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 0, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 60% 20%, rgba(249, 115, 22, 0.15) 0%, transparent 50%);
            animation: gradientRotate 30s linear infinite;
            filter: blur(40px);
        }

        @keyframes gradientRotate {
            0% { transform: rotate(0deg) scale(1); }
            50% { transform: rotate(180deg) scale(1.2); }
            100% { transform: rotate(360deg) scale(1); }
        }

        /* Matrix rain effect */
        .matrix-rain {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            opacity: 0.15;
        }

        .matrix-column {
            position: absolute;
            top: -100vh;
            font-family: 'Courier New', monospace;
            font-size: 14px;
            color: var(--primary-cyan);
            text-shadow: 0 0 5px var(--primary-cyan);
            animation: matrixFall linear infinite;
            writing-mode: vertical-rl;
            text-orientation: upright;
            background: linear-gradient(to bottom, transparent 0%, var(--primary-cyan) 50%, transparent 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .matrix-column:nth-child(3n) {
            color: var(--primary-pink);
            text-shadow: 0 0 5px var(--primary-pink);
            background: linear-gradient(to bottom, transparent 0%, var(--primary-pink) 50%, transparent 100%);
        }

        .matrix-column:nth-child(5n) {
            color: var(--primary-purple);
            text-shadow: 0 0 5px var(--primary-purple);
            background: linear-gradient(to bottom, transparent 0%, var(--primary-purple) 50%, transparent 100%);
        }

        @keyframes matrixFall {
            0% { transform: translateY(0); }
            100% { transform: translateY(200vh); }
        }

        /* Animated grid overlay */
        .grid-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
        }

        .grid-lines {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(0, 255, 255, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 255, 255, 0.05) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
        }

        .grid-glow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(255, 0, 255, 0.03) 2px, transparent 2px),
                linear-gradient(90deg, rgba(255, 0, 255, 0.03) 2px, transparent 2px);
            background-size: 100px 100px;
            animation: gridMove 30s linear infinite reverse;
        }

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

        /* Floating particles */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -3;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--primary-cyan);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--primary-cyan);
            animation: float 20s infinite;
            opacity: 0;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .particle:nth-child(odd) {
            background: var(--primary-pink);
            box-shadow: 0 0 10px var(--primary-pink);
            animation-duration: 25s;
        }

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

        /* Glowing orbs */
        .orb {
            position: fixed;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.5;
            animation: orbFloat 20s ease-in-out infinite;
            pointer-events: none;
            z-index: -4;
        }

        .orb1 {
            width: 300px;
            height: 300px;
            background: var(--primary-cyan);
            top: 10%;
            left: -150px;
            animation-delay: 0s;
        }

        .orb2 {
            width: 400px;
            height: 400px;
            background: var(--primary-pink);
            bottom: 10%;
            right: -200px;
            animation-delay: 5s;
        }

        .orb3 {
            width: 250px;
            height: 250px;
            background: var(--primary-purple);
            top: 50%;
            left: 50%;
            animation-delay: 10s;
        }

        @keyframes orbFloat {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            33% {
                transform: translate(100px, -50px) scale(1.1);
            }
            66% {
                transform: translate(-50px, 100px) scale(0.9);
            }
        }

        /* Scanlines effect */
        .scanlines {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .scanlines::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                transparent 0%,
                rgba(0, 255, 255, 0.03) 50%,
                transparent 100%
            );
            background-size: 100% 4px;
            animation: scanline 8s linear infinite;
        }

        .scanlines::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
            pointer-events: none;
        }

        /* Noise texture overlay */
        .noise-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.03;
            z-index: -1;
            pointer-events: none;
            background-image: 
                repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px),
                repeating-linear-gradient(-45deg, transparent, transparent 2px, rgba(0, 255, 255, 0.02) 2px, rgba(0, 255, 255, 0.02) 4px);
        }

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

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 1rem 2rem;
            background: rgba(15, 15, 35, 0.9);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-color);
            z-index: 10000;
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Mobile Menu Button */
        .mobile-menu-button {
            display: none;
            background: none;
            border: none;
            color: var(--primary-cyan);
            font-size: 1.5rem;
            cursor: pointer;
            position: relative;
            width: 30px;
            height: 30px;
            transition: all 0.3s ease;
        }

        .mobile-menu-button:hover {
            color: var(--primary-orange);
            transform: scale(1.1);
        }

        .hamburger {
            position: relative;
            width: 25px;
            height: 20px;
            margin: auto;
        }

        .hamburger span {
            display: block;
            position: absolute;
            height: 2px;
            width: 100%;
            background: var(--primary-cyan);
            border-radius: 1px;
            opacity: 1;
            left: 0;
            transform: rotate(0deg);
            transition: all 0.25s ease-in-out;
            box-shadow: 0 0 5px var(--primary-cyan);
            transform-origin: center;
        }

        .hamburger span:nth-child(1) {
            top: 0px;
        }

        .hamburger span:nth-child(2) {
            top: 9px;
        }

        .hamburger span:nth-child(3) {
            top: 18px;
        }

        .mobile-menu-button.active .hamburger span:nth-child(1) {
            top: 9px;
            transform: rotate(135deg);
            background: var(--primary-orange);
        }

        .mobile-menu-button.active .hamburger span:nth-child(2) {
            opacity: 0;
            left: -25px;
        }

        .mobile-menu-button.active .hamburger span:nth-child(3) {
            top: 9px;
            transform: rotate(-135deg);
            background: var(--primary-orange);
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 78px;
            right: -100%;
            width: 80%;
            max-width: 350px;
            height: calc(100vh - 78px);
            background: var(--darker-bg);
            backdrop-filter: blur(20px);
            border-left: 2px solid var(--border-color);
            z-index: 9999;
            transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            overflow-y: auto;
            box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
            display: flex;
            flex-direction: column;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.7);
            z-index: 9998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu-header {
            padding: 2rem;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-shrink: 0;
        }

        .mobile-menu-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-cyan);
            text-shadow: 0 0 15px var(--primary-cyan);
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .mobile-menu-logo::before {
            content: '>';
            margin-right: 0.5rem;
            color: var(--primary-orange);
            transition: all 0.3s ease;
        }

        .mobile-menu-logo::after {
            content: '_';
            animation: blink 1s infinite;
            color: var(--primary-cyan);
        }

        .mobile-menu-logo:hover {
            text-shadow: 0 0 25px var(--primary-cyan);
            transform: scale(1.05);
        }

        .mobile-menu-logo:hover::before {
            margin-right: 0.8rem;
            text-shadow: 0 0 10px var(--primary-orange);
        }

        .mobile-menu-close {
            background: none;
            border: none;
            color: var(--primary-cyan);
            font-size: 1.5rem;
            cursor: pointer;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .mobile-menu-close:hover {
            color: var(--primary-orange);
            transform: rotate(90deg);
        }

        .mobile-menu-nav {
            padding: 0;
            flex-grow: 1;
        }

        .mobile-menu-nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-menu-nav li {
            margin: 0;
        }

        .mobile-menu-nav a {
            display: block;
            padding: 1.5rem 2rem;
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
            border-bottom: 1px solid rgba(229, 231, 235, 0.1);
        }

        .mobile-menu-nav a:hover {
            color: var(--primary-cyan);
            background: rgba(0, 255, 255, 0.05);
            padding-left: 3rem;
            text-shadow: 0 0 10px var(--primary-cyan);
        }

        .mobile-menu-nav a::before {
            content: '>';
            position: absolute;
            left: 2rem;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s ease;
            color: var(--primary-orange);
        }

        .mobile-menu-nav a:hover::before {
            opacity: 1;
            transform: translateX(0);
        }

        .mobile-menu.active .mobile-menu-nav li,
        .mobile-menu.active .mobile-menu-cta {
            animation: slideInLeft 0.4s ease forwards;
        }

        .mobile-menu.active .mobile-menu-cta {
            animation-name: slideInUp;
        }

        .mobile-menu-nav li:last-child a {
            border-bottom: none;
        }

        .mobile-menu-cta {
            padding: 2rem;
            flex-shrink: 0;
            border-bottom: 1px solid var(--border-color);
        }

        .cyber-button {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
            color: var(--darker-bg);
            padding: 1rem 2rem;
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s ease;
            clip-path: polygon(15px 0%, 100% 0%, calc(100% - 15px) 100%, 0% 100%);
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
            width: 100%;
            text-align: center;
        }

        .cyber-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
        }

        /* Animation keyframes for mobile menu */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

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

        /* Desktop Navigation Layout */
        @media (min-width: 769px) {
            .mobile-menu-button {
                display: none !important;
            }
            
            .nav-container {
                flex-direction: row;
                align-items: center;
                gap: 0;
            }
            
            .nav-top {
                flex: 0 0 auto;
            }
            
            .nav-links {
                flex: 1;
                display: flex;
                flex-direction: row;
                justify-content: center;
                margin: 0 2rem;
                max-width: none;
            }
            
            .nav-links a {
                padding: 0;
                border-bottom: none;
                font-size: 0.9rem;
            }
            
            .nav-links a:hover {
                background: none;
                padding-left: 0;
            }
            
            .nav-links a::before {
                display: none;
            }
            
            .nav-bottom {
                flex: 0 0 auto;
            }
            
            .cyber-button {
                width: auto;
                max-width: none;
            }
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-cyan);
            text-shadow: 0 0 20px var(--primary-cyan);
            position: relative;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .logo:hover {
            text-shadow: 0 0 30px var(--primary-cyan);
            transform: scale(1.05);
        }

        .logo::before {
            content: '>';
            margin-right: 0.5rem;
            color: var(--primary-orange);
            transition: all 0.3s ease;
        }

        .logo:hover::before {
            margin-right: 0.8rem;
            text-shadow: 0 0 10px var(--primary-orange);
        }

        .logo::after {
            content: '_';
            animation: blink 1s infinite;
            color: var(--primary-cyan);
        }

        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            text-transform: uppercase;
            font-size: 0.9rem;

            letter-spacing: 1px;
        }

        .nav-links a:hover {
            color: var(--primary-cyan);
            text-shadow: 0 0 10px var(--primary-cyan);
            transform: translateY(-2px);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 1px;
            background: var(--primary-cyan);
            transition: width 0.3s ease;
            box-shadow: 0 0 5px var(--primary-cyan);
        }

        .nav-links a:hover::after {
            width: 80%;
        }

        /* Hero Section */
        .hero {
            padding: 150px 2rem 100px;
            text-align: center;
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            position: relative;
            z-index: 2;
        }

        .hero-video,
        .hero-video-overlay {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .hero-video {
            object-fit: cover;
            z-index: 0;
            opacity: 0.42;
            filter: saturate(0.9) contrast(1.15) brightness(0.72);
        }

        .hero-video-overlay {
            z-index: 1;
            background:
                linear-gradient(180deg, rgba(15, 5, 26, 0.62), rgba(15, 5, 26, 0.36) 45%, rgba(15, 5, 26, 0.76)),
                radial-gradient(circle at 20% 35%, rgba(0, 255, 255, 0.18), transparent 42%),
                radial-gradient(circle at 80% 65%, rgba(255, 0, 255, 0.14), transparent 46%);
        }

        .hero-title {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 900;
            margin-bottom: 2rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            position: relative;
            cursor: pointer;
            line-height: 1.2;
        }

        .hero-apogears {
            background: linear-gradient(135deg, var(--primary-cyan), #00ccff);
            background: -webkit-linear-gradient(135deg, var(--primary-cyan), #00ccff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
            transition: all 0.3s ease;
            animation: cyanPulse 3s ease-in-out infinite;
            position: relative;
        }

        .hero-flow {
            background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
            background: -webkit-linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-left: 0.1em;
            display: inline-block;
            transition: all 0.3s ease;
            animation: purplePulse 3s ease-in-out infinite;
            animation-delay: 1.5s;
            position: relative;
        }

        @keyframes cyanPulse {
            0%, 100% { 
                filter: brightness(1) drop-shadow(0 0 15px rgba(0, 255, 255, 0.6));
                transform: translateY(0) scale(1);
            }
            50% { 
                filter: brightness(1.1) drop-shadow(0 0 25px rgba(0, 255, 255, 0.8));
                transform: translateY(-2px) scale(1.01);
            }
        }

        @keyframes purplePulse {
            0%, 100% { 
                filter: brightness(1) drop-shadow(0 0 15px rgba(255, 0, 255, 0.6));
                transform: translateY(0) scale(1);
            }
            50% { 
                filter: brightness(1.1) drop-shadow(0 0 25px rgba(255, 0, 255, 0.8));
                transform: translateY(-2px) scale(1.01);
            }
        }

        /* Clean hover effect */
        .hero-title:hover .hero-apogears {
            transform: translateX(-3px) scale(1.02);
            filter: brightness(1.2) drop-shadow(0 0 30px rgba(0, 255, 255, 0.9));
        }

        .hero-title:hover .hero-flow {
            transform: translateX(3px) scale(1.02);
            filter: brightness(1.2) drop-shadow(0 0 30px rgba(255, 0, 255, 0.9));
        }

        /* Subtle background glow for each word */
        .hero-apogears::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 255, 255, 0.08) 0%, transparent 60%);
            filter: blur(50px);
            z-index: -1;
            animation: glowPulse 4s ease-in-out infinite;
            pointer-events: none;
        }

        .hero-flow::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 0, 255, 0.08) 0%, transparent 60%);
            filter: blur(50px);
            z-index: -1;
            animation: glowPulse 4s ease-in-out infinite;
            animation-delay: 2s;
            pointer-events: none;
        }

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

        /* Apply animation pause on hover */
        .hero-title:hover .hero-apogears,
        .hero-title:hover .hero-flow {
            animation-play-state: paused;
        }

        /* Border animation */
        .hero-apogears::after,
        .hero-flow::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 0;
            height: 3px;
            transition: width 0.3s ease;
        }

        .hero-apogears::after {
            background: linear-gradient(90deg, var(--primary-cyan), transparent);
        }

        .hero-flow::after {
            background: linear-gradient(90deg, transparent, var(--primary-pink));
            left: auto;
            right: 0;
        }

        .hero-title:hover .hero-apogears::after,
        .hero-title:hover .hero-flow::after {
            width: 100%;
        }

        /* Typing effect for hero text on load */
        @keyframes typeIn {
            0% { 
                opacity: 0;
                transform: translateY(20px);
            }
            100% { 
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Remove scanner line for cleaner look */

        .hero-subtitle {
            font-size: 1.5rem;
            color: var(--text-secondary);
            margin-bottom: 3rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 300;
            opacity: 0.9;
            background: linear-gradient(135deg, var(--text-secondary), var(--primary-grey));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-buttons {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .quote-carousel {
            max-width: 1080px;
            margin: 0 auto 3rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .quote-slide {
            animation: quotePulse 0.45s ease;
        }

        .quote-text {
            max-width: 980px;
            min-height: 4em;
            margin: 0 auto 2rem;
            font-size: clamp(1.8rem, 8vw, 2rem);
            font-weight: 200;
            text-transform: none;
            letter-spacing: 0;
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-pink));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 0 30px rgba(0, 255, 255, 0.5));
        }

        .quote-author {
            color: var(--text-secondary);
            font-size: clamp(1rem, 1.6vw, 1.35rem);
            font-weight: 600;
            letter-spacing: 0.04em;
            text-transform: none;
            text-shadow: 0 0 15px rgba(0, 255, 255, 0.25);
        }

        .quote-author::before {
            content: '-';
            margin-right: 0.6rem;
            color: var(--primary-cyan);
        }

        .quote-indicators {
            display: flex;
            justify-content: center;
            gap: 0.7rem;
            flex-wrap: wrap;
            margin-top: 2.25rem;
        }

        .quote-indicator {
            width: 32px;
            height: 3px;
            border: 0;
            padding: 0;
            cursor: pointer;
            background: rgba(229, 231, 235, 0.22);
            box-shadow: none;
            transition: width 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
        }

        .quote-indicator.active,
        .quote-indicator:hover {
            width: 48px;
            background: var(--primary-cyan);
            box-shadow: 0 0 16px rgba(0, 255, 255, 0.45);
        }

        @keyframes quotePulse {
            from {
                opacity: 0;
                transform: translateY(16px) scale(0.98);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
            color: var(--darker-bg);
            padding: 1.2rem 3rem;
            border: none;
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            clip-path: polygon(20px 0%, 100% 0%, calc(100% - 20px) 100%, 0% 100%);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 255, 255, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--primary-cyan);
            padding: 1.2rem 3rem;
            border: 2px solid var(--primary-cyan);
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            clip-path: polygon(20px 0%, 100% 0%, calc(100% - 20px) 100%, 0% 100%);
        }

        .btn-secondary:hover {
            background: var(--primary-cyan);
            color: var(--darker-bg);
            box-shadow: 0 0 30px var(--primary-cyan);
        }

        .services,
        .methods {
            padding-bottom: 80px;
            position: relative;
        }

        .section-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 5rem;
            position: relative;
            overflow: hidden;
            width: 100vw;
            margin-left: calc(50% - 50vw);
            margin-right: calc(50% - 50vw);
            padding: 1.25rem 2rem;
            background: rgba(15, 15, 35, 0.9);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
            backdrop-filter: blur(20px);
            box-shadow: 0 0 30px rgba(0, 255, 255, 0.1);
            opacity: 0;
        }

        .section-header.fly-from-left {
            transform: translateX(-1000px);
        }

        .section-header.fly-from-right {
            transform: translateX(1000px);
        }

        .fade-up .section-header {
            animation: flyHeaderBlock 0.9s cubic-bezier(0.23, 1, 0.32, 1) forwards;
        }

        @keyframes flyHeaderBlock {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .section-title {
            font-size: clamp(2.55rem, 4.4vw, 3.35rem);
            font-weight: 800;
            line-height: 1.08;
            color: var(--primary-cyan);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 0.85rem;
            position: relative;
            text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
        }

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

        .section-subtitle {
            font-size: clamp(1.08rem, 1.35vw, 1.25rem);
            line-height: 1.55;
            color: var(--text-secondary);
            max-width: 760px;
            margin: 0 auto;
        }

        .service-card h3,
        .method-card h3,
        .about-tile-index,
        .stack-tile span:not(.gear-box):not(.gear-box1) {
            letter-spacing: 0.06em;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: var(--tile-gap);
        }

        .service-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            min-height: 100%;
            padding: 1.5rem;
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 1.1rem;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
            clip-path: polygon(20px 0%, 100% 0%, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0% 100%, 0% 20px);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-pink));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 255, 255, 0.2);
            animation: glitch1 0.3s ease-in-out;
        }

        .service-card:hover::before {
            opacity: 0.1;
        }

        .service-card-header {
            display: grid;
            grid-template-columns: 58px 1fr;
            align-items: center;
            gap: 1rem;
            min-height: 58px;
        }

        .section-icon {
            width: 58px;
            height: 58px;
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            flex: 0 0 58px;
            clip-path: polygon(12px 0%, 100% 0%, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0% 100%, 0% 12px);
            box-shadow: 0 0 22px rgba(0, 255, 255, 0.42);
        }

        .service-card h3 {
            font-size: 1.16rem;
            font-weight: 700;
            color: var(--primary-cyan);
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 1px;
            line-height: 1.35;
            overflow-wrap: anywhere;
        }

        .service-card p {
            color: var(--text-secondary);
            line-height: 1.65;
            margin: 0;
            font-size: 1.04rem;
        }

        /* About Section */
        .about {
            padding-bottom: 80px;
            background: rgba(0, 255, 255, 0.02);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 1.5rem;
            text-align: center;
            align-items: stretch;
        }

        .stat-item {
            position: relative;
            min-height: 168px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.7rem;
            padding: 1.5rem 1rem;
        }

        .stat-number {
            min-height: 1.08em;
            font-size: clamp(2.45rem, 4.1vw, 4rem);
            font-weight: 900;
            line-height: 1;
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            display: block;
            margin: 0;
            filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.3));
            white-space: nowrap;
        }

        .stat-label {
            min-height: 2.7em;
            max-width: 13rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(0.92rem, 1.08vw, 1.12rem);
            line-height: 1.35;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
            text-wrap: balance;
        }
        /* Methods Carousel Section */

        .methods-carousel {
            margin-top: 5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .methods-track {
            width: 100%;
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            gap: var(--tile-gap);
            align-items: stretch;
            min-height: 460px;
            animation: quotePulse 0.45s ease;
        }

        .method-card {
            height: 100%;
            min-height: 460px;
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            padding: 1.5rem 1.15rem;
            text-align: center;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.95rem;
            overflow: hidden;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
            clip-path: polygon(18px 0%, 100% 0%, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0% 100%, 0% 18px);
        }

        .method-card::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: -1;
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-pink));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .method-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary-cyan);
            box-shadow: 0 18px 42px rgba(0, 255, 255, 0.18);
        }

        .method-card:hover::before {
            opacity: 0.08;
        }

        .method-card h3 {
            min-height: 3.4em;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(1.12rem, 1.15vw, 1.22rem);
            font-weight: 700;
            color: var(--primary-cyan);
            text-transform: uppercase;
            letter-spacing: 0.06em;
            line-height: 1.28;
            margin: 0;
            text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
            overflow-wrap: anywhere;
        }

        .method-subtitle {
            min-height: 3.2em;
            display: flex;
            align-items: center;
            color: var(--primary-orange);
            font-size: clamp(1rem, 1.05vw, 1.08rem);
            line-height: 1.4;
            font-weight: 700;
            margin: 0;
        }

        .method-description {
            color: var(--text-secondary);
            font-size: clamp(1rem, 1.05vw, 1.08rem);
            line-height: 1.6;
            margin: 0;
        }

        .methods-indicators {
            margin-top: 2rem;
        }

        /* Contact Section */
        .contact {
            min-height: max(760px, 100vh);
            position: relative;
            overflow: hidden;
            background: var(--darker-bg);
            border-top: 1px solid var(--border-color);
        }

        .contact-video,
        .contact-video-overlay {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .contact-video {
            object-fit: cover;
            z-index: 0;
            opacity: 0.88;
            filter: saturate(0.95) contrast(1.12) brightness(0.82);
        }

        .contact-video-overlay {
            z-index: 1;
            background:
                linear-gradient(90deg, rgba(15, 5, 26, 0.24), rgba(15, 5, 26, 0.18) 42%, rgba(15, 5, 26, 0.76)),
                linear-gradient(0deg, rgba(15, 5, 26, 0.64), transparent 30%, rgba(15, 5, 26, 0.55)),
                radial-gradient(circle at 28% 48%, rgba(0, 255, 255, 0.08), transparent 44%);
            pointer-events: none;
        }

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

        .contact-layout {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: clamp(2rem, 4vw, 4rem);
            align-items: start;
            margin-top: 3rem;
            --contact-right-height: auto;
        }

        .contact-left-column {
            display: grid;
            grid-template-rows: auto minmax(0, 1fr);
            gap: 2rem;
            height: var(--contact-right-height);
            max-height: var(--contact-right-height);
            min-width: 0;
            min-height: 0;
            overflow: hidden;
        }

        .contact-info-panel,
        .contact-form-wrapper,
        .ask-ai-advisor-panel {
            width: 100%;
            padding: 2rem;
            background: rgba(15, 5, 26, 0.54);
            border: 1px solid var(--border-color);
            backdrop-filter: blur(10px);
            clip-path: polygon(24px 0%, 100% 0%, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0% 100%, 0% 24px);
            box-shadow: 0 0 30px rgba(255, 0, 255, 0.08);
        }

        .contact-info-panel h3,
        .contact-form-wrapper h3,
        .ask-ai-advisor-panel > h3 {
            margin-bottom: 1.5rem;
            color: var(--text-primary);
            font-size: clamp(1.45rem, 2vw, 2rem);
            line-height: 1.2;
            text-transform: uppercase;
            text-shadow: 0 0 16px rgba(0, 255, 255, 0.45);
        }

        .contact-info-list {
            display: grid;
            gap: 1.35rem;
        }

        .contact-info-item {
            display: grid;
            grid-template-columns: 44px 1fr;
            gap: 1rem;
            align-items: center;
        }

        .contact-info-icon {
            width: 44px;
            height: 44px;
            display: grid;
            place-items: center;
            color: var(--darker-bg);
            font-weight: 900;
            text-decoration: none;
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-pink));
            clip-path: polygon(11px 0%, 100% 0%, 100% calc(100% - 11px), calc(100% - 11px) 100%, 0% 100%, 0% 11px);
            box-shadow: 0 0 18px rgba(0, 255, 255, 0.24);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .contact-info-icon:hover,
        .contact-info-icon:focus-visible {
            transform: translateY(-2px);
            box-shadow: 0 0 26px rgba(0, 255, 255, 0.42);
            outline: none;
        }

        .contact-info-item h4 {
            margin-bottom: 0.2rem;
            color: var(--primary-orange);
            font-size: 0.92rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .contact-info-item a,
        .contact-info-item p {
            color: var(--text-secondary);
            overflow-wrap: anywhere;
            text-decoration: none;
        }

        .contact-info-item a:hover {
            color: var(--primary-cyan);
            text-shadow: 0 0 10px rgba(0, 255, 255, 0.45);
        }

        .ask-ai-advisor-panel {
            display: flex;
            flex-direction: column;
            min-height: 0;
            overflow: hidden;
        }

        .ai-client-advisor-panel {
            width: 100%;
            flex: 1 1 auto;
            min-height: 0;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 1.25rem;
            padding: 1.5rem;
            overflow: hidden;
            position: relative;
            background:
                linear-gradient(135deg, rgba(0, 255, 255, 0.11), rgba(255, 0, 255, 0.09)),
                rgba(15, 5, 26, 0.62);
            border: 1px solid var(--border-color);
            clip-path: polygon(18px 0%, 100% 0%, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0% 100%, 0% 18px);
            box-shadow: inset 0 0 24px rgba(0, 255, 255, 0.08);
        }

        .ai-client-advisor-panel::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.12), transparent);
            transform: translateX(-100%);
            animation: aiTileScan 5s linear infinite;
            pointer-events: none;
        }

        .ai-client-advisor-panel h3 {
            margin-bottom: 0.5rem;
            color: var(--primary-cyan);
            font-size: 1.25rem;
            line-height: 1.2;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            text-shadow: 0 0 14px rgba(0, 255, 255, 0.55);
        }

        .ai-client-advisor-panel p {
            max-width: 32rem;
            color: var(--text-secondary);
            line-height: 1.55;
        }

        .ai-client-advisor-chat {
            display: grid;
            gap: 0.65rem;
            flex: 1 1 auto;
            min-height: 0;
            overflow-y: auto;
            padding-right: 0.35rem;
            scrollbar-width: thin;
            scrollbar-color: var(--primary-cyan) rgba(0, 255, 255, 0.08);
        }

        .ai-client-advisor-chat::-webkit-scrollbar {
            width: 6px;
        }

        .ai-client-advisor-chat::-webkit-scrollbar-track {
            background: rgba(0, 255, 255, 0.08);
        }

        .ai-client-advisor-chat::-webkit-scrollbar-thumb {
            background: linear-gradient(var(--primary-cyan), var(--primary-pink));
        }

        .ai-client-advisor-chat span {
            width: fit-content;
            max-width: 100%;
            padding: 0.65rem 0.8rem;
            color: var(--text-primary);
            font-size: 0.9rem;
            background: rgba(0, 255, 255, 0.08);
            border: 1px solid rgba(0, 255, 255, 0.18);
            clip-path: polygon(8px 0%, 100% 0%, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0% 100%, 0% 8px);
        }

        .ai-client-advisor-chat span:nth-child(2) {
            justify-self: start;
        }

        .ai-client-advisor-chat span.from-user {
            justify-self: end;
            background: rgba(255, 0, 255, 0.08);
            border-color: rgba(255, 0, 255, 0.18);
        }

        .ai-client-advisor-entry {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 0.75rem;
            position: relative;
            z-index: 1;
        }

        .ai-client-advisor-entry input {
            min-width: 0;
            width: 100%;
            padding: 0.8rem 0.9rem;
            color: var(--text-primary);
            background: rgba(0, 255, 255, 0.06);
            border: 1px solid rgba(0, 255, 255, 0.18);
            font-family: inherit;
            font-size: 0.9rem;
            clip-path: polygon(8px 0%, 100% 0%, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0% 100%, 0% 8px);
        }

        .ai-client-advisor-entry input:focus {
            outline: none;
            border-color: var(--primary-cyan);
            box-shadow: 0 0 16px rgba(0, 255, 255, 0.24);
        }

        .ai-client-advisor-entry button {
            min-width: 76px;
            padding: 0.8rem 0.9rem;
            color: var(--darker-bg);
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-pink));
            border: 0;
            cursor: pointer;
            font-family: inherit;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
        }

        @keyframes aiTileScan {
            0% { transform: translateX(-100%); }
            55%, 100% { transform: translateX(100%); }
        }

        .contact-form {
            background: transparent;
            border: 0;
            padding: 0;
            backdrop-filter: none;
            clip-path: none;
            box-shadow: none;
        }

        .form-group {
            margin-bottom: 1.15rem;
        }

        .form-group label {
            display: block;
            color: var(--primary-cyan);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.86rem;
            margin-bottom: 0.45rem;
            text-shadow: 0 0 10px var(--primary-cyan);
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.78rem 1rem;
            background: rgba(0, 255, 255, 0.05);
            border: 1px solid var(--border-color);
            color: var(--text-primary);
            font-family: inherit;
            font-size: 0.94rem;
            transition: all 0.3s ease;
            clip-path: polygon(10px 0%, 100% 0%, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0% 100%, 0% 10px);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--text-secondary);
            opacity: 0.7;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary-cyan);
            background: rgba(0, 255, 255, 0.08);
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
        }

        .form-group select option {
            background: var(--darker-bg);
            color: var(--text-primary);
        }

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

        .turnstile-row {
            margin-bottom: 1rem;
        }

        .turnstile-box {
            min-height: 65px;
        }

        .btn-submit {
            width: 100%;
            cursor: pointer;
            font-size: 0.95rem;
            margin-top: 0.5rem;
            border: none;
            transition: all 0.3s ease;
        }

        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(229, 231, 235, 0.4);
        }

        /* Footer */
        .footer {
            padding: 20px 2rem 20px;
            border-top: 1px solid var(--border-color);
            background: rgba(0, 0, 0, 0.5);
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
        }

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

        .footer-links {
            margin-bottom: 0.8rem;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            position: relative;
            padding: 0 0.5rem;
        }

        .footer-links a:hover {
            color: var(--primary-cyan);
            text-shadow: 0 0 10px var(--primary-cyan);
            transform: translateY(-2px);
        }

        .footer-links a::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 1px;
            background: var(--primary-cyan);
            transition: width 0.3s ease;
            box-shadow: 0 0 5px var(--primary-cyan);
        }

        .footer-links a:hover::after {
            width: 80%;
        }

        .footer-separator {
            color: var(--primary-cyan);
            opacity: 0.5;
            font-size: 0.8rem;
            margin: 0 0.2rem;
        }

        .footer-bottom {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .footer-logo {
            display: block;
            width: min(220px, 64vw);
            height: auto;
            margin: 0 auto 0.85rem;
            filter:
                drop-shadow(0 0 6px rgba(0, 255, 255, 0.75))
                drop-shadow(0 0 16px rgba(255, 0, 255, 0.35))
                drop-shadow(0 0 28px rgba(0, 255, 255, 0.28));
            opacity: 0.95;
        }

        .footer-bottom p {
            margin: 0.5rem 0;
        }

        .footer-credit {
            font-size: 0.85rem;
            opacity: 0.8;
            margin-top: 0.5rem;
        }

        .footer-credit a {
            color: var(--primary-cyan);
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 600;
        }

        .footer-credit a:hover {
            color: var(--primary-pink);
            text-shadow: 0 0 10px var(--primary-pink);
            text-decoration: underline;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .mobile-menu-button {
                display: block !important;
            }
            
            .nav-links {
                display: none;
            }
            
            .nav-bottom .cyber-button {
                display: none;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }

            .quote-carousel {
                margin-bottom: 2rem;
            }

            .quote-text {
                min-height: 5.9em;
                letter-spacing: 0;
            }

            .quote-indicator {
                width: 26px;
            }

            .quote-indicator.active,
            .quote-indicator:hover {
                width: 38px;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn-primary, .btn-secondary {
                width: 100%;
                max-width: 300px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }

            .methods {
                padding: 80px 1rem;
            }

            .methods-carousel {
                margin-top: 3rem;
            }

            .methods-track {
                grid-template-columns: 1fr;
                min-height: 430px;
            }

            .method-card {
                min-height: 430px;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }

            .stat-item {
                min-height: 142px;
                padding: 1.25rem 0.75rem;
            }

            .stat-label {
                font-size: 0.78rem;
                letter-spacing: 0.08em;
            }
            
            .contact {
                padding: 80px 1rem;
                min-height: auto;
            }

            .contact-video {
                opacity: 0.58;
            }

            .contact-video-overlay {
                background:
                    linear-gradient(0deg, rgba(15, 5, 26, 0.78), rgba(15, 5, 26, 0.48)),
                    radial-gradient(circle at 50% 30%, rgba(0, 255, 255, 0.1), transparent 45%);
            }

            .contact-form-wrapper {
                margin-left: auto;
                margin-right: auto;
                max-width: 540px;
                width: 100%;
            }

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

            .contact-left-column {
                width: 100%;
                max-width: 540px;
                margin: 0 auto;
                height: auto;
                max-height: none;
                overflow: visible;
            }

            .contact-info-panel,
            .contact-form-wrapper,
            .ask-ai-advisor-panel {
                width: 100%;
                max-width: 540px;
                margin: 0 auto;
                padding: 1.5rem;
            }

            .ai-client-advisor-panel {
                width: 100%;
                max-width: 540px;
                margin: 0 auto;
            }

            .contact-form {
                padding: 0;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 1rem;
                align-items: center;
            }
            
            .footer-links a {
                padding: 0.5rem 1rem;
            }
            
            .footer-separator {
                display: none;
            }
            
            .footer {
                margin-top: 40px;
                padding: 40px 1rem 30px;
            }

            .footer-logo {
                width: min(200px, 68vw);
            }
        }

        @media (min-width: 769px) and (max-width: 1100px) {
            .methods-track {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }

        @media (min-width: 1101px) and (max-width: 1280px) {
            .methods-track {
                grid-template-columns: repeat(4, minmax(0, 1fr));
            }
        }

        @media (max-width: 480px) {
            .mobile-menu {
                width: 90%;
                max-width: none;
            }
            
            .mobile-menu-header {
                padding: 1.5rem;
            }
            
            .mobile-menu-nav a {
                padding: 1.2rem 1.5rem;
                font-size: 1rem;
            }
            
            .mobile-menu-cta {
                padding: 1.5rem;
            }
            
            .cyber-button {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-apogears, .hero-flow {
                display: block;
                margin: 0;
            }
        }

        /* Scroll animations */
        .fade-up {
            opacity: 0;
            transform: translateY(50px);
            animation: fadeUp 0.8s ease forwards;
        }

        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Data streams */
        .data-streams {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -3;
            pointer-events: none;
        }

        .data-stream {
            position: absolute;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--primary-cyan), transparent);
            opacity: 0;
            animation: dataFlow 3s ease-in-out infinite;
        }

        .data-stream:nth-child(odd) {
            background: linear-gradient(90deg, transparent, var(--primary-pink), transparent);
            animation-duration: 4s;
        }

        @keyframes dataFlow {
            0% {
                width: 0;
                opacity: 0;
                transform: translateX(0);
            }
            50% {
                width: 300px;
                opacity: 0.8;
            }
            100% {
                width: 0;
                opacity: 0;
                transform: translateX(100vw);
            }
        }

        /* Performance optimization for mobile */
        @media (max-width: 768px) {
            .matrix-rain {
                display: none;
            }
            
            .particles {
                opacity: 0.5;
            }
            
            .particle {
                animation-duration: 30s !important;
            }
            
            .orb {
                filter: blur(100px);
                opacity: 0.3;
            }
            
            .scanlines::before {
                animation: none;
                transform: translateY(0);
            }
            
            .data-streams {
                display: none;
            }
            
            .noise-overlay {
                display: none;
            }
        }

        /* Reduced motion for accessibility */
        @media (prefers-reduced-motion: reduce) {
            .cyber-gradient,
            .grid-lines,
            .grid-glow,
            .particle,
            .orb,
            .matrix-column,
            .scanlines::before,
            .data-stream,
            .section-header,
            .quote-slide {
                animation: none !important;
            }

            .section-header {
                opacity: 1;
                transform: none;
            }
        }

        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--darker-bg);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(var(--primary-cyan), var(--primary-pink));
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(var(--primary-pink), var(--primary-cyan));
        }

        .site-main {
            min-height: 100vh;
            overflow: visible;
        }

        .page-hero {
            min-height: auto;
            padding-bottom: 80px;
        }

        .page-title {
            max-width: 1100px;
            margin: 0 auto 1.5rem;
            font-size: clamp(2.5rem, 6vw, 5rem);
            font-weight: 900;
            line-height: 1.05;
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-pink));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
        }

        .eyebrow {
            margin-bottom: 1rem;
            color: var(--primary-orange);
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .compact-grid {
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        }

        .legal-copy {
            max-width: 900px;
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            padding: 3rem;
            backdrop-filter: blur(10px);
        }

        .legal-copy h2 {
            color: var(--primary-cyan);
            margin: 2rem 0 1rem;
            font-size: 1.35rem;
        }

        .legal-copy h2:first-child {
            margin-top: 0;
        }

        .legal-copy p {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
        }

        .form-status {
            margin-top: 1.5rem;
            color: var(--primary-cyan);
            font-weight: 700;
        }

        .form-status.error {
            color: var(--primary-pink);
            text-shadow: 0 0 10px rgba(255, 0, 255, 0.35);
        }

        .form-status.success {
            color: var(--primary-cyan);
            text-shadow: 0 0 10px rgba(0, 255, 255, 0.35);
        }

        .about-header {
            margin-bottom: 1rem;
        }

        .stat-word {
            font-size: clamp(2rem, 4vw, 3.2rem);
        }

        .about-tiles {
            width: 100vw;
            margin: 0 0 0 calc(50% - 50vw);
            display: grid;
            gap: var(--tile-gap);
            padding: 0 2rem;
        }

        .about-tile {
            width: 100%;
            max-width: 1400px;
            min-height: 150px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: minmax(220px, 0.32fr) 1fr;
            align-items: center;
            gap: 2rem;
            position: relative;
            overflow: hidden;
            padding: 2rem 2.5rem;
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            backdrop-filter: blur(10px);
            clip-path: polygon(24px 0%, 100% 0%, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0% 100%, 0% 24px);
            box-shadow: 0 0 30px rgba(0, 255, 255, 0.08);
        }

        .about-tile::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: -1;
            background: linear-gradient(90deg, rgba(0, 255, 255, 0.12), transparent 45%, rgba(255, 0, 255, 0.1));
            opacity: 0.75;
        }

        .about-tile:nth-child(even)::before {
            background: linear-gradient(90deg, rgba(255, 0, 255, 0.1), transparent 45%, rgba(0, 255, 255, 0.12));
        }

        .about-tile-index {
            color: var(--primary-cyan);
            font-size: clamp(1.12rem, 1.15vw, 1.22rem);
            font-weight: 900;
            line-height: 1.28;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            text-shadow: 0 0 24px rgba(0, 255, 255, 0.55);
        }

        .about-tile p {
            color: var(--text-secondary);
            font-size: clamp(1rem, 1.05vw, 1.08rem);
            line-height: 1.65;
            margin: 0;
        }

        .about-tile strong {
            color: var(--text-primary);
            font-weight: 800;
            text-shadow: 0 0 12px rgba(0, 255, 255, 0.24);
        }

        .section-icon img {
            width: 36px;
            height: 36px;
            object-fit: contain;
            filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.25));
        }

        .stack {
            padding-bottom: 80px;
            position: relative;
            background: rgba(0, 255, 255, 0.02);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }
        .stack-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
            gap: 1rem;
        }

        .stack-tile {
            min-height: 124px;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            padding: 1.25rem 1rem;
            overflow: hidden;
            text-align: center;
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            backdrop-filter: blur(10px);
            clip-path: polygon(16px 0%, 100% 0%, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0% 100%, 0% 16px);
            transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .stack-tile::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: -1;
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-pink));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .stack-tile:hover {
            transform: translateY(-6px);
            border-color: var(--primary-cyan);
            box-shadow: 0 16px 40px rgba(0, 255, 255, 0.16);
        }

        .stack-tile:hover::before {
            opacity: 0.08;
        }

        .stack-tile img {
            width: 42px;
            height: 42px;
            object-fit: contain;
            filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.25));
            position: relative;
            z-index: 2;
        }

        .stack-tile span:not(.gear-box):not(.gear-box1) {
            color: var(--text-secondary);
            font-size: 0.88rem;
            font-weight: 700;
            line-height: 1.25;
            text-transform: uppercase;
            overflow-wrap: anywhere;
            position: relative;
            z-index: 2;
        }

        .gear-box,
        .gear-box1 {
            position: absolute;
            background-position: center;
            background-repeat: no-repeat;
            background-size: contain;
            pointer-events: none;
            opacity: 0.36;
            filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.38));
            z-index: 1;
        }

        .gear-box {
            width: 44px;
            height: 44px;
            left: 18%;
            bottom: 17%;
            background-image: url('/images/gear-bigb.png');
            animation: gearSpin 20s linear infinite reverse;
        }

        .gear-box1 {
            width: 66px;
            height: 66px;
            right: 10%;
            top: 16%;
            background-image: url('/images/gear-big.png');
            animation: gearSpin 30s linear infinite;
        }

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

        .cyber-toast {
            position: fixed;
            color: var(--primary-cyan);
            font-size: 0.8rem;
            font-weight: 700;
            z-index: 1000;
            opacity: 0.7;
            pointer-events: none;
            animation: fadeOut 3s ease-out forwards;
            text-shadow: 0 0 10px var(--primary-cyan);
        }

        @keyframes fadeOut {
            0% { opacity: 0.7; transform: translateY(0); }
            100% { opacity: 0; transform: translateY(-50px); }
        }

        .loading-progress {
            position: absolute;
            display: block;
            width: 8rem;
            height: 8rem;
            inset: 20vh 0 auto 0;
            margin: 0 auto;
        }

        .loading-progress circle {
            fill: none;
            stroke: rgba(0, 255, 255, 0.15);
            stroke-width: 0.6rem;
            transform-origin: 50% 50%;
            transform: rotate(-90deg);
        }

        .loading-progress circle:last-child {
            stroke: var(--primary-cyan);
            stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
            transition: stroke-dasharray 0.05s ease-in-out;
        }

        .loading-progress-text {
            position: absolute;
            text-align: center;
            font-weight: 700;
            color: var(--primary-cyan);
            inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
        }

        .loading-progress-text::after {
            content: var(--blazor-load-percentage-text, "Loading");
        }

        #blazor-error-ui {
            background: #1f102e;
            border-top: 1px solid var(--primary-pink);
            bottom: 0;
            box-shadow: 0 -1px 12px rgba(255, 0, 255, 0.25);
            box-sizing: border-box;
            color: var(--text-primary);
            display: none;
            left: 0;
            padding: 0.75rem 3rem 0.75rem 1rem;
            position: fixed;
            width: 100%;
            z-index: 2000;
        }

        #blazor-error-ui .dismiss {
            cursor: pointer;
            position: absolute;
            right: 1rem;
            top: 0.65rem;
        }

        @media (max-width: 768px) {
            .page-hero {
                padding-bottom: 60px;
            }

            .legal-copy {
                padding: 2rem;
            }

            .stack {
                padding: 80px 1rem;
            }

            .stack-grid {
                grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
            }

            .stack-tile {
                min-height: 108px;
                padding: 1rem 0.75rem;
            }

            .about-tiles {
                margin-top: 3rem;
                padding: 0 1rem;
            }

            .about-tile {
                grid-template-columns: 1fr;
                gap: var(--tile-gap);
                padding: 1.5rem;
                min-height: auto;
            }
        }
