        /* ── Reset & Base ───────────────────────── */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background: #011825;
            color: #fff;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.6;
        }

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

        button {
            cursor: pointer;
            border: none;
            background: none;
            font-family: inherit;
        }

        input,
        select,
        textarea {
            font-family: inherit;
        }

        /* ── Utilities ──────────────────────────── */
        .grad-text {
            background: linear-gradient(90deg, #b0da00, #d4f033);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .grad-btn {
            background: linear-gradient(90deg, #b0da00, #d4f033);
            color: #0d1300;
            border-radius: 999px;
            font-weight: 600;
            transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
        }

        .grad-btn:hover {
            opacity: 0.88;
            transform: scale(1.03);
            box-shadow: 0 8px 32px rgba(176, 218, 0, 0.35);
        }

        /* ── Scroll reveal ──────────────────────── */
        .reveal {
            opacity: 0;
            transform: translateY(32px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ══════════════════════════════════════════
        NAVBAR
    ══════════════════════════════════════════ */
        #navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
            border-bottom: 1px solid transparent;
        }

        #navbar.scrolled {
            background: rgba(5, 7, 15, 0.9);
            backdrop-filter: blur(12px);
            border-color: rgba(255, 255, 255, 0.05);
        }

        .nav-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

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

        .nav-logo-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: linear-gradient(135deg, #d4f033, #b0da00);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .nav-logo-icon svg {
            width: 18px;
            height: 18px;
        }

        .nav-logo-text {
            font-weight: 700;
            font-size: 1.05rem;
            letter-spacing: -0.01em;
        }

        .nav-logo-text span {
            color: #d4f033;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .nav-links a {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.55);
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: #fff;
        }

        .nav-links a.active {
            color: #fff;
            border-bottom: 2px solid #d4f033;
            padding-bottom: 2px;
        }

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

        .nav-signin {
            font-size: 0.875rem;
            color: #d4f033;
            transition: color 0.2s;
            padding: 8px 12px;
        }

        .nav-signin:hover {
            color: #fff;
        }

        .nav-demo {
            padding: 8px 20px;
            font-size: 0.875rem;
        }

        .nav-hamburger {
            display: none;
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.7);
            padding: 4px;
        }

        .nav-hamburger:hover {
            color: #fff;
        }

        .nav-hamburger svg {
            display: block;
        }

        #mobile-menu {
            display: none;
            flex-direction: column;
            gap: 16px;
            padding: 20px 24px;
            background: rgba(5, 7, 15, 0.95);
            backdrop-filter: blur(12px);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        #mobile-menu.open {
            display: flex;
        }

        #mobile-menu a {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.65);
            transition: color 0.2s;
        }

        #mobile-menu a:hover {
            color: #fff;
        }

        #mobile-menu a.active {
            color: #fff;
        }

        #mobile-menu .mob-demo {
            margin-top: 4px;
            padding: 10px 16px;
            font-size: 0.875rem;
            text-align: center;
        }

        @media (max-width: 768px) {

            .nav-links,
            .nav-ctas {
                display: none;
            }

            .nav-hamburger {
                display: block;
            }
        }

        /* ══════════════════════════════════════════
        HERO
    ══════════════════════════════════════════ */
        #hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding: 96px 24px 60px;
        }

        .hero-video-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
            opacity: 0.4;
        }

        .hero-video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(1, 24, 37, 0.4) 0%, #011825 100%);
            z-index: 1;
        }

        #hero>* {
            z-index: 2;
        }

        .hero-grid {
            position: absolute;
            inset: 0;
            pointer-events: none;
            background-image:
                linear-gradient(rgba(212, 240, 51, 0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(212, 240, 51, 0.04) 1px, transparent 1px);
            background-size: 60px 60px;
        }

        .hero-glow-1 {
            position: absolute;
            top: -160px;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 600px;
            background: #b0da00;
            opacity: 0.07;
            border-radius: 50%;
            filter: blur(120px);
            pointer-events: none;
        }

        .hero-glow-2 {
            position: absolute;
            top: 33%;
            right: -80px;
            width: 400px;
            height: 400px;
            background: #d4f033;
            opacity: 0.05;
            border-radius: 50%;
            filter: blur(100px);
            pointer-events: none;
        }

        .hero-badge {
            position: relative;
            z-index: 1;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            border-radius: 999px;
            border: 1px solid rgba(176, 218, 0, 0.3);
            background: rgba(176, 218, 0, 0.1);
            color: #d4f033;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 24px;
            animation: fadeUp 0.6s ease both;
        }

        .hero-badge-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #d4f033;
            animation: pulse 1.8s ease-in-out infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: 0.5;
                transform: scale(0.8);
            }
        }

        .hero-h1 {
            position: relative;
            z-index: 1;
            font-size: clamp(2.4rem, 6vw, 4.5rem);
            font-weight: 900;
            line-height: 1.1;
            text-align: center;
            max-width: 820px;
            animation: fadeUp 0.7s 0.1s ease both;
        }

        .hero-sub {
            position: relative;
            z-index: 1;
            margin-top: 24px;
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 1.1rem;
            max-width: 580px;
            line-height: 1.7;
            animation: fadeUp 0.7s 0.25s ease both;
        }

        .hero-ctas {
            position: relative;
            z-index: 1;
            margin-top: 40px;
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
            animation: fadeUp 0.7s 0.4s ease both;
        }

        .hero-cta-primary {
            padding: 14px 32px;
            font-size: 1rem;
        }

        .hero-cta-secondary {
            padding: 14px 32px;
            font-size: 1rem;
            font-weight: 600;
            color: #d4f033;
            border-radius: 999px;
            transition: border-color 0.2s, color 0.2s;
        }

        .hero-cta-secondary:hover {
            border-color: #fff !important;
            color: #fff !important;
        }

        /* ── Video Modal ── */
        .video-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(1, 24, 37, 0.9);
            backdrop-filter: blur(8px);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .video-modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .video-modal-content {
            position: relative;
            width: 90%;
            max-width: 1000px;
            aspect-ratio: 16/9;
            background: #000;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
            transform: scale(0.95);
            transition: transform 0.3s ease;
        }

        .video-modal-overlay.active .video-modal-content {
            transform: scale(1);
        }

        .video-modal-close {
            position: absolute;
            top: -48px;
            right: 0;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.2s, transform 0.2s;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .video-modal-close:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.05);
        }

        .video-modal-content iframe,
        .video-modal-content video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .hero-stats {
            position: relative;
            z-index: 1;
            margin-top: 64px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 16px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.02);
            animation: fadeUp 0.8s 0.55s ease both;
        }

        .hero-stat {
            padding: 20px 32px;
            text-align: center;
            border-right: 1px solid rgba(255, 255, 255, 0.05);
            min-width: 130px;
        }

        .hero-stat:last-child {
            border-right: none;
        }

        .hero-stat-val {
            font-size: 1.4rem;
            font-weight: 800;
            background: linear-gradient(90deg, #b0da00, #d4f033);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-stat-lbl {
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: rgba(255, 255, 255, 0.35);
            margin-top: 4px;
        }

        .hero-scroll {
            position: absolute;
            bottom: 32px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, 0.2);
            font-size: 0.65rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            animation: fadeIn 1s 1.2s ease both;
        }

        .hero-scroll-line {
            width: 1px;
            height: 32px;
            background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), transparent);
            animation: scrollBob 1.8s ease-in-out infinite;
        }

        @keyframes scrollBob {

            0%,
            100% {
                transform: scaleY(1);
            }

            50% {
                transform: scaleY(1.3);
            }
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(28px);
            }

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

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        /* ══════════════════════════════════════════
        SECTIONS
    ══════════════════════════════════════════ */
        .section {
            padding: 112px 24px;
            overflow: hidden;
            position: relative;
        }

        .section-alt {
            background: #011825;
        }

        .section-inner {
            max-width: 1280px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .section-eyebrow {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #d4f033;
            margin-bottom: 12px;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 900;
            line-height: 1.15;
        }

        .section-desc {
            margin-top: 16px;
            color: rgba(255, 255, 255, 0.38);
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
            font-size: 0.95rem;
        }

        /* ── Products ── */
        .products-glow {
            position: absolute;
            left: -160px;
            top: 50%;
            transform: translateY(-50%);
            width: 500px;
            height: 500px;
            background: #b0da00;
            opacity: 0.04;
            border-radius: 50%;
            filter: blur(120px);
            pointer-events: none;
        }

        .prod-tabs {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px;
            margin-bottom: 48px;
        }

        .prod-tab {
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 18px;
            border-radius: 999px;
            font-size: 0.875rem;
            font-weight: 500;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.02);
            color: rgba(255, 255, 255, 0.55);
            transition: color 0.2s, background 0.2s, border-color 0.2s;
            cursor: pointer;
        }

        .prod-tab svg {
            transition: stroke 0.2s;
        }

        .prod-tab:hover {
            color: rgba(255, 255, 255, 0.8);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .prod-tab.active {
            background: #d4f033;
            /* Primary login CTA color */
            border-color: #d4f033;
            color: #0d1300;
        }

        .prod-tab.active svg {
            stroke: #0d1300 !important;
        }

        .dotnav-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-top: 48px;
        }

        .dotnav-track {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.05);
        }

        .dotnav-dot {
            width: 8px;
            height: 8px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
            transition: width 0.3s ease, background 0.3s;
            cursor: pointer;
            border: none;
            padding: 0;
            margin: 0;
        }

        .dotnav-dot.active {
            width: 32px;
            background: rgba(255, 255, 255, 0.1);
        }

        .dotnav-fill {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 0;
            background: #fff;
            border-radius: 999px;
        }

        .dotnav-dot.active .dotnav-fill {
            animation: dotFill 12s linear forwards;
        }

        .dotnav-container.paused .dotnav-fill {
            animation-play-state: paused;
        }

        @keyframes dotFill {
            0% {
                width: 0;
            }

            100% {
                width: 100%;
            }
        }

        .dotnav-playpause {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            border: none;
            cursor: pointer;
            color: rgba(255, 255, 255, 0.6);
            transition: background 0.2s, color 0.2s;
        }

        .dotnav-playpause:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
        }

        .icon-play,
        .icon-pause {
            width: 14px;
            height: 14px;
            fill: currentColor;
        }

        .dotnav-playpause .icon-play {
            display: none;
        }

        .dotnav-container.paused .dotnav-playpause .icon-pause {
            display: none;
        }

        .dotnav-container.paused .dotnav-playpause .icon-play {
            display: block;
        }

        .prod-tab-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            opacity: 0;
            transition: opacity 0.2s;
        }

        .prod-tab.active .prod-tab-dot {
            opacity: 1;
        }

        /* card layout: 2 cols — info left, mockup right */
        .prod-card {
            max-width: 1000px;
            margin: 0 auto;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            overflow: hidden;
        }

        @keyframes cardFadeIn {
            0% {
                opacity: 0;
                transform: translateY(10px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .prod-card.card-fade-in {
            animation: cardFadeIn 0.6s ease-out forwards;
        }

        .prod-card-body {
            padding: 48px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }

        @media (max-width: 760px) {
            .prod-card-body {
                grid-template-columns: 1fr;
                padding: 28px;
                gap: 32px;
            }
        }

        .prod-icon {
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            object-fit: contain;
        }

        .prod-icon svg {
            width: 28px;
            height: 28px;
        }

        .prod-type {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 8px;
            color: #b0da00;
        }

        .prod-name {
            font-size: 1.4rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 14px;
        }

        .prod-desc {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.75;
            margin-bottom: 24px;
        }

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

        .prod-feature {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .feat-check {
            margin-top: 2px;
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(176, 218, 0, 0.125);
        }

        .feat-check svg {
            width: 10px;
            height: 10px;
        }

        .feat-label {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .prod-bar {
            height: 3px;
            background: linear-gradient(90deg, #b0da00, transparent);
        }

        /* ══════════════════════════════════════════
        DEVICE MOCKUPS
    ══════════════════════════════════════════ */

        /* shared screen placeholder */
        .mockup-screen-inner {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px;
        }

        .mockup-placeholder-label {
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            opacity: 0.5;
            text-align: center;
        }

        .mockup-placeholder-icon {
            opacity: 0.25;
        }

        .mockup-placeholder-icon svg {
            display: block;
        }

        /* ── Browser / Web mockup ── */
        .mockup-browser {
            width: 100%;
            max-width: 440px;
            margin: 0 auto;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
            background: #0d1117;
        }

        .mockup-browser-bar {
            background: #161b22;
            padding: 10px 14px;
            display: flex;
            align-items: center;
            gap: 10px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .mockup-browser-dots {
            display: flex;
            gap: 5px;
        }

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

        .mockup-browser-url {
            flex: 1;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 4px;
            height: 20px;
            display: flex;
            align-items: center;
            padding: 0 8px;
            font-size: 0.6rem;
            color: rgba(255, 255, 255, 0.3);
            letter-spacing: 0.03em;
        }

        .mockup-browser-screen {
            height: 230px;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        /* browser content: fake header + grid rows */
        .mock-web-header {
            height: 28px;
            background: rgba(255, 255, 255, 0.03);
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 0 12px;
        }

        .mock-web-header-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
        }

        .mock-web-body {
            flex: 1;
            display: grid;
            grid-template-columns: 140px 1fr;
        }

        .mock-web-sidebar {
            border-right: 1px solid rgba(255, 255, 255, 0.04);
            padding: 10px 8px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .mock-sidebar-item {
            height: 7px;
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.07);
        }

        .mock-sidebar-item.active {
            background: rgba(255, 255, 255, 0.18);
        }

        .mock-web-content {
            padding: 12px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            overflow: hidden;
        }

        .mock-content-row {
            display: flex;
            gap: 8px;
        }

        .mock-card {
            flex: 1;
            border-radius: 6px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            background: rgba(255, 255, 255, 0.03);
            padding: 8px;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .mock-card-bar {
            height: 5px;
            border-radius: 3px;
            margin-bottom: 2px;
        }

        .mock-card-line {
            height: 4px;
            border-radius: 3px;
            background: rgba(255, 255, 255, 0.08);
        }

        .mock-card-line.short {
            width: 60%;
        }

        .mock-chart {
            flex: 1;
            border-radius: 6px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            background: rgba(255, 255, 255, 0.02);
            overflow: hidden;
            display: flex;
            align-items: flex-end;
            gap: 4px;
            padding: 8px;
        }

        .mock-bar-item {
            flex: 1;
            border-radius: 2px 2px 0 0;
        }

        /* ── Laptop mockup ── */
        .mockup-laptop {
            width: 100%;
            max-width: 440px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .mockup-laptop-screen {
            width: 100%;
            border-radius: 10px 10px 0 0;
            overflow: hidden;
            border: 6px solid #1c2030;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
            background: #0d1117;
        }

        .mockup-laptop-screen-inner {
            height: 220px;
            overflow: hidden;
        }

        .mockup-laptop-base {
            width: 106%;
            margin-left: -3%;
            height: 14px;
            background: linear-gradient(to bottom, #1c2030, #141722);
            border-radius: 0 0 8px 8px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
            position: relative;
        }

        .mockup-laptop-notch {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 8px;
            background: #0d1015;
            border-radius: 4px 4px 0 0;
        }

        /* laptop screen content: macOS-style */
        .mock-macos-bar {
            height: 22px;
            background: rgba(255, 255, 255, 0.06);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 0 8px;
        }

        .mock-macos-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
        }

        .mock-desktop-body {
            height: calc(100% - 22px);
            display: grid;
            grid-template-columns: 48px 1fr;
        }

        .mock-desktop-sidebar {
            background: rgba(0, 0, 0, 0.2);
            border-right: 1px solid rgba(255, 255, 255, 0.05);
            padding: 6px 4px;
            display: flex;
            flex-direction: column;
            gap: 6px;
            align-items: center;
        }

        .mock-desktop-sidebar-icon {
            width: 28px;
            height: 28px;
            border-radius: 6px;
            background: rgba(255, 255, 255, 0.06);
        }



        .mock-desktop-main {
            display: flex;
            flex-direction: column;
        }

        .mock-desktop-toolbar {
            height: 28px;
            background: rgba(255, 255, 255, 0.03);
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 0 8px;
        }

        .mock-toolbar-btn {
            height: 8px;
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.09);
        }

        .mock-desktop-canvas {
            flex: 1;
            position: relative;
            overflow: hidden;
            background: #080c14;
        }

        .mock-canvas-video {
            position: absolute;
            inset: 6px;
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.07);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mock-play-btn {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mock-canvas-timeline {
            position: absolute;
            bottom: 6px;
            left: 6px;
            right: 6px;
            height: 20px;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 4px;
            overflow: hidden;
        }

        .mock-timeline-fill {
            height: 100%;
            width: 35%;
            background: rgba(176, 218, 0, 0.3);
        }

        /* ── iPad mockup ── */
        .mockup-ipad {
            width: 100%;
            max-width: 420px;
            margin: 0 auto;
            background: #1a1d2e;
            border-radius: 16px;
            padding: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
            display: flex;
            flex-direction: column;
        }

        .mockup-ipad-camera-row {
            height: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 6px;
        }

        .mockup-ipad-camera {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #2a2d3e;
        }

        .mockup-ipad-screen {
            border-radius: 8px;
            overflow: hidden;
            background: #0d1117;
            height: 240px;
        }

        .mockup-ipad-home-row {
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 6px;
        }

        .mockup-ipad-home {
            width: 32px;
            height: 4px;
            border-radius: 2px;
            background: #2a2d3e;
        }

        /* ipad content: live match */
        .mock-live-header {
            height: 30px;
            background: rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 10px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .mock-live-badge {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 0.55rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }

        .mock-live-dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: #ff3b30;
            animation: pulse 1s infinite;
        }

        .mock-live-score {
            font-size: 0.65rem;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.7);
            letter-spacing: 0.05em;
        }

        .mock-live-time {
            font-size: 0.55rem;
            color: rgba(255, 255, 255, 0.4);
        }

        .mock-live-body {
            flex: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            height: calc(100% - 30px);
            overflow: hidden;
        }

        .mock-live-video {
            background: #060a12;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            border-right: 1px solid rgba(255, 255, 255, 0.05);
        }

        .mock-pitch {
            width: 80%;
            height: 75%;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 3px;
            position: relative;
        }

        .mock-pitch-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 1px;
            background: rgba(255, 255, 255, 0.1);
        }

        .mock-pitch-circle {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 24px;
            height: 24px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.12);
        }

        .mock-pitch-dot {
            position: absolute;
            border-radius: 50%;
        }

        .mock-live-stats {
            padding: 8px;
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .mock-stat-row {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .mock-stat-label {
            font-size: 0.5rem;
            color: rgba(255, 255, 255, 0.35);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .mock-stat-value {
            font-size: 0.85rem;
            font-weight: 800;
        }

        .mock-stat-bar-track {
            height: 3px;
            background: rgba(255, 255, 255, 0.07);
            border-radius: 2px;
            overflow: hidden;
        }

        .mock-stat-bar-fill {
            height: 100%;
            border-radius: 2px;
        }

        /* ── Phone mockup ── */
        .mockup-phone {
            width: 140px;
            margin: 0 auto;
            background: #1a1d2e;
            border-radius: 28px;
            padding: 10px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
            display: flex;
            flex-direction: column;
        }

        .mockup-phone-notch-row {
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 4px;
        }

        .mockup-phone-notch {
            width: 48px;
            height: 12px;
            border-radius: 6px;
            background: #10121e;
        }

        .mockup-phone-screen {
            border-radius: 16px;
            overflow: hidden;
            background: #0d1117;
            height: 260px;
        }

        .mockup-phone-home-row {
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 4px;
        }

        .mockup-phone-home {
            width: 40px;
            height: 4px;
            border-radius: 2px;
            background: #2a2d3e;
        }

        /* phone content */
        .mock-phone-status {
            height: 18px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 8px;
            background: rgba(0, 0, 0, 0.2);
        }

        .mock-phone-time {
            font-size: 0.45rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.5);
        }

        .mock-phone-icons {
            display: flex;
            gap: 3px;
            align-items: center;
        }

        .mock-phone-icon-bar {
            width: 2px;
            background: rgba(255, 255, 255, 0.4);
            border-radius: 1px;
        }

        .mock-phone-header {
            padding: 8px 8px 4px;
        }

        .mock-phone-title {
            font-size: 0.6rem;
            font-weight: 800;
            color: #fff;
        }

        .mock-phone-subtitle {
            font-size: 0.48rem;
            color: rgba(255, 255, 255, 0.35);
        }

        .mock-phone-card {
            margin: 4px 6px;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.07);
            background: rgba(255, 255, 255, 0.03);
        }

        .mock-phone-card-header {
            padding: 6px 8px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .mock-phone-card-title {
            font-size: 0.52rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.8);
        }

        .mock-phone-card-badge {
            font-size: 0.42rem;
            font-weight: 700;
            padding: 1px 5px;
            border-radius: 4px;
        }

        .mock-phone-metric-row {
            padding: 4px 8px 6px;
            display: flex;
            gap: 4px;
        }

        .mock-phone-metric {
            flex: 1;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 5px;
            padding: 4px 4px 5px;
            text-align: center;
        }

        .mock-phone-metric-val {
            font-size: 0.65rem;
            font-weight: 800;
        }

        .mock-phone-metric-lbl {
            font-size: 0.4rem;
            color: rgba(255, 255, 255, 0.3);
            text-transform: uppercase;
        }

        .mock-phone-notifications {
            margin: 2px 6px 0;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .mock-phone-notif {
            border-radius: 7px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 5px 7px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .mock-notif-icon {
            width: 14px;
            height: 14px;
            border-radius: 4px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mock-notif-text {
            font-size: 0.47rem;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.3;
        }

        /* ── Solutions ── */
        .solutions-glow {
            position: absolute;
            right: 0;
            top: 0;
            width: 500px;
            height: 500px;
            background: #d4f033;
            opacity: 0.03;
            border-radius: 50%;
            filter: blur(120px);
            pointer-events: none;
        }

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

        @media (max-width: 900px) {
            .solutions-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 560px) {
            .solutions-grid {
                grid-template-columns: 1fr;
            }
        }

        .sol-card {
            position: relative;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            background: rgba(255, 255, 255, 0.02);
            padding: 28px 28px 32px;
            overflow: hidden;
            transition: background 0.25s, border-color 0.25s;
        }

        .sol-card:hover {
            background: rgba(255, 255, 255, 0.04);
        }

        .sol-card:hover .sol-bar {
            width: 100%;
        }

        .sol-num {
            position: absolute;
            top: 16px;
            right: 20px;
            font-size: 3rem;
            font-weight: 900;
            opacity: 0.05;
            line-height: 1;
            pointer-events: none;
        }

        .sol-eyebrow {
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .sol-title {
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 18px;
        }

        .sol-row {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 10px;
        }

        .sol-icon {
            margin-top: 2px;
            flex-shrink: 0;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .sol-icon svg {
            width: 9px;
            height: 9px;
        }

        .sol-text {
            font-size: 0.825rem;
        }

        .sol-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 2px;
            width: 0;
            transition: width 0.5s ease;
            background: linear-gradient(90deg, #d4f033, transparent);
        }

        /* ── Stats ── */
        .stats-glow {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 900px;
            height: 400px;
            background: #b0da00;
            opacity: 0.04;
            border-radius: 50%;
            filter: blur(100px);
            pointer-events: none;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        @media (max-width: 900px) {
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }

        .stat-card {
            position: relative;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            background: rgba(255, 255, 255, 0.02);
            padding: 32px 24px;
            text-align: center;
            overflow: hidden;
            transition: border-color 0.25s;
        }

        .stat-card:hover {
            border-color: rgba(255, 255, 255, 0.1);
        }

        .stat-top-line {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 1px;
            opacity: 0.6;
        }

        .stat-val {
            font-size: 3rem;
            font-weight: 900;
            line-height: 1;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 0.95rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 8px;
        }

        .stat-desc {
            font-size: 0.825rem;
            color: rgba(255, 255, 255, 0.3);
        }

        .stat-hover-glow {
            position: absolute;
            inset: 0;
            pointer-events: none;
            border-radius: 20px;
            opacity: 0;
            transition: opacity 0.4s;
        }

        .stat-card:hover .stat-hover-glow {
            opacity: 1;
        }

        /* ── Audience ── */
        .audience-glow {
            position: absolute;
            right: -160px;
            bottom: 0;
            width: 500px;
            height: 400px;
            background: #7B61FF;
            opacity: 0.04;
            border-radius: 50%;
            filter: blur(120px);
            pointer-events: none;
        }

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

        @media (max-width: 640px) {
            .audience-grid {
                grid-template-columns: 1fr;
            }
        }

        .aud-card {
            position: relative;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            background: rgba(255, 255, 255, 0.02);
            padding: 32px;
            overflow: hidden;
            transition: border-color 0.25s;
        }

        .aud-card:hover {
            border-color: rgba(255, 255, 255, 0.1);
        }

        .aud-icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

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

        .aud-name {
            font-size: 1.05rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
        }

        .aud-desc {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.42);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .aud-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .aud-tag {
            padding: 4px 12px;
            border-radius: 999px;
            font-size: 0.7rem;
            font-weight: 600;
            border: 1px solid;
        }

        .aud-hover-glow {
            position: absolute;
            bottom: -50px;
            right: -50px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.6s ease;
            z-index: 0;
        }

        .aud-card:hover .aud-hover-glow {
            opacity: 0.35;
        }

        /* ── Contact ── */
        .contact-glow {
            position: absolute;
            left: 50%;
            bottom: 0;
            transform: translateX(-50%);
            width: 700px;
            height: 400px;
            background: #b0da00;
            opacity: 0.06;
            border-radius: 50%;
            filter: blur(120px);
            pointer-events: none;
        }

        .contact-card {
            max-width: 720px;
            margin: 0 auto;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            background: rgba(255, 255, 255, 0.02);
            padding: 48px;
            text-align: center;
        }

        @media (max-width: 640px) {
            .contact-card {
                padding: 28px;
            }
        }

        .contact-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        @media (max-width: 560px) {
            .contact-form {
                grid-template-columns: 1fr;
            }
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .form-label {
            font-size: 0.68rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: rgba(255, 255, 255, 0.45);
        }

        .form-input,
        .form-select {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 12px 16px;
            font-size: 0.9rem;
            color: #fff;
            outline: none;
            transition: border-color 0.2s;
            width: 100%;
        }

        .form-input::placeholder {
            color: rgba(255, 255, 255, 0.18);
        }

        .form-input:focus,
        .form-select:focus {
            border-color: rgba(176, 218, 0, 0.6);
        }

        .form-select option {
            background: #05070f;
            color: #fff;
        }

        .form-select {
            appearance: none;
        }

        .form-submit-wrap {
            grid-column: 1 / -1;
            margin-top: 8px;
        }

        .form-submit {
            width: 100%;
            padding: 16px;
            font-size: 1rem;
            font-weight: 700;
            border-radius: 14px;
            background: linear-gradient(90deg, #b0da00, #d4f033);
            color: #0d1300;
            transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
            /*box-shadow: 0 8px 28px rgba(176, 218, 0, 0.25);*/
        }

        .form-submit:hover {
            opacity: 0.88;
            transform: scale(1.01);
            box-shadow: 0 12px 36px rgba(176, 218, 0, 0.4);
        }

        .form-note {
            text-align: center;
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.22);
            margin-top: 12px;
        }

        #form-success {
            display: none;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 16px;
            padding: 48px 0;
        }

        #form-success.show {
            display: flex;
        }

        .success-icon {
            color: #d4f033;
        }

        .success-icon svg {
            width: 56px;
            height: 56px;
        }

        .success-title {
            font-size: 1.6rem;
            font-weight: 800;
            color: #fff;
        }

        .success-desc {
            color: rgba(255, 255, 255, 0.45);
            max-width: 360px;
            line-height: 1.7;
        }

        /* ── Footer ── */
        footer {
            background: #03040A;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 64px 24px 32px;
        }

        .footer-inner {
            max-width: 1280px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1.5fr 1fr;
            gap: 40px;
            margin-bottom: 48px;
        }

        @media (max-width: 960px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }
        }

        @media (max-width: 480px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }

        .footer-brand-desc {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.3);
            line-height: 1.7;
            max-width: 280px;
            margin-top: 16px;
        }

        .footer-socials {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .footer-social {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.3);
            transition: color 0.2s, border-color 0.2s;
        }

        .footer-social:hover {
            color: #fff;
            border-color: rgba(255, 255, 255, 0.3);
        }

        .footer-social svg {
            width: 14px;
            height: 14px;
        }

        .footer-col-title {
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: normal;
            text-transform: none;
            color: #fff;
            margin-bottom: 16px;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-links a {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.38);
            display: flex;
            align-items: center;
            gap: 6px;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: rgba(255, 255, 255, 0.8);
        }

        .footer-links a svg {
            width: 12px;
            height: 12px;
            color: #b0da00;
            flex-shrink: 0;
        }

        /* ── Footer legal links ── */
        .footer-legal-link {
            color: rgba(255, 255, 255, 0.38);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-legal-link:hover,
        .footer-legal-link:focus-visible {
            color: #fff;
        }

        /* ── Accessibility: focus-visible ── */
        a:focus-visible,
        button:focus-visible {
            outline: 2px solid #d4f033;
            outline-offset: 3px;
            border-radius: 3px;
        }

        /* ── Skip to content ── */
        .skip-link {
            position: absolute;
            top: -48px;
            left: 16px;
            background: #d4f033;
            color: #0d1300;
            font-weight: 600;
            padding: 10px 20px;
            border-radius: 4px;
            text-decoration: none;
            z-index: 10000;
            transition: top 0.2s;
        }

        .skip-link:focus {
            top: 16px;
        }

        .footer-bar {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 24px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.38);
        }

        /* ══════════════════════════════════════════
        TESTIMONIAL CAROUSEL
    ══════════════════════════════════════════ */
        .carousel-container {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            overflow: hidden;
            padding: 20px 0;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
            will-change: transform;
        }

        .carousel-slide {
            min-width: 100%;
            padding: 0 20px;
            box-sizing: border-box;
            opacity: 0.4;
            transition: opacity 0.5s ease;
        }

        .carousel-slide.active {
            opacity: 1;
        }

        .quote-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 48px 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .quote-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 100px;
            background: #b0da00;
            filter: blur(80px);
            opacity: 0.15;
            pointer-events: none;
        }

        .quote-logo {
            height: 60px;
            object-fit: contain;
            margin-bottom: 32px;
        }

        .quote-text {
            font-size: clamp(1.1rem, 3vw, 1.4rem);
            line-height: 1.6;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 32px;
            font-style: italic;
        }

        .quote-author {
            margin-top: auto;
        }

        .quote-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: #b0da00;
            margin-bottom: 4px;
        }

        .quote-role {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .carousel-nav {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 24px;
            margin-top: 32px;
        }

        .carousel-btn {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #fff;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s, border-color 0.2s, color 0.2s;
        }

        .carousel-btn:hover {
            background: rgba(176, 218, 0, 0.1);
            border-color: #b0da00;
            color: #b0da00;
        }

        .carousel-dots {
            display: flex;
            gap: 8px;
        }

        .carousel-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transition: background 0.3s, transform 0.3s;
            cursor: pointer;
            padding: 0;
            border: none;
        }

        .carousel-dot.active {
            background: #b0da00;
            transform: scale(1.3);
        }

        /* ══════════════════════════════════════════
           COOKIE CONSENT BANNER
        ══════════════════════════════════════════ */
        #cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 9999;
            background: rgba(3, 8, 18, 0.97);
            backdrop-filter: blur(16px);
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 20px 24px;
            display: flex;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }

        #cookie-banner.visible {
            transform: translateY(0);
        }

        .cookie-text {
            flex: 1;
            min-width: 260px;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.6;
        }

        .cookie-text strong {
            color: #fff;
            font-weight: 600;
        }

        .cookie-text a {
            color: #d4f033;
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .cookie-text a:hover {
            color: #fff;
        }

        .cookie-actions {
            display: flex;
            gap: 10px;
            flex-shrink: 0;
            flex-wrap: wrap;
        }

        .cookie-btn {
            padding: 9px 20px;
            border-radius: 999px;
            font-size: 0.8rem;
            font-weight: 600;
            cursor: pointer;
            transition: opacity 0.2s, transform 0.2s;
            white-space: nowrap;
        }

        .cookie-btn:hover {
            opacity: 0.85;
            transform: scale(1.02);
        }

        .cookie-btn-accept {
            background: linear-gradient(90deg, #b0da00, #d4f033);
            color: #0d1300;
            border: none;
        }

        .cookie-btn-reject {
            background: transparent;
            color: rgba(255, 255, 255, 0.55);
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .cookie-btn-reject:hover {
            color: #fff;
            border-color: rgba(255, 255, 255, 0.35);
        }

        @media (max-width: 560px) {
            #cookie-banner {
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
            }

            .cookie-actions {
                width: 100%;
            }

            .cookie-btn {
                flex: 1;
                text-align: center;
            }
        }

.form-submit-wrap { justify-content: center; margin-top: 0; }
.form-note        { margin-top: 24px; }

/* ── Navbar: close icon initially hidden ── */
#close-icon { display: none; }

/* ── Hero: video button variant ── */
#hero-video-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ── Products: per-card background + initial visibility ── */
#prod-card-portal   { background: linear-gradient(135deg,rgba(5,7,15,0.95) 60%,#b0da0008 100%); }
#prod-card-desktop  { background: linear-gradient(135deg,rgba(5,7,15,0.95) 60%,#d4f03308 100%); display: none; }
#prod-card-livepro  { background: linear-gradient(135deg,rgba(5,7,15,0.95) 60%,#00E5C308 100%);  display: none; }
#prod-card-analysis { background: linear-gradient(135deg,rgba(5,7,15,0.95) 60%,#7B61FF08 100%); display: none; }
#prod-card-mobile   { background: linear-gradient(135deg,rgba(5,7,15,0.95) 60%,#FF6B3508 100%); display: none; }

/* ── Products: mockup screenshot images ── */
.prod-screen {
    width: 100%;
    max-width: 480px;
    height: auto;
    object-fit: cover;
}

/* ── Products: mobile card image centering wrapper ── */
.prod-mobile-wrap { display: flex; justify-content: center; }

/* ── Stats: per-card top line color ── */
.stat-card:nth-child(1) .stat-top-line { background: linear-gradient(90deg,transparent,#b0da00,transparent); }
.stat-card:nth-child(2) .stat-top-line { background: linear-gradient(90deg,transparent,#d4f033,transparent); }
.stat-card:nth-child(3) .stat-top-line { background: linear-gradient(90deg,transparent,#00E5C3,transparent); }
.stat-card:nth-child(4) .stat-top-line { background: linear-gradient(90deg,transparent,#7B61FF,transparent); }

/* ── Stats: per-card gradient text ── */
.stat-card:nth-child(1) .stat-val {
    background: linear-gradient(135deg,#b0da00,#b0da0099);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-card:nth-child(2) .stat-val {
    background: linear-gradient(135deg,#d4f033,#d4f03399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-card:nth-child(3) .stat-val {
    background: linear-gradient(135deg,#00E5C3,#00E5C399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-card:nth-child(4) .stat-val {
    background: linear-gradient(135deg,#7B61FF,#7B61FF99);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Stats: per-card hover glow ── */
.stat-card:nth-child(1) .stat-hover-glow { background: radial-gradient(circle at center bottom,#b0da0008,transparent 70%); }
.stat-card:nth-child(2) .stat-hover-glow { background: radial-gradient(circle at center bottom,#d4f03308,transparent 70%); }
.stat-card:nth-child(3) .stat-hover-glow { background: radial-gradient(circle at center bottom,#00E5C308,transparent 70%); }
.stat-card:nth-child(4) .stat-hover-glow { background: radial-gradient(circle at center bottom,#7B61FF08,transparent 70%); }

/* ── Solutions: number/eyebrow color variants ── */
.sol-num--green, .sol-eyebrow--green { color: #b0da00; }
.sol-num--lime,  .sol-eyebrow--lime  { color: #d4f033; }

/* ── Solutions: icon variants ── */
.sol-icon--problem {
    background: rgba(239,68,68,0.12);
    border: 1px solid rgba(239,68,68,0.2);
}
.sol-icon--green-sol {
    background: #b0da0018;
    border: 1px solid #b0da0030;
}
.sol-icon--lime-sol {
    background: #d4f03318;
    border: 1px solid #d4f03330;
}

/* ── Solutions: text color variants ── */
.sol-text--dim    { color: rgba(255,255,255,0.38); }
.sol-text--bright { color: rgba(255,255,255,0.7);  }

/* ── Audience: icon color variants ── */
.aud-icon--green  { background: #b0da0015; border: 1px solid #b0da0025; }
.aud-icon--cyan   { background: #00E5C315; border: 1px solid #00E5C325; }
.aud-icon--purple { background: #7B61FF15; border: 1px solid #7B61FF25; }
.aud-icon--orange { background: #FF6B3515; border: 1px solid #FF6B3525; }

/* ── Audience: tag color variants ── */
.aud-tag--green  { color: #b0da00; border-color: #b0da0030; background: #b0da000D; }
.aud-tag--cyan   { color: #00E5C3; border-color: #00E5C330; background: #00E5C30D; }
.aud-tag--purple { color: #7B61FF; border-color: #7B61FF30; background: #7B61FF0D; }
.aud-tag--orange { color: #FF6B35; border-color: #FF6B3530; background: #FF6B350D; }

/* ── Audience: hover glow color variants ── */
.aud-hover-glow--green  { background: #b0da00; }
.aud-hover-glow--cyan   { background: #00E5C3; }
.aud-hover-glow--purple { background: #7B61FF; }
.aud-hover-glow--orange { background: #FF6B35; }

/* ── Contact: demo CTA ── */
.demo-link   { display: inline-block; }
.demo-btn-lg { padding: 18px 40px; font-size: 1.1rem; border-radius: 999px; }

/* ── Footer: logo link ── */
footer .nav-logo { display: inline-block; margin-bottom: 24px; }

/* ── Footer: right column ── */
.footer-col--right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.footer-links--right { align-items: flex-end; }

/* ── Footer: bottom bar inner elements ── */
.footer-copyright   { font-size: 0.875rem; }
.footer-legal-links { display: flex; gap: 24px; flex-wrap: wrap; }

/* ── Video modal: inner wrapper ── */
.video-modal-inner {
    position: relative;
    width: 100%;
    max-width: 1000px;
    padding: 0 20px;
}
