        :root {
            --black: #06080c;
            --deep: #0a0d14;
            --dark: #0f131c;
            --card: #131820;
            --card-hover: #181e29;
            --border: rgba(255, 255, 255, 0.06);
            --border-light: rgba(255, 255, 255, 0.1);
            --orange: #FF5F1F;
            --orange-bright: #FF7B3D;
            --orange-soft: rgba(255, 95, 31, 0.08);
            --blue: #3B8EFF;
            --blue-glow: rgba(59, 142, 255, 0.2);
            --white: #FFFFFF;
            --grey: #6B7280;
            --light-grey: #9CA3AF;
            --lighter-grey: #D1D5DB;
            --gradient-1: linear-gradient(135deg, #FF5F1F 0%, #FF3D00 50%, #FF7B3D 100%);
            --radius-sm: 10px;
            --radius: 16px;
            --radius-lg: 24px;
            --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        html {
            scroll-behavior: smooth;
            scrollbar-width: thin;
            scrollbar-color: #1f2937 #0a0d14;
        }
        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: #0a0d14;
        }
        ::-webkit-scrollbar-thumb {
            background: #1f2937;
            border-radius: 3px;
        }

        body {
            background: var(--black);
            color: var(--white);
            font-family: 'DM Sans', 'Inter', sans-serif;
            overflow-x: hidden;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* ─── NAV ─── */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 14px 32px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(6, 8, 12, 0.82);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid var(--border);
            transition: all var(--transition);
        }
        nav.scrolled {
            padding: 8px 32px;
            background: rgba(6, 8, 12, 0.94);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            z-index: 101;
        }
        .nav-logo-icon {
            width: 36px;
            height: 36px;
            background: var(--card);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--border);
            font-size: 18px;
        }
        .nav-logo-text {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 22px;
            letter-spacing: 1.5px;
            color: var(--white);
            font-weight: 700;
        }
        .nav-links {
            display: flex;
            gap: 28px;
            list-style: none;
            align-items: center;
        }
        .nav-links a {
            color: var(--grey);
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
            transition: color var(--transition-fast);
            letter-spacing: 0.3px;
        }
        .nav-links a:hover {
            color: var(--white);
        }
        .nav-cta {
            background: var(--gradient-1) !important;
            color: var(--white) !important;
            padding: 9px 18px !important;
            border-radius: 100px !important;
            font-weight: 600 !important;
            font-size: 12.5px !important;
            transition: all var(--transition) !important;
            letter-spacing: 0.4px !important;
            text-decoration: none !important;
            display: inline-flex !important;
            align-items: center !important;
            gap: 6px !important;
        }
        .nav-cta:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 25px rgba(255, 95, 31, 0.25);
            color: var(--white) !important;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 101;
            padding: 8px;
            flex-direction: column;
            gap: 5px;
        }
        .mobile-menu-btn span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--white);
            border-radius: 2px;
            transition: all var(--transition);
        }
        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }
        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }
        .mobile-menu {
            position: fixed;
            inset: 0;
            background: rgba(6, 8, 12, 0.96);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 99;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 28px;
            opacity: 0;
            pointer-events: none;
            transition: opacity var(--transition);
        }
        .mobile-menu.active {
            opacity: 1;
            pointer-events: all;
        }
        .mobile-menu a {
            color: var(--white);
            text-decoration: none;
            font-size: 26px;
            font-weight: 700;
            font-family: 'Bebas Neue', sans-serif;
            letter-spacing: 2px;
        }
        .mobile-menu .mobile-cta {
            background: var(--gradient-1);
            padding: 14px 32px;
            border-radius: 100px;
            font-size: 18px !important;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        /* ─── HERO ─── */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 140px 32px 100px;
            position: relative;
            overflow: hidden;
            isolation: isolate;
        }
        .hero-bg {
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255, 95, 31, 0.1) 0%, transparent 60%),
                radial-gradient(ellipse 50% 35% at 25% 75%, rgba(59, 142, 255, 0.05) 0%, transparent 50%);
            z-index: -1;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 95, 31, 0.07);
            border: 1px solid rgba(255, 95, 31, 0.2);
            border-radius: 100px;
            padding: 7px 18px;
            font-size: 11px;
            font-weight: 600;
            color: var(--orange-bright);
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 32px;
            animation: fadeUp 0.6s ease both;
        }
        .hero-badge::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--orange);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.4;
                transform: scale(1.5);
            }
        }
        .hero-title {
            font-family: 'DM Sans', 'Inter', sans-serif;
            font-size: clamp(34px, 4.5vw, 48px);
            line-height: 1.18;
            letter-spacing: -0.4px;
            font-weight: 700;
            max-width: 650px;
            margin-bottom: 14px;
            animation: fadeUp 0.6s 0.1s ease both;
            color: var(--white);
        }
        .hero-title .highlight {
            color: var(--orange);
        }
        .hero-subtitle {
            font-size: clamp(16px, 2.2vw, 18px);
            color: var(--light-grey);
            max-width: 530px;
            line-height: 1.55;
            margin-bottom: 10px;
            animation: fadeUp 0.6s 0.2s ease both;
            font-weight: 400;
        }
        .hero-differentiator {
            font-family: 'Space Mono', monospace;
            font-size: 12.5px;
            color: var(--orange);
            letter-spacing: 0.6px;
            margin-bottom: 36px;
            animation: fadeUp 0.6s 0.25s ease both;
            text-transform: uppercase;
        }
        .hero-actions {
            display: flex;
            gap: 14px;
            align-items: center;
            flex-wrap: wrap;
            justify-content: center;
            animation: fadeUp 0.6s 0.35s ease both;
            margin-bottom: 56px;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--gradient-1);
            color: var(--white);
            padding: 15px 32px;
            border-radius: 100px;
            font-size: 15px;
            font-weight: 700;
            text-decoration: none;
            transition: all var(--transition);
            letter-spacing: 0.3px;
            border: none;
            cursor: pointer;
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 40px rgba(255, 95, 31, 0.25);
        }
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: var(--white);
            padding: 15px 26px;
            border-radius: 100px;
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            border: 1px solid var(--border-light);
            transition: all var(--transition);
            cursor: pointer;
        }
        .btn-secondary:hover {
            border-color: rgba(255, 255, 255, 0.22);
            background: rgba(255, 255, 255, 0.03);
            transform: translateY(-2px);
        }
        .hero-stats {
            display: flex;
            gap: 44px;
            align-items: center;
            animation: fadeUp 0.6s 0.45s ease both;
        }
        .stat-item {
            text-align: center;
        }
        .stat-num {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 36px;
            color: var(--orange);
            line-height: 1;
        }
        .stat-label {
            font-size: 11px;
            color: var(--grey);
            letter-spacing: 0.6px;
            margin-top: 4px;
            text-transform: uppercase;
        }
        .stat-divider {
            width: 1px;
            height: 38px;
            background: var(--border);
        }
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ─── SECTIONS ─── */
        section {
            padding: 96px 40px;
        }
        .section-tag {
            font-family: 'Space Mono', monospace;
            font-size: 10.5px;
            color: var(--orange);
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 14px;
            display: inline-block;
            background: var(--orange-soft);
            padding: 5px 12px;
            border-radius: 100px;
            border: 1px solid rgba(255, 95, 31, 0.12);
        }
        .section-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(42px, 5vw, 68px);
            line-height: 0.94;
            letter-spacing: 1.5px;
            margin-bottom: 16px;
            font-weight: 700;
        }
        .section-desc {
            font-size: 16px;
            color: var(--light-grey);
            max-width: 520px;
            line-height: 1.6;
            font-weight: 350;
        }

        /* ─── SCREENSHOTS ─── */
        .screenshots-section {
            background: var(--deep);
        }
        .screenshots-inner {
            max-width: 1100px;
            margin: 0 auto;
            text-align: center;
        }
        .screenshots-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
            margin-top: 40px;
        }
        .screenshot-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
            transition: all var(--transition);
        }
        .screenshot-card:hover {
            border-color: var(--border-light);
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
        }
        .screenshot-card img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }
        .screenshot-label {
            padding: 10px 12px;
            font-size: 11px;
            color: var(--grey);
            letter-spacing: 0.4px;
            font-weight: 500;
            text-align: center;
            background: rgba(0, 0, 0, 0.3);
        }

        /* ─── HOW IT WORKS ─── */
        .how-section {
            background: var(--black);
        }
        .how-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }
        .steps {
            display: flex;
            flex-direction: column;
            gap: 0;
            margin-top: 36px;
        }
        .step {
            display: flex;
            gap: 22px;
            padding: 26px 0;
            border-bottom: 1px solid var(--border);
        }
        .step:last-child {
            border-bottom: none;
        }
        .step-num {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 44px;
            color: rgba(255, 255, 255, 0.05);
            line-height: 1;
            min-width: 48px;
            font-weight: 700;
        }
        .step-content h3 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 5px;
            letter-spacing: -0.2px;
        }
        .step-content p {
            font-size: 13.5px;
            color: var(--light-grey);
            line-height: 1.55;
            font-weight: 350;
        }
        .how-visual {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .phone-mockup {
            width: 240px;
            height: 480px;
            background: #0d1118;
            border-radius: 36px;
            border: 2px solid rgba(255, 255, 255, 0.08);
            position: relative;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
        }
        .phone-screen {
            position: absolute;
            inset: 12px;
            background: #060a10;
            border-radius: 26px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }
        .phone-ring {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            border: 3px solid transparent;
            border-top-color: var(--blue);
            border-right-color: var(--blue);
            animation: spin 4s linear infinite;
            box-shadow: 0 0 25px var(--blue-glow);
        }
        .phone-timer {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-family: 'Bebas Neue', sans-serif;
            font-size: 34px;
            letter-spacing: 1px;
            font-weight: 700;
        }
        .phone-tag {
            background: rgba(255, 95, 31, 0.1);
            border: 1px solid rgba(255, 95, 31, 0.18);
            border-radius: 16px;
            padding: 5px 14px;
            font-size: 11px;
            color: var(--orange-bright);
            font-weight: 600;
        }
        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* ─── HOW IT REALLY WORKS ─── */
        .transparency-section {
            background: var(--deep);
        }
        .transparency-inner {
            max-width: 720px;
            margin: 0 auto;
            text-align: center;
        }
        .transparency-list {
            text-align: left;
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 32px;
        }
        .transparency-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 18px 22px;
            background: var(--card);
            border-radius: var(--radius-sm);
            border: 1px solid var(--border);
            font-size: 14px;
            color: var(--lighter-grey);
            line-height: 1.55;
        }
        .transparency-icon {
            flex-shrink: 0;
            font-size: 18px;
            margin-top: 1px;
        }
        .transparency-item strong {
            color: var(--white);
            font-weight: 600;
        }

        /* ─── FEATURES ─── */
        .features-section {
            background: var(--black);
        }
        .features-inner {
            max-width: 1100px;
            margin: 0 auto;
        }
        .features-header {
            margin-bottom: 48px;
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            background: var(--border);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            overflow: hidden;
        }
        .feature-card {
            background: var(--card);
            padding: 38px 30px;
            transition: background var(--transition-fast);
        }
        .feature-card:hover {
            background: var(--card-hover);
        }
        .feature-icon {
            font-size: 26px;
            margin-bottom: 16px;
        }
        .feature-card h3 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .feature-card p {
            font-size: 13.5px;
            color: var(--light-grey);
            line-height: 1.55;
            font-weight: 350;
        }

        /* ─── WHY FOCUSPORT ─── */
        .why-section {
            background: var(--deep);
        }
        .why-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 72px;
            align-items: start;
        }
        .comparison {
            display: flex;
            flex-direction: column;
            gap: 9px;
        }
        .comparison-label {
            font-family: 'Space Mono', monospace;
            font-size: 10px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 2px;
            padding: 5px 10px;
            border-radius: 5px;
            display: inline-block;
            width: fit-content;
        }
        .comp-other {
            color: var(--grey);
            background: rgba(107, 114, 128, 0.06);
        }
        .comp-focusport {
            color: var(--orange);
            margin-top: 16px;
            background: rgba(255, 95, 31, 0.06);
        }
        .comp-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 13px 18px;
            background: var(--card);
            border-radius: var(--radius-sm);
            border: 1px solid var(--border);
            font-size: 13.5px;
        }
        .comp-item.bad {
            opacity: 0.5;
        }
        .comp-item.good {
            border-color: rgba(255, 95, 31, 0.18);
            background: rgba(255, 95, 31, 0.03);
            font-weight: 500;
        }
        .comp-icon {
            font-size: 15px;
            flex-shrink: 0;
        }

        /* ─── FAQ ─── */
        .faq-section {
            background: var(--black);
        }
        .faq-inner {
            max-width: 720px;
            margin: 0 auto;
            text-align: center;
        }
        .faq-inner .section-title {
            margin-bottom: 44px;
        }
        .faq-list {
            text-align: left;
            display: flex;
            flex-direction: column;
            gap: 1px;
            background: var(--border);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            overflow: hidden;
        }
        .faq-item {
            background: var(--card);
            border: none;
            padding: 0;
        }
        .faq-q {
            width: 100%;
            background: none;
            border: none;
            color: var(--white);
            font-family: 'DM Sans', 'Inter', sans-serif;
            font-size: 14.5px;
            font-weight: 600;
            padding: 21px 24px;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            transition: color var(--transition-fast);
        }
        .faq-q:hover {
            color: var(--orange);
        }
        .faq-arrow {
            font-size: 16px;
            transition: transform var(--transition);
            flex-shrink: 0;
            color: var(--grey);
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.02);
        }
        .faq-item.open .faq-arrow {
            transform: rotate(180deg);
            color: var(--orange);
            background: rgba(255, 95, 31, 0.08);
        }
        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            font-size: 13.5px;
            color: var(--light-grey);
            line-height: 1.6;
            font-weight: 350;
            padding: 0 24px;
        }
        .faq-item.open .faq-a {
            max-height: 260px;
            padding: 0 24px 20px;
        }

        /* ─── MID CTA ─── */
        .mid-cta-section {
            background: var(--deep);
            text-align: center;
            padding: 60px 24px;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }
        .mid-cta-inner {
            max-width: 560px;
            margin: 0 auto;
        }
        .mid-cta-text {
            font-size: 19px;
            font-weight: 600;
            margin-bottom: 18px;
            letter-spacing: -0.3px;
        }
        .mid-cta-text span {
            color: var(--orange);
        }

        /* ─── BOTTOM CTA ─── */
        .cta-section {
            background: var(--black);
            text-align: center;
            padding: 96px 24px;
            position: relative;
            overflow: hidden;
        }
        .cta-glow {
            position: absolute;
            width: 350px;
            height: 180px;
            background: radial-gradient(ellipse, rgba(255, 95, 31, 0.1) 0%, transparent 70%);
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
        }
        .cta-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(44px, 6.5vw, 80px);
            line-height: 0.9;
            letter-spacing: 1.5px;
            margin-bottom: 16px;
            position: relative;
            font-weight: 700;
        }
        .cta-title .line-orange {
            color: var(--orange);
        }
        .cta-desc {
            font-size: 16px;
            color: var(--light-grey);
            margin-bottom: 36px;
            font-weight: 350;
            position: relative;
        }

        /* ─── FOOTER ─── */
        footer {
            background: var(--black);
            border-top: 1px solid var(--border);
            padding: 40px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }
        .footer-brand {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 20px;
            letter-spacing: 1.5px;
            font-weight: 700;
        }
        .footer-links {
            display: flex;
            gap: 26px;
            list-style: none;
            flex-wrap: wrap;
        }
        .footer-links a {
            color: var(--grey);
            text-decoration: none;
            font-size: 12.5px;
            font-weight: 500;
            transition: color var(--transition-fast);
        }
        .footer-links a:hover {
            color: var(--white);
        }
        .footer-copy {
            font-size: 12px;
            color: var(--grey);
            font-weight: 400;
        }

        /* ─── SCROLL REVEAL ─── */
        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ─── PLAY STORE BADGE ─── */
        .play-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #000;
            color: var(--white);
            padding: 10px 20px;
            border-radius: 8px;
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all var(--transition-fast);
        }
        .play-badge:hover {
            border-color: rgba(255, 255, 255, 0.3);
            background: #111;
        }
        .play-badge svg {
            flex-shrink: 0;
        }

        /* ─── RESPONSIVE ─── */
        @media (max-width: 900px) {
            nav {
                padding: 12px 18px;
            }
            nav.scrolled {
                padding: 8px 18px;
            }
            .nav-links {
                display: none;
            }
            .mobile-menu-btn {
                display: flex;
            }
            section {
                padding: 64px 20px;
            }
            .how-inner,
            .why-inner {
                grid-template-columns: 1fr;
                gap: 36px;
            }
            .features-grid {
                grid-template-columns: 1fr;
            }
            .screenshots-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .hero-stats {
                gap: 18px;
                flex-wrap: wrap;
                justify-content: center;
            }
            .stat-divider {
                display: none;
            }
            .phone-mockup {
                width: 200px;
                height: 400px;
            }
            .phone-ring {
                width: 110px;
                height: 110px;
            }
            .phone-timer {
                font-size: 26px;
            }
            footer {
                flex-direction: column;
                text-align: center;
                padding: 28px 20px;
            }
            .footer-links {
                justify-content: center;
            }
        }
        @media (max-width: 480px) {
            .hero-title {
                font-size: clamp(26px, 7vw, 32px);
            }
            .hero-subtitle {
                font-size: 14px;
            }
            .btn-primary,
            .btn-secondary {
                padding: 14px 20px;
                font-size: 13px;
                width: 100%;
                justify-content: center;
            }
            .hero-actions {
                flex-direction: column;
                width: 100%;
                max-width: 300px;
            }
            .section-title {
                font-size: clamp(32px, 7vw, 40px);
            }
            .screenshots-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
            .stat-num {
                font-size: 28px;
            }
        }
