:root {
            --red: #333333;
            --red2: #222222;
            --red-glow: rgba(0, 0, 0, 0.15);
            --bg: #ffffff;
            --card: rgba(255, 255, 255, 0.08);
            --border: rgba(0, 0, 0, 0.1);
            --text: #1a1a1a;
            --muted: rgba(0, 0, 0, 0.5);
            --green: #00e676;
        }

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

        html {
            scroll-behavior: smooth;
            touch-action: manipulation;
            scroll-padding-top: 100px;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg);
            color: var(--text);
            overflow-x: hidden;
            line-height: 1.6;
            cursor: url("rocket_pointer.png") 2 2, auto;
        }

        a,
        button,
        .btn-plan,
        .btn-nav,
        .theme-btn,
        .hamburger,
        [onclick] {
            cursor: url("rocket_pointer.png") 2 2, pointer !important;
        }

        /* Canvas */
        #stars {
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            display: none
        }

        /* Grid lines */
        .grid-lines {
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            background-image:
                linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
            background-size: 64px 64px;
            display: none
        }

        /* ── NAVBAR ── */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 90px;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 4%;
            background: rgba(250, 250, 252, 0.8) !important;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
            transition: all .3s;
        }

        nav.solid {
            height: 80px;
            background: rgba(255, 255, 255, 0.96) !important;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
            border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
        }

        .logo {
            font-family: 'Inter', sans-serif;
            font-weight: 800;
            font-size: 1.25rem;
            color: #111827;
            text-transform: lowercase;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 6px;
            letter-spacing: -0.5px;
            margin-right: 0;
        }

        /* Middle Floating Navigation Pill */
        .nav-pill-container {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            align-items: center;
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: 100px;
            padding: 5px 28px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
            height: 52px;
            z-index: 10;
        }

        .nav-pill-links {
            display: flex;
            align-items: center;
            gap: 28px;
            list-style: none;
            margin: 0;
            padding: 0;
            margin-right: 0;
        }

        .nav-pill-links a {
            color: rgba(17, 24, 39, 0.65);
            text-decoration: none;
            font-size: 0.88rem;
            font-weight: 600;
            transition: color 0.2s ease;
        }

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

        /* Pill Capsule Button (Get Started) */
        .nav-pill-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #0f2231;
            color: #ffffff !important;
            text-decoration: none;
            padding: 10px 24px;
            border-radius: 100px;
            font-size: 0.88rem;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
        }

        .nav-pill-btn:hover {
            background: #1e3a52;
            transform: translateY(-1px);
        }

        /* Small notification dot on the capsule button */
        .nav-pill-btn::after {
            content: '';
            position: absolute;
            top: -2px;
            right: 4px;
            width: 5px;
            height: 5px;
            background: #00d5ff;
            border-radius: 50%;
            box-shadow: 0 0 8px #00d5ff;
        }

        /* Right Side Two-Tier Container */
        .nav-right-container {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 6px;
        }

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

        .nav-right-top a {
            color: rgba(17, 24, 39, 0.5);
            text-decoration: none;
            font-size: 0.78rem;
            font-weight: 600;
            transition: color 0.2s ease;
        }

        .nav-right-top a:hover {
            color: #111827;
        }

        /* The Outline Button (Try Demo) */
        .btn-outline-cyan {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            color: #00a8cc;
            border: 1.5px solid rgba(0, 168, 204, 0.4);
            padding: 8px 20px;
            border-radius: 100px;
            font-size: 0.82rem;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn-outline-cyan:hover {
            background: rgba(0, 168, 204, 0.04);
            border-color: rgba(0, 168, 204, 0.8);
            color: #008eb0;
            transform: translateY(-1px);
        }

        /* Mobile Right Area */
        .nav-mobile-right {
            display: none;
            align-items: center;
            gap: 12px;
        }

        .btn-mobile-get-started {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #0f2231;
            color: #ffffff !important;
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 100px;
            font-size: 0.78rem;
            font-weight: 700;
        }

        .logo-circle {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            border: 2px solid #111827;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #111827;
            margin-left: 2px;
        }

        .nav-links-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            height: 100%;
            padding: 0 50px;
            margin: 0 auto;
        }

        .nav-links-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 1.5px;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.12), rgba(0,0,0,0.03));
            transform: skewX(-22deg);
            pointer-events: none;
        }

        .nav-links-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 1.5px;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.12), rgba(0,0,0,0.03));
            transform: skewX(22deg);
            pointer-events: none;
        }

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

        .nav-links a {
            color: var(--muted);
            text-decoration: none;
            font-size: .85rem;
            font-weight: 500;
            letter-spacing: 0.2px;
            transition: color .2s;
            position: relative;
            padding-bottom: 4px
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1.5px;
            background: var(--text);
            border-radius: 1px;
            transition: width .25s
        }

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

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

        .nav-login-link {
            color: var(--muted);
            font-weight: 500;
        }

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

        .btn-chamfer {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 8px 22px;
            background: #111827;
            border-radius: 0;
            clip-path: polygon(6px 0, calc(100% - 6px) 0, 100% 6px, 100% calc(100% - 6px), calc(100% - 6px) 100%, 6px 100%, 0 calc(100% - 6px), 0 6px);
            transition: all 0.2s;
            cursor: pointer;
            text-decoration: none;
        }

        .btn-chamfer::before {
            content: '';
            position: absolute;
            inset: 1px;
            background: #111827;
            clip-path: polygon(5.5px 0, calc(100% - 5.5px) 0, 100% 5.5px, 100% calc(100% - 5.5px), calc(100% - 5.5px) 100%, 5.5px 100%, 0 calc(100% - 5.5px), 0 5.5px);
            z-index: 1;
            transition: all 0.2s;
        }

        .btn-chamfer span {
            position: relative;
            z-index: 2;
            color: #ffffff;
            font-family: 'Inter', sans-serif;
            font-size: .8rem;
            font-weight: 600;
            transition: color 0.2s;
        }

        .btn-chamfer:hover::before {
            background: #ffffff;
        }

        .btn-chamfer:hover span {
            color: #111827;
        }

        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text);
            font-size: 1.3rem;
            cursor: pointer
        }

        /* ── MOBILE NAV ── */
        .mob-nav {
            display: none;
            position: fixed;
            inset: 65px 0 0;
            z-index: 999;
            background: rgba(255, 255, 255, .98);
            backdrop-filter: blur(20px);
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 24px
        }

        .mob-nav.open {
            display: flex
        }

        .mob-nav a {
            font-size: 1.25rem;
            font-weight: 500;
            color: var(--text);
            text-decoration: none;
            transition: color .2s;
            letter-spacing: -0.2px;
        }

        .mob-nav a:hover {
            color: #111827
        }

        /* ── HERO ── */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 140px 5% 60px;
            position: relative;
            z-index: 1
        }

        .hero-inner {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 60px
        }

        .hero-text {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            width: 100%
        }

        .hero-chip {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(230, 57, 70, .1);
            border: 1px solid rgba(230, 57, 70, .3);
            border-radius: 100px;
            padding: 6px 16px;
            font-size: .78rem;
            font-weight: 600;
            color: var(--red);
            margin-bottom: 20px
        }

        .hero-chip i {
            font-size: .6rem;
            animation: blink 1.5s infinite
        }

        @keyframes blink {

            0%,
            100% {
                opacity: 1
            }

            50% {
                opacity: 0.3
            }
        }

        h1 {
            font-size: clamp(2.6rem, 5.5vw, 4.2rem);
            font-weight: 900;
            line-height: 1.12;
            letter-spacing: -0.035em;
            margin-bottom: 24px;
            color: #111827;
        }

        .hero-before-bell {
            color: #374151;
        }

        .red-text {
            color: var(--red)
        }

        .grad-text {
            background: linear-gradient(135deg, #ef4444, #f97316);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

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

        @keyframes pulsePointer {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.15); opacity: 0.7; }
        }

        .hero p {
            font-size: clamp(1.05rem, 2vw, 1.25rem);
            color: #4b5563;
            margin: 0 auto 40px;
            max-width: 780px;
            line-height: 1.8;
            text-align: center;
        }

        .hero-btns {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            justify-content: center
        }

        .btn-lg-red {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 32px;
            background: linear-gradient(135deg, var(--red), var(--red2));
            border-radius: 14px;
            color: #fff;
            font-size: 1rem;
            font-weight: 700;
            text-decoration: none;
            border: none;
            cursor: pointer;
            font-family: 'Inter', sans-serif;
            box-shadow: 0 0 32px var(--red-glow);
            transition: all .25s
        }

        .btn-lg-red:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 50px rgba(230, 57, 70, .6)
        }

        .btn-lg-outline {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 32px;
            border: 1px solid var(--border);
            border-radius: 14px;
            color: var(--text);
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all .25s
        }

        .btn-lg-outline:hover {
            border-color: var(--red);
            background: rgba(230, 57, 70, .08)
        }

        .hero-stats {
            display: flex;
            gap: 36px;
            margin-top: 40px;
            padding-top: 32px;
            border-top: 1px solid var(--border);
            justify-content: center
        }

        .hstat-num {
            font-size: 1.7rem;
            font-weight: 900
        }

        .hstat-label {
            font-size: .75rem;
            color: var(--muted);
            font-weight: 500
        }

        /* Chart card */
        .hero-visual {
            position: relative;
            width: 100%;
            max-width: 600px;
            margin: 0 auto
        }

        .chart-card {
            background: rgba(12, 12, 22, .92);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 20px;
            backdrop-filter: blur(20px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, .5), 0 0 40px var(--red-glow);
            animation: float 6s ease-in-out infinite
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0)
            }

            50% {
                transform: translateY(-12px)
            }
        }

        .chart-hdr {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px
        }

        .chart-sym {
            font-size: 1rem;
            font-weight: 800
        }

        .chart-chg {
            font-size: .9rem;
            font-weight: 700;
            color: var(--green)
        }

        .candles {
            display: flex;
            align-items: flex-end;
            gap: 5px;
            height: 140px;
            padding: 0 4px
        }

        .candle {
            display: flex;
            flex-direction: column;
            align-items: center;
            flex: 1;
            gap: 2px
        }

        .wick {
            width: 2px;
            border-radius: 2px
        }

        .body {
            width: 11px;
            border-radius: 3px;
            min-height: 6px
        }

        .bull .wick,
        .bull .body {
            background: var(--green)
        }

        .bear .wick,
        .bear .body {
            background: var(--red)
        }

        .pnl-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0, 230, 118, .1);
            border: 1px solid rgba(0, 230, 118, .25);
            border-radius: 10px;
            padding: 6px 14px;
            font-size: .8rem;
            font-weight: 700;
            color: var(--green);
            margin-top: 14px
        }

        .float-badge {
            position: absolute;
            top: -16px;
            right: -16px;
            background: linear-gradient(135deg, var(--red), var(--red2));
            border-radius: 14px;
            padding: 10px 16px;
            font-size: .78rem;
            font-weight: 700;
            color: #fff;
            box-shadow: 0 8px 24px var(--red-glow);
            animation: float2 5s ease-in-out infinite
        }

        .float-badge2 {
            position: absolute;
            bottom: -16px;
            left: -16px;
            background: rgba(12, 12, 22, .95);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 10px 16px;
            font-size: .78rem;
            font-weight: 600;
            animation: float3 7s ease-in-out infinite
        }

        @keyframes float2 {

            0%,
            100% {
                transform: translateY(0) rotate(-2deg)
            }

            50% {
                transform: translateY(-8px) rotate(0)
            }
        }

        @keyframes float3 {

            0%,
            100% {
                transform: translateY(0) rotate(1deg)
            }

            50% {
                transform: translateY(-6px) rotate(-1deg)
            }
        }

        /* ── SECTIONS ── */
        section {
            position: relative;
            z-index: 1;
            padding: 100px 5%
        }

        .wrap {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%
        }

        .sec-tag {
            display: inline-block;
            background: rgba(230, 57, 70, .1);
            border: 1px solid rgba(230, 57, 70, .25);
            border-radius: 100px;
            padding: 4px 14px;
            font-size: .72rem;
            font-weight: 700;
            color: var(--red);
            text-transform: uppercase;
            letter-spacing: .06em;
            margin-bottom: 14px
        }

        .sec-head {
            text-align: center;
            margin-bottom: 60px
        }

        .sec-head h2 {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 900;
            letter-spacing: -1px;
            margin-bottom: 12px
        }

        .sec-head p {
            color: var(--muted);
            font-size: 1rem;
            max-width: 500px;
            margin: 0 auto
        }

        /* Features - Premium */
        .feat-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px
        }

        .feat-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 32px;
            transition: all .4s cubic-bezier(.4, 0, .2, 1);
            cursor: default;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
        }

        .feat-card.animate-in {
            opacity: 1;
            transform: translateY(0);
        }

        .feat-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, rgba(230, 57, 70, .06), transparent 30%);
            opacity: 0;
            transition: opacity .6s;
            animation: feat-rotate 8s linear infinite;
        }

        .feat-card:hover::before {
            opacity: 1;
        }

        @keyframes feat-rotate {
            100% { transform: rotate(360deg); }
        }

        .feat-card::after {
            content: '';
            position: absolute;
            inset: 1px;
            background: var(--card);
            border-radius: 19px;
            z-index: 0;
        }

        .feat-card > * {
            position: relative;
            z-index: 1;
        }

        .feat-card:hover {
            border-color: rgba(230, 57, 70, .5);
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, .25), 0 0 40px rgba(230, 57, 70, .08);
        }

        .feat-icon {
            width: 52px;
            height: 52px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            margin-bottom: 20px;
            background: linear-gradient(135deg, rgba(230, 57, 70, .2), rgba(230, 57, 70, .05));
            border: 1px solid rgba(230, 57, 70, .25);
            color: var(--red);
            transition: all .4s cubic-bezier(.4, 0, .2, 1);
            box-shadow: 0 4px 12px rgba(230, 57, 70, .1);
        }

        .feat-card:hover .feat-icon {
            transform: scale(1.1) rotate(-5deg);
            box-shadow: 0 8px 24px rgba(230, 57, 70, .2);
            background: linear-gradient(135deg, rgba(230, 57, 70, .3), rgba(230, 57, 70, .1));
        }

        .feat-card h3 {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 10px;
            transition: color .3s;
        }

        .feat-card:hover h3 {
            color: var(--red);
        }

        .feat-card p {
            font-size: .85rem;
            color: var(--muted);
            line-height: 1.7
        }

        .feat-glow {
            position: absolute;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(230, 57, 70, .12), transparent 70%);
            top: -30px;
            right: -30px;
            pointer-events: none;
            z-index: 0;
            opacity: 0;
            transition: opacity .4s;
        }

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

        /* Stats bar */
        .stats-row {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 40px 60px;
            display: flex;
            justify-content: space-around;
            gap: 20px
        }

        .stat-item {
            text-align: center
        }

        .stat-num {
            font-size: 2.4rem;
            font-weight: 900;
            color: var(--red)
        }

        .stat-lbl {
            font-size: .82rem;
            color: var(--muted);
            font-weight: 500;
            margin-top: 4px
        }

        /* Steps */
        .steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            position: relative
        }

        .steps::before {
            content: '';
            position: absolute;
            top: 36px;
            left: 15%;
            right: 15%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--red), transparent)
        }

        .step {
            text-align: center;
            padding: 32px 24px
        }

        .step-num {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--red), var(--red2));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            font-weight: 900;
            margin: 0 auto 20px;
            box-shadow: 0 0 30px var(--red-glow);
            color: #fff
        }

        .step h3 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 8px
        }

        .step p {
            font-size: .85rem;
            color: var(--muted)
        }

        /* Symbol Checker Section */
        .checker-container {
            max-width: 680px;
            margin: 0 auto;
            background: #ffffff;
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .checker-container:hover {
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
            border-color: rgba(0, 0, 0, 0.15);
        }
        .search-box-row {
            display: flex;
            gap: 12px;
            margin-bottom: 16px;
        }
        .search-input-container {
            flex: 1;
            display: flex;
            align-items: center;
            background: #fcfcfd;
            border: 1.5px solid var(--border);
            border-radius: 16px;
            padding: 0 18px;
            height: 56px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .search-input-container:focus-within {
            border-color: #111827;
            background: #ffffff;
            box-shadow: 0 0 0 4px rgba(17, 24, 39, 0.06);
        }
        .search-input-container i {
            color: var(--muted);
            margin-right: 12px;
            font-size: 1.1rem;
            transition: color 0.3s;
        }
        .search-input-container:focus-within i {
            color: #111827;
        }
        .search-input-container input {
            flex: 1;
            border: none;
            outline: none;
            font-size: 1rem;
            color: var(--text);
            background: transparent;
            font-family: 'Inter', sans-serif;
            font-weight: 500;
        }
        .search-input-container input::placeholder {
            color: var(--muted);
            font-weight: 400;
        }
        .symbol-clear-btn {
            background: none;
            border: none;
            color: var(--muted);
            cursor: pointer;
            padding: 4px;
            font-size: 0.95rem;
            transition: color 0.2s, transform 0.2s;
            display: none;
            align-items: center;
            justify-content: center;
        }
        .symbol-clear-btn:hover {
            color: #ef4444;
            transform: scale(1.1);
        }
        .symbol-check-btn {
            height: 56px;
            padding: 0 32px;
            background: #111827;
            color: #ffffff;
            border: none;
            border-radius: 16px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 12px rgba(17, 24, 39, 0.15);
        }
        .symbol-check-btn:hover {
            background: #1f2937;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(17, 24, 39, 0.25);
        }
        .symbol-check-btn:active {
            transform: translateY(0);
        }
        .example-tag {
            background: #f3f4f6;
            border: 1px solid transparent;
            border-radius: 10px;
            padding: 6px 14px;
            font-size: 0.82rem;
            font-weight: 500;
            color: var(--text);
            cursor: pointer;
            transition: all 0.2s ease;
            font-family: 'Inter', sans-serif;
        }
        .example-tag:hover {
            background: #111827;
            color: #ffffff;
            transform: translateY(-1px);
        }
        .result-card {
            border-radius: 18px;
            padding: 20px 24px;
            display: flex;
            align-items: center;
            gap: 16px;
            margin-top: 8px;
            animation: checkerFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
            border: 1px solid transparent;
        }
        .result-card.success {
            background: rgba(16, 185, 129, 0.06);
            border-color: rgba(16, 185, 129, 0.2);
            color: #065f46;
        }
        .result-card.error {
            background: rgba(239, 68, 68, 0.05);
            border-color: rgba(239, 68, 68, 0.15);
            color: #991b1b;
        }
        .result-card.warning {
            background: rgba(245, 158, 11, 0.05);
            border-color: rgba(245, 158, 11, 0.15);
            color: #92400e;
        }
        .result-card img {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            object-fit: contain;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
            background: #fff;
            padding: 2px;
        }
        .result-card-content {
            flex: 1;
        }
        .result-card-title {
            font-weight: 700;
            font-size: 0.98rem;
            margin-bottom: 2px;
        }
        .result-card-desc {
            font-size: 0.85rem;
            opacity: 0.85;
            line-height: 1.4;
        }
        .suggested-badge {
            display: inline-block;
            background: rgba(245, 158, 11, 0.1);
            border: 1px solid rgba(245, 158, 11, 0.2);
            color: #b45309;
            border-radius: 6px;
            padding: 2px 6px;
            font-size: 0.78rem;
            font-weight: 600;
            margin: 2px;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        .suggested-badge:hover {
            background: #b45309;
            color: #ffffff;
            transform: translateY(-1px);
        }
        
        /* Expandable Premium View */
        #toggle-all-symbols-btn {
            background: #ffffff;
            border: 1.5px solid var(--border);
            border-radius: 14px;
            padding: 12px 24px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text);
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.01);
        }
        #toggle-all-symbols-btn:hover {
            border-color: #111827;
            background: #f9fafb;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.03);
        }
        .symbols-tabs {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-bottom: 30px;
            border-bottom: 1px solid var(--border);
            padding-bottom: 12px;
        }
        .symbols-tabs .tab-btn {
            background: none;
            border: none;
            padding: 10px 20px;
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--muted);
            position: relative;
            cursor: pointer;
            transition: all 0.3s;
            border-radius: 8px 8px 0 0;
        }
        .symbols-tabs .tab-btn:hover {
            color: var(--text);
        }
        .symbols-tabs .tab-btn.active {
            color: #111827;
        }
        .symbols-tabs .tab-btn.active::after {
            content: '';
            position: absolute;
            bottom: -13px;
            left: 0;
            right: 0;
            height: 3px;
            background: #111827;
            border-radius: 3px;
        }
        .symbols-tabs .badge {
            font-size: 0.72rem;
            background: #f3f4f6;
            padding: 2px 7px;
            border-radius: 99px;
            margin-left: 5px;
            font-weight: 700;
            color: var(--muted);
            transition: all 0.3s;
        }
        .symbols-tabs .tab-btn.active .badge {
            background: #111827;
            color: #ffffff;
        }
        .symbols-grid-filter-wrap {
            max-width: 340px;
            margin: 0 auto 35px;
            display: flex;
            align-items: center;
            background: #ffffff;
            border: 1.5px solid var(--border);
            border-radius: 14px;
            padding: 0 14px;
            height: 44px;
            transition: all 0.3s ease;
        }
        .symbols-grid-filter-wrap:focus-within {
            border-color: #111827;
            box-shadow: 0 0 0 4px rgba(17, 24, 39, 0.05);
        }
        .symbols-grid-filter-wrap i {
            color: var(--muted);
            margin-right: 10px;
            font-size: 0.95rem;
        }
        .symbols-grid-filter-wrap input {
            flex: 1;
            border: none;
            outline: none;
            font-size: 0.9rem;
            color: var(--text);
            background: transparent;
            font-family: 'Inter', sans-serif;
            font-weight: 500;
        }
        .load-more-btn {
            background: #ffffff;
            border: 1.5px solid var(--border);
            border-radius: 12px;
            padding: 10px 22px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text);
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.01);
        }
        .load-more-btn:hover {
            border-color: #111827;
            background: #f9fafb;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.03);
        }
        .symbol-card {
            background: #ffffff;
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 22px 16px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 4px 10px rgba(0,0,0,0.01);
            animation: cardFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .symbol-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
            border-color: #111827;
        }
        .symbol-card > img {
            width: 38px;
            height: 38px;
            margin-bottom: 12px;
            object-fit: contain;
            border-radius: 50%;
            background: #f9fafb;
            padding: 2px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
            transition: transform 0.3s;
        }
        .symbol-card:hover > img {
            transform: scale(1.08);
        }
        .tv-double-logo {
            transition: transform 0.3s;
        }
        .symbol-card:hover .tv-double-logo {
            transform: scale(1.08);
        }
        .symbol-card .sym-name {
            font-size: 0.92rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 6px;
            letter-spacing: -0.2px;
        }
        .symbol-card .sym-cat {
            font-size: 0.68rem;
            font-weight: 600;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 0.8px;
            background: #f3f4f6;
            padding: 2px 8px;
            border-radius: 6px;
        }
        .symbol-card.cat-crypto .sym-cat {
            background: rgba(245, 158, 11, 0.08);
            color: #d97706;
        }
        .symbol-card.cat-forex .sym-cat {
            background: rgba(59, 130, 246, 0.08);
            color: #2563eb;
        }
        .symbol-card.cat-metals .sym-cat {
            background: rgba(16, 185, 129, 0.08);
            color: #059669;
        }
        
        @keyframes checkerFadeIn {
            from { opacity: 0; transform: translateY(8px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes cardFadeIn {
            from { opacity: 0; transform: scale(0.95) translateY(10px); }
            to { opacity: 1; transform: scale(1) translateY(0); }
        }
        @keyframes slideDown {
            from { opacity: 0; max-height: 0; transform: translateY(-10px); overflow: hidden; }
            to { opacity: 1; max-height: 2000px; transform: translateY(0); }
        }

        @media (max-width: 580px) {
            .search-box-row {
                flex-direction: column;
                gap: 8px;
            }
            .symbol-check-btn {
                width: 100%;
                justify-content: center;
            }
            .checker-container {
                padding: 30px 20px;
            }
            .symbols-tabs {
                flex-wrap: wrap;
            }
            .symbols-tabs .tab-btn {
                padding: 8px 12px;
                font-size: 0.88rem;
            }
        }

        /* Demo */
        .demo-wrap {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center
        }

        .demo-text h2 {
            font-size: clamp(1.6rem, 3vw, 2.4rem);
            font-weight: 900;
            margin-bottom: 16px;
            letter-spacing: -1px
        }

        .demo-text p {
            color: var(--muted);
            margin-bottom: 24px;
            line-height: 1.8
        }

        .check-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px
        }

        .check-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: .9rem
        }

        .check-list i {
            color: var(--green);
            font-size: .85rem;
            flex-shrink: 0
        }

        .video-card {
            background: rgba(12, 12, 22, .9);
            border: 1px solid var(--border);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, .5)
        }

        .video-dots {
            display: flex;
            gap: 6px;
            padding: 12px 16px;
            border-bottom: 1px solid var(--border)
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%
        }

        .dot.r {
            background: #ff5f56
        }

        .dot.y {
            background: #ffbd2e
        }

        .dot.g {
            background: #27c93f
        }

        .video-card video {
            width: 100%;
            display: block;
            aspect-ratio: 16/9;
            object-fit: cover
        }

        /* Pricing */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px
        }

        .plan-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 32px;
            position: relative;
            transition: all .3s;
            overflow: hidden
        }

        /* Candlestick chart image strip at top of every plan card */
        .plan-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 130px;
            background:
                linear-gradient(to bottom,
                    rgba(8, 8, 16, 0.25) 0%,
                    rgba(8, 8, 16, 0.72) 60%,
                    rgba(8, 8, 16, 0.97) 100%),
                url('plan_card_bg.png') center 30% / cover no-repeat;
            border-radius: 24px 24px 0 0;
            pointer-events: none;
            z-index: 0
        }

        /* Featured card gets a red-tinted overlay */
        .plan-card.featured::before {
            background:
                linear-gradient(to bottom,
                    rgba(230, 57, 70, 0.18) 0%,
                    rgba(8, 8, 16, 0.80) 60%,
                    rgba(8, 8, 16, 0.97) 100%),
                url('plan_card_bg.png') center 30% / cover no-repeat
        }

        /* Keep all card content above the pseudo-element */
        .plan-card>* {
            position: relative;
            z-index: 1
        }

        /* Add top padding so content clears the image strip */
        .plan-tier {
            margin-top: 80px
        }

        .plan-card.featured {
            border-color: var(--red);
            background: rgba(230, 57, 70, .05);
            box-shadow: 0 0 40px rgba(230, 57, 70, .12)
        }

        .plan-card:hover {
            transform: translateY(-4px)
        }

        /* ── Electric Border (canvas noise animation) ── */
        .electric-border {
            --electric-border-color: #E63946;
            --electric-light-color: #E63946;
            position: relative;
            border-radius: 24px;
            overflow: visible !important;
            isolation: isolate;
        }

        .eb-canvas-container {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
            z-index: 3;
        }

        .eb-canvas {
            display: block;
        }

        .eb-content {
            position: relative;
            border-radius: inherit;
            z-index: 1;
        }

        .eb-layers {
            position: absolute;
            inset: 0;
            border-radius: inherit;
            pointer-events: none;
            z-index: 0;
        }

        .eb-glow-1,
        .eb-glow-2,
        .eb-background-glow {
            position: absolute;
            inset: 0;
            border-radius: inherit;
            pointer-events: none;
            box-sizing: border-box;
        }

        .eb-glow-1 {
            border: 2px solid rgba(230, 57, 70, 0.6);
            filter: blur(1px);
        }

        .eb-glow-2 {
            border: 2px solid #E63946;
            filter: blur(4px);
        }

        .eb-background-glow {
            z-index: -1;
            transform: scale(1.1);
            filter: blur(32px);
            opacity: 0.3;
            background: linear-gradient(-30deg, #E63946, transparent, #c1121f);
        }

        /* ── Blue Electric Border variant ── */
        .electric-border-blue {
            --eb-color: #4DA3FF;
            position: relative;
            border-radius: 24px;
            overflow: visible !important;
            isolation: isolate;
            border-color: #4DA3FF !important;
            background: rgba(77, 163, 255, 0.04) !important;
            box-shadow: 0 0 40px rgba(77, 163, 255, 0.12) !important;
        }

        .electric-border-blue .eb-glow-1 {
            border: 2px solid rgba(77, 163, 255, 0.6);
            filter: blur(1px);
        }

        .electric-border-blue .eb-glow-2 {
            border: 2px solid #4DA3FF;
            filter: blur(4px);
        }

        .electric-border-blue .eb-background-glow {
            background: linear-gradient(-30deg, #4DA3FF, transparent, #1a6fd8);
        }

        .plan-badge {
            position: absolute;
            top: 16px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--red), var(--red2));
            border-radius: 100px;
            padding: 5px 18px;
            font-size: .72rem;
            font-weight: 800;
            white-space: nowrap;
            color: #fff;
            z-index: 2;
            box-shadow: 0 4px 16px rgba(230, 57, 70, 0.5)
        }

        .plan-badge.gold {
            background: linear-gradient(135deg, #FFD700, #FFA500);
            color: #000;
            box-shadow: 0 4px 16px rgba(255, 165, 0, 0.45)
        }

        .plan-tier {
            font-size: .82rem;
            font-weight: 700;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: .06em;
            margin-bottom: 10px
        }

        .plan-price {
            font-size: 2.4rem;
            font-weight: 900;
            letter-spacing: -1px;
            margin-bottom: 4px;
            color: var(--text)
        }

        .plan-price span {
            font-size: 1rem;
            color: var(--muted);
            font-weight: 500
        }

        .plan-save {
            font-size: .78rem;
            color: var(--green);
            font-weight: 600;
            margin-bottom: 20px
        }

        .plan-desc {
            font-size: .85rem;
            color: var(--muted);
            margin-bottom: 24px;
            padding-bottom: 24px;
            border-bottom: 1px solid var(--border)
        }

        .plan-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 28px
        }

        .plan-list li {
            font-size: .85rem;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text)
        }

        .plan-list li i.fa-check {
            color: var(--green);
            font-size: .75rem;
            flex-shrink: 0
        }

        .plan-list li.off {
            color: var(--muted)
        }

        .plan-list li.off i {
            color: var(--muted);
            font-size: .75rem;
            flex-shrink: 0
        }

        .btn-plan {
            display: block;
            text-align: center;
            padding: 13px;
            border-radius: 12px;
            font-size: .88rem;
            font-weight: 700;
            text-decoration: none;
            transition: all .2s;
            border: 1px solid var(--border);
            color: var(--text);
            font-family: 'Inter', sans-serif;
            cursor: pointer;
            background: none
        }

        .btn-plan:hover {
            border-color: var(--red);
            background: rgba(230, 57, 70, .08);
            color: #fff
        }

        .btn-plan.prim {
            background: linear-gradient(135deg, var(--red), var(--red2));
            border-color: transparent;
            color: #fff;
            box-shadow: 0 8px 24px rgba(230, 57, 70, .3)
        }

        .btn-plan.prim:hover {
            transform: translateY(-1px);
            box-shadow: 0 12px 32px rgba(230, 57, 70, .5)
        }

        .explore-more-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            margin-top: 14px;
            font-size: 0.85rem;
            color: var(--muted);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.2s;
        }

        .explore-more-link:hover {
            color: var(--text);
        }

        body.light .explore-more-link {
            color: rgba(0, 0, 0, 0.5);
        }

        body.light .explore-more-link:hover {
            color: rgba(0, 0, 0, 0.9);
        }

        /* Reviews */
        .marquee-wrap {
            overflow: hidden;
            mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent)
        }

        .marquee-track {
            display: flex;
            gap: 20px;
            animation: marquee 35s linear infinite;
            width: max-content
        }

        .marquee-track:hover {
            animation-play-state: paused
        }

        @keyframes marquee {
            0% {
                transform: translateX(0)
            }

            100% {
                transform: translateX(-50%)
            }
        }

        .rev-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 24px;
            width: 300px;
            flex-shrink: 0;
            transition: border .2s
        }

        .rev-card:hover {
            border-color: rgba(230, 57, 70, .3)
        }

        .stars-row {
            color: #FFD700;
            font-size: .9rem;
            letter-spacing: 2px;
            margin-bottom: 12px
        }

        .rev-card p {
            font-size: .85rem;
            color: var(--muted);
            margin-bottom: 16px;
            line-height: 1.7
        }

        .rev-user {
            display: flex;
            align-items: center;
            gap: 10px
        }

        .rev-av {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--red), var(--red2));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .75rem;
            font-weight: 800;
            color: #fff;
            flex-shrink: 0
        }

        .rev-name {
            font-size: .85rem;
            font-weight: 700
        }

        .rev-role {
            font-size: .75rem;
            color: var(--muted)
        }

        /* CTA */
        .cta-box {
            background: url('rocket_bg.png') center 30%/cover no-repeat;
            border: 1px solid rgba(230, 57, 70, .25);
            border-radius: 28px;
            padding: 80px 40px;
            text-align: center;
            position: relative;
            overflow: hidden
        }

        .cta-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 400px;
            height: 400px;
            background: radial-gradient(ellipse, rgba(230, 57, 70, .15), transparent 70%);
            pointer-events: none
        }

        .cta-box h2 {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 900;
            letter-spacing: -1px;
            margin-bottom: 14px;
            position: relative;
            color: #ffffff;
            text-shadow: 0 0 30px rgba(255,255,255,0.5), 0 0 60px rgba(255,255,255,0.2);
        }

        .cta-box p {
            color: #ffffff;
            margin-bottom: 36px;
            font-size: 1rem;
            position: relative;
            text-shadow: 0 0 20px rgba(255,255,255,0.3);
        }

        .cta-box .btn-lg-outline {
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.5);
            color: #ffffff;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            box-shadow: 0 0 20px rgba(255,255,255,0.1), inset 0 0 20px rgba(255,255,255,0.05);
        }

        .cta-box .btn-lg-outline:hover {
            background: rgba(255,255,255,0.22);
            border-color: rgba(255,255,255,0.7);
            box-shadow: 0 0 30px rgba(255,255,255,0.2), inset 0 0 20px rgba(255,255,255,0.08);
            transform: translateY(-2px);
        }

        .cta-btns {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
            position: relative
        }

        /* Footer */
        footer {
            position: relative;
            z-index: 1;
            border-top: 1px solid var(--border);
            padding: 40px 5% 40px;
            background-color: var(--bg);
        }

        .footer-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px
        }

        .footer-brand .logo {
            font-size: 1.4rem;
            font-weight: 900;
            margin-bottom: 12px;
            display: block
        }

        .footer-brand p {
            font-size: .85rem;
            color: var(--muted);
            margin-bottom: 20px;
            line-height: 1.7
        }

        .socials {
            display: flex;
            gap: 10px
        }

        .socials a {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--muted);
            font-size: .85rem;
            text-decoration: none;
            transition: all .2s
        }

        .socials a:hover {
            border-color: var(--red);
            color: var(--red)
        }

        .fcol h4 {
            font-size: .82rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .06em;
            color: var(--muted);
            margin-bottom: 16px
        }

        .fcol a {
            display: block;
            font-size: .85rem;
            color: var(--muted);
            text-decoration: none;
            margin-bottom: 10px;
            transition: color .2s
        }

        .fcol a:hover {
            color: var(--text)
        }

        .footer-btm {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            font-size: .8rem;
            color: var(--muted);
            padding-top: 24px;
            border-top: 1px solid var(--border)
        }

        /* Reveal */
        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity .7s, transform .7s
        }

        .reveal.on {
            opacity: 1;
            transform: none
        }

        .reveal.slide-left {
            transform: translate(-50px, 15px);
        }

        .reveal.slide-left.on {
            transform: translate(0, 0);
        }

        .reveal.slide-right {
            transform: translate(50px, 15px);
        }

        .reveal.slide-right.on {
            transform: translate(0, 0);
        }

        .reveal.on:hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        }

        .au {
            opacity: 0;
            transform: translateY(22px);
        }

        /* Animations fire only AFTER loader hides (transition.js adds .ready) */
        body.ready .au {
            animation: au .7s ease forwards;
        }

        body.ready .au.d1 {
            animation-delay: .1s
        }

        body.ready .au.d2 {
            animation-delay: .2s
        }

        body.ready .au.d3 {
            animation-delay: .35s
        }

        body.ready .au.d4 {
            animation-delay: .5s
        }

        @keyframes au {
            to {
                opacity: 1;
                transform: none
            }
        }

        /* Light mode */
        body.light {
            --bg: #ffffff;
            --card: rgba(255, 255, 255, 0.1);
            --border: rgba(0, 0, 0, 0.08);
            --text: #000000;
            --muted: rgba(0, 0, 0, .45);
            --red-glow: rgba(0, 0, 0, .1)
        }

        body.light nav {
            background: rgba(250, 250, 252, 0.8) !important;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
        }

        body.light nav.solid {
            background: rgba(255, 255, 255, 0.96) !important;
            border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
        }

        body.light .mob-nav {
            background: rgba(255, 255, 255, .98);
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
        }

        body.light .chart-card,
        body.light .video-card {
            background: rgba(255, 255, 255, .95)
        }

        body.light footer {
            border-color: rgba(255, 255, 255, .08);
            color: #f0f0f8;
        }

        body.light footer .footer-brand p,
        body.light footer .fcol a,
        body.light footer .fcol h4,
        body.light footer .socials a,
        body.light footer .footer-btm {
            color: rgba(255, 255, 255, .6);
        }

        body.light footer .socials a {
            border-color: rgba(255, 255, 255, .15);
        }

        body.light footer .fcol a:hover {
            color: #fff;
        }

        body.light footer .socials a:hover {
            border-color: var(--red);
            color: var(--red);
        }

        body.light .footer-btm {
            border-color: rgba(255, 255, 255, .08)
        }

        body.light .grid-lines {
            background-image: linear-gradient(rgba(230, 57, 70, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(230, 57, 70, .04) 1px, transparent 1px);
            background-size: 64px 64px
        }

        /* Light mode — Pricing fixes & Toggle styles */
        .pricing-toggle-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-bottom: 50px;
        }

        .pricing-toggle-btn {
            padding: 10px 24px;
            border: 2px solid #000000;
            background: #ffffff;
            color: #000000;
            font-size: 0.9rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s;
            border-radius: 50px;
        }

        .pricing-toggle-btn.active {
            background: #000000;
            color: #ffffff;
            border-color: #000000;
        }

        body.light .plan-card {
            background: #ffffff;
            border: 2px solid #000000;
            box-shadow: 0 4px 24px rgba(0, 0, 0, .05);
            color: #000000;
        }

        body.light .plan-card.featured {
            background: #ffffff;
            border: 2px solid #000000;
            box-shadow: 0 8px 32px rgba(0, 0, 0, .1)
        }

        body.light .plan-tier {
            color: #000000;
            font-weight: 800;
        }

        body.light .plan-price {
            color: #000000;
        }

        body.light .plan-price span {
            color: #000000;
            opacity: 0.7;
        }

        body.light .plan-save {
            color: #000000;
            font-weight: 700;
        }

        body.light .plan-desc {
            color: #000000;
            opacity: 0.8;
            border-color: #000000;
        }

        body.light .plan-list li {
            color: #000000;
        }

        body.light .plan-list li i.fa-check {
            color: #000000;
        }

        body.light .plan-list li.off {
            color: #000000;
            opacity: 0.4;
        }

        body.light .plan-list li.off i.fa-times {
            color: #000000;
        }

        body.light .btn-plan {
            border: 2px solid #000000;
            color: #000000;
            background: #ffffff;
        }

        body.light .btn-plan:hover {
            border-color: #000000;
            background: #000000;
            color: #ffffff;
        }

        body.light .btn-plan.prim {
            background: #000000;
            color: #ffffff;
            border-color: #000000;
            box-shadow: none;
        }

        body.light .btn-plan.prim:hover {
            background: #ffffff;
            color: #000000;
            border-color: #000000;
            box-shadow: none;
        }

        .plan-card::before,
        .plan-card::after {
            display: none !important;
        }

        .plan-tier {
            margin-top: 0 !important;
        }

        body.light .stats-row {
            background: rgba(255, 255, 255, .9);
            border-color: rgba(0, 0, 0, .1)
        }

        body.light .feat-card {
            background: rgba(255, 255, 255, .92);
            border-color: rgba(0, 0, 0, .07);
            box-shadow: 0 4px 16px rgba(0, 0, 0, .04);
        }

        body.light .feat-card:hover {
            border-color: rgba(230, 57, 70, .35);
            box-shadow: 0 25px 50px rgba(0, 0, 0, .08), 0 0 40px rgba(230, 57, 70, .06);
        }

        body.light .feat-card::after {
            background: rgba(255, 255, 255, .92);
        }

        body.light .step {
            color: #000000
        }

        body.light .step p {
            color: rgba(0, 0, 0, .5)
        }

        body.light .rev-card {
            background: rgba(255, 255, 255, .85);
            border-color: rgba(0, 0, 0, .09)
        }

        body.light .rev-card p {
            color: rgba(0, 0, 0, .55)
        }

        body.light .cta-box {
            background: url('rocket_bg.png') center 30%/cover no-repeat;
            border-color: rgba(230, 57, 70, .25)
        }

        body.light .cta-box h2 {
            color: #ffffff;
            text-shadow: 0 0 30px rgba(255,255,255,0.5), 0 0 60px rgba(255,255,255,0.2);
        }

        body.light .cta-box p {
            color: #ffffff;
            text-shadow: 0 0 20px rgba(255,255,255,0.3);
        }

        body.light .cta-box .btn-lg-outline {
            background: rgba(255,255,255,0.12);
            border-color: rgba(255,255,255,0.5);
            color: #ffffff;
        }

        /* Responsive */
        @media(max-width:960px) {

            .nav-links-wrapper {
                display: none
            }

            .nav-pill-container {
                display: none !important;
            }

            .nav-right-container {
                display: none !important;
            }

            .nav-mobile-right {
                display: flex !important;
            }

            .hamburger {
                display: block
            }

            .hero-inner {
                gap: 40px
            }

            .hero-visual {
                order: 1
            }

            .float-badge,
            .float-badge2 {
                display: none
            }

            .feat-grid {
                grid-template-columns: 1fr 1fr
            }

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

            .demo-wrap {
                grid-template-columns: 1fr
            }

            .steps {
                grid-template-columns: 1fr
            }

            .steps::before {
                display: none
            }

            .stats-row {
                flex-wrap: wrap;
                padding: 32px 20px
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr
            }
        }

        @media(max-width:580px) {
            section {
                padding: 70px 5%
            }

            nav {
                padding: 0 20px
            }

            .feat-grid {
                grid-template-columns: 1fr
            }

            .hero-stats {
                flex-direction: column;
                gap: 16px;
                align-items: center
            }

            .footer-grid {
                grid-template-columns: 1fr
            }

            .pricing-grid {
                grid-template-columns: 1fr
            }

            .plan-card::before {
                height: 110px
            }

            .plan-tier {
                margin-top: 60px
            }
        }

        /* Page Loader Styles */
        #page-loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: var(--bg);
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            transition: transform 0.45s cubic-bezier(0.7, 0, 0.3, 1);
            transform-origin: top;
        }

        #page-loader::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
            background-size: 40px 40px;
            opacity: 0.3;
            pointer-events: none;
        }

        .loader-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .loader-logo {
            font-size: 4rem;
            font-weight: 900;
            letter-spacing: -2px;
            margin-bottom: 30px;
            color: var(--text);
            display: inline-block;
            overflow: hidden;
        }

        .loader-logo span {
            color: var(--red);
        }

        .spinner {
            position: relative;
            width: 60px;
            height: 60px;
            margin: 0 auto;
        }

        .spinner::before,
        .spinner::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            border: 3px solid transparent;
        }

        .spinner::before {
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-top-color: var(--red);
            border-bottom-color: var(--red);
            animation: spin 1.5s linear infinite;
        }

        .spinner::after {
            top: 10px;
            left: 10px;
            width: calc(100% - 20px);
            height: calc(100% - 20px);
            border-left-color: #007AFF;
            border-right-color: #007AFF;
            animation: spinReverse 1s linear infinite;
        }

        .loader-hidden {
            transform: translateY(-100%);
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        @keyframes spinReverse {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(-360deg);
            }
        }

        /* Rocket Particles CSS */
        .spark-particle {
            position: fixed;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #ffbd2e;
            pointer-events: none;
            z-index: 999998;
            box-shadow: 0 0 12px #ffbd2e, 0 0 20px #e63946;
            animation: sparkAnim 0.5s ease-out forwards;
        }

        @keyframes sparkAnim {
            0% {
                transform: scale(1);
                opacity: 1;
            }

            100% {
                transform: scale(0) translateY(15px);
                opacity: 0;
            }
        }

        .burst-particle {
            position: fixed;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            pointer-events: none;
            z-index: 999999;
            animation: burstAnim 0.6s cubic-bezier(0, .9, .57, 1) forwards;
        }

        @keyframes burstAnim {
            0% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 1;
            }

            100% {
                transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))) scale(0);
                opacity: 0;
            }
        }

/* ── Battle Mode Redesign ── */
            #battle-mode {
                padding: 100px 5%;
                background: radial-gradient(circle at 10% 20%, rgba(243, 244, 246, 0.4) 0%, rgba(255, 255, 255, 1) 90%);
                position: relative;
                overflow: hidden;
            }

            #battle-mode::before {
                content: '';
                position: absolute;
                inset: 0;
                z-index: 0;
                pointer-events: none;
                opacity: 0.05;
                background-image: 
                    linear-gradient(rgba(0, 0, 0, 0.1) 1px, transparent 1px), 
                    linear-gradient(90deg, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
                background-size: 40px 40px;
            }

            #battle-mode .wrap {
                position: relative;
                z-index: 1;
            }

            #battle-mode .battle-layout {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 60px;
                align-items: center;
            }

            #battle-mode .left-hero-icon {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                width: 80px;
                height: 80px;
                border-radius: 24px;
                background: linear-gradient(135deg, #ff416c, #ff4b2b);
                color: #ffffff;
                font-size: 2.2rem;
                margin-bottom: 28px;
                box-shadow: 0 10px 25px rgba(255, 75, 43, 0.35);
                animation: float-icon 4s ease-in-out infinite;
            }

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

            #battle-mode .step-indicator {
                min-width: 32px;
                height: 32px;
                border-radius: 50%;
                background: linear-gradient(135deg, #111827, #374151);
                color: #ffffff;
                font-size: 0.8rem;
                font-weight: 800;
                display: flex;
                align-items: center;
                justify-content: center;
                box-shadow: 0 4px 10px rgba(0,0,0,0.15);
            }

            /* Modernized Cards */
            #battle-mode .cards-grid {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }

            #battle-mode .battle-card {
                background: rgba(255, 255, 255, 0.85);
                border: 1px solid rgba(0, 0, 0, 0.08);
                border-radius: 24px;
                padding: 28px;
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02);
                backdrop-filter: blur(12px);
                -webkit-backdrop-filter: blur(12px);
                transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
                position: relative;
                overflow: hidden;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                text-align: left;
            }

            #battle-mode .battle-card::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                height: 4px;
                transform: scaleX(0);
                transform-origin: left;
                transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            }

            #battle-mode .battle-card.card-instant::after { background: #ff4757; }
            #battle-mode .battle-card.card-timed::after { background: #1e90ff; }
            #battle-mode .battle-card.card-sync::after { background: #2ed573; }
            #battle-mode .battle-card.card-points::after { background: #ffa502; }

            #battle-mode .battle-card:hover {
                transform: translateY(-8px) !important;
                border-color: rgba(0, 0, 0, 0.12);
            }

            #battle-mode .battle-card.card-instant:hover { box-shadow: 0 20px 40px rgba(255, 71, 87, 0.12); }
            #battle-mode .battle-card.card-timed:hover { box-shadow: 0 20px 40px rgba(30, 144, 255, 0.12); }
            #battle-mode .battle-card.card-sync:hover { box-shadow: 0 20px 40px rgba(46, 213, 115, 0.12); }
            #battle-mode .battle-card.card-points:hover { box-shadow: 0 20px 40px rgba(255, 165, 2, 0.12); }

            #battle-mode .battle-card:hover::after {
                transform: scaleX(1);
            }

            #battle-mode .card-icon-wrapper {
                width: 52px;
                height: 52px;
                border-radius: 16px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1.3rem;
                margin-bottom: 20px;
                transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            }

            #battle-mode .battle-card:hover .card-icon-wrapper {
                transform: scale(1.15) rotate(8deg);
            }

            #battle-mode .card-instant .card-icon-wrapper { background: rgba(255, 71, 87, 0.1); color: #ff4757; }
            #battle-mode .card-timed .card-icon-wrapper { background: rgba(30, 144, 255, 0.1); color: #1e90ff; }
            #battle-mode .card-sync .card-icon-wrapper { background: rgba(46, 213, 115, 0.1); color: #2ed573; }
            #battle-mode .card-points .card-icon-wrapper { background: rgba(255, 165, 2, 0.1); color: #ffa502; }

            #battle-mode .battle-card h3 {
                font-size: 1.15rem;
                font-weight: 800;
                color: #111827;
                margin-bottom: 8px;
            }

            #battle-mode .battle-card p {
                color: rgba(0,0,0,0.6);
                font-size: 0.88rem;
                line-height: 1.5;
                margin: 0;
            }

            #battle-mode .btn-start-battle {
                display: inline-flex;
                align-items: center;
                gap: 12px;
                background: linear-gradient(135deg, #111827, #1f2937);
                color: #ffffff;
                text-decoration: none;
                padding: 16px 32px;
                border-radius: 16px;
                font-weight: 800;
                font-size: 1rem;
                border: 1px solid rgba(255, 255, 255, 0.1);
                box-shadow: 0 8px 20px rgba(0,0,0,0.15);
                transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            }

            #battle-mode .btn-start-battle:hover {
                transform: translateY(-2px);
                background: linear-gradient(135deg, #ff416c, #ff4b2b);
                box-shadow: 0 10px 25px rgba(255, 75, 43, 0.3);
                border-color: transparent;
            }

            #battle-mode .btn-start-battle i {
                transition: transform 0.3s ease;
            }
            #battle-mode .btn-start-battle:hover i {
                transform: rotate(15deg) scale(1.1);
            }

            @media (max-width: 960px) {
                #battle-mode .battle-layout {
                    grid-template-columns: 1fr;
                    gap: 50px;
                }
            }

            @media (max-width: 600px) {
                #battle-mode .cards-grid {
                    grid-template-columns: 1fr !important;
                }
            }

.leaderboard-demo {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 860px;
            margin: 0 auto;
            position: relative;
        }

        .podium-section {
            display: flex;
            align-items: flex-end;
            justify-content: center;
            gap: 16px;
            margin-bottom: 36px;
            padding: 8px 0 0;
            overflow: visible;
        }

        .podium-card {
            flex: 1;
            max-width: 220px;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            border-radius: 20px;
            padding: 24px 16px 20px;
            cursor: default;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .podium-card:hover {
            transform: translateY(-6px);
        }

        .podium-card::before {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 22px;
            z-index: -1;
            animation: borderSpin 4s linear infinite;
            background-size: 200% 200%;
        }

        @keyframes borderSpin {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        .podium-card.rank-gold {
            background: linear-gradient(160deg, rgba(30, 25, 10, 0.85) 0%, rgba(20, 20, 20, 0.95) 100%);
            box-shadow: 0 0 40px rgba(255, 215, 0, 0.18), 0 8px 32px rgba(0, 0, 0, 0.5);
            margin-bottom: 0px;
            padding-top: 32px;
        }

        .podium-card.rank-gold::before {
            background: linear-gradient(120deg, #FFD700, #FFA500, #FFD700, #FFEC6E, #FFD700);
        }

        .podium-card.rank-silver {
            background: linear-gradient(160deg, rgba(20, 20, 28, 0.85) 0%, rgba(18, 18, 22, 0.95) 100%);
            box-shadow: 0 0 32px rgba(192, 192, 192, 0.15), 0 8px 28px rgba(0, 0, 0, 0.4);
            padding-top: 20px;
            margin-bottom: -20px;
        }

        .podium-card.rank-silver::before {
            background: linear-gradient(120deg, #C0C0C0, #8a8a8a, #E8E8E8, #C0C0C0);
        }

        .podium-card.rank-bronze {
            background: linear-gradient(160deg, rgba(22, 14, 8, 0.85) 0%, rgba(18, 16, 12, 0.95) 100%);
            box-shadow: 0 0 32px rgba(205, 127, 50, 0.15), 0 8px 28px rgba(0, 0, 0, 0.4);
            padding-top: 20px;
            margin-bottom: -20px;
        }

        .podium-card.rank-bronze::before {
            background: linear-gradient(120deg, #CD7F32, #8B5A00, #E8A060, #CD7F32);
        }

        body.light .podium-card.rank-gold {
            background: linear-gradient(160deg, rgba(255, 252, 230, 0.95) 0%, rgba(255, 248, 200, 0.9) 100%);
        }

        body.light .podium-card.rank-silver {
            background: linear-gradient(160deg, rgba(240, 240, 245, 0.95) 0%, rgba(225, 225, 235, 0.9) 100%);
        }

        body.light .podium-card.rank-bronze {
            background: linear-gradient(160deg, rgba(255, 240, 220, 0.95) 0%, rgba(245, 225, 200, 0.9) 100%);
        }

        .podium-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.07), transparent);
            background-size: 200% 100%;
            background-position: 150% 0;
            border-radius: 20px;
            animation: shimmer 3.5s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes shimmer {
            0% {
                background-position: 150% 0;
            }

            100% {
                background-position: -50% 0;
            }
        }

        .podium-medal {
            font-size: 2rem;
            margin-bottom: 10px;
            filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
        }

        .rank-gold .podium-medal {
            color: #FFD700;
        }

        .rank-silver .podium-medal {
            color: #C0C0C0;
        }

        .rank-bronze .podium-medal {
            color: #CD7F32;
        }

        .podium-rank-badge {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            font-weight: 800;
            color: #000;
            z-index: 2;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
        }

        .rank-gold .podium-rank-badge {
            background: #FFD700;
        }

        .rank-silver .podium-rank-badge {
            background: #C0C0C0;
        }

        .rank-bronze .podium-rank-badge {
            background: #CD7F32;
        }

        .podium-avatar {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            object-fit: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
            background: var(--border);
            position: relative;
            z-index: 1;
        }

        .rank-gold .podium-avatar {
            border: 3px solid #FFD700;
            box-shadow: 0 0 16px rgba(255, 215, 0, 0.45);
        }

        .rank-silver .podium-avatar {
            border: 3px solid #C0C0C0;
            box-shadow: 0 0 14px rgba(192, 192, 192, 0.35);
        }

        .rank-bronze .podium-avatar {
            border: 3px solid #CD7F32;
            box-shadow: 0 0 14px rgba(205, 127, 50, 0.35);
        }

        .podium-name {
            font-size: 0.92rem;
            font-weight: 700;
            color: var(--text);
            text-align: center;
            margin-bottom: 4px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 160px;
        }

        .podium-tier {
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 10px;
            opacity: 0.85;
        }

        .podium-points {
            font-size: 1.5rem;
            font-weight: 900;
            letter-spacing: -0.5px;
        }

        .rank-gold .podium-points {
            color: #FFD700;
        }

        .rank-silver .podium-points {
            color: #C0C0C0;
        }

        .rank-bronze .podium-points {
            color: #CD7F32;
        }

        .podium-pts-label {
            font-size: 0.68rem;
            font-weight: 600;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .podium-base {
            width: 100%;
            border-radius: 0 0 14px 14px;
            margin-top: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 1px;
            padding: 6px 0;
            opacity: 0.7;
        }

        .rank-gold .podium-base {
            background: rgba(255, 215, 0, 0.15);
            color: #FFD700;
        }

        .rank-silver .podium-base {
            background: rgba(192, 192, 192, 0.12);
            color: #C0C0C0;
        }

        .rank-bronze .podium-base {
            background: rgba(205, 127, 50, 0.12);
            color: #CD7F32;
        }

        .rank-gold .podium-medal {
            animation: crownPulse 2s ease-in-out infinite;
        }

        @keyframes crownPulse {

            0%,
            100% {
                transform: scale(1) rotate(-5deg);
            }

            50% {
                transform: scale(1.12) rotate(5deg);
            }
        }

        .lb-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 16px 20px;
            display: flex;
            align-items: center;
            transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
        }

        .lb-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .lb-rank {
            width: 40px;
            text-align: center;
            font-size: 1.2rem;
            font-weight: 800;
        }

        .rank-other {
            color: var(--text);
        }

        .lb-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--border);
            margin: 0 16px;
            object-fit: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--muted);
        }

        .lb-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .lb-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text);
            display: flex;
            align-items: center;
        }

        .lb-tier {
            font-size: 0.8rem;
            font-weight: 600;
            margin-top: 2px;
        }

        .tier-Diamond {
            color: #B9F2FF;
        }

        .tier-Platinum {
            color: #E5E4E2;
        }

        .tier-Gold {
            color: #FFD700;
        }

        .tier-Silver {
            color: #C0C0C0;
        }

        .tier-Bronze {
            color: #CD7F32;
        }

        .lb-points-col {
            text-align: right;
            display: flex;
            flex-direction: column;
        }

        .lb-points {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--red);
        }

        .lb-points-label {
            font-size: 0.75rem;
            color: var(--muted);
            font-weight: 600;
            text-transform: uppercase;
        }

        /* Responsive podium */
        @media (max-width: 600px) {
            .podium-section {
                gap: 10px;
            }

            .podium-card {
                max-width: 130px;
                padding: 18px 10px 14px;
            }

            .podium-avatar {
                width: 48px;
                height: 48px;
                font-size: 1.2rem;
            }

            .podium-name {
                font-size: 0.78rem;
                max-width: 100px;
            }

            .podium-points {
                font-size: 1.1rem;
            }

            .lb-card {
                padding: 12px 14px;
            }

            .lb-avatar {
                width: 40px;
                height: 40px;
                margin: 0 12px;
            }

            .lb-name {
                font-size: 0.95rem;
            }

            .lb-points {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 420px) {
            .podium-section {
                gap: 6px;
                padding: 0 2px;
            }

            .podium-card {
                max-width: none;
                min-width: 0;
                padding: 14px 6px 12px;
                flex: 1 1 0;
            }

            .podium-avatar {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .podium-name {
                font-size: 0.66rem;
                max-width: 80px;
            }

            .podium-points {
                font-size: 1rem;
            }

            .podium-medal {
                font-size: 1.4rem;
                margin-bottom: 6px;
            }

            .podium-tier {
                font-size: 0.62rem;
            }

            .podium-pts-label {
                font-size: 0.58rem;
            }

            .lb-card {
                padding: 10px;
            }
        }

.search-anim-box {
                background: rgba(255, 255, 255, 0.03);
                border: 1px solid rgba(255, 255, 255, 0.06);
                padding: 16px;
                border-radius: 12px;
                display: flex;
                align-items: center;
                gap: 16px;
                opacity: 0;
                transform: translateY(10px);
            }

            .typewriter-text {
                color: var(--text);
                font-family: monospace;
                font-size: 1rem;
                border-right: 2px solid var(--red);
                white-space: nowrap;
                overflow: hidden;
                width: 0;
            }

            body.ready .typewriter-text {
                animation: typing 5s steps(20, end) infinite, blink-caret .75s step-end infinite;
            }

            body.ready .search-result-1 {
                animation: slideUpFade 5s infinite;
                animation-delay: 2.2s;
            }

            body.ready .search-result-2 {
                animation: slideUpFade 5s infinite;
                animation-delay: 2.5s;
            }

            @keyframes typing {

                0%,
                20% {
                    width: 0;
                }

                40%,
                80% {
                    width: 130px;
                }

                100% {
                    width: 0;
                }
            }

            @keyframes blink-caret {

                from,
                to {
                    border-color: transparent
                }

                50% {
                    border-color: var(--red);
                }
            }

            @keyframes slideUpFade {

                0%,
                40% {
                    opacity: 0;
                    transform: translateY(15px);
                }

                50%,
                90% {
                    opacity: 1;
                    transform: translateY(0);
                }

                100% {
                    opacity: 0;
                    transform: translateY(-5px);
                }
            }

            body.light .search-anim-box {
                background: #fff;
                border-color: rgba(0, 0, 0, 0.08);
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            }

            body.light .search-result-1 .text-white,
            body.light .search-result-2 .text-white {
                color: #000 !important;
            }

/* ── App Showcase ── */
        #app-showcase {
            padding: 100px 0;
            overflow: hidden;
        }

        .asc-inner {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 64px;
            align-items: center;
        }

        /* Section header */
        .asc-header {
            text-align: center;
            margin-bottom: 56px;
        }

        .asc-header h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            line-height: 1.15;
            margin-bottom: 12px;
        }

        .asc-header-sub {
            color: var(--muted);
            font-size: 1.05rem;
            max-width: 520px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* LEFT TEXT */
        .asc-text .sec-tag {
            margin-bottom: 16px;
        }

        .asc-text h2 {
            font-size: clamp(1.8rem, 3vw, 2.4rem);
            line-height: 1.15;
            margin-bottom: 16px;
        }

        .asc-sub {
            color: var(--muted);
            font-size: .95rem;
            line-height: 1.7;
            margin-bottom: 28px;
        }

        .asc-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .asc-features li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: .88rem;
            color: var(--muted);
            line-height: 1.5;
        }

        .asc-features li strong {
            color: var(--text);
        }

        .asc-features li i {
            width: 32px;
            height: 32px;
            border-radius: 9px;
            flex-shrink: 0;
            background: rgba(230, 57, 70, .1);
            border: 1px solid rgba(230, 57, 70, .2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--red);
            font-size: .8rem;
        }

        /* RIGHT ─ 3 photo cards */
        .asc-photos {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            align-items: end;
        }

        .asc-photo-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            border: 1.5px solid rgba(255, 255, 255, .08);
            background: #0a0a14;
            box-shadow: 0 12px 40px rgba(0, 0, 0, .5);
            transition: transform .3s cubic-bezier(.16, 1, .3, 1), box-shadow .3s, border-color .3s;
            cursor: default;
        }

        body.light .asc-photo-card {
            background: #f0f1f8;
            border-color: rgba(0, 0, 0, .1);
            box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
        }

        .asc-photo-card:hover {
            transform: translateY(-8px);
            border-color: rgba(230, 57, 70, .4);
            box-shadow: 0 20px 60px rgba(0, 0, 0, .6), 0 0 30px rgba(230, 57, 70, .15);
        }

        /* Middle card slightly taller for depth */
        .asc-photo-card:nth-child(2) {
            transform: translateY(-16px);
            border-color: rgba(230, 57, 70, .3);
            box-shadow: 0 20px 60px rgba(0, 0, 0, .6), 0 0 40px rgba(230, 57, 70, .2);
            z-index: 1;
        }

        .asc-photo-card:nth-child(2):hover {
            transform: translateY(-24px);
        }

        .asc-photo-card img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: contain;
        }

        .asc-photo-label {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 10px 12px;
            background: linear-gradient(to top, rgba(0, 0, 0, .85), transparent);
            color: #fff;
            font-size: .72rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 6px;
            letter-spacing: .04em;
        }

        .asc-photo-label i {
            color: var(--red);
            font-size: .75rem;
        }

        body.light .asc-photo-label {
            background: linear-gradient(to top, rgba(0, 0, 0, .7), transparent);
        }

        /* Responsive */
        @media(max-width:1024px) {
            .asc-inner {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .asc-text {
                text-align: center;
            }

            .asc-sub {
                margin: 0 auto 28px;
            }

            .asc-features {
                max-width: 480px;
                margin: 0 auto;
            }

            .asc-photos {
                max-width: 500px;
                margin: 0 auto;
            }
        }

        @media(max-width:480px) {
            #app-showcase {
                padding: 60px 0;
            }

            .asc-photos {
                gap: 8px;
            }

            .asc-photo-card:nth-child(2) {
                transform: translateY(-10px);
            }
        }

/* Force footer text and headings to be dark in light mode, and light in dark mode */
      body.light footer h4 {
        color: #0f172a !important; /* Slate 900 */
      }
      body.light footer span,
      body.light footer p,
      body.light footer a {
        color: #334155 !important; /* Slate 700 */
      }
      body.light footer a:hover {
        color: #E63946 !important; /* Brand Red / Primary */
      }
      body.light footer span.text-brand,
      body.light footer .text-brand,
      footer .text-brand {
        color: #E63946 !important;
      }
      body.light footer .border-t,
      body.light footer .border-docusaurus-lightBorder {
        border-color: rgba(0, 0, 0, 0.1) !important;
      }
      
      /* Reset standard lists */
      footer ul {
        list-style-type: none !important;
        padding: 0 !important;
        margin: 0 !important;
      }
      footer li {
        margin-bottom: 8px !important;
        list-style: none !important;
        padding-left: 0 !important;
      }
      footer li::before {
        content: none !important;
      }
      footer a {
        text-decoration: none !important;
      }
@media (min-width: 961px) {
    .demo-wrap.messaging-wrap {
        grid-template-columns: 0.85fr 1.15fr;
    }
}
