
        /* ========== CSS VARIABLES ========== */
        :root {
            --bg: #000000;
            --surface: #0a0a0a;
            --border: rgba(255, 255, 255, 0.15);
            --border-light: rgba(255, 255, 255, 0.25);
            --text: #ffffff;
            --text-secondary: #b0b0b0;
            --text-tertiary: #888888;
            --racing-red: #DC2626;
            --racing-red-bright: #EF4444;
            --racing-red-glow: rgba(220, 38, 38, 0.3);
            --header-height: 73px;
        }

        /* ========== RESET & BASE ========== */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); overflow-x: hidden; }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
            min-height: 100vh;
            background-image: none;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: scroll;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: -1;
            pointer-events: none;
        }



        /* RTL Support */
        [dir=rtl] { text-align: right; direction: rtl; }
        [dir=rtl] .logo::before { left: auto; right: 0; }
        [dir=rtl] .logo { padding-left: 0; padding-right: .75rem; }
        [dir=rtl] nav { flex-direction: row-reverse; }
        [dir=rtl] .language-dropdown { right: auto; left: 0; }

        /* Language-specific fonts */
        [lang=zh] { font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; line-height: 1.7; }
        [lang=ar] { font-family: 'Noto Sans Arabic', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; }

        /* ========== HEADER ========== */
        header {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 100;
            background: rgba(0, 0, 0, 0.95);
            border-bottom: 1px solid var(--border);
            height: var(--header-height);
        }

        @supports (backdrop-filter: blur(20px)) {
            header { background: rgba(0, 0, 0, 0.8); backdrop-filter: blur(20px); }
        }

        .header-inner {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
            gap: 0.75rem;
        }

        .header-left { display: flex; align-items: center; gap: .5rem; }
        .header-right { display: flex; align-items: center; gap: 1rem; flex-shrink: 1; min-width: 0; }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: .2em;
            text-transform: uppercase;
            position: relative;
            padding-left: .75rem;
            display: flex;
            align-items: center;
            gap: .5rem;
            text-decoration: none;
            color: var(--text);
        }

        .logo::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 3px;
            height: 70%;
            background: linear-gradient(180deg, var(--racing-red-bright), var(--racing-red));
        }

        .logo-divider { width: 1px; height: 20px; background: var(--border); }
        .logo-tagline { font-size: .625rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--text-secondary); }

        nav { display: flex; gap: 0.625rem; align-items: center; }
        nav a { font-size: .8125rem; text-decoration: none; color: var(--text-secondary); font-weight: 500; transition: color .2s; padding: .375rem .375rem; white-space: nowrap; }
        nav a:hover { color: var(--text); }
        /* Compact desktop fallback — when the nav would otherwise push the
           Get Access button off-screen. Covers 1366px and 1440px-class
           displays; 1600px+ uses the base nav values with the tagline. */
        @media (min-width: 769px) and (max-width: 1599px) {
            .header-inner { padding: 1rem 1rem; gap: 0.5rem; }
            .header-inner > nav { gap: 0.375rem; }
            .header-inner > nav a { padding: .375rem .25rem; font-size: .75rem; }
            .logo-tagline { display: none; }
        }

        .btn-header {
            background: var(--text);
            color: var(--bg);
            padding: .625rem 1.5rem;
            border-radius: 6px;
            font-weight: 600;
            font-size: .9375rem;
            text-decoration: none;
            transition: .2s;
            white-space: nowrap;
        }
        .btn-header:hover { background: var(--racing-red); color: var(--text); }

        /* ========== LANGUAGE SELECTOR ========== */
        .language-selector { position: relative; display: inline-block; flex-shrink: 0; }

        .language-btn {
            background: transparent;
            border: 1px solid var(--border);
            padding: .5rem .75rem;
            border-radius: 6px;
            display: flex;
            align-items: center;
            gap: .375rem;
            cursor: pointer;
            color: var(--text-secondary);
            font-size: .8125rem;
            font-weight: 500;
            min-height: 44px;
            transition: .2s;
        }
        .language-btn:hover { border-color: var(--racing-red); color: var(--text); }

        .language-dropdown {
            position: absolute;
            top: calc(100% + .5rem);
            right: 0;
            background: rgba(10, 10, 10, .98);
            border: 1px solid var(--border);
            border-radius: 8px;
            min-width: 180px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: .3s;
            z-index: 1000;
            box-shadow: 0 8px 24px rgba(0, 0, 0, .4);
        }

        .language-selector.active .language-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

        .language-option {
            display: flex;
            align-items: center;
            padding: .875rem 1rem;
            cursor: pointer;
            color: var(--text-secondary);
            font-size: .875rem;
            transition: .2s;
            border-bottom: 1px solid rgba(255, 255, 255, .05);
            gap: .75rem;
        }
        .language-option:last-child { border-bottom: none; }
        .language-option:hover { background: rgba(220, 38, 38, .1); color: var(--text); }
        .language-option.active { background: rgba(220, 38, 38, .15); color: var(--racing-red-bright); font-weight: 600; }
        .lang-flag { font-size: 1.25rem; }

        /* ========== MOBILE MENU ========== */
        .mobile-menu-toggle {
            display: none;
            background: transparent;
            border: 1px solid var(--border);
            width: 44px;
            height: 44px;
            border-radius: 6px;
            position: relative;
            cursor: pointer;
            transition: .3s;
            flex-shrink: 0;
            z-index: 101;
        }
        .mobile-menu-toggle:hover { border-color: var(--racing-red); background: rgba(220, 38, 38, .05); }
        .mobile-menu-toggle.active { border-color: var(--racing-red); background: rgba(220, 38, 38, .15); }

        .hamburger { width: 20px; height: 14px; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
        .hamburger span { display: block; position: absolute; height: 2px; width: 100%; background: var(--text); transition: .3s; left: 0; border-radius: 2px; }
        .hamburger span:first-child { top: 0; }
        .hamburger span:nth-child(2) { top: 6px; }
        .hamburger span:nth-child(3) { top: 12px; }

        .mobile-menu-toggle.active .hamburger span:first-child { top: 7px; transform: rotate(45deg); }
        .mobile-menu-toggle.active .hamburger span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
        .mobile-menu-toggle.active .hamburger span:nth-child(3) { top: 7px; transform: rotate(-45deg); }

        .mobile-menu {
            display: none;
            position: fixed;
            top: var(--header-height);
            left: 0; right: 0;
            height: calc(100vh - var(--header-height));
            background: rgba(0, 0, 0, .98);
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-20px);
            transition: .3s;
            overflow-y: auto;
        }

        .mobile-menu.active { display: flex !important; flex-direction: column; opacity: 1; visibility: visible; transform: translateY(0); }

        .mobile-menu-inner { display: flex; flex-direction: column; min-height: 100%; padding: 1.5rem; }
        .mobile-menu nav { display: flex; flex-direction: column; gap: 0; flex: 1; }
        .mobile-menu nav a {
            color: var(--text);
            font-size: 1.25rem;
            font-weight: 600;
            padding: 1.25rem 1rem;
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 60px;
        }
        .mobile-menu nav a:first-child { border-top: 1px solid var(--border); }
        .mobile-menu nav a::after { content: '→'; opacity: .4; font-size: 1.5rem; color: var(--racing-red-bright); }
        .mobile-menu nav a:hover { color: var(--racing-red-bright); padding-left: 1.5rem; background: rgba(220, 38, 38, .05); }

        .mobile-menu-cta { margin-top: auto; padding-top: 2rem; border-top: 1px solid var(--border); }
        .mobile-menu-cta .btn-primary { width: 100%; text-align: center; font-size: 1.125rem; padding: 1.125rem 2rem; }

        /* ========== HERO SECTION ========== */
        .hero {
            scroll-margin-top: var(--header-height);
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 6rem 1.5rem 4rem;
            position: relative;
        }



        .hero-inner {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            position: relative;
            z-index: 2;
        }

        .hero-content h1 {
            font-size: clamp(1.75rem, 5vw, 3rem);
            font-weight: 300;
            line-height: 1.2;
            letter-spacing: .08em;
            margin-bottom: 1.25rem;
            text-transform: uppercase;
            background: linear-gradient(120deg, var(--text) 0, var(--racing-red-bright) 30%, var(--racing-red) 50%, var(--racing-red-bright) 70%, var(--text) 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            background-position: 35% center;
        }

        @keyframes shimmer {
            0%, 100% { background-position: 0 center; }
            50% { background-position: 200% center; }
        }

        .market-label {
            font-size: .8125rem;
            font-weight: 600;
            letter-spacing: .12em;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
        }

        .hero-tagline {
            font-size: clamp(1.125rem, 3.5vw, 2.5rem);
            font-weight: 300;
            padding: .5rem 0;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .hero-tagline-text {
            background: linear-gradient(120deg, var(--text) 0, var(--racing-red-bright) 30%, var(--racing-red) 50%, var(--racing-red-bright) 70%, var(--text) 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            background-position: 35% center;
        }

        .hero-tagline::before {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--racing-red-bright), transparent);
            animation: 3s ease-in-out infinite underlinePulse;
        }

        @keyframes underlinePulse {
            0%, 100% { opacity: .5; transform: scaleX(.8); }
            50% { opacity: 1; transform: scaleX(1); }
        }

        .hero-content p { font-size: 1rem; margin-bottom: 2rem; line-height: 1.6; color: var(--text-secondary); }

        .hero-badges { display: flex; gap: .75rem; margin-bottom: 2rem; flex-wrap: wrap; }

        .badge {
            padding: .625rem 1rem;
            background: rgba(255, 255, 255, .03);
            border: 1px solid var(--border);
            border-radius: 6px;
            font-size: .75rem;
            display: flex;
            align-items: center;
            gap: .5rem;
            transition: .3s;
        }
        .badge:hover { background: rgba(255, 255, 255, .06); border-color: rgba(220, 38, 38, .3); transform: translateY(-2px); }

        .badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--racing-red-bright); animation: 2s infinite pulse; }
        @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .5; } }

        .hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

        .btn-primary {
            background: var(--racing-red);
            color: var(--text);
            padding: .875rem 2rem;
            border-radius: 8px;
            border: none;
            font-size: .9375rem;
            font-weight: 600;
            cursor: pointer;
            display: inline-block;
            min-height: 44px;
            text-decoration: none;
            text-align: center;
            width: 100%;
            transition: .2s;
        }
        .btn-primary:hover { background: var(--racing-red-bright); transform: translateY(-2px); }
        .btn-primary:disabled { opacity: .6; cursor: not-allowed; }

        .btn-secondary {
            background: transparent;
            color: var(--text);
            padding: .875rem 2rem;
            border-radius: 8px;
            border: 1px solid var(--border-light);
            font-size: .9375rem;
            font-weight: 600;
            display: inline-block;
            min-height: 44px;
            text-decoration: none;
            text-align: center;
            width: 100%;
            margin-top: .75rem;
            transition: .3s;
            position: relative;
            overflow: hidden;
        }
        .btn-secondary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(220, 38, 38, .1), transparent);
            transition: left .5s;
        }
        .btn-secondary:hover::before { left: 100%; }
        .btn-secondary:hover { background: rgba(220, 38, 38, .1); border-color: var(--racing-red); transform: translateY(-2px); }

        /* ========== DASHBOARD ========== */
        .dashboard {
            background: linear-gradient(135deg, rgba(255, 255, 255, .08) 0, rgba(255, 255, 255, .03) 100%);
            border: 1px solid var(--border-light);
            border-radius: 16px;
            padding: 1.5rem;
            margin-top: 2rem;
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        .dashboard::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--racing-red-bright), transparent);
        }

        .dash-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--border);
            gap: 1rem;
            flex-wrap: wrap;
        }

        .dash-title { font-size: .875rem; font-weight: 700; text-transform: uppercase; color: var(--text-secondary); }
        .dash-time { font-size: .75rem; color: var(--text-secondary); display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }

        .live-indicator { width: 8px; height: 8px; background: var(--racing-red-bright); border-radius: 50%; animation: 2s infinite blink; }
        @keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }

        .prediction {
            position: relative;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: .3s;
    min-height: 140px;
}
        .prediction:hover { background: rgba(255, 255, 255, .07); border-color: rgba(220, 38, 38, .3); transform: translateX(4px); }
        .prediction.expanded { background: rgba(255, 255, 255, .08); border-color: rgba(220, 38, 38, .4); }

        .pred-header { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-bottom: 1rem; }
        .pred-meta { font-size: .75rem; color: var(--text-secondary); margin-bottom: .25rem; text-transform: uppercase; min-height: 1.1em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .pred-header > div:first-child { flex: 1; min-width: 0; overflow: hidden; }
        .pred-confidence-group { position: absolute; right: 1rem; top: 1rem; }
        .pred-name { font-size: .9375rem; font-weight: 700; min-height: 1.3em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 200px; }

        .confidence { font-size: 1.5rem; font-weight: 700; color: var(--racing-red-bright); min-width: 3.5em; text-align: right; font-variant-numeric: tabular-nums; }

        .pred-expand-btn {
            background: transparent;
            border: none;
            color: var(--racing-red-bright);
            font-size: 1.25rem;
            cursor: pointer;
            min-width: 44px;
            min-height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform .3s;
        }
        .prediction.expanded .pred-expand-btn { transform: rotate(180deg); }

        .pred-details { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; }

        .pred-stat {
            background: rgba(0, 0, 0, .5);
            padding: .75rem .625rem;
            border-radius: 6px;
            min-height: 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .pred-stat-label { font-size: .625rem; color: var(--text-tertiary); margin-bottom: .25rem; text-transform: uppercase; }
        .pred-stat-value { font-size: .875rem; font-weight: 600; }

        .pred-analysis { max-height: 0; overflow: hidden; transition: max-height .3s; }
        .prediction.expanded .pred-analysis { max-height: 500px; }

        .pred-analysis-content { padding-top: 1rem; margin-top: 1rem; border-top: 1px solid var(--border); }
        .pred-analysis-label { font-size: .75rem; color: var(--text-tertiary); text-transform: uppercase; margin-bottom: .5rem; }
        .pred-analysis-text { color: var(--text-secondary); font-size: .875rem; line-height: 1.6; }

        .analysis-badge { text-align: center; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
        .analysis-badge-label { font-size: .75rem; color: var(--text-tertiary); text-transform: uppercase; margin-bottom: .5rem; }
        .analysis-badge-value { font-size: 1.5rem; font-weight: 700; color: var(--racing-red-bright); }

        /* ========== TRUSTED / STATS ========== */
        .trusted { padding: 4rem 1.5rem; background: var(--surface); border-top: 1px solid var(--border); }
        .trusted-label { font-size: .75rem; color: var(--text); text-transform: uppercase; text-align: center; margin-bottom: 2rem; font-weight: 700; letter-spacing: .15em; }
        .trusted-logos { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; opacity: .6; }
        .trusted-logo { font-size: .9375rem; font-weight: 600; color: var(--text); }

        .stats-bar { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; padding: 5rem 1.5rem; max-width: 1400px; margin: 0 auto; }
        .stat-item { text-align: center; }
        .stat-value {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: .75rem;
            background: linear-gradient(135deg, var(--racing-red-bright), var(--racing-red));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .stat-label { font-size: .875rem; color: var(--text-secondary); font-weight: 500; }

        /* ========== SECTIONS ========== */
        .section { max-width: 1200px; margin: 0 auto; padding: 6rem 1.5rem; scroll-margin-top: calc(var(--header-height) + 1rem); }
        .section-header { text-align: center; margin-bottom: 2rem; }
        .section-label { font-size: .75rem; color: var(--racing-red-bright); text-transform: uppercase; letter-spacing: .15em; margin-bottom: 1.25rem; font-weight: 700; }
        .section-title { font-size: clamp(1.75rem, 5vw, 3.5rem); line-height: 1.1; letter-spacing: -.02em; margin-bottom: 1.25rem; font-weight: 700; }
        .section-description { font-size: 1.125rem; color: var(--text-secondary); line-height: 1.7; max-width: 800px; margin: 0 auto; }

        /* ========== PREDICTION SHOWCASE ========== */
        .prediction-showcase { background: var(--bg); padding: 3rem 1.5rem 2rem; }
     /* ========== CAROUSEL SYSTEM ========== */
.showcase-carousel-container { position: relative; max-width: 1400px; margin: 2rem auto 0; padding: 0 clamp(20px, 5vw, 60px); }
.showcase-grid { display: flex; gap: clamp(16px, 2vw, 24px); overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; -ms-overflow-style: none; padding: 1rem 0 2rem; }
.showcase-grid::-webkit-scrollbar { display: none; }
.showcase-grid .showcase-card { flex: 0 0 clamp(280px, calc(100vw - 80px), 420px); scroll-snap-align: center; }
.carousel-nav { position: absolute; top: 50%; transform: translateY(-50%); width: clamp(36px, 5vw, 48px); height: clamp(36px, 5vw, 48px); border-radius: 50%; background: rgba(0, 0, 0, 0.8); border: 2px solid rgba(220, 38, 38, 0.6); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; z-index: 20; }
.carousel-nav:hover { background: var(--racing-red); border-color: var(--racing-red); transform: translateY(-50%) scale(1.1); }
.carousel-nav.prev { left: clamp(5px, 1vw, 10px); }
.carousel-nav.next { right: clamp(5px, 1vw, 10px); }
.carousel-nav.disabled { opacity: 0.3; cursor: default; pointer-events: none; }
.carousel-nav svg { width: clamp(18px, 3vw, 24px); height: clamp(18px, 3vw, 24px); }
@media (hover: none) and (pointer: coarse) { .carousel-nav { display: none; } }
.carousel-dots { display: flex; justify-content: center; gap: clamp(8px, 1.5vw, 12px); margin-top: clamp(1rem, 2vw, 1.5rem); padding-bottom: 1rem; }
.carousel-dot { width: clamp(8px, 1.5vw, 12px); height: clamp(8px, 1.5vw, 12px); border-radius: 50%; background: rgba(255, 255, 255, 0.25); border: 2px solid rgba(255, 255, 255, 0.3); cursor: pointer; transition: all 0.3s ease; padding: 0; }
.carousel-dot:hover { background: rgba(255, 255, 255, 0.5); }
.carousel-dot.active { background: var(--racing-red); border-color: var(--racing-red); box-shadow: 0 0 10px var(--racing-red); transform: scale(1.2); }

        .showcase-card {
            background: rgba(10, 10, 10, .8);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 2rem 1.75rem;
            transition: .3s;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 920px;
        }
        .showcase-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--racing-red-bright), transparent);
            opacity: 0;
            transition: opacity .3s;
        }
        .showcase-card:hover::before { opacity: 1; }
        .showcase-card:hover { border-color: rgba(220, 38, 38, .4); transform: translateY(-4px); }
        .showcase-card.loading { opacity: 0.7; }
        .showcase-card.loading::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(90deg, transparent, rgba(220,38,38,0.1), transparent);
            animation: shimmer 1.5s infinite;
        }
        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }
        .live-indicator.active { animation: pulse-live 2s infinite; }
        @keyframes pulse-live {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        /* ========== SCROLL ANIMATIONS ========== */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .fade-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        .fade-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }
        .fade-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        .fade-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }
        .scale-in {
            opacity: 0;
            transform: scale(0.9);
            transition: opacity 0.5s ease-out, transform 0.5s ease-out;
        }
        .scale-in.visible {
            opacity: 1;
            transform: scale(1);
        }
        .stagger-1 { transition-delay: 0.1s; }
        .stagger-2 { transition-delay: 0.2s; }
        .stagger-3 { transition-delay: 0.3s; }
        .stagger-4 { transition-delay: 0.4s; }

        /* Reduced motion support */
        @media (prefers-reduced-motion: reduce) {
            .fade-in, .fade-in-left, .fade-in-right, .scale-in {
                opacity: 1;
                transform: none;
                transition: none;
            }
        }

        /* ========== MICRO-INTERACTIONS ========== */
        .btn-primary {
            position: relative;
            overflow: hidden;
        }
        .btn-primary::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }
        .btn-primary:active::after {
            width: 300px;
            height: 300px;
        }
        .showcase-card {
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                        border-color 0.3s ease,
                        box-shadow 0.3s ease;
        }
        .showcase-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(220, 38, 38, 0.15);
        }
        .feature-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
        }
        .pricing-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .pricing-card:hover {
            transform: translateY(-5px) scale(1.02);
        }

        /* Counter animation */
        .stat-number {
            display: inline-block;
        }
        .stat-number.counting {
            animation: countPulse 0.3s ease-out;
        }
        @keyframes countPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        /* ========== ENHANCED MOBILE STYLES ========== */
        @media (max-width: 768px) {
            /* Better touch targets */
            .btn-primary, .btn-outline, button {
                min-height: 48px;
                padding: 14px 24px;
            }
            nav a {
                padding: 12px 8px;
            }
            .faq-item {
                padding: 18px 20px;
            }
            .showcase-btn {
                min-height: 48px;
                padding: 14px 20px;
            }

            /* Refined spacing */
            section {
                padding: 60px 0;
            }
            .section-header {
                margin-bottom: 40px;
            }
            .hero-content {
                padding: 100px 20px 60px;
            }
            .hero-title {
                font-size: clamp(2rem, 8vw, 3rem);
                line-height: 1.1;
            }
            .hero-description {
                font-size: 1rem;
                line-height: 1.6;
            }

            /* Better card layouts */
            .showcase-grid {
                gap: 20px;
            }
            .showcase-card {
                padding: 24px 20px;
            }
            .pricing-grid {
                gap: 20px;
            }
            .pricing-card {
                padding: 28px 24px;
            }

            /* Smoother mobile menu */
            .mobile-menu {
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
            }
            .mobile-menu nav a {
                font-size: 1.25rem;
                padding: 16px 24px;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }

            /* Typography refinements */
            .section-title {
                font-size: clamp(1.75rem, 6vw, 2.5rem);
            }
            .section-description {
                font-size: 1rem;
                max-width: 100%;
            }

            /* Form improvements */
            .waitlist-input {
                font-size: 16px; /* Prevents iOS zoom */
                min-height: 48px;
            }

            /* Safe area for notched devices */
            .header {
                padding-left: max(1rem, env(safe-area-inset-left));
                padding-right: max(1rem, env(safe-area-inset-right));
            }
            footer {
                padding-bottom: max(2rem, env(safe-area-inset-bottom));
            }
        }

        /* Tablet refinements */
        @media (min-width: 769px) and (max-width: 1024px) {
            .showcase-grid {
                grid-template-columns: 1fr;
                max-width: 600px;
                margin: 0 auto;
            }
            .pricing-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 16px;
            }
            .pricing-card {
                padding: 24px 16px;
            }
        }

        .showcase-header { display: flex; justify-content: center; align-items: center; margin-bottom: 1.5rem; flex-wrap: wrap; gap: 0.75rem; }
        .showcase-category {
            font-size: .625rem;
            font-weight: 700;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: var(--text);
            background: rgba(255, 255, 255, .05);
            border: 1px solid var(--border);
            border-radius: 6px;
            padding: .5rem .875rem;
        }
        .showcase-status {
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    border-radius: 4px;
    padding: .25rem .4rem;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    line-height: 1;
}
.showcase-status::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
    animation: pulse-glow 1.5s ease-in-out infinite;
}
.showcase-status.live {
    background: rgba(239, 68, 68, .2);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, .5);
    animation: text-glow-red 1.5s ease-in-out infinite;
}
.showcase-status.qualifying {
    background: rgba(250, 204, 21, .2);
    color: #fde047;
    border: 1px solid rgba(250, 204, 21, .5);
    animation: text-glow-yellow 1.5s ease-in-out infinite;
}
.showcase-status.race-day {
    background: rgba(34, 197, 94, .2);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, .5);
    animation: text-glow-green 1.5s ease-in-out infinite;
}
@keyframes text-glow-red {
    0%, 100% { text-shadow: 0 0 4px #f87171; }
    50% { text-shadow: 0 0 12px #f87171, 0 0 20px rgba(239, 68, 68, .6); }
}
@keyframes text-glow-yellow {
    0%, 100% { text-shadow: 0 0 4px #fde047; }
    50% { text-shadow: 0 0 12px #fde047, 0 0 20px rgba(250, 204, 21, .6); }
}
@keyframes text-glow-green {
    0%, 100% { text-shadow: 0 0 4px #4ade80; }
    50% { text-shadow: 0 0 12px #4ade80, 0 0 20px rgba(34, 197, 94, .6); }
}
@keyframes pulse-glow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(1.3); }
}

        .showcase-race-meta {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-bottom: 1.5rem;
            padding: 1.25rem;
            background: rgba(0, 0, 0, .4);
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, .08);
        }
        .meta-item { display: flex; flex-direction: column; gap: .375rem; }
        .meta-label { font-size: .625rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-tertiary); font-weight: 700; }
        .meta-value { font-size: .875rem; font-weight: 700; color: var(--text); }

        .showcase-confidence { text-align: center; margin: 1.5rem 0; padding: .5rem 0; }
        .showcase-confidence-value {
            font-size: 4.5rem;
            font-weight: 700;
            line-height: 1;
            background: linear-gradient(135deg, var(--racing-red-bright), var(--racing-red));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: .5rem;
        }
        .showcase-confidence-label { font-size: .75rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--text-secondary); }

        .showcase-title { font-size: 1.75rem; font-weight: 700; margin-bottom: .5rem; color: var(--text); min-height: 4.2rem; line-height: 1.2; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .showcase-location { font-size: .9375rem; color: var(--text-secondary); margin-bottom: 1.5rem; font-weight: 500; min-height: 1.5rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

        .showcase-progress { height: 4px; background: rgba(255, 255, 255, .08); border-radius: 2px; margin-bottom: 1.5rem; overflow: hidden; }
        .showcase-progress-bar { height: 100%; background: linear-gradient(90deg, var(--racing-red-bright), var(--racing-red)); transition: width 1s; }

        .showcase-pick {
    background: rgba(0, 0, 0, .5);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}
        .showcase-pick-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; flex-wrap: wrap; gap: .5rem; }
        .showcase-pick-label { font-size: .625rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-tertiary); }
        .showcase-pick-number { font-size: .8125rem; font-weight: 700; color: var(--racing-red-bright); }
        .showcase-pick-name { font-size: 1.5rem; font-weight: 700; margin-bottom: .5rem; color: var(--text); min-height: 1.8rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .showcase-pick-meta { font-size: .8125rem; color: var(--text-secondary); margin-bottom: 1.25rem; font-weight: 500; }

        .showcase-pick-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            margin-bottom: 1.25rem;
            padding: 1rem;
            background: rgba(0, 0, 0, .3);
            border-radius: 8px;
        }
        .showcase-stat { text-align: left; }
        .showcase-stat-label { font-size: .625rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--text-tertiary); margin-bottom: .375rem; white-space: nowrap; }
        .showcase-stat-value { font-size: .8125rem; font-weight: 700; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

        .showcase-analysis-snippet { padding-top: 1.25rem; border-top: 1px solid rgba(255, 255, 255, .08); }
        .analysis-label { font-size: .625rem; font-weight: 700; text-transform: uppercase; color: var(--text-tertiary); letter-spacing: .12em; margin-bottom: .75rem; }
        .analysis-points { display: flex; flex-direction: column; gap: .5rem; }
        .analysis-point { font-size: .8125rem; color: var(--text-secondary); line-height: 1.5; }

        .showcase-btn {
            width: 100%;
            padding: 1rem;
            background: transparent;
            border: 1px solid var(--border-light);
            border-radius: 8px;
            color: var(--text);
            font-size: .875rem;
            font-weight: 600;
            cursor: pointer;
            transition: .3s;
            position: relative;
            overflow: hidden;
        }
        .showcase-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(220, 38, 38, .1), transparent);
            transition: left .5s;
        }
        .showcase-btn:hover::before { left: 100%; }
        .showcase-btn:hover { background: rgba(220, 38, 38, .1); border-color: var(--racing-red); transform: translateY(-2px); }

        /* ========== URGENCY BANNER ========== */
        .urgency-banner {
            background: linear-gradient(135deg, rgba(220, 38, 38, .2) 0, rgba(220, 38, 38, .05) 100%);
            border: 2px solid var(--racing-red);
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 3rem;
            box-shadow: 0 4px 20px rgba(220, 38, 38, .2);
        }
        .urgency-content { display: flex; align-items: center; gap: 2rem; justify-content: center; flex-wrap: wrap; }
        .urgency-pulse-indicator {
            width: 12px;
            height: 12px;
            background: var(--racing-red-bright);
            border-radius: 50%;
            position: relative;
            animation: 2s cubic-bezier(.455, .03, .515, .955) infinite pulseRing;
        }
        .urgency-pulse-indicator::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: var(--racing-red-bright);
            animation: 2s cubic-bezier(.455, .03, .515, .955) infinite pulseRing;
            animation-delay: .5s;
        }
        @keyframes pulseRing {
            0% { transform: scale(1); opacity: 1; }
            100% { transform: scale(2); opacity: 0; }
        }
        .urgency-text { text-align: center; }
        .urgency-text strong { color: var(--racing-red-bright); text-transform: uppercase; letter-spacing: .05em; display: block; font-size: 1.25rem; margin-bottom: 1rem; }

        .countdown-timer { display: flex; gap: .5rem; align-items: center; justify-content: center; flex-wrap: wrap; max-width: 100%; }
        .countdown-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            background: rgba(0, 0, 0, .5);
            padding: 1rem 1.5rem;
            border-radius: 8px;
            border: 1px solid rgba(220, 38, 38, .3);
            min-width: 80px;
        }
        .countdown-number { font-size: 2.5rem; font-weight: 700; color: var(--racing-red-bright); font-variant-numeric: tabular-nums; line-height: 1; }
        .countdown-label { font-size: .75rem; color: var(--text-secondary); text-transform: uppercase; margin-top: .5rem; }
        .countdown-separator { font-size: 2rem; color: var(--racing-red-bright); font-weight: 700; }

        /* ========== FEATURES ========== */
        .features { display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 1200px; margin: 0 auto; }

        .feature {
            padding: 2rem 1.5rem;
            background: rgba(255, 255, 255, .04);
            border: 1px solid var(--border);
            border-radius: 12px;
            transition: .3s;
        }
        .feature:hover { background: rgba(255, 255, 255, .06); transform: translateY(-4px); border-color: rgba(220, 38, 38, .3); }

        .feature-icon {
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, .05);
            border: 1px solid var(--border);
            border-radius: 12px;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        .feature-icon::before { content: ''; position: absolute; }
        .feature-icon.icon-speed::before { width: 24px; height: 3px; background: var(--racing-red-bright); border-radius: 2px; box-shadow: 0 6px 0 var(--racing-red-bright), 0 12px 0 var(--racing-red-bright); }
        .feature-icon.icon-global::before { width: 24px; height: 24px; border: 2px solid var(--racing-red-bright); border-radius: 50%; box-shadow: inset 0 0 0 2px var(--racing-red-bright); }
        .feature-icon.icon-chart::before { width: 3px; height: 12px; background: var(--racing-red-bright); box-shadow: 6px 4px 0 var(--racing-red-bright), 12px -2px 0 var(--racing-red-bright), 18px 2px 0 var(--racing-red-bright); }

        .feature h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 1rem; color: var(--text); }
        .feature p { color: var(--text-secondary); line-height: 1.7; font-size: .9375rem; }

        /* ========== HOW IT WORKS ========== */
        .how-it-works-section { background: var(--surface); padding: 6rem 1.5rem; }
        .how-it-works-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; max-width: 1200px; margin: 0 auto; }

        .how-step {
            padding: 3rem 2rem 2rem;
            background: rgba(255, 255, 255, .04);
            border: 1px solid var(--border);
            border-radius: 12px;
            position: relative;
            transition: .3s;
        }
        .how-step:hover { background: rgba(255, 255, 255, .06); transform: translateY(-4px); border-color: rgba(220, 38, 38, .3); }

        .step-number {
            position: absolute;
            top: -1rem;
            left: 1.5rem;
            width: 2.5rem;
            height: 2.5rem;
            background: var(--racing-red);
            color: var(--text);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            box-shadow: 0 4px 12px var(--racing-red-glow);
            transition: .3s;
        }
        .how-step:hover .step-number { transform: scale(1.1); }

        .how-step h3 { font-size: 1.25rem; font-weight: 600; margin: 1.5rem 0 1rem; color: var(--text); }
        .how-step p { color: var(--text-secondary); line-height: 1.7; font-size: .9375rem; }

        /* ========== MARKETS ========== */
        .dual-market-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; max-width: 1200px; margin: 0 auto; }

        .market-card {
            background: rgba(26, 26, 26, .8);
            border: 1px solid var(--border);
            border-radius: 16px;
            transition: .3s;
        }
        .market-card:hover { border-color: rgba(220, 38, 38, .4); transform: translateY(-4px); }

        .market-card-top { height: 3px; background: linear-gradient(90deg, transparent, var(--racing-red-bright), transparent); }
        .market-card-header { padding: 2.5rem 2rem; border-bottom: 1px solid var(--border); }
        .market-card h3 { font-size: 2rem; font-weight: 700; margin-bottom: .75rem; }
        .market-card-badge {
            padding: .5rem 1rem;
            background: rgba(255, 255, 255, .1);
            border: 1px solid var(--border);
            border-radius: 6px;
            font-size: .75rem;
            font-weight: 700;
            letter-spacing: .05em;
            text-transform: uppercase;
            display: inline-block;
        }

        .market-card-details { padding: 2rem; }
        .market-card-row {
            display: flex;
            flex-direction: column;
            gap: .5rem;
            padding: 1.25rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, .05);
        }
        .market-card-row:last-child { border-bottom: none; }
        .market-card-label { font-size: .875rem; color: var(--text-tertiary); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
        .market-card-value { font-size: 1rem; color: var(--text); font-weight: 600; }

        /* ========== COMPARISON ========== */
        .comparison { display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 1000px; margin: 0 auto; }

        .comp-card {
            background: rgba(255, 255, 255, .04);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 3rem 2rem;
            transition: .3s;
        }
        .comp-card:hover { background: rgba(255, 255, 255, .06); transform: translateY(-4px); }
        .comp-card.highlight { background: rgba(220, 38, 38, .05); border-color: var(--racing-red); }
        .comp-card.highlight:hover { border-color: rgba(220, 38, 38, .4); }

        .comp-label { font-size: .75rem; color: var(--text-secondary); text-transform: uppercase; margin-bottom: 2.5rem; font-weight: 700; letter-spacing: .15em; }
        .comp-items { display: flex; flex-direction: column; gap: 2rem; }
        .comp-item-label { font-size: .875rem; color: var(--text-tertiary); margin-bottom: .5rem; text-transform: uppercase; letter-spacing: .05em; }
        .comp-item-value { font-size: 2.5rem; font-weight: 700; }

        /* ========== PRICING ========== */
        .pricing-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 1200px; margin: 0 auto; }

        .pricing-card {
            background: rgba(255, 255, 255, .04);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 3rem 2.5rem;
            position: relative;
            transition: .3s;
        }
        .pricing-card:hover { background: rgba(255, 255, 255, .06); border-color: rgba(220, 38, 38, .3); transform: translateY(-4px); }
        .pricing-card.featured { background: rgba(255, 255, 255, .06); border-color: rgba(220, 38, 38, .3); }
        .pricing-card.featured::before {
            content: 'Popular';
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: var(--racing-red);
            font-size: .75rem;
            padding: .375rem .75rem;
            border-radius: 4px;
        }

        .pricing-name { font-size: .75rem; color: var(--text-secondary); text-transform: uppercase; margin-bottom: 1.5rem; font-weight: 700; letter-spacing: .15em; }
        .pricing-amount { font-size: 3rem; font-weight: 700; margin-bottom: .5rem; }
        .pricing-period { color: var(--text-secondary); margin-bottom: 2.5rem; font-size: .9375rem; }

        .pricing-savings { color: #ef4444; font-size: 0.875rem; font-weight: 600; margin-top: 1rem; letter-spacing: 0.02em; }

        .pricing-features { list-style: none; margin-bottom: 2.5rem; }
        .pricing-features li { padding: 1rem 0; border-bottom: 1px solid var(--border); color: var(--text-secondary); font-size: .9375rem; }
        .pricing-features li:last-child { border-bottom: none; }
        .pricing-feature-link { color: var(--text-secondary); text-decoration: none; display: block; transition: color .2s; }
        .pricing-feature-link:hover { color: var(--racing-red-bright); }

        .pricing-cta {
            width: 100%;
            background: transparent;
            color: var(--text);
            border: 1px solid var(--border-light);
            padding: 1.125rem;
            font-size: .9375rem;
            font-weight: 600;
            cursor: pointer;
            border-radius: 8px;
            transition: .3s;
            position: relative;
            overflow: hidden;
        }
        .pricing-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .1), transparent);
            transition: left .5s;
        }
        .pricing-cta:hover::before { left: 100%; }
        .pricing-cta:hover { background: var(--racing-red); border-color: var(--racing-red); transform: translateY(-2px); }
        .pricing-card.featured .pricing-cta { background: var(--racing-red); border-color: var(--racing-red); }
        .pricing-card.featured .pricing-cta:hover { background: var(--racing-red-bright); }

        /* ========== SINGLE-CARD PRICING (stop-scroll invitation) ========== */
        /* Section-header overrides scoped to #pricing only */
        #pricing .section-label {
            display: inline-block;
            color: #fff;
            background: linear-gradient(135deg, #DC2626 0%, #EF4444 100%);
            font-size: .8125rem;
            font-weight: 800;
            letter-spacing: .22em;
            padding: .5rem 1.1rem;
            border-radius: 999px;
            box-shadow: 0 8px 24px -6px rgba(220,38,38,0.6), 0 0 0 1px rgba(255,255,255,0.10) inset;
            margin-bottom: 1.75rem;
        }
        #pricing .pricing-hero-title {
            font-size: clamp(3.25rem, 9vw, 7rem) !important;
            font-weight: 900 !important;
            line-height: 0.95 !important;
            letter-spacing: -0.045em;
            margin: 0.25rem 0 1.25rem;
            background: linear-gradient(180deg, #ffffff 0%, #f3f4f6 60%, #d4d4d8 100%);
            -webkit-background-clip: text;
                    background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 6px 22px rgba(220,38,38,0.28));
        }
        #pricing .section-description {
            font-size: clamp(1.125rem, 1.8vw, 1.5rem) !important;
            line-height: 1.45 !important;
            color: #f4f4f5 !important;
            font-weight: 500 !important;
            margin: 0 auto 3.25rem !important;
            max-width: 640px !important;
        }
        .pricing-single-wrap {
            display: flex;
            justify-content: center;
            padding: 0 1.5rem;
            position: relative;
        }
        .pricing-single-card {
            position: relative;
            width: 100%;
            max-width: 680px;
            padding: 3.75rem 3.5rem 3rem;
            background:
                radial-gradient(ellipse at top, rgba(220,38,38,0.18) 0%, rgba(0,0,0,0) 60%),
                linear-gradient(160deg, rgba(8,8,10,0.82) 0%, rgba(22,8,10,0.76) 100%);
            border: 1px solid rgba(255,255,255,0.10);
            border-radius: 24px;
            backdrop-filter: blur(28px) saturate(160%);
            -webkit-backdrop-filter: blur(28px) saturate(160%);
            box-shadow:
                0 30px 70px -18px rgba(0,0,0,0.75),
                0 0 0 1px rgba(255,255,255,0.06) inset,
                0 1px 0 0 rgba(255,255,255,0.12) inset,
                0 0 90px -10px rgba(220,38,38,0.35);
            text-align: center;
            overflow: hidden;
            transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
        }
        .pricing-single-card::before {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: 24px;
            padding: 1.5px;
            background: linear-gradient(135deg,
                rgba(239,68,68,0.85) 0%,
                rgba(251,146,60,0.55) 25%,
                rgba(255,255,255,0.10) 55%,
                rgba(251,146,60,0.45) 78%,
                rgba(220,38,38,0.85) 100%);
            -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            -webkit-mask-composite: xor;
                    mask-composite: exclude;
            pointer-events: none;
            opacity: 1;
            animation: pricingBorderShift 6s ease-in-out infinite;
        }
        @keyframes pricingBorderShift {
            0%, 100% { filter: hue-rotate(0deg) brightness(1); }
            50%      { filter: hue-rotate(-12deg) brightness(1.15); }
        }
        .pricing-single-card:hover {
            transform: translateY(-6px);
            border-color: rgba(255,255,255,0.16);
            box-shadow:
                0 40px 90px -22px rgba(0,0,0,0.85),
                0 0 0 1px rgba(255,255,255,0.08) inset,
                0 1px 0 0 rgba(255,255,255,0.16) inset,
                0 0 120px -8px rgba(239,68,68,0.55);
        }
        .pricing-single-glow {
            position: absolute;
            top: -160px;
            left: 50%;
            width: min(560px, 100vw);
            height: min(560px, 100vw);
            transform: translateX(-50%);
            background: radial-gradient(circle, rgba(239,68,68,0.55) 0%, rgba(251,146,60,0.18) 30%, rgba(220,38,38,0.05) 55%, transparent 75%);
            filter: blur(50px);
            pointer-events: none;
            z-index: 0;
            animation: pricingGlowDrift 8s ease-in-out infinite;
        }
        @keyframes pricingGlowDrift {
            0%, 100% { transform: translateX(-50%) translateY(0) scale(1); opacity: .85; }
            50%      { transform: translateX(-50%) translateY(14px) scale(1.06); opacity: 1; }
        }
        .pricing-single-card > *:not(.pricing-single-glow) { position: relative; z-index: 1; }
        .pricing-single-badge {
            display: inline-block;
            font-size: .8125rem;
            font-weight: 800;
            letter-spacing: .26em;
            text-transform: uppercase;
            color: #fff;
            padding: .55rem 1.25rem;
            border: 1px solid rgba(239,68,68,0.7);
            border-radius: 999px;
            background: linear-gradient(135deg, rgba(220,38,38,0.55) 0%, rgba(239,68,68,0.45) 100%);
            margin-bottom: 1.75rem;
            box-shadow:
                0 0 0 4px rgba(220,38,38,0.18),
                0 10px 28px -8px rgba(220,38,38,0.65),
                0 1px 0 0 rgba(255,255,255,0.18) inset;
            text-shadow: 0 1px 2px rgba(0,0,0,0.4);
            animation: badgePulse 3.4s ease-in-out infinite;
        }
        @keyframes badgePulse {
            0%, 100% { box-shadow: 0 0 0 4px rgba(220,38,38,0.18), 0 10px 28px -8px rgba(220,38,38,0.65), 0 1px 0 0 rgba(255,255,255,0.18) inset; }
            50%      { box-shadow: 0 0 0 8px rgba(220,38,38,0.10), 0 14px 32px -8px rgba(239,68,68,0.85), 0 1px 0 0 rgba(255,255,255,0.22) inset; }
        }
        .pricing-single-body {
            font-size: 1.125rem;
            line-height: 1.65;
            color: #e4e4e7;
            margin: 0 auto 2.25rem;
            max-width: 500px;
            font-weight: 400;
        }
        .pricing-single-priceline {
            font-size: 1.0625rem;
            color: #ffffff;
            font-weight: 700;
            letter-spacing: .01em;
            padding: 1.25rem 1rem;
            border-top: 1px solid rgba(255,255,255,0.10);
            border-bottom: 1px solid rgba(255,255,255,0.10);
            margin-bottom: 2.25rem;
            text-shadow: 0 1px 2px rgba(0,0,0,0.5);
        }
        .pricing-single-cta {
            display: inline-block;
            position: relative;
            padding: 1.35rem 3.25rem;
            font-size: 1.125rem;
            font-weight: 800;
            letter-spacing: .025em;
            color: #fff;
            text-decoration: none;
            background: linear-gradient(135deg, #DC2626 0%, #EF4444 60%, #F87171 100%);
            border: 1px solid rgba(255,255,255,0.22);
            border-radius: 14px;
            cursor: pointer;
            box-shadow:
                0 16px 40px -10px rgba(220,38,38,0.75),
                0 0 0 0 rgba(239,68,68,0.6),
                0 1px 0 0 rgba(255,255,255,0.24) inset;
            transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
            animation: ctaPulse 2.2s ease-in-out infinite;
            overflow: hidden;
            text-shadow: 0 1px 2px rgba(0,0,0,0.35);
        }
        .pricing-single-cta::after {
            content: '';
            position: absolute;
            top: 0;
            left: -120%;
            width: 60%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
            transform: skewX(-20deg);
            transition: left .6s ease;
        }
        .pricing-single-cta:hover {
            transform: translateY(-3px) scale(1.02);
            background: linear-gradient(135deg, #EF4444 0%, #F87171 60%, #FCA5A5 100%);
            box-shadow:
                0 22px 48px -10px rgba(239,68,68,0.85),
                0 0 0 10px rgba(239,68,68,0.18),
                0 1px 0 0 rgba(255,255,255,0.28) inset;
        }
        .pricing-single-cta:hover::after { left: 130%; }
        @keyframes ctaPulse {
            0%, 100% { box-shadow: 0 16px 40px -10px rgba(220,38,38,0.75), 0 0 0 0 rgba(239,68,68,0.55), 0 1px 0 0 rgba(255,255,255,0.24) inset; }
            50%      { box-shadow: 0 16px 40px -10px rgba(220,38,38,0.75), 0 0 0 14px rgba(239,68,68,0.0),  0 1px 0 0 rgba(255,255,255,0.24) inset; }
        }
        .pricing-single-footnote {
            font-size: .8125rem;
            color: var(--text-tertiary);
            margin-top: 1.5rem;
            letter-spacing: .02em;
        }
        @media (max-width: 600px) {
            #pricing .pricing-hero-title { font-size: clamp(3rem, 14vw, 4.5rem); }
            .pricing-single-card { padding: 3rem 1.75rem 2.5rem; border-radius: 18px; }
            .pricing-single-body { font-size: 1rem; }
            .pricing-single-priceline { font-size: 1rem; }
            .pricing-single-cta { padding: 1.15rem 2rem; font-size: 1.05rem; width: 100%; }
        }
        @media (prefers-reduced-motion: reduce) {
            .pricing-single-cta,
            .pricing-single-glow,
            .pricing-single-badge,
            .pricing-single-card::before { animation: none; }
        }

        /* ========== FAQ ========== */
        .faq-section { background: var(--surface); padding: 6rem 1.5rem; }
        .faq-list { max-width: 900px; margin: 0 auto; }

        .faq-item {
            background: rgba(255, 255, 255, .04);
            border: 1px solid var(--border);
            border-radius: 12px;
            margin-bottom: 1.25rem;
            transition: .3s;
            overflow: hidden;
        }
        .faq-item:hover { background: rgba(255, 255, 255, .06); }
        .faq-item.active { border-color: rgba(220, 38, 38, .3); }

        .faq-question {
            font-size: 1.0625rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.75rem 1.5rem;
            user-select: none;
            gap: 1.5rem;
        }

        .faq-icon {
            width: 36px;
            height: 36px;
            background: rgba(220, 38, 38, .1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: .3s;
        }
        .faq-icon::before { content: '+'; font-size: 1.25rem; color: var(--racing-red-bright); }
        .faq-item.active .faq-icon { transform: rotate(45deg); }

        .faq-answer-wrapper { max-height: 0; overflow: hidden; transition: max-height .4s; }
        .faq-item.active .faq-answer-wrapper { max-height: 500px; }
        .faq-answer { color: var(--text-secondary); line-height: 1.7; padding: 0 1.5rem 1.75rem; font-size: .9375rem; }

        /* ========== DOMAIN VALUE ========== */
        .domain-value { background: var(--bg); padding: 6rem 1.5rem; }
        .domain-grid { display: grid; grid-template-columns: repeat(2, minmax(280px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto 4rem; }

        .domain-card {
            background: rgba(255, 255, 255, .03);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 2.5rem 2rem;
            text-align: center;
            transition: .3s;
        }
        .domain-card:hover { transform: translateY(-4px); border-color: rgba(220, 38, 38, .4); }

        .domain-icon { font-size: 16px; margin: 0 auto 1.5rem; width: 64px; height: 64px; position: relative; display: flex; align-items: center; justify-content: center; }
        .domain-icon.icon-target::before, .domain-icon.icon-global::before { content: ''; position: absolute; width: 40px; height: 40px; border: 3px solid var(--racing-red-bright); border-radius: 50%; }
        .domain-icon.icon-target::after { content: ''; position: absolute; width: 20px; height: 20px; background: var(--racing-red-bright); border-radius: 50%; }
        .domain-icon.icon-global::after { content: ''; position: absolute; width: 3px; height: 40px; background: var(--racing-red-bright); }
        .domain-icon.icon-dual::before, .domain-icon.icon-dual::after { content: ''; position: absolute; top: 12px; width: 16px; background: var(--racing-red-bright); border-radius: 2px; height: 40px; }
        .domain-icon.icon-dual::before { left: 12px; }
        .domain-icon.icon-dual::after { right: 12px; }
        .domain-icon.icon-enterprise { width: 36px; height: 44px; margin: 12px auto 1.5rem; border: 3px solid var(--racing-red-bright); border-radius: 6px 6px 18px 18px; position: relative; }
.domain-icon.icon-enterprise::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 10px; height: 10px; background: var(--racing-red-bright); border-radius: 50%; }

        .domain-card h3 { font-size: 1.375rem; margin-bottom: 1rem; color: var(--text); }
        .domain-card p { color: var(--text-secondary); line-height: 1.6; }

        .domain-cta-box {
            background: linear-gradient(135deg, rgba(220, 38, 38, .15) 0, rgba(220, 38, 38, .05) 100%);
            border: 2px solid var(--racing-red);
            border-radius: 20px;
            padding: 3rem 2rem;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }
        .domain-cta-content h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--racing-red-bright), var(--racing-red));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .domain-cta-content p { font-size: 1.125rem; margin-bottom: 2rem; color: var(--text-secondary); }

        .domain-cta-buttons { display: flex !important; flex-direction: row !important; gap: 1rem !important; justify-content: center !important; align-items: center !important; flex-wrap: wrap !important; margin-top: 2rem !important; }
        .domain-cta-buttons a {
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            min-width: 240px !important;
            min-height: 56px !important;
            padding: 1.25rem 2.5rem !important;
            font-size: 1rem !important;
            font-weight: 600 !important;
            text-decoration: none !important;
            border-radius: 8px !important;
            transition: .3s !important;
            white-space: nowrap !important;
        }
        .domain-cta-buttons .btn-primary { background: var(--racing-red) !important; color: #fff !important; border: 2px solid var(--racing-red) !important; }
        .domain-cta-buttons .btn-primary:hover { background: var(--racing-red-bright) !important; border-color: var(--racing-red-bright) !important; transform: translateY(-2px); }
        .domain-cta-buttons .btn-secondary { background: transparent !important; color: var(--text) !important; border: 2px solid rgba(255, 255, 255, .2) !important; }
        .domain-cta-buttons .btn-secondary:hover { border-color: var(--racing-red) !important; color: var(--racing-red-bright) !important; transform: translateY(-2px); }

        /* ========== WAITLIST ========== */
        .waitlist-section { padding: 8rem 1.5rem; text-align: center; max-width: 900px; margin: 0 auto; }
        .waitlist-section .section-header { text-align: center; margin-bottom: 3rem; }

        .waitlist-form { display: flex; flex-direction: column; gap: 1rem; margin: 3rem auto; max-width: 600px; align-items: center; }
        .waitlist-form .btn-primary, .waitlist-input { width: 100%; max-width: 400px; }

        .waitlist-input {
            padding: 1.125rem 1.5rem;
            background: rgba(255, 255, 255, .03);
            border: 1px solid var(--border);
            border-radius: 8px;
            color: var(--text);
            font-size: 16px;
            transition: .2s;
            text-align: center;
        }
        .waitlist-input:focus { outline: none; border-color: var(--racing-red); background: rgba(255, 255, 255, .05); }
        .waitlist-input::placeholder { color: var(--text-tertiary); text-align: center; }

        .waitlist-count { margin-top: 2rem; font-size: .9375rem; color: var(--text-secondary); font-weight: 500; text-align: center; }

        .form-message { margin-top: 1rem; padding: 1rem; border-radius: 6px; font-size: .875rem; line-height: 1.6; white-space: pre-line; text-align: center; }
        .form-message.success { background: rgba(34, 197, 94, .1); border: 1px solid rgba(34, 197, 94, .3); color: #4ade80; }
        .form-message.error { background: rgba(220, 38, 38, .1); border: 1px solid rgba(220, 38, 38, .3); color: #ef4444; }

        .btn-loader { display: inline-block; width: 16px; height: 16px; border: 2px solid rgba(255, 255, 255, .3); border-top-color: #fff; border-radius: 50%; animation: .6s linear infinite spin; }
        @keyframes spin { to { transform: rotate(360deg); } }

        /* ========== DISCLAIMER ========== */
        .disclaimer-banner { background: rgba(0, 0, 0, .95); border-top: 1px solid rgba(220, 38, 38, .3); padding: 1.5rem; }
        .disclaimer-content { display: flex; align-items: center; gap: 1rem; color: var(--text-secondary); font-size: .875rem; max-width: 1400px; margin: 0 auto; line-height: 1.6; }
        .disclaimer-content strong { color: var(--racing-red-bright); font-weight: 600; }
        .disclaimer-icon {
            width: 22px;
            height: 22px;
            background: rgba(220, 38, 38, .2);
            border-radius: 50%;
            color: var(--racing-red-bright);
            font-size: .75rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-style: italic;
        }

        /* ========== FOOTER ========== */
        footer { padding: 4rem 1.5rem; background: var(--bg); border-top: 1px solid var(--border); }
        .footer-inner { display: flex; flex-direction: column; gap: 2rem; text-align: center; max-width: 1400px; margin: 0 auto; }
        .footer-text { color: var(--text-tertiary); font-size: .875rem; line-height: 1.6; }
        .footer-links { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: .875rem; font-weight: 500; transition: color .2s; }
        .footer-links a:hover { color: var(--text); }

        /* ========== BACK TO TOP ========== */
        .back-to-top {
            position: fixed;
            bottom: 7rem;
            right: 1.5rem;
            width: 48px;
            height: 48px;
            background: var(--racing-red);
            color: var(--text);
            border: none;
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 98;
            cursor: pointer;
            transition: .3s;
            box-shadow: 0 4px 12px var(--racing-red-glow);
        }
        .back-to-top.visible { display: flex; animation: .3s fadeInUp; } @media (max-width: 768px) { .back-to-top { opacity: 0.6; width: 44px; height: 44px; bottom: 120px !important; right: 12px !important; } .back-to-top:active { opacity: 1; } }
        @media (max-width: 768px) { .floating-contact-btn { opacity: 0.35; padding: 0.5rem; border-radius: 50%; font-size: 0; gap: 0; width: 44px; height: 44px; justify-content: center; bottom: 12px !important; right: 12px !important; box-shadow: none; } .floating-contact-btn:active { opacity: 1; } .contact-text { display: none; } }
        .back-to-top:hover { background: var(--racing-red-bright); transform: translateY(-4px); }
        .back-to-top::before { content: '↑'; font-size: 1.25rem; font-weight: 700; }

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

        /* ========== FLOATING CONTACT ========== */
        .floating-contact-btn {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: var(--racing-red);
            color: #fff;
            padding: 1rem 1.5rem;
            border-radius: 50px;
            border: none;
            box-shadow: 0 4px 20px rgba(220, 38, 38, .4);
            z-index: 998;
            display: flex;
            align-items: center;
            gap: .75rem;
            cursor: pointer;
            font-weight: 600;
        }
        .floating-contact-btn:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(220, 38, 38, .6); }
        .contact-icon::before { content: '✉'; font-size: 20px; }

        /* ========== EXIT INTENT MODAL ========== */
        .exit-intent-overlay {
            display: none;
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0, 0, 0, .95);
            z-index: 10000;
            opacity: 0;
            transition: opacity .3s;
        }
        .exit-intent-overlay.active { display: flex; align-items: center; justify-content: center; opacity: 1; }

        .exit-intent-modal {
            background: linear-gradient(135deg, #1a1a1a 0, #0a0a0a 100%);
            border: 2px solid var(--racing-red);
            border-radius: 16px;
            max-width: 600px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 20px 60px rgba(220, 38, 38, .3);
            animation: .4s modalSlideIn;
        }
        @keyframes modalSlideIn { from { opacity: 0; transform: translateY(-50px); } to { opacity: 1; transform: translateY(0); } }

        .exit-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: transparent;
            border: none;
            color: var(--text-secondary);
            font-size: 2rem;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: .2s;
            z-index: 1;
        }
        .exit-close:hover { color: var(--racing-red-bright); background: rgba(220, 38, 38, .2); transform: rotate(90deg); }

        .exit-content { padding: 3rem 2.5rem; }
        .exit-header { text-align: center; margin-bottom: 2rem; }
        .exit-badge {
            display: inline-block;
            background: var(--racing-red);
            color: #fff;
            padding: .5rem 1.25rem;
            border-radius: 4px;
            font-size: .75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .12em;
            margin-bottom: 1.5rem;
        }
        .exit-header h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 0;
            background: linear-gradient(135deg, var(--racing-red-bright), var(--racing-red));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .exit-subheadline {
            margin: .75rem 0 0;
            font-size: 1rem;
            color: var(--text-secondary);
            font-weight: 400;
        }
        .exit-cta-link {
            background: linear-gradient(135deg, #DC2626 0%, #EF4444 100%);
            border: 1px solid rgba(255,255,255,0.18);
            border-radius: 10px;
            color: #fff;
            font-weight: 700;
            letter-spacing: .02em;
            box-shadow: 0 12px 28px -8px rgba(220,38,38,0.55), 0 1px 0 0 rgba(255,255,255,0.18) inset;
            transition: transform .2s ease, box-shadow .25s ease;
        }
        .exit-cta-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 18px 36px -8px rgba(220,38,38,0.7), 0 0 0 6px rgba(220,38,38,0.18), 0 1px 0 0 rgba(255,255,255,0.22) inset;
        }

        .exit-offer { display: flex; align-items: center; justify-content: center; gap: 1rem; margin: 2rem 0; flex-wrap: wrap; }

        .exit-price-new { font-size: 3rem; font-weight: 700; color: var(--racing-red-bright); line-height: 1; }
        .exit-savings { font-size: .875rem; background: rgba(220, 38, 38, .2); padding: .5rem 1rem; border-radius: 20px; color: var(--text-secondary); border: 1px solid var(--racing-red); }

        .exit-benefits { list-style: none; padding: 0; margin: 0 0 2rem; }
        .exit-benefits li { padding: .75rem 0 .75rem 1.5rem; position: relative; border-bottom: 1px solid rgba(255, 255, 255, .05); color: var(--text-secondary); font-size: 1rem; }
        .exit-benefits li:last-child { border-bottom: none; }
        .exit-benefits li::before { content: '✓'; position: absolute; left: 0; color: var(--racing-red-bright); }

        .exit-form { display: flex; gap: 1rem; margin-bottom: 1rem; }
        .exit-form input[type=email] {
            flex: 1;
            padding: 1rem 1.5rem;
            background: rgba(255, 255, 255, .05);
            border: 1px solid var(--border);
            border-radius: 8px;
            color: var(--text);
            font-size: 16px;
            transition: .2s;
        }
        .exit-form input[type=email]:focus { outline: none; border-color: var(--racing-red); background: rgba(255, 255, 255, .08); }
        .exit-form button { white-space: nowrap; }

        .exit-message { padding: .75rem 1rem; border-radius: 6px; font-size: .875rem; margin-bottom: 1rem; display: none; }
        .exit-message.success { display: block; background: rgba(34, 197, 94, .1); border: 1px solid rgba(34, 197, 94, .3); color: #4ade80; }
        .exit-message.error { display: block; background: rgba(220, 38, 38, .1); border: 1px solid rgba(220, 38, 38, .3); color: #ef4444; }

        .exit-footer { display: flex; align-items: center; justify-content: center; gap: .75rem; color: var(--text-tertiary); font-size: .875rem; margin: 0; text-align: center; }
        .urgency-indicator { width: 8px; height: 8px; background: var(--racing-red-bright); border-radius: 50%; animation: 2s infinite urgencyPulse; }
        @keyframes urgencyPulse { 0%, 100% { opacity: 1; } 50% { opacity: .5; } }

        /* ========== SKIP LINK ========== */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: var(--racing-red);
            color: #fff;
            padding: 8px 16px;
            text-decoration: none;
            font-weight: 600;
            z-index: 10000;
            border-radius: 0 0 4px 0;
        }
        .skip-link:focus { top: 0; }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 768px) {
            :root { --header-height: 65px; }

            .btn-header, .header-inner > nav { display: none !important; }
            .mobile-menu-toggle { display: flex !important; align-items: center; justify-content: center; }
            .header-right { gap: .75rem; }

            .language-btn { padding: .4rem .75rem; font-size: .8125rem; gap: .4rem; max-width: 140px; min-height: 44px; }
            #currentLang { max-width: 70px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

            .logo { font-size: 1.25rem; }
            .logo-tagline { font-size: .5rem; }

            .hero { padding: 5rem 1.25rem 3rem; min-height: auto; }
            .hero-content h1 { font-size: 1.75rem; margin-bottom: 1rem; }
            .hero-content p { font-size: .9375rem; margin-bottom: 1.5rem; }

            .dashboard { padding: 1.25rem; margin-top: 1.5rem; }
            .pred-details { grid-template-columns: repeat(3, 1fr); gap: .5rem; }
            .pred-stat { padding: .5rem .4rem; }
            .pred-stat-label { font-size: .5625rem; }
            .pred-stat-value { font-size: .8125rem; }

            .showcase-confidence-value { font-size: 3rem; }
            .showcase-pick-stats { grid-template-columns: repeat(2, 1fr); gap: .875rem; padding: .875rem; }
            .showcase-race-meta { gap: .875rem; padding: 1rem; }
            .showcase-title { font-size: 1.5rem; }
            .showcase-pick-name { font-size: 1.375rem; }
            .showcase-pick { padding: 1.25rem; }
            .showcase-location { font-size: .875rem; margin-bottom: 1.25rem; }
            .showcase-category, .showcase-status { font-size: .5625rem; padding: .4rem .625rem; }
            .showcase-card { padding: 1.5rem 1.25rem; }

            .stats-bar { padding: 4rem 1.5rem; gap: 2.5rem; }
            .stat-value { font-size: 2.5rem; }

            .section, .faq-section, .how-it-works-section, .prediction-showcase { padding: 5rem 1.5rem; }
            .waitlist-section { padding: 6rem 1.5rem; }

            .urgency-banner { padding: 1.5rem 1rem; }
            .countdown-item { padding: .75rem 1rem; min-width: 70px; }
            .countdown-number { font-size: 2rem; }

            .domain-grid { grid-template-columns: 1fr; }
            .domain-cta-buttons { flex-direction: column !important; }
            .domain-cta-buttons a { width: 100% !important; min-width: 0 !important; }

            .exit-form { flex-direction: column; }
            .exit-content { padding: 2rem 1.5rem; }

            .floating-contact-btn { bottom: 1rem; right: 1rem; }
            .contact-text { display: none; }

            .mobile-menu nav a { font-size: 1rem; padding: 1rem .75rem; min-height: 54px; }

            .exit-intent-overlay { display: none !important; }
            /* MOBILE STABILITY FIXES */


    header { backdrop-filter: none !important; -webkit-backdrop-filter: none !important; background: rgba(0,0,0,0.98) !important; }
    .hero { min-height: auto !important; }
    .hero::before { animation: none !important; }
    .hero-content h1, .hero-tagline, .hero-tagline-text, .hero-tagline::before { animation: none !important; }
    .badge-dot, .live-indicator, .urgency-pulse-indicator, .urgency-pulse-indicator::before { animation: none !important; }
    .dashboard { min-height: 380px; }
    .prediction { min-height: 120px; transform: none !important; }
    .showcase-card { min-height: 920px; height: auto; transform: none !important; }
    .showcase-card:hover { transform: none !important; }
    .showcase-title, .showcase-pick-name, .showcase-location { min-height: 1.5em; overflow: hidden; }
    .feature, .pricing-card, .market-card, .domain-card, .how-step, .comp-card { transform: none !important; }
    .language-dropdown { position: absolute !important; z-index: 1002 !important; }
    .btn-primary::after, .btn-secondary::before, .showcase-btn::before, .pricing-cta::before { display: none !important; }
    .header-inner { padding: 0.75rem 0.5rem; gap: 0.5rem; }
    .header-right { gap: 0.5rem; }
    .language-btn { padding: 0.4rem 0.6rem; font-size: 0.75rem; }
    #currentLang { max-width: none; }
    .mobile-menu-toggle { min-width: 44px; width: 44px; height: 44px; }
        }

        @media (max-width: 480px) {
    .lang-flag { display: none; }
}

        @media (min-width: 769px) {
            .header-inner { padding: 1.25rem 2rem; }
            .logo { font-size: 1.75rem; }

            .hero { padding: 8rem 2rem 6rem; }
            .hero-inner { grid-template-columns: 1.1fr 1fr; gap: 5rem; align-items: center; }
            .hero-buttons { display: flex; gap: 1rem; }
            .btn-primary, .btn-secondary { width: auto; display: inline-block; }
            .btn-secondary { margin-top: 0; }

            .stats-bar { grid-template-columns: repeat(4, 1fr); gap: 4rem; padding: 6rem 2rem; }
            .stat-value { font-size: 3rem; }

            .features, .showcase-grid { grid-template-columns: repeat(3, 1fr); }
            .showcase-grid { gap: 2rem; align-items: start; }
            .showcase-confidence-value { font-size: 5rem; }
            .showcase-pick-stats, .showcase-race-meta { grid-template-columns: repeat(4, 1fr); }
            .showcase-card { padding: 2rem 1.75rem; }
            .showcase-title { font-size: 1.875rem; }
            .showcase-pick-name { font-size: 1.625rem; }

            .dual-market-grid, .how-it-works-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
            .market-card-row { flex-direction: row; justify-content: space-between; }

            .comparison { grid-template-columns: 1fr 1fr; }
            .pricing-grid { grid-template-columns: repeat(3, 1fr); }

            .waitlist-form { flex-direction: row; max-width: 700px; }
            .waitlist-input { max-width: none; flex: 1; }
            .waitlist-form .btn-primary { width: auto; max-width: none; flex-shrink: 0; }

            .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }

            .section, .faq-section, .how-it-works-section, .prediction-showcase { padding: 8rem 2rem; }
            .waitlist-section { padding: 10rem 2rem; }

            .dashboard { padding: 2rem; }
            .prediction { padding: 1.5rem; }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .features, .how-it-works-grid, .showcase-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (prefers-reduced-motion: reduce) {
            html { scroll-behavior: auto; }
            *, *::before, *::after { animation-duration: 0s !important; transition-duration: 0s !important; }
        }

        @supports (padding: max(0px)) {
            body { padding-left: max(0px, env(safe-area-inset-left)); padding-right: max(0px, env(safe-area-inset-right)); }
            header { padding-top: max(0px, env(safe-area-inset-top)); }
            .back-to-top, .mobile-menu-inner, .waitlist-section, footer { padding-bottom: max(0px, env(safe-area-inset-bottom)); }
            .floating-contact-btn { bottom: max(2rem, calc(2rem + env(safe-area-inset-bottom))); }
        }
        /* ========== PERFORMANCE TRACKER STYLES ========== */
/* PASTE THIS BEFORE: /* ========== MOBILE SCROLL POPUP ========== */ */

.performance-section {
    padding: 6rem 1.5rem;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.performance-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.4), transparent);
}

.performance-container {
    max-width: 1200px;
    margin: 0 auto;
}

.performance-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-badge {
    display: inline-block;
    padding: .5rem 1rem;
    background: rgba(220, 38, 38, 0.2);
    border: 1px solid rgba(220, 38, 38, 0.4);
    border-radius: 20px;
    color: var(--racing-red-bright);
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .15em;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.performance-title {
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text);
    margin: 0 0 .75rem 0;
    letter-spacing: -.02em;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.performance-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

.perf-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}

@media (max-width: 1024px) {
    .perf-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .dashboard { display: block !important; }
}

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

.perf-stat-card {
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem;
    text-align: center;
    position: relative;
    transition: .3s;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.perf-stat-card:hover {
    border-color: rgba(220, 38, 38, .4);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(220, 38, 38, 0.15);
}

.perf-stat-card-primary {
    background: rgba(220, 38, 38, 0.1);
    border-color: rgba(220, 38, 38, .4);
}

.perf-stat-card-primary:hover {
    border-color: rgba(220, 38, 38, .6);
    box-shadow: 0 10px 40px rgba(220, 38, 38, 0.25);
}

.perf-stat-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.perf-stat-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 1rem;
    color: var(--racing-red-bright);
}

.perf-stat-icon svg {
    width: 100%;
    height: 100%;
}

.perf-stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
    margin-bottom: .5rem;
}

.perf-stat-card-primary .perf-stat-value {
    background: linear-gradient(135deg, var(--racing-red-bright), var(--racing-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.perf-stat-label {
    font-size: .8125rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: .25rem;
}

.perf-stat-detail {
    font-size: .75rem;
    color: var(--text-tertiary);
}

.perf-stat-trend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .375rem;
    margin-top: .75rem;
    font-size: .8125rem;
    font-weight: 600;
}

.perf-trend-up { color: #22c55e; }
.perf-trend-down { color: #ef4444; }

.perf-confidence-section, .perf-recent-results {
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.perf-subsection-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 .5rem 0;
}

.perf-subsection-subtitle {
    font-size: .875rem;
    color: var(--text-secondary);
    margin: 0 0 1.75rem 0;
}

.perf-confidence-bars {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.perf-confidence-bar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .5rem;
}

.perf-confidence-level {
    font-size: .875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.perf-confidence-result {
    font-size: 1rem;
    font-weight: 700;
    color: var(--racing-red-bright);
}

.perf-confidence-bar-track {
    height: 10px;
    background: rgba(255, 255, 255, .1);
    border-radius: 5px;
    overflow: hidden;
}

.perf-confidence-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--racing-red), var(--racing-red-bright));
    border-radius: 5px;
    transition: width 1s ease-out;
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

.perf-confidence-picks {
    font-size: .75rem;
    color: var(--text-tertiary);
    margin-top: .375rem;
    display: block;
}

.perf-recent-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.perf-filter-tabs {
    display: flex;
    gap: .5rem;
}

.perf-filter-tab {
    padding: .5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-secondary);
    font-size: .8125rem;
    font-weight: 500;
    cursor: pointer;
    transition: .2s;
    min-height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
}

.perf-filter-tab:hover {
    border-color: rgba(255, 255, 255, .25);
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
}

.perf-filter-tab.active {
    background: rgba(220, 38, 38, 0.2);
    border-color: rgba(220, 38, 38, 0.4);
    color: var(--racing-red-bright);
}

.perf-results-list {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.perf-result-item {
    display: grid;
    grid-template-columns: auto 1fr auto auto auto auto;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(0, 0, 0, .4);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: .2s;
}

.perf-result-item:hover {
    background: rgba(0, 0, 0, .5);
    border-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .perf-result-item {
        grid-template-columns: auto 1fr auto;
        gap: .75rem;
    }
    .perf-result-confidence, .perf-result-odds { display: none; }
    .perf-filter-tabs { flex-wrap: wrap; }
    .perf-filter-tab { padding: .375rem .75rem; font-size: .75rem; }
    .performance-section { padding: 4rem 1.25rem; }
    .perf-stat-value { font-size: 2rem; }
    .perf-confidence-section, .perf-recent-results { padding: 1.5rem; }
    .perf-roi-value { font-size: 2.5rem; }
}

.perf-result-status {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.perf-result-status.win {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.perf-result-status.place {
    background: rgba(234, 179, 8, 0.2);
    color: #eab308;
}

.perf-result-status.loss {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.perf-result-status svg {
    width: 16px;
    height: 16px;
}

.perf-result-info { min-width: 0; }

.perf-result-name {
    font-size: .9375rem;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.perf-result-meta {
    font-size: .75rem;
    color: var(--text-tertiary);
    margin-top: .125rem;
}

.perf-result-sport {
    font-size: .625rem;
    padding: .25rem .5rem;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.perf-result-sport.horse {
    background: rgba(212, 160, 18, 0.2);
    color: #D4A012;
}

.perf-result-sport.f1 {
    background: rgba(220, 38, 38, 0.2);
    color: var(--racing-red-bright);
}

.perf-result-sport.nascar {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.perf-result-sport.indycar {
    background: rgba(192, 192, 192, 0.2);
    color: #D4D5D9;
}

.perf-result-sport.motogp {
    background: rgba(255, 102, 0, 0.2);
    color: #FF8C00;
}

.perf-result-confidence {
    font-size: .875rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.perf-result-odds {
    font-size: .875rem;
    color: var(--text-tertiary);
}

.perf-result-outcome {
    font-size: .875rem;
    font-weight: 700;
    min-width: 50px;
    text-align: right;
}

.perf-result-outcome.win { color: #22c55e; }
.perf-result-outcome.place { color: #eab308; }
.perf-result-outcome.loss { color: #ef4444; }

/* ========== VERIFIED TIMESTAMP STYLES ========== */
.perf-result-timestamp {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    min-width: 130px;
}

.perf-result-timestamp-predicted {
    font-size: 0.6875rem;
    color: var(--text-tertiary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.perf-result-timestamp-predicted::before {
    content: '📤';
    font-size: 0.625rem;
}

.perf-result-timestamp-verified {
    font-size: 0.625rem;
    color: #22c55e;
    display: flex;
    align-items: center;
    gap: 4px;
}

.perf-result-timestamp-verified::before {
    content: '✓';
    font-weight: 700;
}

.perf-result-status.pending {
    background: rgba(251, 146, 60, 0.2);
    color: #fb923c;
}

.perf-result-outcome.pending {
    color: #fb923c;
    font-weight: 600;
}

.perf-result-item.pending-item {
    border: 1px solid rgba(251, 146, 60, 0.3);
    background: rgba(251, 146, 60, 0.05);
}

.perf-result-item.pending-item:hover {
    border-color: rgba(251, 146, 60, 0.5);
}

.perf-audit-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 1rem;
    padding: 0.75rem 1.25rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    color: #22c55e;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
}

.perf-audit-link:hover {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.5);
    transform: translateY(-1px);
}

.perf-audit-link svg {
    width: 16px;
    height: 16px;
}
/* ========== END VERIFIED TIMESTAMP STYLES ========== */

.perf-load-more-btn {
    width: 100%;
    padding: 1rem;
    margin-top: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: .875rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    transition: .2s;
}

.perf-load-more-btn:hover {
    border-color: rgba(220, 38, 38, .4);
    color: var(--text);
    background: rgba(220, 38, 38, .1);
}

.perf-roi-section { margin-bottom: 0; }

.perf-roi-card {
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, .3);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.perf-roi-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.75rem;
    border-bottom: 1px solid rgba(220, 38, 38, .15);
}

.perf-roi-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

.perf-roi-disclaimer {
    font-size: .75rem;
    color: var(--text-tertiary);
    padding: .25rem .625rem;
    background: rgba(0, 0, 0, .3);
    border-radius: 4px;
}

.perf-roi-content {
    padding: 1.75rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .perf-roi-content { grid-template-columns: 1fr; }
}

.perf-roi-stat {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.perf-roi-label {
    font-size: .875rem;
    color: var(--text-secondary);
    margin-bottom: .5rem;
}

.perf-roi-value {
    font-size: 3rem;
    font-weight: 700;
    color: #22c55e;
    line-height: 1;
    margin-bottom: .5rem;
    text-shadow: 0 0 30px rgba(34, 197, 94, 0.3);
}

.perf-roi-period {
    font-size: .75rem;
    color: var(--text-tertiary);
}

.perf-roi-breakdown {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.perf-roi-item {
    display: flex;
    justify-content: space-between;
    padding: .75rem 1rem;
    background: rgba(0, 0, 0, .3);
    border-radius: 6px;
    font-size: .875rem;
}

.perf-roi-item span:first-child { color: var(--text-secondary); }
.perf-roi-item span:last-child { color: var(--text); font-weight: 500; }

.perf-roi-item-highlight {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.perf-roi-item-highlight span:last-child {
    color: #22c55e;
    font-weight: 700;
}

/* ========== END PERFORMANCE TRACKER STYLES ========== */

/* ========== CHECKOUT CONFIRMATION MODAL ========== */
.checkout-modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    opacity: 0;
    transition: opacity .3s;
}
.checkout-modal-overlay.active { display: flex; align-items: center; justify-content: center; opacity: 1; }
.checkout-modal {
    background: linear-gradient(135deg, #1a1a1a 0, #0a0a0a 100%);
    border: 2px solid var(--racing-red);
    border-radius: 16px;
    max-width: 480px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(220, 38, 38, .3);
    animation: .4s modalSlideIn;
}
.checkout-modal-close {
    position: absolute;
    top: 15px; right: 15px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.75rem;
    cursor: pointer;
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}
.checkout-modal-close:hover { background: rgba(255,255,255,0.1); color: #fff; }
.checkout-modal-header {
    text-align: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.checkout-modal-badge {
    display: inline-block;
    background: var(--racing-red);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}
.checkout-modal-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}
.checkout-modal-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}
.checkout-price {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
}
.checkout-period {
    font-size: 1.25rem;
    color: var(--text-secondary);
}
.checkout-price-note {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    margin-top: 0.5rem;
}
.checkout-modal-body {
    padding: 1.5rem 2rem;
}
.checkout-features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.checkout-features li {
    padding: 0.6rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.checkout-features li:last-child { border-bottom: none; }
.checkout-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 700;
}
.checkout-modal-footer {
    padding: 1rem 2rem 2rem;
    text-align: center;
}
.checkout-btn-primary {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--racing-red) 0%, #b91c1c 100%);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.checkout-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}
.checkout-secure-note {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    margin-top: 1rem;
}

        /* ========== MOBILE SCROLL POPUP ========== */
.mobile-scroll-popup {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-top: 2px solid var(--racing-red);
    padding: 1.5rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease-out;
    box-shadow: 0 -10px 40px rgba(220, 38, 38, 0.3);
}
.mobile-scroll-popup.active { transform: translateY(0); }
.mobile-scroll-popup-content { text-align: center; max-width: 400px; margin: 0 auto; }
.mobile-scroll-popup h3 { font-size: 1.25rem; margin-bottom: 0.5rem; color: var(--racing-red-bright); }
.mobile-scroll-popup p { font-size: 0.875rem; color: var(--text-secondary); margin-bottom: 1rem; }
.mobile-scroll-popup .btn-primary { width: 100%; margin-bottom: 0.75rem; display: block; text-align: center; }
.mobile-scroll-popup-close { background: transparent; border: none; color: var(--text-tertiary); font-size: 0.8125rem; cursor: pointer; padding: 0.5rem; }
.mobile-scroll-popup-close:hover { color: var(--text); }
@media (min-width: 769px) { .mobile-scroll-popup { display: none !important; } }

/* ============================================
   RACEHP.AI MOBILE CSS - COMPLETE VERIFIED CODE
   Replace lines 2339 through end of 319px media query
   ============================================ */

/* ==================================================
   SMALL DEVICE SUPPORT (Research-based 2025)
   Covers: iPhone SE, Samsung S series, Motorola Razr, Galaxy Fold
   ================================================== */

/* Standard small phones: 360px - 389px (Samsung S24, older iPhones) */
@media (max-width: 389px) {
    .countdown-timer {
        transform: scale(0.65);
        transform-origin: center center;
        margin-left: -5px;
        margin-right: -5px;
    }

    .countdown-item.countdown-ms {
        min-width: 45px !important;
    }

    .countdown-item {
        min-width: 50px !important;
        padding: 4px !important;
    }

    .container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .hero-content h1 {
        font-size: 1.7rem !important;
    }

    .language-selector {
        order: 2 !important;
        margin-right: 10px !important;
    }

    .mobile-menu-toggle {
        order: 3 !important;
    }

    #currentLang {
        max-width: 45px !important;
        font-size: 0.65rem !important;
        padding: 4px 6px !important;
    }

    .language-selector .lang-flag {
        display: inline !important;
    }

    #currentLang span:not(.lang-flag) {
        display: none !important;
    }

    .logo-tagline {
        display: none !important;
    }

    .language-dropdown {
        position: fixed !important;
        top: 60px !important;
        right: 60px !important;
        left: auto !important;
        width: 160px !important;
        z-index: 10000 !important;
    }

    .header-inner {
        padding: 0 10px !important;
        position: relative !important;
        max-width: 100vw !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    header {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
}

/* Extra small phones: 320px - 359px (iPhone SE, Motorola Razr inner) */
@media (max-width: 359px) {
    .countdown-timer {
        transform: scale(0.55);
        transform-origin: center center;
    }

    .countdown-item.countdown-ms {
        min-width: 40px !important;
    }

    .countdown-item {
        min-width: 45px !important;
        padding: 3px !important;
    }

    .hero-content h1 {
        font-size: 1.6rem !important;
    }

    .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .header-inner {
        padding: 0 8px !important;
    }

    .language-selector {
        display: none !important;
    }

    .logo-tagline {
        display: none !important;
    }
}

/* Ultra narrow: Under 320px (Motorola Razr cover screen, Galaxy Fold cover) */
@media (max-width: 319px) {
    .countdown-timer {
        transform: scale(0.45);
    }

    .countdown-item {
        min-width: 35px !important;
        padding: 2px !important;
    }

    .countdown-item.countdown-ms {
        min-width: 30px !important;
    }

    .hero-content h1 {
        font-size: 1.4rem !important;
    }

    .sticky-cta {
        padding: 8px 10px !important;
    }

    .sticky-cta h4 {
        font-size: 0.8rem !important;
    }

    .btn-primary, .btn-secondary {
        padding: 10px 16px !important;
        font-size: 0.85rem !important;
    }
}

/* ========== MOBILE SPORT SWITCHER v1.0 ========== */
.rhp-bnav{display:none}
@media(max-width:768px){
.rhp-bnav{display:flex;position:fixed;bottom:0;left:0;right:0;z-index:9998;background:rgba(8,8,12,0.97);border-top:1px solid rgba(255,255,255,0.06);padding:4px 0 max(4px,env(safe-area-inset-bottom));gap:0;justify-content:space-around;backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);transition:transform 0.3s cubic-bezier(0.4,0,0.2,1)}
.rhp-bnav-hidden{transform:translateY(100%)}
.rhp-bnav-tab{display:flex;flex-direction:column;align-items:center;gap:1px;background:none;border:none;color:rgba(255,255,255,0.3);font-size:8.5px;font-weight:700;letter-spacing:0.5px;padding:6px 2px 4px;cursor:pointer;position:relative;min-width:0;flex:1;-webkit-tap-highlight-color:transparent;transition:color 0.25s,transform 0.15s;text-transform:uppercase}
.rhp-bnav-tab:active{transform:scale(0.9)}
.rhp-bnav-tab svg{stroke:rgba(255,255,255,0.3);transition:stroke 0.25s;width:20px;height:20px}
.rhp-bnav-active{color:#fff}
.rhp-bnav-active svg{stroke:#fff}
.rhp-bnav-tab[data-sport="horse"].rhp-bnav-active{color:#d4a853}
.rhp-bnav-tab[data-sport="horse"].rhp-bnav-active svg{stroke:#d4a853}
.rhp-bnav-tab[data-sport="f1"].rhp-bnav-active{color:#E10600}
.rhp-bnav-tab[data-sport="f1"].rhp-bnav-active svg{stroke:#E10600}
.rhp-bnav-tab[data-sport="nascar"].rhp-bnav-active{color:#007AC2}
.rhp-bnav-tab[data-sport="nascar"].rhp-bnav-active svg{stroke:#007AC2}
.rhp-bnav-tab[data-sport="indycar"].rhp-bnav-active{color:#C4C4C4}
.rhp-bnav-tab[data-sport="indycar"].rhp-bnav-active svg{stroke:#C4C4C4}
.rhp-bnav-tab[data-sport="motogp"].rhp-bnav-active{color:#FF6600}
.rhp-bnav-tab[data-sport="motogp"].rhp-bnav-active svg{stroke:#FF6600}
.rhp-bnav-tab[data-sport="home"].rhp-bnav-active{color:#DC2626}
.rhp-bnav-tab[data-sport="home"].rhp-bnav-active svg{stroke:#DC2626}
.rhp-bnav-indicator{position:absolute;top:-1px;height:2.5px;border-radius:2px;transition:left 0.3s cubic-bezier(0.4,0,0.2,1),width 0.3s cubic-bezier(0.4,0,0.2,1),background 0.3s;background:#DC2626;pointer-events:none}
.rhp-bnav-ripple{position:absolute;border-radius:50%;background:rgba(255,255,255,0.15);transform:scale(0);animation:rhpRipple 0.5s ease-out forwards;pointer-events:none}
@keyframes rhpRipple{to{transform:scale(2.5);opacity:0}}
body{padding-bottom:60px!important}
.mobile-scroll-popup{display:none!important}
.floating-contact-btn{bottom:80px!important}
.back-to-top{bottom:125px!important}
.dashboard-grid{display:flex!important;overflow-x:auto!important;scroll-snap-type:x mandatory!important;scroll-behavior:smooth!important;gap:12px!important;padding:0 16px 16px!important;-webkit-overflow-scrolling:touch;scrollbar-width:none;-ms-overflow-style:none}
.dashboard-grid::-webkit-scrollbar{display:none}
.dashboard-grid .dash-card{flex:0 0 calc(100vw - 48px)!important;scroll-snap-align:center!important;max-width:none!important;width:calc(100vw - 48px)!important;opacity:0.5;transition:opacity 0.3s,box-shadow 0.4s,border-color 0.4s;border:1px solid rgba(255,255,255,0.06);border-radius:16px}
.dashboard-grid .dash-card.active{opacity:1}
.dashboard-grid .dash-card[data-sport="horse"].active{border-color:rgba(212,168,83,0.3);box-shadow:0 0 25px rgba(212,168,83,0.12)}
.dashboard-grid .dash-card[data-sport="f1"].active{border-color:rgba(225,6,0,0.3);box-shadow:0 0 25px rgba(225,6,0,0.12)}
.dashboard-grid .dash-card[data-sport="nascar"].active{border-color:rgba(0,122,194,0.3);box-shadow:0 0 25px rgba(0,122,194,0.12)}
.dashboard-grid .dash-card[data-sport="indycar"].active{border-color:rgba(139,146,153,0.3);box-shadow:0 0 25px rgba(139,146,153,0.12)}
.dashboard-grid .dash-card[data-sport="motogp"].active{border-color:rgba(255,102,0,0.3);box-shadow:0 0 25px rgba(255,102,0,0.12)}
#header::after{content:'';position:absolute;bottom:0;left:0;right:0;height:2px;background:var(--rhp-sport-accent,#DC2626);transition:background 0.4s;opacity:0.7}
}
/* ========== END MOBILE SPORT SWITCHER ========== */
/* SPORT-SPECIFIC COLORS - v12.3 FINAL */
/* HORSE RACING - GOLD */
#horseRacingCard::before { background: linear-gradient(90deg, transparent, #d4a853, transparent) !important; }
#horseRacingCard .showcase-status { background: rgba(212, 168, 83, 0.15) !important; border-color: rgba(212, 168, 83, 0.4) !important; color: #f0c970 !important; animation: glow-gold 1.5s ease-in-out infinite !important; }
#horseRacingCard .showcase-status::before { background: #f0c970 !important; }
#horseRacingCard .showcase-confidence-value { background: linear-gradient(135deg, #f0c970, #d4a853) !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; background-clip: text !important; filter: drop-shadow(0 0 20px rgba(212, 168, 83, 0.4)); }
#horseRacingCard .showcase-progress-bar { background: linear-gradient(90deg, #d4a853, #f0c970) !important; box-shadow: 0 0 10px rgba(212, 168, 83, 0.4); }
#horseRacingCard .showcase-pick-number { color: #d4a853 !important; }
#horseRacingCard:hover { border-color: rgba(212, 168, 83, 0.4) !important; box-shadow: 0 15px 40px rgba(212, 168, 83, 0.15) !important; }
@keyframes glow-gold { 0%, 100% { box-shadow: 0 0 5px rgba(212, 168, 83, 0.3); text-shadow: 0 0 4px #d4a853; } 50% { box-shadow: 0 0 15px rgba(212, 168, 83, 0.6); text-shadow: 0 0 12px #d4a853; } }

/* Horse Racing 5-Stat Premium Layout */
#horseRacingCard .horse-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    justify-items: center;
    margin-bottom: 1.25rem;
    padding: 0.75rem 0.5rem;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.08) 0%, rgba(0, 0, 0, 0.4) 100%);
    border-radius: 10px;
    border: 1px solid rgba(212, 168, 83, 0.15);
}
#horseRacingCard .horse-stat {
    text-align: center;
    padding: 0.25rem 0.125rem;
    position: relative;
}
#horseRacingCard .horse-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(212, 168, 83, 0.3), transparent);
}
#horseRacingCard .horse-stat-label {
    font-size: 0.5625rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.375rem;
    white-space: nowrap;
}
#horseRacingCard .horse-stat-value {
    font-size: 0.9375rem;
    font-weight: 800;
    color: #fff;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}
#horseRacingCard .perf-score-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
}
#horseRacingCard .perf-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: perfPulse 2s ease-in-out infinite;
}
#horseRacingCard .perf-indicator.elite { background: #00E676; box-shadow: 0 0 8px rgba(0, 230, 118, 0.6); }
#horseRacingCard .perf-indicator.strong { background: #FFD740; box-shadow: 0 0 8px rgba(255, 215, 64, 0.6); }
#horseRacingCard .perf-indicator.risky { background: #FF5252; box-shadow: 0 0 8px rgba(255, 82, 82, 0.6); }
@media (max-width: 480px) {
    #horseRacingCard .horse-stats-grid { grid-template-columns: repeat(5, 1fr); gap: 0.25rem; padding: 0.75rem 0.5rem; }
    #horseRacingCard .horse-stat-label { font-size: 0.5rem; }
    #horseRacingCard .horse-stat-value { font-size: 0.75rem; }
    #horseRacingCard .perf-indicator { width: 6px; height: 6px; }
}
/* F1 - RED */
#f1Card::before { background: linear-gradient(90deg, transparent, #E10600, transparent) !important; }
#f1Card .showcase-status { background: rgba(225, 6, 0, 0.15) !important; border-color: rgba(225, 6, 0, 0.4) !important; color: #FF2D20 !important; animation: glow-red 1.5s ease-in-out infinite !important; }
#f1Card .showcase-status::before { background: #FF2D20 !important; }
#f1Card .showcase-confidence-value { background: linear-gradient(135deg, #FF2D20, #E10600) !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; background-clip: text !important; filter: drop-shadow(0 0 20px rgba(225, 6, 0, 0.4)); }
#f1Card .showcase-progress-bar { background: linear-gradient(90deg, #E10600, #FF2D20) !important; box-shadow: 0 0 10px rgba(225, 6, 0, 0.4); }
#f1Card .showcase-pick-number { color: #E10600 !important; }
#f1Card:hover { border-color: rgba(225, 6, 0, 0.4) !important; box-shadow: 0 15px 40px rgba(225, 6, 0, 0.15) !important; }
@keyframes glow-red { 0%, 100% { box-shadow: 0 0 5px rgba(225, 6, 0, 0.3); text-shadow: 0 0 4px #E10600; } 50% { box-shadow: 0 0 15px rgba(225, 6, 0, 0.6); text-shadow: 0 0 12px #E10600; } }
/* NASCAR - BLUE */
@keyframes liveDataPulse {
    0%, 100% { box-shadow: 0 0 5px rgba(0,200,100,0.4), 0 0 10px rgba(0,200,100,0.2); }
    50% { box-shadow: 0 0 15px rgba(0,200,100,0.8), 0 0 25px rgba(0,200,100,0.4); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
#nascarCard::before { background: linear-gradient(90deg, transparent, #007AC2, transparent) !important; }
#nascarCard .showcase-status { background: rgba(0, 122, 194, 0.15) !important; border-color: rgba(0, 122, 194, 0.4) !important; color: #00A0F0 !important; animation: glow-blue 1.5s ease-in-out infinite !important; }
#nascarCard .showcase-status::before { background: #00A0F0 !important; }

/* NASCAR 5-Stat Premium Layout */
#nascarCard .nascar-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
justify-items: center;
    margin-bottom: 1.25rem;
    padding: 0.75rem 0.5rem;
    background: linear-gradient(135deg, rgba(0, 122, 194, 0.08) 0%, rgba(0, 0, 0, 0.4) 100%);
    border-radius: 10px;
    border: 1px solid rgba(0, 160, 240, 0.15);
}
#nascarCard .nascar-stat {
    text-align: center;
    padding: 0.25rem 0.125rem;
    position: relative;
}
#nascarCard .nascar-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(0, 160, 240, 0.3), transparent);
}
#nascarCard .nascar-stat-label {
    font-size: 0.5625rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.375rem;
    white-space: nowrap;
}
#nascarCard .nascar-stat-value {
    font-size: 0.9375rem;
    font-weight: 800;
    color: #fff;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}
#nascarCard .perf-score-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
}
#nascarCard .perf-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: perfPulse 2s ease-in-out infinite;
}
#nascarCard .perf-indicator.elite { background: #00E676; box-shadow: 0 0 8px rgba(0, 230, 118, 0.6); }
#nascarCard .perf-indicator.strong { background: #FFD740; box-shadow: 0 0 8px rgba(255, 215, 64, 0.6); }
#nascarCard .perf-indicator.risky { background: #FF5252; box-shadow: 0 0 8px rgba(255, 82, 82, 0.6); }
@keyframes perfPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.15); }
}
@media (max-width: 480px) {
    #nascarCard .nascar-stats-grid { grid-template-columns: repeat(5, 1fr); gap: 0.25rem; padding: 0.75rem 0.5rem; }
    #nascarCard .nascar-stat-label { font-size: 0.5rem; }
    #nascarCard .nascar-stat-value { font-size: 0.75rem; }
    #nascarCard .perf-indicator { width: 6px; height: 6px; }
}
#nascarCard .showcase-confidence-value { background: linear-gradient(135deg, #00A0F0, #007AC2) !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; background-clip: text !important; filter: drop-shadow(0 0 20px rgba(0, 122, 194, 0.4)); }
#nascarCard .showcase-progress-bar { background: linear-gradient(90deg, #007AC2, #00A0F0) !important; box-shadow: 0 0 10px rgba(0, 122, 194, 0.4); }
#nascarCard .showcase-pick-number { color: #007AC2 !important; }
#nascarCard:hover { border-color: rgba(0, 122, 194, 0.4) !important; box-shadow: 0 15px 40px rgba(0, 122, 194, 0.15) !important; }
@keyframes glow-blue { 0%, 100% { box-shadow: 0 0 5px rgba(0, 122, 194, 0.3); text-shadow: 0 0 4px #007AC2; } 50% { box-shadow: 0 0 15px rgba(0, 122, 194, 0.6); text-shadow: 0 0 12px #007AC2; } }
/* INDYCAR - SILVER */
#indycarCard::before { background: linear-gradient(90deg, transparent, #C0C0C0, transparent) !important; }
#indycarCard .showcase-status { background: rgba(192, 192, 192, 0.15) !important; border-color: rgba(192, 192, 192, 0.4) !important; color: #D4D5D9 !important; animation: glow-silver 1.5s ease-in-out infinite !important; }
#indycarCard .showcase-status::before { background: #D4D5D9 !important; }
#indycarCard .showcase-confidence-value { background: linear-gradient(135deg, #A8A9AD, #E8E8E8) !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; background-clip: text !important; filter: drop-shadow(0 0 20px rgba(192, 192, 192, 0.5)); }
#indycarCard .showcase-progress-bar { background: linear-gradient(90deg, #A8A9AD, #D4D5D9) !important; box-shadow: 0 0 10px rgba(192, 192, 192, 0.4); }
#indycarCard .showcase-pick-number { color: #D4D5D9 !important; }
#indycarCard:hover { border-color: rgba(192, 192, 192, 0.4) !important; box-shadow: 0 15px 40px rgba(192, 192, 192, 0.15) !important; }
#indycarCard { border-top: 3px solid #C0C0C0; animation: glow-silver-border 4s ease-in-out infinite; }
@keyframes glow-silver { 0%, 100% { box-shadow: 0 0 5px rgba(192, 192, 192, 0.3); text-shadow: 0 0 4px #D4D5D9; } 50% { box-shadow: 0 0 15px rgba(192, 192, 192, 0.6); text-shadow: 0 0 12px #D4D5D9; } }
@keyframes glow-silver-border { 0%, 100% { box-shadow: 0 -3px 12px rgba(192, 192, 192, 0.2); } 50% { box-shadow: 0 -3px 18px rgba(192, 192, 192, 0.4); } }
#indycarCard .showcase-btn { background: linear-gradient(135deg, #A8A9AD, #787878) !important; color: #1a1a2e !important; font-weight: 700 !important; border: none !important; animation: btn-glow-silver 4s ease-in-out infinite !important; }
@keyframes btn-glow-silver { 0%, 100% { box-shadow: 0 4px 15px rgba(192, 192, 192, 0.4); } 50% { box-shadow: 0 4px 30px rgba(192, 192, 192, 0.7); } }

/* MOTOGP - ORANGE */
#motogpCard::before { background: linear-gradient(90deg, transparent, #FF6600, transparent) !important; }
#motogpCard .showcase-status { background: rgba(255, 102, 0, 0.15) !important; border-color: rgba(255, 102, 0, 0.4) !important; color: #FF8C00 !important; animation: glow-orange 1.5s ease-in-out infinite !important; }
#motogpCard .showcase-status::before { background: #FF8C00 !important; }
#motogpCard .showcase-confidence-value { background: linear-gradient(135deg, #FF6600, #FF8C00) !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; background-clip: text !important; filter: drop-shadow(0 0 20px rgba(255, 102, 0, 0.5)); }
#motogpCard .showcase-progress-bar { background: linear-gradient(90deg, #FF6600, #FF8C00) !important; box-shadow: 0 0 10px rgba(255, 102, 0, 0.4); }
#motogpCard .showcase-pick-number { color: #FF8C00 !important; }
#motogpCard:hover { border-color: rgba(255, 102, 0, 0.4) !important; box-shadow: 0 15px 40px rgba(255, 102, 0, 0.15) !important; }
#motogpCard { border-top: 3px solid #FF6600; animation: glow-orange-border 4s ease-in-out infinite; }
@keyframes glow-orange { 0%, 100% { box-shadow: 0 0 5px rgba(255, 102, 0, 0.3); text-shadow: 0 0 4px #FF8C00; } 50% { box-shadow: 0 0 15px rgba(255, 102, 0, 0.6); text-shadow: 0 0 12px #FF8C00; } }
@keyframes glow-orange-border { 0%, 100% { box-shadow: 0 -3px 12px rgba(255, 102, 0, 0.2); } 50% { box-shadow: 0 -3px 18px rgba(255, 102, 0, 0.4); } }
#motogpCard .showcase-btn { background: linear-gradient(135deg, #FF6600, #CC5200) !important; color: #fff !important; font-weight: 700 !important; border: none !important; animation: btn-glow-orange 4s ease-in-out infinite !important; }
@keyframes btn-glow-orange { 0%, 100% { box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4); } 50% { box-shadow: 0 4px 30px rgba(255, 102, 0, 0.7); } }

/* BOTTOM ROW LAYOUT */
.showcase-row-bottom { grid-column: 1 / -1; display: flex; justify-content: center; gap: 2rem; margin-top: 0; }
.showcase-row-bottom .showcase-card { flex: 0 1 calc(33.333% - 1rem); max-width: 450px; }
@media (max-width: 1024px) { .showcase-row-bottom { flex-wrap: wrap; } .showcase-row-bottom .showcase-card { flex: 0 1 calc(50% - 1rem); max-width: none; } }
@media (max-width: 768px) { .showcase-row-bottom { flex-direction: column; align-items: center; } .showcase-row-bottom .showcase-card { flex: 1 1 100%; max-width: none; width: 100%; } }
/* Showcase Card - FINAL FIX v13 */
.showcase-card {
    height: 1001px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.showcase-race-meta {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 1rem 1.25rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    min-height: 72px;
    height: 72px;
    overflow: visible;
}
.meta-item { display: flex; flex-direction: column; gap: 0.25rem; min-width: 0; overflow: visible; }
.meta-label { font-size: 0.625rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-tertiary); font-weight: 700; line-height: 1.2; }
.meta-value { font-size: 0.875rem; font-weight: 700; color: var(--text); line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.showcase-pick { height: 340px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; }
@media (max-width: 768px) {
    .showcase-race-meta { grid-template-columns: repeat(2, 1fr); gap: 1rem; padding: 1rem; }
    .meta-value { font-size: 0.8125rem; }
    .showcase-card { min-height: 0 !important; height: auto !important; max-height: none !important; }
    .showcase-pick { height: auto !important; min-height: 200px; }
    .showcase-row-bottom { gap: 1.5rem; display: flex !important; flex-direction: column !important; }
    .showcase-row-bottom .showcase-card { margin-bottom: 0; width: 100% !important; flex: none !important; }
}

/* === RACEHP FINAL - ALL EFFECTS === */

/* ANIMATED TOP BORDER */
#horseRacingCard {
    border-top: 3px solid #d4a853;
    animation: glow-gold-border 4s ease-in-out infinite;
}
#f1Card {
    border-top: 3px solid #E10600;
    animation: glow-red-border 4s ease-in-out infinite;
}
#nascarCard {
    border-top: 3px solid #007AC2;
    animation: glow-blue-border 4s ease-in-out infinite;
}

@keyframes glow-gold-border {
    0%, 100% { box-shadow: 0 -3px 12px rgba(212, 168, 83, 0.2); }
    50% { box-shadow: 0 -3px 18px rgba(212, 168, 83, 0.4); }
}
@keyframes glow-red-border {
    0%, 100% { box-shadow: 0 -3px 12px rgba(225, 6, 0, 0.2); }
    50% { box-shadow: 0 -3px 18px rgba(225, 6, 0, 0.4); }
}
@keyframes glow-blue-border {
    0%, 100% { box-shadow: 0 -3px 12px rgba(0, 122, 194, 0.2); }
    50% { box-shadow: 0 -3px 18px rgba(0, 122, 194, 0.4); }
}

/* GLOWING BUTTONS */
#horseRacingCard .showcase-btn {
    background: linear-gradient(135deg, #d4a853, #8B6914) !important;
    color: #000 !important;
    font-weight: 700 !important;
    border: none !important;
    animation: btn-glow-gold 4s ease-in-out infinite !important;
}
#f1Card .showcase-btn {
    background: linear-gradient(135deg, #E10600, #8B0000) !important;
    color: #fff !important;
    font-weight: 700 !important;
    border: none !important;
    animation: btn-glow-red 4s ease-in-out infinite !important;
}
#nascarCard .showcase-btn {
    background: linear-gradient(135deg, #007AC2, #005a8c) !important;
    color: #fff !important;
    font-weight: 700 !important;
    border: none !important;
    animation: btn-glow-blue 4s ease-in-out infinite !important;
}

@keyframes btn-glow-gold {
    0%, 100% { box-shadow: 0 4px 15px rgba(212, 168, 83, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(212, 168, 83, 0.7); }
}
@keyframes btn-glow-red {
    0%, 100% { box-shadow: 0 4px 15px rgba(225, 6, 0, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(225, 6, 0, 0.7); }
}
@keyframes btn-glow-blue {
    0%, 100% { box-shadow: 0 4px 15px rgba(0, 122, 194, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(0, 122, 194, 0.7); }
}
/* ========== TRUST METRICS INDICATOR ========== */
.trust-metrics {
    display: inline-flex;
    align-items: stretch;
    margin: 24px 0 16px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .08) 0, rgba(255, 255, 255, .03) 100%);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: .3s;
}

.trust-metrics:hover {
    border-color: rgba(220, 38, 38, .4);
    box-shadow: 0 15px 40px rgba(220, 38, 38, .15);
    transform: translateY(-2px);
}

.trust-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    position: relative;
    min-width: 90px;
    transition: .3s;
}

.trust-metric:hover { background: rgba(255, 255, 255, .03); }

.trust-metric:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background: var(--border);
}

.trust-metric-value {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    display: flex;
    align-items: baseline;
    color: var(--text);
}

.trust-metric-value .symbol {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-left: 1px;
}

.trust-metric.primary .trust-metric-value { color: var(--racing-red-bright); }

.trust-metric-trend {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 10px;
    font-weight: 600;
    color: #22C55E;
    margin-top: 2px;
}

.trust-metric-trend svg { width: 10px; height: 10px; }

.trust-metric-label {
    font-size: 9px;
    font-weight: 500;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

.trust-live {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    background: rgba(220, 38, 38, .08);
    border-left: 1px solid rgba(220, 38, 38, .2);
    transition: .3s;
}

.trust-live:hover { background: rgba(220, 38, 38, .12); }

.trust-live-indicator { display: flex; align-items: center; gap: 6px; }

.trust-live-dot {
    width: 6px;
    height: 6px;
    background: var(--racing-red-bright);
    border-radius: 50%;
    animation: blink 2s infinite;
}

.trust-live-text {
    font-size: 10px;
    font-weight: 700;
    color: var(--racing-red);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.trust-live-sublabel {
    font-size: 9px;
    color: var(--text-tertiary);
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trust-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    color: var(--text-tertiary);
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: .3s;
}

.trust-link:hover { color: var(--racing-red); }
.trust-link svg { width: 14px; height: 14px; transition: .3s; }
.trust-link:hover svg { transform: translateX(3px); }

[dir=rtl] .trust-metrics { flex-direction: row-reverse; }
[dir=rtl] .trust-metric:not(:last-child)::after { right: auto; left: 0; }
[dir=rtl] .trust-live { border-left: none; border-right: 1px solid rgba(220, 38, 38, .2); }
[dir=rtl] .trust-metric-value { flex-direction: row-reverse; }
[dir=rtl] .trust-metric-value .symbol { margin-left: 0; margin-right: 1px; }
[dir=rtl] .trust-metric-trend { flex-direction: row-reverse; }
[dir=rtl] .trust-link { flex-direction: row-reverse; }
[dir=rtl] .trust-link svg { transform: rotate(180deg); }
[dir=rtl] .trust-link:hover svg { transform: rotate(180deg) translateX(-3px); }
[dir=rtl] .pred-confidence-group { right: auto; left: 1rem; }
[dir=rtl] .pred-header { flex-direction: row-reverse; }
[dir=rtl] .confidence { text-align: left; }

@media (max-width: 768px) {
    .trust-metrics { flex-wrap: wrap; max-width: 300px; }
    .trust-metric { padding: 12px 18px; flex: 1 1 45%; }
    .trust-metric:nth-child(2)::after { display: none; }
    .trust-live { flex: 1 1 100%; border-left: none; border-top: 1px solid rgba(220, 38, 38, .2); flex-direction: row; gap: 10px; padding: 10px 18px; }
    .trust-live-sublabel { margin-top: 0; margin-left: 8px; }
    [dir=rtl] .trust-live { flex-direction: row-reverse; border-right: none; }
    [dir=rtl] .trust-live-sublabel { margin-left: 0; margin-right: 8px; }
}

@media (max-width: 480px) {
    .trust-metric { padding: 10px 14px; }
    .trust-metric-value { font-size: 20px; }
}

/* ========== URIN NEURAL NETWORK BADGE ========== */
.urin-badge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(59, 130, 246, 0.08));
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 12px;
    padding: 14px 18px;
    margin: 20px 0 16px 0;
    gap: 16px;
    flex-wrap: wrap;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.urin-indicator { display: flex; align-items: center; gap: 10px; }
.urin-dot { width: 8px; height: 8px; background: #10b981; border-radius: 50%; box-shadow: 0 0 8px rgba(16, 185, 129, 0.6); animation: urinPulse 2s ease-in-out infinite; }
@keyframes urinPulse { 0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(16, 185, 129, 0.6); } 50% { opacity: 0.7; box-shadow: 0 0 12px rgba(16, 185, 129, 0.3); } }
.urin-label { color: rgba(255,255,255,0.5); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; }
.urin-name { color: #a78bfa; font-weight: 700; font-size: 0.9rem; letter-spacing: 0.02em; }
.urin-stats { display: flex; align-items: center; gap: 10px; font-size: 0.75rem; color: rgba(255,255,255,0.6); }
.urin-stat { display: flex; align-items: center; gap: 4px; }
.urin-stat strong { color: #fff; font-weight: 700; font-size: 0.85rem; }
.urin-divider { color: rgba(255,255,255,0.2); }
.urin-sports { color: #a78bfa; font-weight: 600; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.03em; }
[dir=rtl] .urin-badge { flex-direction: row-reverse; }
[dir=rtl] .urin-indicator { flex-direction: row-reverse; }
[dir=rtl] .urin-stats { flex-direction: row-reverse; }
@media (max-width: 600px) { .urin-badge { flex-direction: column; align-items: flex-start; gap: 10px; padding: 12px 14px; } .urin-stats { flex-wrap: wrap; gap: 8px; } [dir=rtl] .urin-badge { align-items: flex-end; } }
/* ========== END URIN BADGE ========== */

/* ============================================================
   RTL — Mobile menu, Race Directory, Command Center
   Audit 2026-06-12: Arabic users were seeing LTR positioning on
   .mobile-menu nav (right-pointing arrow + hover padding), .rd-*
   (race-directory accent + arrow + active border + meta column),
   and .rhcc-* (Command Center caret + dropdown alignment + race
   link arrow). All three surfaces use physical margin/padding/
   text-align rules that don't auto-flip on [dir=rtl]. Overrides
   below mirror direction without DOM changes.
   ============================================================ */

/* — Mobile menu nav — */
[dir=rtl] .mobile-menu nav a::after { content: '←'; }
[dir=rtl] .mobile-menu nav a:hover { padding-left: 0; padding-right: 1.5rem; }

/* — Race directory inside the mobile drawer — */
[dir=rtl] .rd-accent { margin-right: 0; margin-left: 14px; }
[dir=rtl] .rd-arrow  { margin-left: 0; margin-right: auto; }
[dir=rtl] .rd-race-btn.active { border-left-color: transparent; border-right: 3px solid currentColor; }
[dir=rtl] .rd-race-meta { align-items: flex-start; margin-left: 0; margin-right: auto; }

/* — Command Center carousel — */
[dir=rtl] .rhcc-caret      { margin-left: 0; margin-right: 3px; }
[dir=rtl] .rhcc-dropdown   { text-align: right; }
[dir=rtl] .rhcc-race-arrow { margin-left: 0; margin-right: 8px; transform: scaleX(-1); }
[dir=rtl] .rhcc-race-arrow:hover { transform: scaleX(-1) translateX(2px); }
/* .rhcc-dropdown is positioned with left:8px;right:8px (symmetric)
   so absolute-position rules need no override. flex items inside
   the carousel reverse main-axis order natively when [dir=rtl] is
   set on the parent — no flex-direction overrides needed. */

.btn-primary{color:#fff !important}
@keyframes goldPulse { 0%, 100% { box-shadow: 0 0 5px rgba(212,175,55,0.3), 0 0 10px rgba(212,175,55,0.1); } 50% { box-shadow: 0 0 15px rgba(212,175,55,0.6), 0 0 30px rgba(212,175,55,0.3); } }
#heroHolyBull { animation: goldPulse 2s ease-in-out infinite; }
    