/* BLEND — styles for index.html (foundation will move to main.css) */
        /* ===================== RESET & BASE ===================== */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --gold-1: #f5d77a;
            --gold-2: #d4af37;
            --gold-3: #b8942e;
            --bg-deep: #0b0d11;
            --bg-mid: #11151d;
            --glass-bg: rgba(255,255,255,0.035);
            --glass-border: rgba(212,175,55,0.12);
            --glass-border-hover: rgba(212,175,55,0.35);
            --text-primary: #f0ead8;
            --text-muted: rgba(240,234,216,0.45);
            --text-dim: rgba(240,234,216,0.25);
            --glow-gold: rgba(212,175,55,0.18);
            --glow-gold-strong: rgba(245,215,122,0.28);
            --radius-lg: 24px;
            --radius-xl: 36px;
            --radius-card: 20px;
        }

        html {
            scroll-behavior: smooth;
            /* Belt-and-suspenders with body: some mobile browsers (iOS Safari)
               still let the page pan sideways when only <body> clips overflow. */
            overflow-x: hidden;
        }

        body {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            background: var(--bg-deep);
            color: var(--text-primary);
            max-width: 100%;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* ===================== SCROLLBAR ===================== */
        ::-webkit-scrollbar {
            width: 4px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg-deep);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--gold-3);
            border-radius: 2px;
        }

        /* ===================== BACKGROUND LAYERS ===================== */
        .bg-canvas {
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(212,175,55,0.07) 0%, transparent 70%), radial-gradient(ellipse 60% 50% at 80% 60%, rgba(180,140,30,0.05) 0%, transparent 65%), radial-gradient(ellipse 50% 40% at 10% 80%, rgba(100,80,20,0.06) 0%, transparent 60%), linear-gradient(170deg, #11151d 0%, #0b0d11 100%);
        }

        .bg-noise {
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            opacity: 0.025;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
            background-size: 180px;
        }

        /* ===================== UTILITY ===================== */
        .gold-text {
            background: linear-gradient(135deg, var(--gold-1) 0%, var(--gold-2) 50%, var(--gold-3) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .gold-glow {
            filter: drop-shadow(0 0 18px rgba(212,175,55,0.5)) drop-shadow(0 0 40px rgba(212,175,55,0.2));
        }

        .glass {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
        }

        section {
            position: relative;
            z-index: 1;
        }

        .container {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 32px;
        }

        .section-label {
            font-family: 'Inter', sans-serif;
            font-size: 10px;
            font-weight: 500;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--gold-2);
            opacity: 0.7;
            margin-bottom: 16px;
        }

        .section-title {
            font-family: 'Inter', sans-serif;
            font-size: clamp(26px, 3.5vw, 42px);
            font-weight: 300;
            line-height: 1.15;
            letter-spacing: -0.5px;
            margin-bottom: 18px;
        }

        .section-desc {
            font-family: 'Inter', sans-serif;
            font-size: clamp(14px, 1.5vw, 16px);
            font-weight: 300;
            color: var(--text-muted);
            line-height: 1.8;
            max-width: 480px;
        }

        /* ===================== NAVBAR ===================== */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 0 48px;
            height: 68px;
            /* Equal-width left/right zones keep the centre links truly centred
               regardless of how wide the brand or the action buttons are, while
               the buttons themselves stay sized to their content. */
            display: flex;
            align-items: center;
            background: rgba(11,13,17,0.6);
            border-bottom: 1px solid rgba(212,175,55,0.06);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
        }

        .nav-brand {
            font-family: 'Cinzel', serif;
            font-size: 20px;
            font-weight: 700;
            background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            letter-spacing: 3px;
            flex: 1 1 0;
        }

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

        .nav-actions {
            flex: 1 1 0;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 12px;
        }

        /* ===================== HAMBURGER ===================== */
        .nav-hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px 6px;
            border-radius: 8px;
            transition: background 0.2s;
            margin-left: 4px;
        }

            .nav-hamburger:hover {
                background: rgba(212,175,55,0.08);
            }

            .nav-hamburger span {
                display: block;
                width: 20px;
                height: 1.5px;
                background: var(--gold-2);
                transition: all 0.3s ease;
                border-radius: 2px;
                transform-origin: center;
            }

            .nav-hamburger.open span:nth-child(1) {
                transform: translateY(6.5px) rotate(45deg);
            }

            .nav-hamburger.open span:nth-child(2) {
                opacity: 0;
                transform: scaleX(0);
            }

            .nav-hamburger.open span:nth-child(3) {
                transform: translateY(-6.5px) rotate(-45deg);
            }

        /* ===================== MOBILE MENU ===================== */
        .mobile-menu {
            position: fixed;
            top: 72px;
            left: 0;
            right: 0;
            z-index: 98;
            background: rgba(11,13,17,0.98);
            border-bottom: 1px solid rgba(212,175,55,0.1);
            backdrop-filter: blur(28px);
            -webkit-backdrop-filter: blur(28px);
            transform: translateY(-8px);
            opacity: 0;
            pointer-events: none;
            transition: transform 0.32s cubic-bezier(0.16,1,0.3,1), opacity 0.25s ease;
            padding: 20px 28px 28px;
        }

            .mobile-menu.open {
                transform: translateY(0);
                opacity: 1;
                pointer-events: all;
            }

            .mobile-menu ul {
                list-style: none;
                display: flex;
                flex-direction: column;
            }

                .mobile-menu ul li a {
                    display: block;
                    padding: 14px 0;
                    font-size: 11px;
                    letter-spacing: 2.5px;
                    text-transform: uppercase;
                    color: var(--text-muted);
                    text-decoration: none;
                    transition: color 0.25s;
                    border-bottom: 1px solid rgba(212,175,55,0.07);
                    font-weight: 400;
                    font-family: 'Inter', sans-serif;
                }

                .mobile-menu ul li:last-child a {
                    border-bottom: none;
                }

                .mobile-menu ul li a:hover {
                    color: var(--gold-1);
                }

        .mobile-menu-cta {
            margin-top: 20px;
            display: inline-block;
            padding: 11px 28px;
            border-radius: 50px;
            background: linear-gradient(135deg, var(--gold-1) 0%, var(--gold-2) 100%);
            color: #0b0d11;
            font-size: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 600;
            text-decoration: none;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s;
            box-shadow: 0 4px 20px rgba(212,175,55,0.25);
        }

            .mobile-menu-cta:hover {
                box-shadow: 0 6px 30px rgba(212,175,55,0.4);
                transform: translateY(-1px);
            }

        .nav-links a {
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s;
            font-weight: 400;
        }

            .nav-links a:hover {
                color: var(--gold-1);
            }

        .nav-cta {
            padding: 9px 22px;
            border: 1px solid rgba(212,175,55,0.3);
            border-radius: 40px;
            font-size: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold-1);
            text-decoration: none;
            transition: all 0.3s;
            font-weight: 500;
            background: rgba(212,175,55,0.04);
        }

            .nav-cta:hover {
                background: rgba(212,175,55,0.12);
                border-color: var(--gold-1);
                box-shadow: 0 0 20px rgba(212,175,55,0.15);
            }

        /* ===================== HERO ===================== */
        #hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 120px 32px 80px;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 7px 18px;
            border: 1px solid rgba(212,175,55,0.2);
            border-radius: 40px;
            background: rgba(212,175,55,0.04);
            font-size: 10px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold-2);
            margin-bottom: 48px;
            animation: fadeUp 0.8s ease both;
        }

            .hero-eyebrow::before {
                content: '';
                width: 5px;
                height: 5px;
                border-radius: 50%;
                background: var(--gold-2);
                box-shadow: 0 0 8px var(--gold-2);
                animation: pulse 2s infinite;
            }

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

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

        .hero-brand {
            font-family: 'Cinzel', serif;
            font-size: clamp(38px, 6vw, 70px);
            font-weight: 700;
            letter-spacing: 0.22em;
            line-height: 1;
            text-indent: 0.22em;
            background: linear-gradient(160deg, #f8e49a 0%, #d4af37 40%, #a8841f 75%, #c9a52e 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 0 22px rgba(212,175,55,0.3)) drop-shadow(0 0 60px rgba(212,175,55,0.1));
            margin-bottom: 22px;
            animation: fadeUp 0.9s ease 0.1s both;
        }

        .hero-headline {
            font-family: 'Cinzel', serif;
            font-size: clamp(28px, 4.4vw, 50px);
            font-weight: 600;
            letter-spacing: -0.3px;
            line-height: 1.2;
            color: var(--text-primary);
            margin-bottom: 22px;
            animation: fadeUp 0.9s ease 0.2s both;
        }

        .hero-desc {
            font-size: clamp(13px, 1.5vw, 15px);
            font-weight: 300;
            color: var(--text-muted);
            line-height: 1.8;
            max-width: 500px;
            margin: 0 auto 52px;
            animation: fadeUp 0.9s ease 0.3s both;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeUp 0.9s ease 0.4s both;
            margin-bottom: 90px;
        }

        .btn-primary {
            padding: 16px 40px;
            border-radius: 50px;
            background: linear-gradient(135deg, var(--gold-1) 0%, var(--gold-2) 100%);
            color: #0b0d11;
            font-size: 11px;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            font-weight: 600;
            border: none;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.35s;
            box-shadow: 0 4px 30px rgba(212,175,55,0.3), 0 1px 0 rgba(255,255,255,0.15) inset;
            font-family: 'Inter', sans-serif;
        }

            .btn-primary:hover {
                transform: translateY(-2px);
                box-shadow: 0 8px 40px rgba(212,175,55,0.45), 0 1px 0 rgba(255,255,255,0.2) inset;
            }

        .btn-secondary {
            padding: 16px 40px;
            border-radius: 50px;
            background: transparent;
            color: var(--gold-1);
            font-size: 11px;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            font-weight: 500;
            border: 1px solid rgba(212,175,55,0.3);
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.35s;
            font-family: 'Inter', sans-serif;
        }

            .btn-secondary:hover {
                border-color: var(--gold-1);
                background: rgba(212,175,55,0.07);
                transform: translateY(-2px);
                box-shadow: 0 4px 24px rgba(212,175,55,0.12);
            }

        /* HERO SCREENSHOT PLACEHOLDER */
        .hero-screenshot {
            width: 100%;
            max-width: 860px;
            margin: 0 auto;
            aspect-ratio: 16/9;
            border-radius: var(--radius-xl);
            border: 1px solid rgba(212,175,55,0.15);
            background: linear-gradient(160deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
            backdrop-filter: blur(20px);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 0 0 1px rgba(212,175,55,0.08), 0 0 80px rgba(212,175,55,0.08), 0 40px 80px rgba(0,0,0,0.5), 0 80px 120px rgba(0,0,0,0.3);
            animation: fadeUp 1s ease 0.5s both;
        }

            .hero-screenshot::before {
                content: '';
                position: absolute;
                top: -1px;
                left: -1px;
                right: -1px;
                height: 2px;
                background: linear-gradient(90deg, transparent, rgba(212,175,55,0.5), transparent);
            }

            .hero-screenshot::after {
                content: '';
                position: absolute;
                inset: 0;
                background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(212,175,55,0.06) 0%, transparent 70%);
                pointer-events: none;
            }

        .placeholder-label {
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--gold-2);
            opacity: 0.4;
        }

        .placeholder-icon {
            width: 44px;
            height: 44px;
            border: 1px solid rgba(212,175,55,0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0.35;
        }

            .placeholder-icon svg {
                width: 20px;
                height: 20px;
                fill: var(--gold-2);
            }

        /* ===================== DIVIDER ===================== */
        .divider {
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(212,175,55,0.15), transparent);
            margin: 0;
        }

        /* ===================== HOW IT WORKS ===================== */
        #how-it-works {
            padding: 120px 0;
        }

        .how-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .how-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .how-card {
            padding: 44px 36px;
            border-radius: var(--radius-card);
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(16px);
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }

            .how-card::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 1px;
                background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
                opacity: 0;
                transition: opacity 0.4s;
            }

            .how-card:hover {
                border-color: var(--glass-border-hover);
                background: rgba(255,255,255,0.05);
                transform: translateY(-4px);
                box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 30px rgba(212,175,55,0.06);
            }

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

        .how-card-number {
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            letter-spacing: 3px;
            color: var(--gold-2);
            opacity: 0.5;
            margin-bottom: 28px;
        }

        .how-card-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            border: 1px solid rgba(212,175,55,0.2);
            background: rgba(212,175,55,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 28px;
        }

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

        .how-card h3 {
            font-family: 'Inter', sans-serif;
            font-size: 17px;
            font-weight: 500;
            letter-spacing: -0.2px;
            color: var(--text-primary);
            margin-bottom: 14px;
            background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .how-card p {
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 300;
            color: var(--text-muted);
            line-height: 1.75;
        }

        /* ===================== FEATURED BRANDS ===================== */
        #brands {
            padding: 100px 0;
        }

        .brands-header {
            text-align: center;
            margin-bottom: 60px;
        }

        /* ---- Draggable centered carousel ---- */
        .carousel-viewport {
            display: flex;
            justify-content: safe center; /* centred when few, scrollable when many */
            overflow-x: auto;
            overflow-y: hidden;
            width: 100%;
            position: relative;
            cursor: grab;
            scrollbar-width: none;
            -ms-overflow-style: none;
            mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
            -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
        }

            .carousel-viewport::-webkit-scrollbar { display: none; }

            .carousel-viewport.dragging {
                cursor: grabbing;
            }

        .carousel-track {
            display: flex;
            gap: 20px;
            flex: 0 0 auto;
            padding: 12px 24px 28px;
        }

        .brand-card {
            flex: 0 0 190px;
            padding: 32px 20px;
            border-radius: var(--radius-card);
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(16px);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 14px;
            transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s;
            cursor: grab;
            user-select: none;
        }

        .carousel-viewport.dragging .brand-card {
            cursor: grabbing;
        }

        .brand-card:hover {
            border-color: var(--glass-border-hover);
            transform: translateY(-4px);
            box-shadow: 0 0 40px rgba(212,175,55,0.1), 0 20px 40px rgba(0,0,0,0.25);
        }

        .brand-logo {
            width: 84px;
            height: 84px;
            border-radius: 16px;
            object-fit: contain;
            background: #fff;
            padding: 8px;
            border: 1px solid rgba(212,175,55,0.15);
            pointer-events: none;
        }

        .brand-logo-placeholder {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            border: 1px solid rgba(212,175,55,0.2);
            background: rgba(212,175,55,0.04);
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .brand-logo-placeholder svg {
                width: 24px;
                height: 24px;
                opacity: 0.3;
            }

        .brand-name {
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text-primary);
        }

        /* ===================== APP FEATURES ===================== */
        #features {
            padding: 100px 0;
        }

        .features-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .feature-card {
            padding: 48px 44px;
            border-radius: var(--radius-card);
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(16px);
            display: flex;
            gap: 28px;
            align-items: flex-start;
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }

            .feature-card::after {
                content: '';
                position: absolute;
                bottom: 0;
                right: 0;
                width: 120px;
                height: 120px;
                background: radial-gradient(circle, rgba(212,175,55,0.04) 0%, transparent 70%);
                border-radius: 50%;
                transition: all 0.4s;
            }

            .feature-card:hover {
                border-color: var(--glass-border-hover);
                transform: translateY(-3px);
                box-shadow: 0 16px 40px rgba(0,0,0,0.25), 0 0 20px rgba(212,175,55,0.05);
            }

                .feature-card:hover::after {
                    width: 200px;
                    height: 200px;
                    background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
                }

        .feature-icon {
            width: 48px;
            height: 48px;
            flex-shrink: 0;
            border-radius: 14px;
            border: 1px solid rgba(212,175,55,0.18);
            background: rgba(212,175,55,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .feature-icon svg {
                width: 20px;
                height: 20px;
            }

        .feature-content h3 {
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            font-weight: 500;
            letter-spacing: -0.2px;
            margin-bottom: 12px;
            color: var(--gold-1);
        }

        .feature-content p {
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 300;
            color: var(--text-muted);
            line-height: 1.75;
        }

        /* ===================== SCREENSHOTS ===================== */
        #screenshots {
            padding: 100px 0;
        }

        .screenshots-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .screenshots-row {
            display: flex;
            gap: 28px;
            justify-content: center;
            align-items: flex-end;
        }

        .phone-mockup {
            flex: 0 0 220px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(20px);
            border-radius: 36px;
            overflow: hidden;
            transition: all 0.4s;
            position: relative;
        }

            .phone-mockup.center {
                flex: 0 0 250px;
                transform: translateY(-20px);
                border-color: rgba(212,175,55,0.25);
                box-shadow: 0 0 60px rgba(212,175,55,0.1), 0 40px 80px rgba(0,0,0,0.4);
            }

            .phone-mockup:hover {
                transform: translateY(-8px);
                border-color: var(--glass-border-hover);
            }

            .phone-mockup.center:hover {
                transform: translateY(-26px);
            }

        .phone-notch {
            height: 28px;
            background: rgba(0,0,0,0.4);
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .phone-notch::after {
                content: '';
                width: 70px;
                height: 10px;
                border-radius: 6px;
                background: rgba(0,0,0,0.6);
            }

        .phone-screen {
            aspect-ratio: 9/18;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: linear-gradient(160deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
        }

        .phone-shot {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .phone-home-bar {
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0,0,0,0.2);
        }

            .phone-home-bar::after {
                content: '';
                width: 80px;
                height: 4px;
                border-radius: 3px;
                background: rgba(255,255,255,0.15);
            }

        /* ===================== CTA ===================== */
        #cta {
            padding: 120px 0;
        }

        .cta-inner {
            text-align: center;
            padding: 90px 60px;
            border-radius: var(--radius-xl);
            background: linear-gradient(160deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
            border: 1px solid rgba(212,175,55,0.15);
            backdrop-filter: blur(20px);
            position: relative;
            overflow: hidden;
        }

            .cta-inner::before {
                content: '';
                position: absolute;
                top: -1px;
                left: 10%;
                right: 10%;
                height: 1px;
                background: linear-gradient(90deg, transparent, rgba(212,175,55,0.5), transparent);
            }

            .cta-inner::after {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(212,175,55,0.05) 0%, transparent 65%);
                pointer-events: none;
            }

            .cta-inner h2 {
                font-family: 'Inter', sans-serif;
                font-size: clamp(28px, 4vw, 48px);
                font-weight: 300;
                letter-spacing: -0.5px;
                line-height: 1.2;
                margin-bottom: 16px;
            }

            .cta-inner p {
                font-family: 'Inter', sans-serif;
                font-size: 15px;
                font-weight: 300;
                color: var(--text-muted);
                margin-bottom: 48px;
            }

        /* ===================== FOOTER ===================== */
        footer {
            padding: 80px 0 0;
            border-top: 1px solid rgba(212,175,55,0.08);
            position: relative;
            z-index: 1;
        }

            footer::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 1px;
                background: linear-gradient(90deg, transparent, rgba(212,175,55,0.25), transparent);
            }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.8fr 1fr 1fr 1fr;
            gap: 48px;
            padding-bottom: 64px;
            border-bottom: 1px solid rgba(255,255,255,0.04);
        }

        .footer-col-brand {
        }

        .footer-brand-name {
            font-family: 'Cinzel', serif;
            font-size: 22px;
            font-weight: 700;
            letter-spacing: 4px;
            background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            margin-bottom: 14px;
        }

        .footer-tagline {
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            color: var(--text-dim);
            font-weight: 300;
            line-height: 1.7;
            max-width: 240px;
            display: block;
            margin-bottom: 28px;
        }

        .footer-social {
            display: flex;
            gap: 10px;
        }

        .footer-social-btn {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            border: 1px solid rgba(212,175,55,0.15);
            background: rgba(212,175,55,0.04);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s;
        }

            .footer-social-btn:hover {
                border-color: rgba(212,175,55,0.4);
                background: rgba(212,175,55,0.1);
                transform: translateY(-2px);
            }

            .footer-social-btn svg {
                width: 15px;
                height: 15px;
                stroke: var(--gold-2);
                fill: none;
                stroke-width: 1.5;
                stroke-linecap: round;
                stroke-linejoin: round;
            }

        .footer-col-title {
            font-family: 'Inter', sans-serif;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold-2);
            opacity: 0.6;
            margin-bottom: 20px;
        }

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

            .footer-col-links a {
                font-size: 13px;
                font-weight: 300;
                color: var(--text-muted);
                text-decoration: none;
                transition: color 0.25s;
                letter-spacing: 0.2px;
            }

                .footer-col-links a:hover {
                    color: var(--gold-1);
                }

        .footer-app-badges {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-badge {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 14px;
            border-radius: 12px;
            border: 1px solid rgba(212,175,55,0.15);
            background: rgba(212,175,55,0.04);
            text-decoration: none;
            transition: all 0.3s;
            cursor: pointer;
        }

            .footer-badge:hover {
                border-color: rgba(212,175,55,0.35);
                background: rgba(212,175,55,0.08);
                transform: translateY(-2px);
            }

            .footer-badge svg {
                width: 18px;
                height: 18px;
                flex-shrink: 0;
                fill: var(--gold-2);
            }

        .footer-badge-text {
            display: flex;
            flex-direction: column;
        }

        .footer-badge-sub {
            font-size: 9px;
            font-weight: 400;
            letter-spacing: 1px;
            color: var(--text-dim);
            text-transform: uppercase;
        }

        .footer-badge-store {
            font-size: 13px;
            font-weight: 500;
            color: var(--text-primary);
            letter-spacing: 0.2px;
        }

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

        .footer-copy {
            font-size: 11px;
            color: var(--text-dim);
            letter-spacing: 0.5px;
            font-weight: 300;
        }

        .footer-bottom-links {
            display: flex;
            gap: 24px;
            list-style: none;
        }

            .footer-bottom-links a {
                font-size: 11px;
                color: var(--text-dim);
                text-decoration: none;
                transition: color 0.25s;
                letter-spacing: 0.5px;
            }

                .footer-bottom-links a:hover {
                    color: var(--gold-1);
                }

        .footer-divider-dot {
            width: 3px;
            height: 3px;
            border-radius: 50%;
            background: rgba(212,175,55,0.3);
        }

        /* ===================== ANIMATIONS ===================== */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(24px);
            }

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

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

            100% {
                background-position: 200% center;
            }
        }

        .scroll-reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

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

        /* STAGGER DELAYS */
        .delay-1 {
            transition-delay: 0.1s;
        }

        .delay-2 {
            transition-delay: 0.2s;
        }

        .delay-3 {
            transition-delay: 0.3s;
        }

        .delay-4 {
            transition-delay: 0.4s;
        }

        /* GLOW LINE */
        .glow-line {
            width: 60px;
            height: 1px;
            background: linear-gradient(90deg, var(--gold-2), transparent);
            margin: 20px auto 0;
        }

        /* ===================== RESPONSIVE ===================== */

        /* --- Large desktops (1400px+) --- */
        @media (min-width: 1400px) {
            .container {
                max-width: 1280px;
            }

            .hero-brand {
                font-size: 200px;
            }

            .how-cards {
                gap: 32px;
            }

            .features-grid {
                gap: 32px;
            }
        }

        /* --- Standard desktops (1024px–1399px) --- */
        /* default styles already target this range */

        /* --- Small desktops / large tablets landscape (900px–1023px) --- */
        @media (max-width: 1023px) {
            .container {
                padding: 0 32px;
            }

            .nav-links {
                display: none;
            }

            .nav-cta {
                display: none;
            }

            .nav-hamburger {
                display: flex;
            }

            .mobile-menu {
                top: 72px;
            }

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

            .features-grid {
                gap: 16px;
            }

            .how-card {
                padding: 32px 24px;
            }

            .feature-card {
                padding: 36px 28px;
            }

            .footer-grid {
                grid-template-columns: 1.4fr 1fr 1fr;
                gap: 36px;
            }

            .footer-col-download {
                grid-column: 1 / -1;
            }

            .footer-app-badges {
                flex-direction: row;
                flex-wrap: wrap;
            }
        }

        /* --- Tablets portrait (600px–899px) --- */
        @media (max-width: 899px) {
            nav {
                padding: 0 28px;
            }

            .nav-links {
                display: none;
            }

            .nav-hamburger {
                display: flex;
            }

            .mobile-menu {
                top: 72px;
            }

            #hero {
                padding: 110px 0 70px;
            }

            .hero-brand {
                font-size: clamp(72px, 18vw, 130px);
            }

            .hero-headline {
                font-size: clamp(18px, 3.5vw, 28px);
            }

            .hero-desc {
                font-size: 14px;
                max-width: 460px;
            }

            .hero-screenshot {
                aspect-ratio: 4/3;
            }

            section {
                padding: 80px 0;
            }

            #how-it-works, #brands, #features, #screenshots, #cta {
                padding: 80px 0;
            }

            .how-cards {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .screenshots-row {
                gap: 16px;
            }

            .phone-mockup {
                flex: 0 0 170px;
            }

                .phone-mockup.center {
                    flex: 0 0 200px;
                }

            .cta-inner {
                padding: 70px 48px;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }

            .footer-col-brand {
                grid-column: 1 / -1;
            }

            .footer-tagline {
                max-width: 100%;
            }

            .footer-app-badges {
                flex-direction: row;
                flex-wrap: wrap;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
            }

            .footer-bottom-links {
                flex-wrap: wrap;
                gap: 16px;
            }
        }

        /* --- Mobile landscape / large phones (480px–599px) --- */
        @media (max-width: 599px) {
            nav {
                padding: 0 20px;
                height: 64px;
            }

            .mobile-menu {
                top: 64px;
            }

            .nav-cta {
                padding: 7px 16px;
                font-size: 9px;
            }

            .lang-btn {
                padding: 4px 10px;
                font-size: 9px;
            }

            .container {
                padding: 0 20px;
            }

            #hero {
                padding: 100px 0 60px;
            }

            .hero-eyebrow {
                font-size: 9px;
                padding: 6px 14px;
                margin-bottom: 32px;
            }

            .hero-brand {
                /* Smaller + tighter tracking so "BLEND" never runs past the
                   screen edge (0.22em tracking was overflowing right on phones). */
                font-size: clamp(42px, 13vw, 62px);
                letter-spacing: 0.14em;
                text-indent: 0.14em;
                margin-bottom: 20px;
            }

            .hero-headline {
                font-size: clamp(17px, 4.6vw, 22px);
            }

            .hero-desc {
                font-size: 13px;
                margin-bottom: 36px;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
                gap: 12px;
                margin-bottom: 60px;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                max-width: 280px;
                text-align: center;
                padding: 15px 32px;
            }

            .hero-screenshot {
                aspect-ratio: 1/1;
                border-radius: 24px;
            }

            #how-it-works, #brands, #features, #screenshots, #cta {
                padding: 70px 0;
            }

            .how-card {
                padding: 28px 22px;
            }

            .how-card-icon {
                margin-bottom: 20px;
            }

            .brands-header {
                margin-bottom: 40px;
            }

            .brand-card {
                flex: 0 0 160px;
                padding: 28px 18px;
            }

            .feature-card {
                flex-direction: column;
                gap: 16px;
                padding: 28px 22px;
            }

            /* Swipeable coverflow: all three phones, snap-centred; JS brings the
               centred one to the foreground with perspective. */
            .screenshots-row {
                justify-content: flex-start;
                align-items: center;
                gap: 18px;
                overflow-x: auto;
                overflow-y: visible;
                scroll-snap-type: x mandatory;
                scrollbar-width: none;
                -ms-overflow-style: none;
                padding: 24px calc(50% - 105px) 12px;
            }

                .screenshots-row::-webkit-scrollbar { display: none; }

            .phone-mockup,
            .phone-mockup.center {
                flex: 0 0 210px;
                scroll-snap-align: center;
                /* transform is driven per-frame by JS while swiping — keep only
                   the reveal fade transitioning. */
                transition: opacity 0.7s ease;
            }

            .cta-inner {
                padding: 56px 24px;
            }

                .cta-inner p {
                    font-size: 14px;
                }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 36px;
            }

            .footer-col-brand {
                grid-column: auto;
            }

            .footer-app-badges {
                flex-direction: column;
            }

            .footer-badge {
                max-width: 220px;
            }

            .footer-bottom-links {
                gap: 14px;
            }

            .section-label {
                font-size: 9px;
                letter-spacing: 3px;
            }
        }

        /* --- Small phones (max 399px) --- */
        @media (max-width: 399px) {
            .hero-brand {
                font-size: clamp(38px, 12vw, 52px);
            }

            .hero-headline {
                font-size: 16px;
            }

            nav {
                padding: 0 16px;
            }

            .container {
                padding: 0 16px;
            }

            .btn-primary, .btn-secondary {
                max-width: 100%;
            }

            .phone-mockup,
            .phone-mockup.center {
                flex: 0 0 180px;
            }

            .screenshots-row {
                padding-left: calc(50% - 90px);
                padding-right: calc(50% - 90px);
            }

            .cta-inner {
                padding: 44px 18px;
            }

            .footer-badge {
                max-width: 100%;
            }
        }

        /* SVG icons inlined - gold tones */
        .icon-gold path, .icon-gold circle, .icon-gold rect, .icon-gold polyline, .icon-gold line {
            stroke: var(--gold-2);
            fill: none;
            stroke-width: 1.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        /* ===================== LANG SWITCHER ===================== */
        .lang-switcher {
            display: flex;
            align-items: center;
            gap: 4px;
            margin-left: 16px;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(212,175,55,0.12);
            border-radius: 40px;
            padding: 4px;
        }

        .lang-btn {
            padding: 5px 13px;
            border-radius: 30px;
            border: none;
            background: transparent;
            font-family: 'Inter', sans-serif;
            font-size: 10px;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--text-muted);
            cursor: pointer;
            transition: all 0.25s;
            line-height: 1;
        }

            .lang-btn.active {
                background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
                color: #0b0d11;
            }

            .lang-btn:not(.active):hover {
                color: var(--gold-1);
            }

        /* Georgian font override */
        body.lang-ka {
            font-family: 'Noto Sans Georgian', sans-serif;
        }

            body.lang-ka .nav-links a,
            body.lang-ka .nav-cta,
            body.lang-ka .hero-eyebrow,
            body.lang-ka .hero-headline,
            body.lang-ka .hero-desc,
            body.lang-ka .btn-primary,
            body.lang-ka .btn-secondary,
            body.lang-ka .section-label,
            body.lang-ka .section-title,
            body.lang-ka .section-desc,
            body.lang-ka .how-card-number,
            body.lang-ka .how-card h3,
            body.lang-ka .how-card p,
            body.lang-ka .brand-discount,
            body.lang-ka .feature-content h3,
            body.lang-ka .feature-content p,
            body.lang-ka .placeholder-label,
            body.lang-ka .cta-inner h2,
            body.lang-ka .cta-inner p,
            body.lang-ka .footer-tagline,
            body.lang-ka .footer-col-title,
            body.lang-ka .footer-col-links a,
            body.lang-ka .footer-badge-sub,
            body.lang-ka .footer-badge-store,
            body.lang-ka .footer-bottom-links a,
            body.lang-ka .footer-copy,
            body.lang-ka .lang-btn {
                font-family: 'Noto Sans Georgian', sans-serif;
            }

/* ===================== APP PREVIEW ===================== */
.hero-app-preview { margin-top: 60px; }
.app-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.app-preview-copy .section-label,
.app-preview-copy .section-title,
.app-preview-copy .section-desc { text-align: left; }
.app-preview-copy .section-title { margin: 6px 0 14px; }
.app-preview-copy .section-desc { margin: 0 0 22px; }
.app-preview-points {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.app-preview-points li {
    position: relative;
    padding-left: 30px;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(240, 234, 216, 0.85);
}
.app-preview-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold-1, #f5d77a);
    font-weight: 700;
}
.preview-phone {
    width: 260px;
    max-width: 72vw;
    aspect-ratio: 9 / 19.5;
    margin: 0 auto;
    background: #0b0d11;
    border: 2px solid rgba(212, 175, 55, 0.25);
    border-radius: 34px;
    padding: 10px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.preview-phone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 26px;
    display: block;
}
@media (max-width: 820px) {
    .app-preview-grid { grid-template-columns: 1fr; gap: 36px; }
    .app-preview-device { order: -1; }
    .app-preview-copy .section-label,
    .app-preview-copy .section-title,
    .app-preview-copy .section-desc { text-align: center; }
    .app-preview-points { max-width: 340px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 600px) {
    /* Trim the app-preview copy so it doesn't feel oversized on phones */
    .app-preview-copy .section-title { font-size: clamp(21px, 5.6vw, 26px); }
    .app-preview-copy .section-desc { font-size: 14px; }
    .app-preview-points li { font-size: 14px; }
}
