/* SITE CHROME — Shared navbar + footer CSS extracted from index.html. */
/* Generated by chrome extraction script. */

.navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(5, 5, 10, 0.92);
            /* Reduced from blur(20px) — heavy blur over the playing hero video was forcing
               the browser to re-sample video pixels through a blur shader every frame */
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 212, 255, 0.18);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
            transition: padding 0.25s ease, background 0.25s ease;
        }

.navbar.scrolled {
            background: rgba(0, 0, 0, 0.96);
            border-bottom-color: rgba(0, 212, 255, 0.32);
        }

.nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: 32px;
            padding: 12px 24px;
            min-height: 68px;
        }

.nav-brand {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            white-space: nowrap;
            transition: opacity 0.2s ease;
        }

.nav-brand:hover { opacity: 0.9; }

.nav-brand-mark {
            height: 44px;
            width: 44px;
            object-fit: contain;
            border-radius: 10px;
            box-shadow: 0 0 16px rgba(255, 107, 0, 0.28), 0 0 32px rgba(0, 212, 255, 0.18);
            transition: box-shadow 0.25s ease;
        }

.nav-brand:hover .nav-brand-mark {
            box-shadow: 0 0 22px rgba(255, 107, 0, 0.45), 0 0 44px rgba(0, 212, 255, 0.32);
        }

.nav-brand-text {
            font-family: 'Orbitron', monospace;
            font-size: 1.35rem;
            font-weight: 800;
            letter-spacing: 0.5px;
            color: var(--electric-orange);
            background: linear-gradient(135deg, var(--electric-orange) 0%, var(--electric-blue) 50%, var(--nebula-pink) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 200%;
            animation: navBrandGradient 6s ease-in-out infinite;
            line-height: 1;
        }

@supports not (-webkit-background-clip: text) {
            .nav-brand-text { color: var(--electric-orange) !important; background: none !important; }
        }

.nav-links {
            justify-self: center;
            display: flex;
            align-items: center;
            gap: 4px;
        }

.nav-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 14px;
            color: rgba(255, 255, 255, 0.82);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            border-radius: 8px;
            background: transparent;
            border: 0;
            cursor: pointer;
            font-family: inherit;
            transition: color 0.18s ease, background 0.18s ease;
            white-space: nowrap;
        }

.nav-link:hover { color: #fff; background: rgba(0, 212, 255, 0.10); }

.nav-more { position: relative; }

.nav-more-chevron {
            font-size: 0.7em;
            margin-left: 2px;
            transition: transform 0.2s ease;
        }

.nav-more[data-open="true"] .nav-more-chevron { transform: rotate(180deg); }

.nav-more-menu {
            position: absolute;
            top: calc(100% + 8px);
            left: 50%;
            transform: translateX(-50%) translateY(-4px);
            min-width: 210px;
            background: rgba(10, 10, 14, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(0, 212, 255, 0.22);
            border-radius: 12px;
            padding: 8px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

.nav-more[data-open="true"] .nav-more-menu {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateX(-50%) translateY(0);
            transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s;
        }

.nav-more-menu a,
        .nav-more-menu .nav-more-action {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 9px 12px;
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            border-radius: 8px;
            background: transparent;
            border: 0;
            cursor: pointer;
            font-family: inherit;
            text-align: left;
            width: 100%;
            transition: color 0.18s ease, background 0.18s ease;
        }

.nav-more-menu a i,
        .nav-more-menu .nav-more-action i {
            width: 16px;
            text-align: center;
            color: var(--electric-blue);
            font-size: 0.95em;
        }

.nav-more-menu a:hover,
        .nav-more-menu .nav-more-action:hover {
            color: #fff;
            background: rgba(0, 212, 255, 0.12);
        }

.nav-compare { position: relative; }

.nav-compare-toggle .nav-more-chevron {
            font-size: 0.7em;
            margin-left: 2px;
            transition: transform 0.2s ease;
        }

.nav-compare[data-open="true"] .nav-compare-toggle .nav-more-chevron {
            transform: rotate(180deg);
        }

.nav-compare-menu {
            position: absolute;
            top: calc(100% + 8px);
            left: 50%;
            transform: translateX(-50%) translateY(-4px);
            width: min(720px, 92vw);
            background: rgba(10, 10, 14, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(0, 212, 255, 0.22);
            border-radius: 14px;
            padding: 18px 20px;
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px 24px;
            z-index: 1100;
        }

.nav-compare[data-open="true"] .nav-compare-menu {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateX(-50%) translateY(0);
            transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s;
        }

.nav-compare-menu .nav-compare-col h4 {
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.7px;
            color: var(--electric-blue);
            margin: 0 0 8px 2px;
            padding-bottom: 6px;
            border-bottom: 1px solid rgba(0, 212, 255, 0.18);
        }

.nav-compare-menu .nav-compare-col a {
            display: flex;
            align-items: center;
            gap: 9px;
            padding: 7px 10px;
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            font-size: 0.88rem;
            font-weight: 500;
            border-radius: 8px;
            transition: color 0.18s ease, background 0.18s ease;
        }

.nav-compare-menu .nav-compare-col a i {
            width: 14px;
            text-align: center;
            color: var(--electric-blue);
            font-size: 0.85em;
            opacity: 0.85;
        }

.nav-compare-menu .nav-compare-col a:hover {
            color: #fff;
            background: rgba(0, 212, 255, 0.12);
        }

.nav-compare-menu .nav-compare-col a.coming-soon {
            opacity: 0.5;
            pointer-events: none;
        }

.nav-compare-footer {
            grid-column: 1 / -1;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 12px;
            margin-top: 4px;
            border-top: 1px solid rgba(0, 212, 255, 0.16);
            font-size: 0.82rem;
        }

.nav-compare-footer a {
            color: var(--electric-blue);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

.nav-compare-footer a:hover { text-decoration: underline; }

.nav-compare-footer span {
            color: rgba(255, 255, 255, 0.55);
            font-size: 0.78rem;
        }

@media (max-width: 880px) {
            .nav-compare-menu {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                width: min(560px, 92vw);
            }
        }

.nav-actions {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            justify-self: end;
        }

.desktop-only { display: flex; }

.mobile-only  { display: none; }

@media (max-width: 1280px) {
            .nav-app-store-btn { display: none; }   /* hide app store + google play pills, keep CTA */
            .nav-container { gap: 20px; padding: 12px 18px; }
        }

@media (max-width: 1024px) {
            .nav-link { padding: 8px 10px; font-size: 0.9rem; }
            .nav-actions { gap: 10px; }
            .nav-brand-text { font-size: 1.2rem; }
            .nav-cta { padding: 10px 16px; }
        }

@media (max-width: 900px) {
            .desktop-only { display: none; }
            .mobile-only  { display: flex; }
            .mobile-menu-toggle { display: flex !important; margin-left: auto; }
            .nav-container {
                grid-template-columns: auto 1fr;
                gap: 12px;
                padding: 10px 16px;
                min-height: 60px;
            }
            .nav-brand-mark { height: 38px; width: 38px; }
            .nav-brand-text { font-size: 1.1rem; }
        }

@media (max-width: 480px) {
            .nav-container { padding: 8px 12px; gap: 8px; min-height: 56px; }
            .nav-brand-mark { height: 34px; width: 34px; }
            .nav-brand-text { font-size: 1rem; }
        }

.mobile-menu-toggle {
            display: none; /* Hidden by default on desktop */
            flex-direction: column;
            cursor: pointer;
            padding: 12px;
            width: 52px;
            height: 52px;
            align-items: center;
            justify-content: center;
            background: rgba(0, 212, 255, 0.1);
            border: 2px solid rgba(0, 212, 255, 0.3);
            border-radius: 12px;
            z-index: 2001;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            border: none;
        }

.mobile-menu-toggle:focus-visible {
            outline: 2px solid var(--electric-blue);
            outline-offset: 2px;
            box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
        }

.mobile-menu-toggle::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

.mobile-menu-toggle:hover::before {
            left: 100%;
        }

.mobile-menu-toggle:hover {
            background: rgba(0, 212, 255, 0.2);
            border-color: rgba(0, 212, 255, 0.6);
            transform: scale(1.05);
            box-shadow:
                0 0 20px rgba(0, 212, 255, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

.mobile-menu-toggle span {
            width: 26px;
            height: 3px;
            background: linear-gradient(135deg, var(--electric-blue), var(--starlight));
            margin: 2.5px 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 4px;
            position: relative;
            box-shadow: 0 0 6px rgba(0, 212, 255, 0.3);
        }

.mobile-menu-toggle span::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--plasma-green), var(--electric-blue));
            border-radius: 4px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

.mobile-menu-toggle:hover span::before {
            opacity: 0.8;
        }

.mobile-menu-toggle.active {
            background: rgba(255, 107, 0, 0.2);
            border-color: rgba(255, 107, 0, 0.6);
            transform: rotate(180deg) scale(1.1);
            box-shadow:
                0 0 25px rgba(255, 107, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }

.mobile-menu-toggle.active span {
            background: linear-gradient(135deg, var(--electric-orange), var(--nebula-pink));
            box-shadow: 0 0 8px rgba(255, 107, 0, 0.5);
        }

.mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

.mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
            transform: scale(0);
        }

.mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -7px);
        }

.mobile-menu {
            position: fixed;
            top: 85px;
            left: 0;
            right: 0;
            background:
                linear-gradient(135deg,
                    rgba(5, 5, 15, 0.98) 0%,
                    rgba(10, 10, 20, 0.95) 50%,
                    rgba(5, 5, 15, 0.98) 100%);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(0, 212, 255, 0.2);
            border-top: 2px solid rgba(0, 212, 255, 0.4);
            border-bottom: 2px solid rgba(255, 107, 0, 0.4);
            padding: 25px 30px;
            transform: translateY(-100%) scale(0.95);
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 2000;
            box-shadow:
                0 10px 40px rgba(0, 0, 0, 0.7),
                0 0 60px rgba(0, 212, 255, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            pointer-events: none;
            max-height: calc(100vh - 120px);
            overflow-y: auto;
        }

.mobile-menu::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg,
                var(--electric-blue) 0%,
                var(--plasma-green) 25%,
                var(--electric-orange) 50%,
                var(--nebula-pink) 75%,
                var(--electric-blue) 100%);
            background-size: 200% 100%;
            animation: menuGlow 3s ease-in-out infinite;
        }

.mobile-menu.active {
            transform: translateY(0) scale(1);
            opacity: 1;
            pointer-events: auto;
        }

.mobile-menu nav {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

.mobile-menu a {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--starlight);
            text-decoration: none;
            padding: 18px 20px;
            font-weight: 500;
            font-size: 1.1em;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.02);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

.mobile-menu a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg,
                transparent,
                rgba(0, 212, 255, 0.1),
                transparent);
            transition: left 0.5s ease;
        }

.mobile-menu a:hover::before {
            left: 100%;
        }

.mobile-menu a::after {
            content: '';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--electric-blue), var(--plasma-green));
            transition: width 0.3s ease;
        }

.mobile-menu a:hover {
            color: var(--electric-blue);
            background: rgba(0, 212, 255, 0.1);
            border-color: rgba(0, 212, 255, 0.3);
            transform: translateX(8px);
            box-shadow:
                0 4px 20px rgba(0, 212, 255, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

.mobile-menu a:hover::after {
            width: 30px;
        }

.mobile-menu a i {
            font-size: 1.2em;
            width: 24px;
            text-align: center;
            color: var(--electric-blue);
            transition: all 0.3s ease;
        }

.mobile-menu a:hover i {
            color: var(--plasma-green);
            transform: scale(1.2);
        }

.mobile-menu .mobile-compare-group {
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.02);
            border-radius: 12px;
            overflow: hidden;
        }

.mobile-menu .mobile-compare-group > summary {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--starlight);
            padding: 18px 20px;
            font-weight: 500;
            font-size: 1.1em;
            cursor: pointer;
            list-style: none;
            transition: color 0.25s ease;
        }

.mobile-menu .mobile-compare-group > summary::-webkit-details-marker { display: none; }

.mobile-menu .mobile-compare-group > summary > i.fas:first-child {
            font-size: 1.2em;
            width: 24px;
            text-align: center;
            color: var(--electric-blue);
        }

.mobile-menu .mobile-compare-group > summary .mobile-compare-chevron {
            margin-left: auto;
            font-size: 0.85em;
            color: rgba(255, 255, 255, 0.55);
            transition: transform 0.25s ease;
        }

.mobile-menu .mobile-compare-group[open] > summary .mobile-compare-chevron {
            transform: rotate(180deg);
        }

.mobile-menu .mobile-compare-group[open] > summary {
            color: var(--electric-blue);
            border-bottom: 1px solid rgba(0, 212, 255, 0.18);
        }

.mobile-menu .mobile-compare-section {
            padding: 8px 16px 4px;
        }

.mobile-menu .mobile-compare-section h5 {
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.7px;
            color: var(--electric-blue);
            margin: 6px 4px 4px;
        }

.mobile-menu .mobile-compare-section a {
            display: block;
            padding: 10px 12px;
            font-size: 0.95em;
            color: rgba(255, 255, 255, 0.85);
            border: 0;
            background: transparent;
            border-radius: 8px;
        }

.mobile-menu .mobile-compare-section a::before,
        .mobile-menu .mobile-compare-section a::after { display: none; }

.mobile-menu .mobile-compare-section a:hover {
            background: rgba(0, 212, 255, 0.10);
            transform: none;
            box-shadow: none;
        }

.mobile-menu .mobile-compare-soon {
            display: block;
            padding: 6px 12px 12px;
            font-size: 0.82em;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.5;
        }

.mobile-menu .mobile-compare-all {
            display: block;
            text-align: center;
            padding: 12px;
            margin: 4px 12px 12px;
            font-size: 0.9em;
            font-weight: 600;
            color: var(--electric-blue);
            background: rgba(0, 212, 255, 0.08);
            border: 1px solid rgba(0, 212, 255, 0.22);
            border-radius: 10px;
        }

.mobile-menu .mobile-compare-all::before,
        .mobile-menu .mobile-compare-all::after { display: none; }

.mobile-menu .btn.btn-secondary {
            background: linear-gradient(135deg,
                var(--electric-orange) 0%,
                var(--nebula-pink) 50%,
                var(--electric-blue) 100%);
            color: var(--starlight);
            font-weight: 700;
            border-radius: 16px;
            margin-top: 20px;
            text-align: center;
            border: 2px solid rgba(255, 107, 0, 0.4);
            padding: 16px 28px;
            font-size: 1.1em;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
        }

.mobile-menu .btn.btn-secondary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg,
                transparent,
                rgba(255, 255, 255, 0.2),
                transparent);
            transition: left 0.6s ease;
        }

.mobile-menu .btn.btn-secondary:hover::before {
            left: 100%;
        }

.mobile-menu .btn.btn-secondary:hover {
            transform: translateY(-3px) scale(1.02);
            border-color: rgba(255, 107, 0, 0.8);
            box-shadow:
                0 8px 25px rgba(255, 107, 0, 0.4),
                0 0 30px rgba(0, 212, 255, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }

@keyframes energyPulse {
            0% { box-shadow: 0 0 5px var(--electric-blue); }
            50% { box-shadow: 0 0 20px var(--electric-blue), 0 0 30px var(--electric-orange); }
            100% { box-shadow: 0 0 5px var(--electric-blue); }
        }

.footer {
            padding: 80px 0 0;
            background:
                radial-gradient(ellipse at 50% 100%, rgba(0, 212, 255, 0.12) 0%, transparent 70%),
                radial-gradient(ellipse at 0% 0%, rgba(255, 107, 0, 0.08) 0%, transparent 70%),
                linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, #0a0a0a 100%);
            color: var(--starlight);
            position: relative;
            overflow: hidden;
            border-top: 1px solid rgba(0, 212, 255, 0.15);
        }

.footer-bg-animation {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

.footer-particle {
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            opacity: 0.03;
            animation: floatParticle 20s infinite ease-in-out;
        }

.footer-particle:nth-child(1) {
            background: radial-gradient(circle, var(--electric-blue), transparent);
            top: -150px;
            left: 10%;
            animation-delay: 0s;
        }

.footer-particle:nth-child(2) {
            background: radial-gradient(circle, var(--electric-orange), transparent);
            top: 50%;
            right: 5%;
            animation-delay: 5s;
            animation-duration: 25s;
        }

.footer-particle:nth-child(3) {
            background: radial-gradient(circle, var(--electric-blue), transparent);
            bottom: -100px;
            left: 50%;
            animation-delay: 10s;
            animation-duration: 30s;
        }

.footer-particle:nth-child(4) {
            background: radial-gradient(circle, var(--electric-orange), transparent);
            top: 20%;
            left: 70%;
            animation-delay: 15s;
            animation-duration: 22s;
        }

@keyframes floatParticle {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            25% {
                transform: translate(30px, -30px) scale(1.1);
            }
            50% {
                transform: translate(-20px, 20px) scale(0.9);
            }
            75% {
                transform: translate(20px, 30px) scale(1.05);
            }
        }

.footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

.footer-main {
            display: grid;
            grid-template-columns: minmax(240px, 0.85fr) minmax(0, 3fr);
            gap: 48px;
            padding-bottom: 60px;
        }

@media (max-width: 1180px) {
            .footer-main {
                grid-template-columns: minmax(220px, 0.75fr) minmax(0, 3fr);
                gap: 36px;
            }
        }

.footer-brand {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

.footer-logo-wrapper {
            position: relative;
            width: fit-content;
        }

.footer-logo-image {
            height: 50px;
            width: auto;
            border-radius: 10px;
            position: relative;
            z-index: 2;
            transition: transform 0.4s ease;
        }

.footer-logo-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70px;
            height: 70px;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.4), transparent 70%);
            border-radius: 50%;
            animation: pulse 3s ease-in-out infinite;
            z-index: 1;
        }

.footer-logo-wrapper:hover .footer-logo-image {
            transform: scale(1.05);
        }

.footer-brand-name {
            font-family: 'Orbitron', monospace;
            font-size: 1.75rem;
            font-weight: 700;
            margin: 0;
        }

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

.footer-tagline {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            font-size: 0.9375rem;
            margin: 0;
        }

.footer-social {
            display: flex;
            gap: 12px;
            margin-top: 8px;
        }

.footer-links-grid {
            /* Flex-wrap layout: 4 columns desktop, each min 200px wide. With
               7 footer columns the row wraps naturally — short columns sit
               next to tall columns with no forced empty cells, and rows
               stay stable when a <details> opens (grid would reflow). */
            display: flex;
            flex-wrap: wrap;
            gap: 36px 32px;
            align-items: flex-start;
        }

.footer-column {
            /* flex: grow shrink basis. basis 0 + grow 1 = equal width
               distribution across the row. min 200px keeps the column
               readable without forcing a column-break. */
            flex: 1 1 200px;
            min-width: 0;
            max-width: 280px;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

.footer-heading {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Orbitron', monospace;
            font-size: 1rem;
            font-weight: 700;
            color: var(--electric-blue);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0;
        }

.footer-heading i {
            font-size: 1.125rem;
        }

.footer-nav {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

.footer-link {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, 0.65);
            text-decoration: none;
            padding: 8px 0;
            font-size: 0.875rem;
            transition: all 0.3s ease;
            position: relative;
        }

.footer-link i {
            font-size: 0.625rem;
            transition: transform 0.3s ease;
            opacity: 0;
        }

.footer-link:hover {
            color: var(--electric-orange);
            padding-left: 12px;
        }

.footer-link:hover i {
            opacity: 1;
            transform: translateX(5px);
        }

.footer-link-strong {
            color: rgba(255, 255, 255, 0.85) !important;
            font-weight: 600 !important;
        }

.footer-link-strong i {
            opacity: 1 !important;
            color: var(--electric-blue);
            font-size: 0.75rem !important;
        }

.footer-compare-top {
            gap: 4px;
        }

.footer-compare-groups {
            display: flex;
            flex-direction: column;
            gap: 6px;
            margin-top: 14px;
            border-top: 1px solid rgba(0, 212, 255, 0.12);
            padding-top: 14px;
        }

.footer-compare-group {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 8px;
            overflow: hidden;
            transition: border-color 0.2s ease, background 0.2s ease;
        }

.footer-compare-group[open] {
            border-color: rgba(0, 212, 255, 0.25);
            background: rgba(0, 212, 255, 0.04);
        }

.footer-compare-group > summary {
            list-style: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 12px;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.78);
            font-weight: 600;
            user-select: none;
            transition: color 0.2s ease;
        }

.footer-compare-group > summary::-webkit-details-marker { display: none; }

.footer-compare-group > summary:hover { color: var(--electric-blue); }

.footer-compare-group > summary > i:first-child {
            color: var(--electric-blue);
            font-size: 0.85em;
            width: 16px;
            text-align: center;
        }

.footer-compare-group > summary > span { flex: 1; }

.footer-compare-chevron {
            font-size: 0.7em;
            color: rgba(255, 255, 255, 0.5);
            transition: transform 0.2s ease;
        }

.footer-compare-group[open] > summary .footer-compare-chevron {
            transform: rotate(180deg);
            color: var(--electric-blue);
        }

.footer-compare-links {
            /* Single visual column. Multi-col grids inside an already-narrow
               footer column caused long names like "St. Petersburg" or
               "Restaurant scheduling without spreadsheets" to overlap or
               truncate badly. One column = predictable wrapping. */
            display: flex;
            flex-direction: column;
            gap: 2px;
            padding: 4px 12px 12px 38px;
            /* Long lists (Florida = 21 cities, FAQ More = 20 questions) get
               an internal scroll so the whole footer doesn't stretch when the
               user opens a dropdown. */
            max-height: 260px;
            overflow-y: auto;
            scrollbar-width: thin;
            scrollbar-color: rgba(0, 212, 255, 0.4) transparent;
        }

.footer-compare-links::-webkit-scrollbar { width: 6px; }
.footer-compare-links::-webkit-scrollbar-track { background: transparent; }
.footer-compare-links::-webkit-scrollbar-thumb {
            background: rgba(0, 212, 255, 0.3);
            border-radius: 3px;
        }
.footer-compare-links::-webkit-scrollbar-thumb:hover { background: rgba(0, 212, 255, 0.55); }

.footer-compare-links a {
            display: block;
            padding: 5px 4px;
            color: rgba(255, 255, 255, 0.65);
            text-decoration: none;
            font-size: 0.82rem;
            line-height: 1.4;
            transition: color 0.2s ease, transform 0.2s ease;
            border-radius: 4px;
            /* Allow long FAQ titles to wrap onto 2 lines instead of being
               clipped — readable, no overflow. */
            white-space: normal;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

@media (max-width: 480px) {
    .footer-compare-links {
        padding-left: 24px;
        max-height: 320px;
    }
}

.footer-compare-links a:hover {
            color: var(--electric-orange);
            transform: translateX(3px);
        }

@media (max-width: 600px) {
            .footer-compare-links {
                grid-template-columns: 1fr;
                padding-left: 32px;
            }
        }

.footer-bottom-bar {
            border-top: 1px solid rgba(0, 212, 255, 0.15);
            background: linear-gradient(90deg,
                transparent 0%,
                rgba(0, 212, 255, 0.05) 50%,
                transparent 100%);
        }

.footer-bottom-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 30px 0;
            flex-wrap: wrap;
            gap: 20px;
        }

.footer-copyright {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.875rem;
            margin: 0;
        }

.footer-copyright i {
            font-size: 0.75rem;
        }

.footer-powered {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.875rem;
        }

.powered-text {
            color: rgba(255, 255, 255, 0.5);
        }

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

.badge-item {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 6px;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.75rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

.badge-item:hover {
            background: rgba(0, 212, 255, 0.1);
            border-color: var(--electric-blue);
            color: var(--electric-blue);
        }

.badge-item i {
            font-size: 0.875rem;
        }

@media (max-width: 1180px) {
            .footer-links-grid {
                gap: 32px 28px;
            }
            .footer-column {
                flex: 1 1 220px;
                max-width: none;
            }
        }

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

            .footer-links-grid {
                gap: 28px 24px;
            }
            .footer-column {
                flex: 1 1 240px;
                max-width: none;
            }
        }

@media (max-width: 768px) {
            .footer {
                padding: 60px 0 0;
            }

            .footer-main {
                gap: 40px;
                padding-bottom: 40px;
            }

            .footer-links-grid {
                flex-direction: column;
                gap: 24px;
            }
            .footer-column {
                flex: 1 1 auto;
                max-width: none;
                width: 100%;
            }

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

            .footer-badges {
                flex-wrap: wrap;
                justify-content: center;
            }

            .footer-social {
                justify-content: center;
            }
        }

@media (max-width: 768px) {
            .demo-container {
                grid-template-columns: 1fr;
            }
            
            .demo-grid {
                grid-template-columns: 1fr;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .desktop-only {
                display: none !important;
            }
            
            .mobile-only {
                display: flex !important;
            }
        }

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

/* ============================================================
   MISSING NAV ACTION RULES — Login link, primary CTA, App Store
   pills (Apple + Google Play). Extracted from index.html ~L580-650.
   ============================================================ */

.nav-login-link {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 600;
            padding: 8px 4px;
            transition: color 0.18s ease;
        }
.nav-login-link:hover { color: #fff; }

.nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 11px 22px;
            font-size: 0.95rem;
            font-weight: 700;
            color: #0a0a0a;
            text-decoration: none;
            background: linear-gradient(135deg, var(--electric-orange) 0%, var(--electric-blue) 100%);
            border-radius: 10px;
            border: 0;
            cursor: pointer;
            white-space: nowrap;
            box-shadow: 0 6px 20px rgba(255, 107, 0, 0.32);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
.nav-cta:hover {
            transform: translateY(-1px);
            box-shadow: 0 10px 28px rgba(255, 107, 0, 0.46);
        }
.nav-cta:active { transform: translateY(0); }

/* ---- App Store / Google Play pill ---- */
.nav-app-store-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 12px;
            border-radius: 8px;
            background: #000;
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: #fff !important;
            text-decoration: none;
            transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
            line-height: 1;
            white-space: nowrap;
        }
.nav-app-store-btn i { font-size: 1.4em; line-height: 1; }
.nav-app-store-btn .nav-app-store-text {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 1px;
            font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
        }
.nav-app-store-btn .nav-app-store-line1 { font-size: 8px; font-weight: 400; color: rgba(255, 255, 255, 0.85); }
.nav-app-store-btn .nav-app-store-line2 { font-size: 13px; font-weight: 600; color: #fff; }
.nav-app-store-btn:hover {
            background: #1a1a1a;
            border-color: rgba(255, 255, 255, 0.3);
            transform: translateY(-1px);
        }

/* ============================================================
   MISSING FOOTER RULES — social icon buttons, tooltip, gradient
   text, highlight text, aedan-badge. From index.html ~L7767-8069.
   ============================================================ */

.gradient-text {
            background: linear-gradient(135deg, var(--electric-blue) 0%, var(--electric-orange) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 5s ease infinite;
            background-size: 200% 200%;
        }

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

.highlight-text {
            color: var(--electric-blue);
            font-weight: 600;
        }

.social-link {
            position: relative;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(0, 212, 255, 0.2);
            border-radius: 10px;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.125rem;
        }

.social-link:hover {
            background: rgba(0, 212, 255, 0.1);
            border-color: var(--electric-blue);
            color: var(--electric-blue);
            transform: translateY(-3px);
            box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
        }

.social-tooltip {
            position: absolute;
            bottom: 110%;
            left: 50%;
            transform: translateX(-50%) scale(0.8);
            background: rgba(0, 212, 255, 0.95);
            color: #0a0a0a;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 600;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s ease;
        }

.social-link:hover .social-tooltip {
            opacity: 1;
            transform: translateX(-50%) scale(1);
        }

.aedan-badge {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(255, 107, 0, 0.15));
            border: 1px solid rgba(0, 212, 255, 0.3);
            border-radius: 20px;
            color: var(--electric-blue);
            font-weight: 700;
            font-family: 'Orbitron', monospace;
            transition: all 0.3s ease;
        }

.aedan-badge:hover {
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.25), rgba(255, 107, 0, 0.25));
            border-color: var(--electric-blue);
            box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
            transform: translateY(-2px);
        }

.aedan-badge i {
            font-size: 1rem;
        }

/* ============================================================
   STICKY CTA — Floating "Start Free Today" button rendered by
   the navbar partial. From index.html ~L11280-11335.
   ============================================================ */

.sticky-cta {
            position: fixed;
            bottom: 30px;
            left: 30px;
            z-index: 999;
            opacity: 0;
            transform: translateY(100px);
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            pointer-events: none;
        }

.sticky-cta.visible {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

.sticky-cta-button {
            background: linear-gradient(135deg, var(--electric-blue), var(--nebula-pink));
            color: var(--starlight);
            border: none;
            padding: 18px 32px;
            font-size: 16px;
            font-weight: 700;
            font-family: 'Exo 2', sans-serif;
            border-radius: 50px;
            cursor: pointer;
            box-shadow:
                0 10px 40px rgba(0, 212, 255, 0.4),
                0 0 20px rgba(255, 0, 110, 0.3);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            animation: ctaPulse 2s ease-in-out infinite;
        }

.sticky-cta-button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow:
                0 15px 50px rgba(0, 212, 255, 0.5),
                0 0 30px rgba(255, 0, 110, 0.4);
        }

@keyframes ctaPulse {
            0%, 100% {
                box-shadow:
                    0 10px 40px rgba(0, 212, 255, 0.4),
                    0 0 20px rgba(255, 0, 110, 0.3);
            }
            50% {
                box-shadow:
                    0 10px 40px rgba(0, 212, 255, 0.6),
                    0 0 30px rgba(255, 0, 110, 0.5);
            }
        }

@media (max-width: 768px) {
            .sticky-cta {
                bottom: 20px;
                right: 20px;
            }

            .sticky-cta-button {
                padding: 14px 24px;
                font-size: 14px;
            }
        }
