        :root {
            --bg-color: #07050b;
            --bg-grid: rgba(157, 78, 221, 0.03);
            --card-bg: rgba(13, 9, 21, 0.75);
            --card-border: rgba(157, 78, 221, 0.2);
            --card-border-hover: rgba(179, 128, 255, 0.6);
            --primary: #b380ff;
            --primary-glow: rgba(179, 128, 255, 0.3);
            --primary-bright: #d8b4fe;
            --text-main: #f3effa;
            --text-secondary: #a39cb5;
            --text-dark: #585363;
            --accent: #9d4edd;
            --font-display: 'Orbitron', sans-serif;
            --font-body: 'Inter', sans-serif;
            --font-mono: 'JetBrains Mono', monospace;
            --glow: 0 0 25px rgba(157, 78, 221, 0.15);
            --glow-strong: 0 0 35px rgba(179, 128, 255, 0.4);
            --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            --accent-green: #10b981;
            --pricing-bg: #090810;
            --pricing-active-border: #7c4dff;
        }

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

        html {
            scroll-behavior: smooth;
            background-color: var(--bg-color);
            color: var(--text-main);
            font-family: var(--font-body);
            line-height: 1.6;
        }

        body {
            position: relative;
            overflow-x: hidden;
            background-color: var(--bg-color);
            background-image: 
                linear-gradient(to right, var(--bg-grid) 1px, transparent 1px),
                linear-gradient(to bottom, var(--bg-grid) 1px, transparent 1px);
            background-size: 50px 50px, 50px 50px;
            background-position: center center, center center;
            background-repeat: repeat, repeat;
        }

        /* Decorative radial glows for sci-fi atmosphere */
        body::before {
            content: '';
            position: absolute;
            top: -150px;
            left: 50%;
            transform: translateX(-50%);
            width: 90vw;
            height: 700px;
            background: radial-gradient(circle, rgba(123, 44, 191, 0.1) 0%, transparent 70%);
            z-index: -1;
            pointer-events: none;
        }

        /* Typography & Custom Scrollbar */
        h1, h2, h3, h4 {
            font-family: var(--font-display);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #09070e;
        }
        ::-webkit-scrollbar-thumb {
            background: var(--accent);
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-bright);
        }

        .skip-link {
            position: absolute;
            top: -100%;
            left: 1rem;
            z-index: 2000;
            padding: 0.75rem 1.25rem;
            background: var(--accent);
            color: #fff;
            font-weight: 700;
            text-decoration: none;
            border-radius: 4px;
            transition: top 0.2s ease;
        }

        .skip-link:focus {
            top: 1rem;
        }

        /* Header Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            backdrop-filter: blur(16px) saturate(180%);
            -webkit-backdrop-filter: blur(16px) saturate(180%);
            background: linear-gradient(
                180deg,
                rgba(12, 8, 20, 0.94) 0%,
                rgba(7, 5, 11, 0.82) 72%,
                rgba(7, 5, 11, 0.35) 100%
            );
            border-bottom: none;
            box-shadow: none;
            transition: var(--transition);
            overflow: visible;
        }

        header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(
                90deg,
                transparent 0%,
                rgba(124, 77, 255, 0.4) 20%,
                rgba(216, 180, 254, 0.95) 50%,
                rgba(124, 77, 255, 0.4) 80%,
                transparent 100%
            );
            box-shadow: 0 0 14px rgba(179, 128, 255, 0.55);
            z-index: 2;
            pointer-events: none;
        }

        header::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: -40px;
            height: 40px;
            background: linear-gradient(to bottom, rgba(7, 5, 11, 0.55) 0%, transparent 100%);
            pointer-events: none;
            z-index: 1;
        }

        @keyframes navShimmer {
            0% {
                left: -80%;
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                left: 130%;
                opacity: 0;
            }
        }
        
        .nav-container {
            max-width: 1320px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            padding: 1.25rem 2rem;
            position: relative;
            z-index: 3;
        }

        .nav-container > .logo {
            grid-column: 1;
            justify-self: start;
            position: relative;
            z-index: 1;
        }

        .nav-container > .nav-toggle,
        .nav-container > .nav-backdrop {
            display: none;
        }

        #main-nav {
            display: contents;
        }

        #main-nav .nav-links {
            grid-column: 2;
            justify-self: center;
            position: relative;
            z-index: 1;
        }

        #main-nav .nav-cta-group {
            grid-column: 3;
            justify-self: end;
        }

        .nav-container::after {
            content: '';
            position: absolute;
            top: 0;
            left: -80%;
            width: 45%;
            height: 100%;
            background: linear-gradient(
                105deg,
                transparent 0%,
                rgba(179, 128, 255, 0.06) 35%,
                rgba(255, 255, 255, 0.14) 50%,
                rgba(179, 128, 255, 0.06) 65%,
                transparent 100%
            );
            animation: navShimmer 5s ease-in-out infinite;
            pointer-events: none;
            z-index: 0;
        }

        .logo {
            font-family: var(--font-display);
            font-size: 1.65rem;
            font-weight: 900;
            color: #fff;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-shadow: 0 0 10px rgba(179, 128, 255, 0.4);
            letter-spacing: 2px;
        }

        .logo-icon {
            width: 64px;
            height: 64px;
            object-fit: contain; background: transparent;
            display: block;
            
            flex-shrink: 0;
            border-radius: 8px;
        }

        .logo-dot {
            width: 8px;
            height: 8px;
            background-color: var(--primary);
            border-radius: 50%;
            display: inline-block;
            box-shadow: var(--glow-strong);
            animation: logoPulse 2.5s ease-in-out infinite;
        }

        @keyframes logoPulse {
            0%, 100% {
                box-shadow: 0 0 8px rgba(179, 128, 255, 0.5);
            }
            50% {
                box-shadow: 0 0 18px rgba(216, 180, 254, 0.85), 0 0 28px rgba(179, 128, 255, 0.4);
            }
        }

        .nav-links {
            display: flex;
            gap: 2.2rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a:not(.btn-get-access):not(.btn-discord) {
            text-decoration: none;
            color: var(--text-secondary);
            font-family: var(--font-display);
            font-size: 0.8rem;
            font-weight: 700;
            transition: var(--transition);
            position: relative;
            padding: 0.5rem 0;
            letter-spacing: 1px;
        }

        .nav-links a:not(.btn-get-access):not(.btn-discord):hover {
            color: var(--primary-bright);
            text-shadow: 0 0 10px rgba(179, 128, 255, 0.45);
        }

        .nav-links a:not(.btn-get-access):not(.btn-discord)::before {
            content: '';
            position: absolute;
            top: 50%;
            left: -10%;
            width: 0;
            height: 120%;
            transform: translateY(-50%) skewX(-18deg);
            background: linear-gradient(90deg, transparent, rgba(216, 180, 254, 0.18), transparent);
            transition: width 0.4s ease, left 0.4s ease;
            pointer-events: none;
            opacity: 0;
        }

        .nav-links a:not(.btn-get-access):not(.btn-discord):hover::before {
            width: 120%;
            left: -10%;
            opacity: 1;
        }

        .nav-links a:not(.btn-get-access):not(.btn-discord)::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
            box-shadow: 0 0 8px var(--primary);
        }

        .nav-links a:not(.btn-get-access):not(.btn-discord):hover::after {
            width: 100%;
        }

        .btn-get-access {
            display: inline-block;
            background: linear-gradient(135deg, var(--accent) 0%, #6f2dbd 100%);
            color: #fff;
            text-decoration: none;
            font-family: var(--font-display);
            font-size: 0.8rem;
            font-weight: 700;
            padding: 0.8rem 1.6rem;
            border-radius: 4px;
            border: 1px solid rgba(179, 128, 255, 0.3);
            box-shadow: 0 0 15px rgba(157, 78, 221, 0.25);
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            isolation: isolate;
        }

        .btn-get-access::before {
            content: '';
            position: absolute;
            top: 0;
            left: -120%;
            width: 70%;
            height: 100%;
            background: linear-gradient(
                105deg,
                transparent 0%,
                rgba(255, 255, 255, 0.15) 45%,
                rgba(255, 255, 255, 0.35) 50%,
                rgba(255, 255, 255, 0.15) 55%,
                transparent 100%
            );
            animation: btnShimmer 3.5s ease-in-out infinite;
            pointer-events: none;
            z-index: 0;
        }

        @keyframes btnShimmer {
            0% {
                left: -120%;
            }
            100% {
                left: 180%;
            }
        }

        .btn-get-access:hover {
            transform: translateY(-2px);
            box-shadow:
                0 0 28px rgba(179, 128, 255, 0.55),
                0 0 12px rgba(216, 180, 254, 0.25);
            border-color: rgba(216, 180, 254, 0.7);
            background: linear-gradient(135deg, #b380ff 0%, #7b2cbf 100%);
        }

        .btn-get-access:active {
            transform: translateY(0);
        }

        .nav-cta-group {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            position: relative;
            z-index: 1200;
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            width: 44px;
            height: 44px;
            padding: 0;
            border: 1px solid rgba(157, 78, 221, 0.35);
            border-radius: 8px;
            background: rgba(10, 7, 16, 0.85);
            cursor: pointer;
            z-index: 1201;
            -webkit-tap-highlight-color: transparent;
            transition: var(--transition);
        }

        .nav-toggle:hover {
            border-color: rgba(179, 128, 255, 0.55);
            background: rgba(124, 77, 255, 0.2);
        }

        .nav-toggle-bar {
            display: block;
            width: 20px;
            height: 2px;
            background: #fff;
            border-radius: 2px;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        body.nav-open .nav-toggle-bar:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        body.nav-open .nav-toggle-bar:nth-child(2) {
            opacity: 0;
        }

        body.nav-open .nav-toggle-bar:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .nav-backdrop {
            position: fixed;
            inset: 0;
            background: rgba(4, 2, 8, 0.78);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            z-index: 1040;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        body.nav-open .nav-backdrop {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        body.nav-open {
            overflow: hidden;
        }

        img, video {
            max-width: 100%;
        }

        .btn-discord {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            color: var(--text-secondary);
            text-decoration: none;
            padding: 0.35rem;
            border: none;
            box-shadow: none;
            transition: var(--transition);
            line-height: 0;
        }

        .btn-discord svg {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
        }

        .btn-discord:hover {
            color: #5865f2;
            transform: translateY(-1px);
            filter: drop-shadow(0 0 8px rgba(88, 101, 242, 0.5));
        }

        .btn-discord:active {
            transform: translateY(0);
        }

        .lang-switcher {
            position: relative;
            z-index: 1200;
        }

        .lang-switcher-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            background: transparent;
            border: none;
            color: #fff;
            font-family: var(--font-body);
            font-size: 0.85rem;
            font-weight: 600;
            padding: 0.4rem 0.55rem;
            cursor: pointer;
            transition: var(--transition);
            letter-spacing: 0.5px;
            border-radius: 6px;
        }

        .lang-switcher-btn:hover {
            background: rgba(157, 78, 221, 0.1);
        }

        .lang-flag {
            width: 22px;
            height: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .lang-flag-img {
            display: block;
            width: 22px;
            height: 16px;
            object-fit: cover;
            border-radius: 2px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
        }

        .lang-chevron {
            width: 14px;
            height: 14px;
            opacity: 0.65;
            transition: transform 0.25s ease;
        }

        .lang-switcher.open .lang-chevron {
            transform: rotate(180deg);
        }

        .lang-dropdown {
            position: absolute;
            top: calc(100% + 0.55rem);
            right: 0;
            min-width: 248px;
            max-height: 420px;
            overflow-y: auto;
            background: rgba(14, 10, 22, 0.98);
            border: 1px solid rgba(157, 78, 221, 0.22);
            border-radius: 10px;
            padding: 0.35rem 0;
            list-style: none;
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-6px);
            transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
            z-index: 1100;
        }

        .lang-switcher.open .lang-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .lang-dropdown-header {
            padding: 0.55rem 1rem 0.45rem;
            font-size: 0.62rem;
            letter-spacing: 1.4px;
            color: var(--text-dark);
            font-weight: 600;
            text-transform: uppercase;
            pointer-events: none;
        }

        .lang-option {
            display: flex;
            align-items: center;
            gap: 0.65rem;
            width: 100%;
            padding: 0.6rem 1rem;
            background: transparent;
            border: none;
            border-radius: 0;
            color: #fff;
            font-family: var(--font-body);
            font-size: 0.88rem;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.2s ease;
            text-align: left;
        }

        .lang-option:hover {
            background: rgba(157, 78, 221, 0.1);
        }

        .lang-option.active {
            background: rgba(124, 77, 255, 0.32);
        }

        .lang-option-flag {
            width: 22px;
            height: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            line-height: 1;
        }

        .lang-option-name {
            flex: 1;
            min-width: 0;
            white-space: nowrap;
        }

        .lang-option-code {
            color: var(--text-dark);
            font-size: 0.72rem;
            font-weight: 500;
            letter-spacing: 0.3px;
            flex-shrink: 0;
        }

        .lang-option-check {
            width: 15px;
            height: 15px;
            flex-shrink: 0;
            opacity: 0;
            color: #fff;
        }

        .lang-option.active .lang-option-check {
            opacity: 1;
        }

        /* Hero Section */
        #hero {
            padding: 12.5rem 2.5rem 8.5rem;
            max-width: 100%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.15fr 0.85fr;
            gap: 5.5rem;
            align-items: center;
            min-height: 88vh;
            position: relative;
            isolation: isolate;
            overflow: hidden;
            background-color: #07050b;
        }

        #hero .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            background-image: url('/dota2-heroes.jpg?v=8');
            background-size: cover;
            background-position: center top;
            background-repeat: no-repeat;
        }

        #hero .hero-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(7, 5, 11, 0.25) 0%, rgba(7, 5, 11, 0.45) 45%, rgba(7, 5, 11, 0.82) 88%, #07050b 100%);
        }

        #hero > *:not(.hero-bg) {
            position: relative;
            z-index: 1;
            max-width: 1320px;
            margin-left: auto;
            margin-right: auto;
            width: 100%;
        }

        #hero .hero-content,
        #hero .hero-visual {
            margin: 0;
        }

        .hero-content {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .hero-tagline {
            font-family: var(--font-mono);
            color: var(--primary);
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 4px;
            margin-bottom: 1.25rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .hero-tagline::before {
            content: '';
            width: 15px;
            height: 1px;
            background-color: var(--primary);
            display: inline-block;
        }

        #hero h1 {
            font-size: clamp(2.65rem, 4.5vw, 4.1rem);
            line-height: 1.12;
            margin-bottom: 2rem;
            background: linear-gradient(135deg, #ffffff 40%, var(--primary-bright) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 40px rgba(157, 78, 221, 0.1);
        }

        .hero-desc {
            font-size: 1.12rem;
            color: var(--text-secondary);
            margin-bottom: 2.75rem;
            max-width: 680px;
            line-height: 1.8;
        }

        .hero-desc a {
            color: var(--primary-bright);
            text-decoration: none;
            border-bottom: 1px dotted var(--primary-bright);
            transition: var(--transition);
            font-weight: 600;
        }

        .hero-desc a:hover {
            color: #fff;
            border-bottom-style: solid;
            text-shadow: 0 0 8px var(--primary);
        }

        .hero-ctas {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }

        .btn-secondary {
            display: inline-block;
            background: transparent;
            color: var(--text-main);
            text-decoration: none;
            font-family: var(--font-display);
            font-size: 0.8rem;
            font-weight: 700;
            padding: 0.8rem 1.6rem;
            border-radius: 4px;
            border: 1px solid var(--card-border);
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-secondary:hover {
            border-color: var(--primary);
            background: rgba(157, 78, 221, 0.08);
            color: #fff;
        }

        .hero-visual {
            position: relative;
            width: 100%;
            height: 460px;
            border: 1px solid var(--card-border);
            background-color: rgba(12, 8, 22, 0.45);
            border-radius: 8px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--glow);
        }

        .hero-visual::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle, rgba(157, 78, 221, 0.06) 0%, transparent 70%),
                linear-gradient(0deg, rgba(7, 5, 11, 0.6) 0%, transparent 100%);
            pointer-events: none;
        }

        .tech-hud {
            position: relative;
            width: 290px;
            height: 290px;
            border: 1px dashed rgba(157, 78, 221, 0.25);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: rotateHUD 28s linear infinite;
        }

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

        .tech-hud-inner {
            position: absolute;
            width: 82%;
            height: 82%;
            border: 2px solid transparent;
            border-left-color: var(--primary);
            border-right-color: var(--primary);
            border-radius: 50%;
            animation: rotateHUDInverse 18s linear infinite;
        }

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

        .hud-target {
            position: absolute;
            width: 14px;
            height: 14px;
            background-color: var(--primary-bright);
            border-radius: 50%;
            top: 22%;
            left: 28%;
            box-shadow: var(--glow-strong);
            animation: lockOn 4s ease-in-out infinite alternate;
        }

        @keyframes lockOn {
            0% { transform: scale(1); opacity: 0.7; }
            50% { transform: scale(1.25); opacity: 1; filter: brightness(1.2); }
            100% { transform: scale(1); opacity: 0.7; }
        }

        .hud-scan-line {
            position: absolute;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
            top: 0;
            left: 0;
            animation: scan 4s linear infinite;
            opacity: 0.5;
        }

        @keyframes scan {
            0% { top: 0%; }
            50% { top: 100%; }
            100% { top: 0%; }
        }

        .hud-telemetry {
            position: absolute;
            bottom: 25px;
            left: 25px;
            font-family: var(--font-mono);
            font-size: 0.75rem;
            color: var(--text-dark);
            text-align: left;
            pointer-events: none;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .hud-telemetry span {
            color: var(--primary);
            font-weight: bold;
        }

        /* Features Section */
        #features {
            padding: 7rem 2rem;
            max-width: 1100px;
            margin: 0 auto;
        }

        .features-heading {
            font-family: var(--font-display);
            font-size: 2.1rem;
            font-weight: 700;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 2rem;
            position: relative;
            padding-bottom: 1rem;
        }

        .features-heading::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 72px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), transparent);
            border-radius: 2px;
            box-shadow: 0 0 12px rgba(179, 128, 255, 0.5);
        }

        .features-panel {
            background: linear-gradient(160deg, rgba(8, 5, 14, 0.95) 0%, rgba(5, 3, 10, 0.98) 100%);
            border: 1px solid rgba(157, 78, 221, 0.12);
            border-radius: 16px;
            padding: 1.75rem;
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.03),
                0 20px 50px rgba(0, 0, 0, 0.45);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .feature-item {
            display: flex;
            align-items: center;
            min-height: 64px;
            background: linear-gradient(145deg, #0a0710 0%, #050308 100%);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 14px;
            padding: 1.35rem 1.6rem;
            transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                        border-color 0.3s ease,
                        box-shadow 0.3s ease,
                        background 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02), 0 6px 18px rgba(0, 0, 0, 0.4);
        }

        .feature-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 5px;
            background: linear-gradient(to bottom, #d8b4fe, #7c4dff, #9d4edd);
            opacity: 0;
            transform: scaleY(0.4);
            transform-origin: center;
            transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
            box-shadow: 0 0 18px rgba(179, 128, 255, 0.8);
        }

        .feature-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: -120%;
            width: 60%;
            height: 100%;
            background: linear-gradient(105deg, transparent 15%, rgba(216, 180, 254, 0.22) 50%, transparent 85%);
            transition: left 0.55s cubic-bezier(0.16, 1, 0.3, 1);
            pointer-events: none;
        }

        .feature-item:hover {
            transform: translateY(-5px);
            border-color: rgba(179, 128, 255, 0.75);
            background: linear-gradient(145deg, #15101f 0%, #0c0814 100%);
            box-shadow:
                inset 0 0 0 1px rgba(179, 128, 255, 0.15),
                0 0 0 1px rgba(179, 128, 255, 0.25),
                0 16px 40px rgba(0, 0, 0, 0.55),
                0 0 35px rgba(124, 77, 255, 0.35);
        }

        .feature-item:hover::before {
            opacity: 1;
            transform: scaleY(1);
        }

        .feature-item:hover::after {
            left: 130%;
        }

        .feature-item:hover .feature-item-text {
            color: #fff;
            transform: translateX(6px);
            text-shadow: 0 0 24px rgba(179, 128, 255, 0.45);
        }

        .feature-item-text {
            font-size: 1.05rem;
            font-weight: 500;
            color: #b8b0c8;
            line-height: 1.45;
            transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                        color 0.3s ease,
                        text-shadow 0.3s ease;
            position: relative;
            z-index: 1;
        }

        /* Demo Section */
        #demo {
            padding: 7rem 2rem;
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        #demo h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #ffffff 60%, var(--primary-bright) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .demo-screenshots-heading {
            margin-top: 3.5rem;
            margin-bottom: 1.5rem;
        }

        .demo-video-wrapper {
            position: relative;
            width: 100%;
            padding-top: 56.25%; /* 16:9 aspect ratio */
            border: 1px solid var(--card-border);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--glow);
            margin-top: 2.5rem;
            transition: border-color 0.3s ease;
        }

        .demo-video-wrapper:hover {
            border-color: var(--card-border-hover);
        }

        .demo-video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Pricing Section */
        #pricing {
            padding: 3.5rem 2rem 6rem;
            max-width: 560px;
            margin: 0 auto;
        }

        .pricing-header {
            margin-bottom: 1.75rem;
        }

        .pricing-widget-label {
            display: block;
            font-family: var(--font-mono);
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--pricing-active-border);
            margin-bottom: 0.5rem;
        }

        .pricing-widget-title {
            font-family: var(--font-body);
            font-size: 1.75rem;
            font-weight: 700;
            color: #fff;
            text-transform: none;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        .plan-cards {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .plan-card-wrap {
            width: 100%;
        }

        .plan-card {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            min-height: 82px;
            padding: 1.25rem 1.45rem;
            background: linear-gradient(145deg, #0c0814 0%, #090810 100%);
            border: 1.5px solid rgba(255, 255, 255, 0.07);
            border-radius: 14px;
            cursor: pointer;
            transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                        border-color 0.3s ease,
                        box-shadow 0.3s ease,
                        background 0.3s ease;
            text-align: left;
            font-family: var(--font-body);
            color: inherit;
            position: relative;
            overflow: hidden;
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.03),
                0 8px 24px rgba(0, 0, 0, 0.45);
        }

        .plan-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(to bottom, #d8b4fe, #7c4dff);
            opacity: 0;
            transform: scaleY(0.5);
            transition: transform 0.3s ease, opacity 0.3s ease;
            box-shadow: 0 0 14px rgba(179, 128, 255, 0.6);
        }

        .plan-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: -120%;
            width: 55%;
            height: 100%;
            background: linear-gradient(105deg, transparent 20%, rgba(216, 180, 254, 0.22) 50%, transparent 80%);
            transition: left 0.55s cubic-bezier(0.16, 1, 0.3, 1);
            pointer-events: none;
        }

        .plan-card:hover {
            transform: translateY(-4px);
            border-color: rgba(179, 128, 255, 0.62);
            background: linear-gradient(145deg, #161024 0%, #0e0a16 100%);
            box-shadow:
                inset 0 0 0 1px rgba(179, 128, 255, 0.14),
                0 14px 36px rgba(0, 0, 0, 0.5),
                0 0 32px rgba(124, 77, 255, 0.28);
        }

        .plan-card:hover::before {
            opacity: 0.85;
            transform: scaleY(1);
        }

        .plan-card:hover::after {
            left: 130%;
        }

        .plan-card:hover .plan-card-price {
            color: var(--primary-bright);
            text-shadow: 0 0 22px rgba(179, 128, 255, 0.5);
        }

        .plan-card.selected {
            border-color: rgba(124, 77, 255, 0.85);
            background: linear-gradient(145deg, #18122a 0%, #0f0b18 100%);
            box-shadow:
                inset 0 0 0 1px rgba(124, 77, 255, 0.25),
                0 0 0 1px rgba(124, 77, 255, 0.3),
                0 12px 32px rgba(0, 0, 0, 0.5),
                0 0 32px rgba(124, 77, 255, 0.3);
        }

        .plan-card.selected::before {
            opacity: 1;
            transform: scaleY(1);
        }

        .plan-card-info {
            display: flex;
            flex-direction: column;
            gap: 0.55rem;
            position: relative;
            z-index: 1;
        }

        .plan-card-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .plan-card-name {
            font-size: 1.08rem;
            font-weight: 700;
            color: #fff;
        }

        .plan-badge {
            display: inline-block;
            padding: 0.15rem 0.5rem;
            background-color: var(--accent-green);
            color: #000;
            font-size: 0.62rem;
            font-weight: 700;
            border-radius: 999px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            line-height: 1.4;
        }

        .plan-card-desc {
            font-size: 0.88rem;
            color: var(--text-secondary);
        }

        .plan-card-price {
            font-size: 1.65rem;
            font-weight: 700;
            color: #fff;
            flex-shrink: 0;
            margin-left: 1rem;
            position: relative;
            z-index: 1;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }

        .pricing-checkout {
            background-color: var(--pricing-bg);
            border: 1px solid rgba(157, 78, 221, 0.15);
            border-radius: 14px;
            padding: 1.5rem 1.65rem 1.4rem;
            box-shadow: var(--glow);
            margin-top: 0.75rem;
        }

        .btn-buy-now {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
            width: 100%;
            padding: 0.95rem 1.4rem;
            background: #fff;
            color: #090810;
            font-family: var(--font-body);
            font-size: 0.98rem;
            font-weight: 700;
            text-decoration: none;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            transition: var(--transition);
            margin-bottom: 1.75rem;
        }

        .btn-buy-now:hover {
            background: #f4f4f5;
            transform: translateY(-1px);
            box-shadow: 0 4px 20px rgba(255, 255, 255, 0.12);
        }

        .btn-buy-now:active {
            transform: translateY(0);
        }

        .btn-buy-now svg {
            flex-shrink: 0;
            width: 22px;
            height: 22px;
        }

        .pricing-summary {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            padding-top: 0.35rem;
            margin-bottom: 1.75rem;
        }

        .pricing-summary-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .pricing-summary-label {
            font-size: 1rem;
            color: var(--text-secondary);
            text-transform: lowercase;
        }

        .pricing-summary-value {
            font-size: 1.05rem;
            font-weight: 600;
            color: #fff;
        }

        .pricing-secure {
            display: flex;
            align-items: center;
            gap: 0.55rem;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

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

        /* Security Section */
        #security {
            padding: 7rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .security-container {
            display: grid;
            grid-template-columns: 1.05fr 0.95fr;
            gap: 5rem;
            align-items: center;
        }

        #security h2 {
            font-size: 2rem;
            margin-bottom: 1.75rem;
            background: linear-gradient(135deg, #ffffff 60%, var(--primary-bright) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .security-desc {
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .security-terminal {
            background-color: #09070f;
            border: 1px solid var(--card-border);
            border-radius: 6px;
            font-family: var(--font-mono);
            font-size: 0.85rem;
            color: var(--primary);
            padding: 1.75rem;
            box-shadow: var(--glow);
            overflow: hidden;
            position: relative;
        }

        .terminal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(157, 78, 221, 0.12);
            padding-bottom: 0.75rem;
            margin-bottom: 1.25rem;
        }

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

        .terminal-dot {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background-color: var(--text-dark);
        }

        .terminal-dot.active {
            background-color: var(--accent);
            box-shadow: 0 0 5px var(--accent);
        }

        .terminal-title {
            color: var(--text-secondary);
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .terminal-body {
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }

        .terminal-line {
            display: flex;
            gap: 0.5rem;
        }

        .terminal-line.success {
            color: var(--primary-bright);
        }

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

        .blink {
            animation: blinker 1.2s linear infinite;
        }

        @keyframes blinker {
            50% { opacity: 0; }
        }

        /* System Requirements Section */
        #requirements {
            padding: 0 2rem 5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .requirements-heading {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 700;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1.75rem;
        }

        .requirements-box {
            background: linear-gradient(145deg, rgba(10, 7, 16, 0.95) 0%, rgba(6, 4, 10, 0.98) 100%);
            border: 1px solid rgba(157, 78, 221, 0.2);
            border-radius: 10px;
            padding: 2rem 2.25rem;
            box-shadow: var(--glow);
        }

        .requirements-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .requirements-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.85rem;
            font-size: 1.05rem;
            font-weight: 500;
            color: #fff;
            line-height: 1.5;
        }

        .requirements-list li::before {
            content: '';
            flex-shrink: 0;
            width: 8px;
            height: 8px;
            margin-top: 0.45rem;
            border-radius: 50%;
            background: var(--primary);
            box-shadow: 0 0 8px rgba(179, 128, 255, 0.5);
        }

        .requirements-list li.requirements-note {
            font-weight: 400;
            color: var(--text-main);
        }

        /* FAQ Section */
        #faq {
            padding: 3rem 2rem 6rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .faq-heading {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 700;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1.75rem;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
        }

        .faq-item {
            background: linear-gradient(145deg, rgba(10, 7, 16, 0.95) 0%, rgba(6, 4, 10, 0.98) 100%);
            border: 1px solid rgba(157, 78, 221, 0.18);
            border-radius: 10px;
            overflow: hidden;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .faq-item.open {
            border-color: rgba(179, 128, 255, 0.4);
            box-shadow: 0 0 24px rgba(124, 77, 255, 0.12);
        }

        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding: 1.25rem 1.5rem;
            background: transparent;
            border: none;
            color: #fff;
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 600;
            text-align: left;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .faq-question:hover {
            color: var(--primary-bright);
        }

        .faq-icon {
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            color: var(--primary);
            transition: transform 0.3s ease;
        }

        .faq-item.open .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .faq-item.open .faq-answer {
            max-height: 320px;
        }

        .faq-answer p {
            padding: 0 1.5rem 1.35rem;
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.75;
        }

        /* Why Us Section */
        #whyus {
            padding: 5rem 2rem 7rem;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        #whyus h2 {
            font-size: 2.2rem;
            margin-bottom: 3.5rem;
            background: linear-gradient(135deg, #ffffff 60%, var(--primary-bright) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .whyus-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }

        .whyus-card {
            background-color: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 8px;
            padding: 3rem 2rem;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .whyus-card:hover {
            transform: translateY(-4px);
            border-color: var(--card-border-hover);
            box-shadow: var(--glow);
        }

        .whyus-icon {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            background: rgba(157, 78, 221, 0.08);
            border: 1px solid var(--card-border);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.75rem;
            color: var(--primary);
            font-size: 1.4rem;
            box-shadow: inset 0 0 8px rgba(157, 78, 221, 0.1);
        }

        .whyus-card h3 {
            font-family: var(--font-display);
            font-size: 1.15rem;
            color: #fff;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .whyus-card p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* Footer */
        footer {
            background-color: #040307;
            border-top: 1px solid var(--card-border);
            padding: 4rem 2rem;
            text-align: center;
            font-family: var(--font-mono);
            font-size: 0.8rem;
            color: var(--text-dark);
        }

        .footer-logo {
            font-family: var(--font-display);
            font-size: 1.15rem;
            color: #fff;
            text-decoration: none;
            margin-bottom: 1.25rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            text-shadow: 0 0 10px rgba(179, 128, 255, 0.25);
            letter-spacing: 2px;
        }

        .footer-copyright {
            margin-bottom: 1.75rem;
        }

        .footer-social {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.25rem;
            margin: 0 0 1.5rem;
        }

        .footer-social a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.78rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            transition: var(--transition);
        }

        .footer-social a:hover {
            color: var(--primary-bright);
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2.5rem;
            list-style: none;
            margin-top: 1rem;
        }

        .footer-links a {
            color: var(--text-dark);
            text-decoration: none;
            transition: var(--transition);
        }

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

        /* Screenshot Carousel */
        .screenshot-carousel-wrap {
            margin-top: 2.5rem;
            width: 88%;
            max-width: 860px;
            margin-left: auto;
            margin-right: auto;
        }

        .screenshot-carousel {
            display: flex;
            flex-direction: column;
            gap: 1.1rem;
        }

        .screenshot-stage {
            position: relative;
            aspect-ratio: 16/9;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid rgba(157, 78, 221, 0.35);
            background: rgba(10, 7, 16, 0.95);
            box-shadow:
                0 0 32px rgba(124, 77, 255, 0.12),
                inset 0 0 50px rgba(124, 77, 255, 0.04);
            isolation: isolate;
        }

        .screenshot-media {
            position: absolute;
            inset: 0;
            z-index: 1;
        }

        .screenshot-layer {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            will-change: transform, opacity, filter;
        }

        #screenshot-layer-current { z-index: 1; }
        #screenshot-layer-enter { z-index: 2; }

        .screenshot-switch-flash {
            position: absolute;
            inset: 0;
            z-index: 2;
            pointer-events: none;
            background: radial-gradient(circle at center, rgba(179, 128, 255, 0.45) 0%, transparent 65%);
            opacity: 0;
        }

        .screenshot-switch-flash.active {
            animation: screenshotFlash 0.55s ease-out forwards;
        }

        @keyframes screenshotFlash {
            0% { opacity: 0; }
            25% { opacity: 0.85; }
            100% { opacity: 0; }
        }

        .screenshot-switch-wipe {
            position: absolute;
            top: 0;
            left: -120%;
            width: 60%;
            height: 100%;
            z-index: 3;
            pointer-events: none;
            background: linear-gradient(
                105deg,
                transparent 0%,
                rgba(179, 128, 255, 0.15) 35%,
                rgba(255, 255, 255, 0.35) 50%,
                rgba(179, 128, 255, 0.15) 65%,
                transparent 100%
            );
            transform: skewX(-18deg);
            opacity: 0;
        }

        .screenshot-switch-wipe.active {
            animation: screenshotWipe 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        @keyframes screenshotWipe {
            0% {
                left: -120%;
                opacity: 0;
            }
            15% {
                opacity: 1;
            }
            100% {
                left: 140%;
                opacity: 0;
            }
        }

        .screenshot-layer.exit-next {
            animation: screenshotExitLeft 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        .screenshot-layer.exit-prev {
            animation: screenshotExitRight 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        .screenshot-layer.enter-next {
            animation: screenshotEnterRight 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        .screenshot-layer.enter-prev {
            animation: screenshotEnterLeft 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        @keyframes screenshotExitLeft {
            0% { transform: translateX(0) scale(1); opacity: 1; filter: blur(0); }
            100% { transform: translateX(-18%) scale(0.94); opacity: 0; filter: blur(6px); }
        }

        @keyframes screenshotExitRight {
            0% { transform: translateX(0) scale(1); opacity: 1; filter: blur(0); }
            100% { transform: translateX(18%) scale(0.94); opacity: 0; filter: blur(6px); }
        }

        @keyframes screenshotEnterRight {
            0% { transform: translateX(18%) scale(1.06); opacity: 0; filter: blur(8px); }
            100% { transform: translateX(0) scale(1); opacity: 1; filter: blur(0); }
        }

        @keyframes screenshotEnterLeft {
            0% { transform: translateX(-18%) scale(1.06); opacity: 0; filter: blur(8px); }
            100% { transform: translateX(0) scale(1); opacity: 1; filter: blur(0); }
        }

        .screenshot-border-glow {
            position: absolute;
            inset: -1px;
            border-radius: 10px;
            pointer-events: none;
            z-index: 4;
            box-shadow:
                inset 0 0 30px rgba(179, 128, 255, 0.08),
                0 0 24px rgba(124, 77, 255, 0.25);
            animation: screenshotGlowPulse 3s ease-in-out infinite;
        }

        @keyframes screenshotGlowPulse {
            0%, 100% {
                box-shadow:
                    inset 0 0 30px rgba(179, 128, 255, 0.06),
                    0 0 20px rgba(124, 77, 255, 0.2);
            }
            50% {
                box-shadow:
                    inset 0 0 40px rgba(179, 128, 255, 0.12),
                    0 0 36px rgba(124, 77, 255, 0.4);
            }
        }

        .screenshot-scanline {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 3;
            background: linear-gradient(
                180deg,
                transparent 0%,
                rgba(179, 128, 255, 0.03) 50%,
                transparent 100%
            );
            animation: screenshotScan 4s linear infinite;
        }

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

        .screenshot-stage::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 55%, rgba(7, 5, 11, 0.92) 100%);
            pointer-events: none;
            z-index: 4;
        }

        .screenshot-caption {
            position: absolute;
            bottom: 18px;
            left: 18px;
            z-index: 5;
            font-family: var(--font-display);
            font-size: 0.85rem;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 700;
            border-left: 3px solid var(--primary);
            padding-left: 10px;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
        }

        .screenshot-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 6;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 1px solid rgba(157, 78, 221, 0.45);
            background: rgba(10, 7, 16, 0.75);
            color: #fff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            backdrop-filter: blur(8px);
        }

        .screenshot-nav:hover {
            border-color: var(--primary-bright);
            background: rgba(124, 77, 255, 0.35);
            box-shadow: 0 0 20px rgba(179, 128, 255, 0.4);
            transform: translateY(-50%) scale(1.08);
        }

        .screenshot-nav:active {
            transform: translateY(-50%) scale(0.96);
        }

        .screenshot-nav.prev { left: 14px; }
        .screenshot-nav.next { right: 14px; }

        .screenshot-nav svg {
            width: 20px;
            height: 20px;
        }

        .screenshot-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .screenshot-dots {
            display: flex;
            flex-wrap: wrap;
            gap: 0.45rem;
            flex: 1;
        }

        .screenshot-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            border: none;
            padding: 0;
            background: rgba(157, 78, 221, 0.25);
            cursor: pointer;
            transition: var(--transition);
        }

        .screenshot-dot:hover {
            background: rgba(179, 128, 255, 0.55);
            transform: scale(1.2);
        }

        .screenshot-dot.active {
            background: var(--primary-bright);
            box-shadow: 0 0 10px rgba(179, 128, 255, 0.7);
            transform: scale(1.15);
        }

        .screenshot-counter {
            font-family: var(--font-mono);
            font-size: 0.78rem;
            color: var(--text-dark);
            letter-spacing: 0.5px;
            flex-shrink: 0;
        }

        .demo-gallery-data {
            display: none;
        }

        /* Blog Section */
        #blog {
            padding: 4rem 2rem 6rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .blog-heading {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 700;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 0.75rem;
        }

        .blog-intro {
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.7;
            max-width: 640px;
            margin-bottom: 2.5rem;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .blog-card {
            background: linear-gradient(145deg, rgba(10, 7, 16, 0.95) 0%, rgba(6, 4, 10, 0.98) 100%);
            border: 1px solid rgba(157, 78, 221, 0.18);
            border-radius: 10px;
            padding: 1.75rem 1.85rem;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .blog-card:hover {
            border-color: rgba(179, 128, 255, 0.35);
            box-shadow: 0 0 24px rgba(124, 77, 255, 0.1);
        }

        .blog-card.open {
            border-color: rgba(179, 128, 255, 0.4);
            box-shadow: 0 0 28px rgba(124, 77, 255, 0.14);
        }

        .blog-meta {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.85rem;
            font-family: var(--font-mono);
            font-size: 0.72rem;
            color: var(--text-dark);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .blog-tag {
            color: var(--primary);
            font-weight: 700;
        }

        .blog-card h3 {
            font-family: var(--font-display);
            font-size: 1.05rem;
            font-weight: 700;
            color: #fff;
            text-transform: none;
            letter-spacing: 0.3px;
            line-height: 1.45;
            margin-bottom: 0.85rem;
        }

        .blog-excerpt {
            color: var(--text-secondary);
            font-size: 0.92rem;
            line-height: 1.75;
            margin-bottom: 0;
        }

        .blog-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.45s ease;
        }

        .blog-card.open .blog-body {
            max-height: 1200px;
        }

        .blog-body-inner {
            padding-top: 1.15rem;
            border-top: 1px solid rgba(157, 78, 221, 0.12);
            margin-top: 1.15rem;
        }

        .blog-body-inner p {
            color: var(--text-secondary);
            font-size: 0.92rem;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .blog-body-inner p:last-child {
            margin-bottom: 0;
        }

        .blog-body-inner a {
            color: var(--primary-bright);
            text-decoration: none;
            border-bottom: 1px dotted rgba(179, 128, 255, 0.5);
            transition: var(--transition);
        }

        .blog-body-inner a:hover {
            color: #fff;
            border-bottom-color: var(--primary-bright);
        }

        .blog-read-more {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            margin-top: 1.15rem;
            padding: 0;
            background: none;
            border: none;
            color: var(--primary);
            font-family: var(--font-mono);
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            cursor: pointer;
            transition: color 0.25s ease;
        }

        .blog-read-more:hover {
            color: var(--primary-bright);
        }

        .blog-read-more svg {
            width: 14px;
            height: 14px;
            transition: transform 0.25s ease;
        }

        .blog-card.open .blog-read-more svg {
            transform: rotate(180deg);
        }

        .blog-cta {
            display: flex;
            justify-content: center;
            margin-top: 3rem;
            padding-top: 0.5rem;
        }

        .demo-cta {
            margin-top: 2.5rem;
        }

        .btn-get-product {
            display: inline-block;
            background: linear-gradient(135deg, rgba(124, 77, 255, 0.08) 0%, rgba(157, 78, 221, 0.04) 100%);
            color: rgba(216, 180, 254, 0.75);
            text-decoration: none;
            font-family: var(--font-display);
            font-size: 0.82rem;
            font-weight: 700;
            padding: 0.85rem 2.25rem;
            border-radius: 6px;
            border: 1px solid rgba(157, 78, 221, 0.22);
            box-shadow: 0 0 20px rgba(124, 77, 255, 0.06);
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            opacity: 0.85;
        }

        .btn-get-product:hover {
            opacity: 1;
            color: #fff;
            border-color: rgba(179, 128, 255, 0.45);
            background: linear-gradient(135deg, rgba(124, 77, 255, 0.18) 0%, rgba(157, 78, 221, 0.1) 100%);
            box-shadow: 0 0 28px rgba(124, 77, 255, 0.18);
            transform: translateY(-2px);
        }

        .btn-get-product:active {
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 1100px) {
            .nav-links {
                gap: 1.4rem;
            }

            .nav-links a:not(.btn-get-access):not(.btn-discord) {
                font-size: 0.72rem;
            }
        }

        @media (max-width: 968px) {
            .logo-icon {
                width: 52px;
                height: 52px;
            }

            .logo {
                font-size: 1.35rem;
                gap: 0.55rem;
            }

            #hero {
                grid-template-columns: 1fr;
                gap: 4rem;
                padding-top: 9rem;
                text-align: center;
            }

            .hero-content {
                align-items: center;
            }

            .hero-tagline {
                justify-content: center;
            }

            .hero-tagline::before {
                display: none;
            }

            .hero-ctas {
                justify-content: center;
            }

            .hero-visual {
                height: 320px;
            }

            .features-panel {
                padding: 1.25rem;
            }

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

            .feature-item {
                min-height: 58px;
                padding: 1.2rem 1.35rem;
            }

            .feature-item-text {
                font-size: 1rem;
            }

            .security-container {
                grid-template-columns: 1fr;
                gap: 3.5rem;
            }

            .whyus-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .screenshot-nav {
                width: 38px;
                height: 38px;
            }

            .screenshot-caption {
                font-size: 0.72rem;
            }

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

            #features,
            #demo,
            #security,
            #faq,
            #whyus,
            #blog {
                padding-left: 1.5rem;
                padding-right: 1.5rem;
            }

            #features,
            #security {
                padding-top: 5rem;
                padding-bottom: 5rem;
            }

            #demo {
                padding-top: 5rem;
                padding-bottom: 5rem;
            }

            .screenshot-carousel-wrap {
                width: 94%;
            }

            .screenshot-nav.prev { left: 8px; }
            .screenshot-nav.next { right: 8px; }

            .screenshot-footer {
                flex-wrap: wrap;
                justify-content: center;
                gap: 0.75rem;
            }

            .demo-cta,
            .blog-cta {
                margin-top: 2rem;
            }

            .btn-get-product {
                width: 100%;
                max-width: 320px;
                text-align: center;
            }

            .plan-card {
                flex-wrap: wrap;
                gap: 0.75rem;
            }

            .plan-card-price {
                margin-left: 0;
            }

            .footer-links {
                flex-wrap: wrap;
                gap: 1rem 1.5rem;
                justify-content: center;
            }
        }

        @media (max-width: 900px) {
            .nav-container {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 1rem 1.25rem;
            }

            .nav-container > .logo {
                grid-column: auto;
                justify-self: auto;
            }

            .nav-container > .nav-toggle {
                display: flex;
            }

            .nav-container > .nav-backdrop {
                display: block;
            }

            #main-nav {
                display: flex;
                flex-direction: column;
                position: fixed;
                top: 0;
                right: 0;
                width: min(320px, 100%);
                max-width: 100%;
                height: 100vh;
                height: 100dvh;
                z-index: 1100;
                background: linear-gradient(180deg, rgba(12, 8, 20, 0.98) 0%, rgba(7, 5, 11, 0.99) 100%);
                border-left: 1px solid rgba(157, 78, 221, 0.25);
                box-shadow: -12px 0 40px rgba(0, 0, 0, 0.5);
                transform: translateX(105%);
                transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
            }

            body.nav-open #main-nav {
                transform: translateX(0);
            }

            #main-nav .nav-links {
                grid-column: auto;
                justify-self: auto;
                flex-direction: column;
                align-items: stretch;
                gap: 0;
                padding: 5.25rem 1.35rem 0;
                width: 100%;
            }

            .nav-links > li {
                border-bottom: 1px solid rgba(157, 78, 221, 0.1);
            }

            .nav-links a:not(.btn-get-access):not(.btn-discord) {
                display: block;
                padding: 0.9rem 0;
                font-size: 0.85rem;
            }

            #main-nav .nav-cta-group {
                grid-column: auto;
                justify-self: auto;
                flex-direction: column;
                align-items: stretch;
                width: 100%;
                gap: 0.75rem;
                margin-top: 1rem;
                padding: 1rem 1.35rem 2rem;
                border-top: 1px solid rgba(157, 78, 221, 0.15);
            }

            .btn-discord,
            .btn-get-access {
                width: 100%;
                justify-content: center;
                text-align: center;
                min-height: 44px;
            }

            .lang-switcher {
                width: 100%;
            }

            .lang-switcher-btn {
                width: 100%;
                justify-content: center;
            }

            .lang-dropdown {
                left: 0;
                right: 0;
                width: 100%;
            }
        }

        @media (max-width: 600px) {
            #hero {
                padding: 8.5rem 1.25rem 5rem;
                gap: 2.5rem;
                min-height: auto;
            }

            #hero h1 {
                font-size: clamp(1.85rem, 8vw, 2.65rem);
                margin-bottom: 1.25rem;
            }

            .hero-desc {
                font-size: 0.98rem;
                margin-bottom: 2rem;
                line-height: 1.65;
            }

            .hero-tagline {
                font-size: 0.72rem;
                letter-spacing: 2.5px;
            }

            .hero-visual {
                height: 240px;
            }

            .hero-ctas {
                flex-direction: column;
                width: 100%;
                gap: 0.75rem;
            }

            .hero-ctas .btn-get-access,
            .hero-ctas .btn-secondary {
                width: 100%;
                text-align: center;
                min-height: 48px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .features-heading,
            #demo h2,
            #security h2,
            .faq-heading,
            #whyus h2,
            .blog-heading {
                font-size: 1.55rem;
                letter-spacing: 1.5px;
            }

            #features,
            #demo,
            #security,
            #faq,
            #whyus,
            #blog,
            #pricing {
                padding-left: 1.15rem;
                padding-right: 1.15rem;
            }

            #pricing {
                padding-bottom: 4.5rem;
            }

            .screenshot-carousel-wrap {
                width: 100%;
                margin-top: 2rem;
            }

            .screenshot-caption {
                bottom: 12px;
                left: 12px;
                font-size: 0.65rem;
                letter-spacing: 1px;
            }

            .screenshot-nav {
                width: 36px;
                height: 36px;
                min-width: 36px;
                min-height: 36px;
            }

            .screenshot-nav svg {
                width: 16px;
                height: 16px;
            }

            .screenshot-dot {
                width: 10px;
                height: 10px;
            }

            .blog-card {
                padding: 1.35rem 1.25rem;
            }

            .faq-question {
                font-size: 0.88rem;
                padding: 1rem 1.1rem;
            }

            footer {
                padding: 3rem 1.15rem;
            }

            .footer-copyright {
                font-size: 0.72rem;
                line-height: 1.55;
            }

            .logo {
                font-size: 1.15rem;
                gap: 0.45rem;
            }

            .logo-icon {
                width: 44px;
                height: 44px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }

            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
.section-lead {
    max-width: 720px;
    margin: 0 auto 1.5rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}