/* ── Fonts ── */
        @font-face { font-family: 'Plus Jakarta Sans'; src: url('assets/fonts/PlusJakartaSans-Regular.ttf') format('truetype'); font-weight: 400; font-display: swap; }
        @font-face { font-family: 'Plus Jakarta Sans'; src: url('assets/fonts/PlusJakartaSans-Medium.ttf') format('truetype'); font-weight: 500; font-display: swap; }
        @font-face { font-family: 'Plus Jakarta Sans'; src: url('assets/fonts/PlusJakartaSans-SemiBold.ttf') format('truetype'); font-weight: 600; font-display: swap; }
        @font-face { font-family: 'Plus Jakarta Sans'; src: url('assets/fonts/PlusJakartaSans-Bold.ttf') format('truetype'); font-weight: 700; font-display: swap; }
        @font-face { font-family: 'Plus Jakarta Sans'; src: url('assets/fonts/PlusJakartaSans-ExtraBold.ttf') format('truetype'); font-weight: 800; font-display: swap; }

        /* ── Reset ── */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

        :root {
            --black: #0a0a0a;
            --surface: #111113;
            --surface-2: #1a1a1e;
            --border: rgba(255,255,255,0.08);
            --border-hover: rgba(255,255,255,0.14);
            --text: #f0f0f2;
            --text-muted: rgba(255,255,255,0.55);
            --text-dim: rgba(255,255,255,0.35);
            --green: #33a66b;
            --rainbow: linear-gradient(90deg, #ed2138, #ff8419, #ffd633, #4dd474, #19b3f2, #385ced, #8c40d9);
            --rainbow-subtle: linear-gradient(90deg, rgba(237,33,56,0.5), rgba(255,132,25,0.5), rgba(255,214,51,0.5), rgba(77,212,116,0.5), rgba(25,179,242,0.5), rgba(56,92,237,0.5), rgba(140,64,217,0.5));
            --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
            --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
        }

        body {
            font-family: var(--font);
            background: var(--black);
            color: var(--text);
            overflow-x: hidden;
            line-height: 1.6;
        }

        a { color: inherit; text-decoration: none; }
        img { display: block; max-width: 100%; }
        button { font-family: var(--font); cursor: pointer; border: none; background: none; color: inherit; }

        /* ── Utility ── */
        .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
        .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

        /* ── Animated reveal ── */
        .reveal {
            opacity: 0;
            transform: translateY(32px);
            transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }

        /* ── Nav ── */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 16px 0;
            backdrop-filter: blur(24px) saturate(1.4);
            -webkit-backdrop-filter: blur(24px) saturate(1.4);
            background: rgba(10,10,10,0.7);
            border-bottom: 1px solid var(--border);
            transition: background 0.3s;
        }
        nav .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 800;
            font-size: 18px;
            letter-spacing: -0.02em;
        }
        .nav-logo img {
            width: 36px;
            height: 36px;
            border-radius: 10px;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 8px;
            list-style: none;
        }
        .nav-pill {
            position: relative;
            padding: 8px 18px;
            font-size: 14px;
            font-weight: 600;
            border-radius: 100px;
            color: var(--text-muted);
            transition: color 0.3s var(--ease-out-quart), background 0.3s var(--ease-out-quart);
            overflow: hidden;
        }
        .nav-pill::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 100px;
            padding: 1px;
            background: var(--rainbow);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask-composite: exclude;
            -webkit-mask-composite: xor;
            opacity: 0;
            transition: opacity 0.4s var(--ease-out-quart);
        }
        .nav-pill:hover,
        .nav-pill.active {
            color: var(--text);
            background: rgba(255,255,255,0.06);
        }
        .nav-pill.active::before {
            opacity: 1;
        }
        .nav-cta {
            padding: 8px 20px;
            font-size: 13px;
            font-weight: 700;
            border-radius: 100px;
            background: var(--text);
            color: var(--black);
            transition: transform 0.3s var(--ease-out-quart), box-shadow 0.3s;
        }
        .nav-cta:hover {
            transform: scale(1.04);
            box-shadow: 0 0 24px rgba(255,255,255,0.15);
        }
        .mobile-menu-btn { display: none; }

        /* ── Mobile nav overlay ── */
        @media (max-width: 768px) {
            .nav-links {
                display: flex !important;
                position: fixed;
                top: 0;
                left: 0;
                width: 100vw;
                height: 100vh;
                height: 100dvh;
                background: rgba(10,10,10,0.97);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 12px;
                z-index: 200;
                opacity: 0;
                pointer-events: none;
                transition: opacity 0.35s var(--ease-out-quart);
            }
            .nav-links.show {
                opacity: 1;
                pointer-events: auto;
            }
            .nav-links.show .nav-pill,
            .nav-links.show .nav-cta {
                font-size: 20px;
                padding: 16px 36px;
                min-height: 52px;
            }
            .mobile-menu-btn {
                display: flex;
                flex-direction: column;
                gap: 5px;
                padding: 8px;
                z-index: 300;
                position: relative;
            }
            .mobile-menu-btn span {
                display: block;
                width: 22px;
                height: 2px;
                background: var(--text);
                border-radius: 2px;
                transition: transform 0.3s, opacity 0.3s;
            }
            .mobile-menu-btn.open span:nth-child(1) {
                transform: rotate(45deg) translate(4px, 4px);
            }
            .mobile-menu-btn.open span:nth-child(2) {
                opacity: 0;
            }
            .mobile-menu-btn.open span:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -5px);
            }
        }

        /* ── Hero ── */
        .hero {
            position: relative;
            padding: 160px 0 80px;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }
        .hero-bg::before {
            content: '';
            position: absolute;
            top: -40%;
            left: -20%;
            width: 80%;
            height: 80%;
            background: radial-gradient(ellipse, rgba(51,166,107,0.12) 0%, transparent 70%);
            animation: float-glow 8s ease-in-out infinite alternate;
        }
        .hero-bg::after {
            content: '';
            position: absolute;
            top: -20%;
            right: -20%;
            width: 60%;
            height: 60%;
            background: radial-gradient(ellipse, rgba(140,64,217,0.08) 0%, transparent 70%);
            animation: float-glow 10s ease-in-out infinite alternate-reverse;
        }
        @keyframes float-glow {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(30px, 20px) scale(1.1); }
        }

        .hero .container {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }
        .hero-content { max-width: 560px; }
        .hero-brand-badge {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 28px;
        }
        .hero-brand-badge .badge-logo {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            object-fit: cover;
            box-shadow: 0 0 20px rgba(140,64,217,0.2), 0 0 40px rgba(51,166,107,0.1);
        }
        .hero-brand-badge .badge-text {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 16px;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            background: var(--rainbow);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        /* ── Lawn mower decoration ── */
        .mower-icon {
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 40px;
            opacity: 0.06;
            animation: mow-drift 20s linear infinite;
            pointer-events: none;
            z-index: 0;
        }
        @keyframes mow-drift {
            0% { transform: translateX(-600px); }
            100% { transform: translateX(600px); }
        }
        .hero h1 {
            font-size: clamp(40px, 5.5vw, 68px);
            font-weight: 800;
            line-height: 1.05;
            letter-spacing: -0.03em;
            margin-bottom: 20px;
        }
        .hero h1 .gradient-word {
            background: var(--rainbow);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .hero p {
            font-size: 17px;
            color: var(--text-muted);
            max-width: 440px;
            margin-bottom: 36px;
            line-height: 1.7;
        }
        .hero-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        /* ── Rainbow-border pill button (matches app CTAs) ── */
        .pill-btn {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            font-size: 15px;
            font-weight: 700;
            border-radius: 100px;
            background: var(--black);
            color: var(--text);
            overflow: hidden;
            transition: transform 0.4s var(--ease-out-quart), box-shadow 0.4s, color 0.6s;
            z-index: 1;
        }
        .pill-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 100px;
            padding: 1.5px;
            background: var(--rainbow);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask-composite: exclude;
            -webkit-mask-composite: xor;
            transition: opacity 0.3s;
        }
        /* Drip fill layer — starts above, drips down on hover */
        .pill-btn::after {
            content: '';
            position: absolute;
            top: -100%;
            left: -10%;
            width: 120%;
            height: 100%;
            border-radius: 0 0 50% 50% / 0 0 20% 20%;
            background: var(--text);
            z-index: -1;
            transition: top 0.6s var(--ease-out-expo), border-radius 0.6s var(--ease-out-expo);
            pointer-events: none;
        }
        .pill-btn:hover::after {
            top: 0;
            border-radius: 0;
        }
        .pill-btn:hover {
            color: var(--black);
            transform: translateY(-2px) scale(1.03);
            box-shadow: 0 8px 40px rgba(140,64,217,0.15), 0 4px 20px rgba(51,166,107,0.1);
        }
        .pill-btn .arrow {
            display: inline-flex;
            transition: transform 0.3s var(--ease-out-quart);
        }
        .pill-btn:hover .arrow { transform: translate(2px, -2px); }
        .pill-btn:hover svg { fill: var(--black); }

        /* App Store — solid white, drip fills to BLACK on hover */
        .pill-btn-solid {
            background: var(--text);
            color: var(--black);
        }
        .pill-btn-solid::before { display: none; }
        .pill-btn-solid::after {
            background: var(--black);
        }
        .pill-btn-solid:hover {
            color: var(--text);
            box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 60px rgba(140,64,217,0.1);
        }
        .pill-btn-solid:hover svg { fill: var(--text); }

        /* ── Phone mockup ── */
        .hero-phones {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 640px;
        }
        .phone-frame {
            position: relative;
            width: 280px;
            height: 608px;
            border-radius: 44px;
            overflow: hidden;
            background: var(--black);
            box-shadow:
                0 0 0 1px rgba(255,255,255,0.1),
                0 0 0 2px rgba(255,255,255,0.04),
                0 32px 80px rgba(0,0,0,0.6),
                0 0 80px rgba(51,166,107,0.08),
                0 0 160px rgba(140,64,217,0.06);
            flex-shrink: 0;
        }
        .phone-frame::before {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 46px;
            padding: 2px;
            background: linear-gradient(160deg, rgba(255,255,255,0.2), rgba(255,255,255,0.04) 40%, rgba(140,64,217,0.15) 70%, rgba(51,166,107,0.15));
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask-composite: exclude;
            -webkit-mask-composite: xor;
            pointer-events: none;
            z-index: 1;
        }
        .phone-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .phone-frame-1 {
            z-index: 2;
            transform: rotate(-4deg) translateX(20px);
            animation: phone-float 6s ease-in-out infinite;
        }
        .phone-frame-2 {
            z-index: 1;
            transform: rotate(6deg) translateX(-20px);
            animation: phone-float 6s ease-in-out infinite 0.5s;
        }
        @keyframes phone-float {
            0%, 100% { transform: rotate(-4deg) translateX(20px) translateY(0); }
            50% { transform: rotate(-4deg) translateX(20px) translateY(-12px); }
        }
        .phone-frame-2 {
            animation-name: phone-float-2;
        }
        @keyframes phone-float-2 {
            0%, 100% { transform: rotate(6deg) translateX(-20px) translateY(0); }
            50% { transform: rotate(6deg) translateX(-20px) translateY(-10px); }
        }

        .phone-swirl-arrow {
            position: absolute;
            z-index: 3;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--black);
            border: 1.5px solid rgba(255,255,255,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 32px rgba(0,0,0,0.5);
            animation: swirl-pulse 3s ease-in-out infinite;
        }
        .phone-swirl-arrow svg {
            width: 22px;
            height: 22px;
            fill: none;
            stroke: var(--text);
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        @keyframes swirl-pulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 8px 32px rgba(0,0,0,0.5); }
            50% { transform: translate(-50%, -50%) scale(1.08); box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 0 6px rgba(255,255,255,0.05); }
        }

        /* ── Stats bar ── */
        .stats-bar {
            padding: 48px 0;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }
        .stats-bar .container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            text-align: center;
        }
        .stat-item .stat-number {
            font-size: 36px;
            font-weight: 800;
            letter-spacing: -0.03em;
            color: var(--text);
        }
        .stat-item .stat-label {
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 500;
            margin-top: 4px;
        }

        /* ── Section headings ── */
        .section-label {
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--text-dim);
            margin-bottom: 12px;
        }
        .section-title {
            font-size: clamp(28px, 4vw, 44px);
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.1;
            margin-bottom: 16px;
        }
        .section-subtitle {
            font-size: 16px;
            color: var(--text-muted);
            max-width: 500px;
            line-height: 1.7;
        }

        /* ── How it works ── */
        .how-it-works {
            padding: 100px 0;
        }
        .how-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 56px;
        }
        .how-card {
            position: relative;
            padding: 36px 28px;
            border-radius: 24px;
            background: var(--surface);
            border: 1px solid var(--border);
            transition: border-color 0.4s var(--ease-out-quart), transform 0.4s var(--ease-out-quart);
            overflow: hidden;
        }
        .how-card:hover {
            border-color: var(--border-hover);
            transform: translateY(-4px);
        }
        .how-card::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: var(--rainbow);
            opacity: 0;
            transition: opacity 0.4s;
        }
        .how-card:hover::after { opacity: 1; }

        .how-number {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 14px;
            background: rgba(51,166,107,0.12);
            font-size: 18px;
            font-weight: 800;
            color: var(--green);
            margin-bottom: 20px;
        }
        .how-card h3 {
            font-size: 18px;
            font-weight: 800;
            margin-bottom: 10px;
            letter-spacing: -0.01em;
        }
        .how-card p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
        }

        /* ── Features grid ── */
        .features {
            padding: 100px 0;
            background: var(--surface);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 56px;
        }
        .feature-card {
            padding: 32px;
            border-radius: 20px;
            background: var(--surface-2);
            border: 1px solid var(--border);
            transition: border-color 0.3s, transform 0.4s var(--ease-out-quart);
        }
        .feature-card:hover {
            border-color: var(--border-hover);
            transform: translateY(-2px);
        }
        .feature-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin-bottom: 16px;
        }
        .feature-card h3 {
            font-size: 16px;
            font-weight: 800;
            margin-bottom: 8px;
        }
        .feature-card p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.7;
        }

        /* ── Earn section ── */
        .earn-section {
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }
        .earn-section .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        .earn-content { max-width: 480px; }
        .earn-phone {
            display: flex;
            justify-content: center;
        }
        .earn-phone .phone-frame {
            width: 260px;
            height: 565px;
            animation: phone-float-earn 5s ease-in-out infinite;
        }
        @keyframes phone-float-earn {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-14px); }
        }
        .earn-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 32px;
        }
        .earn-stat {
            padding: 16px;
            border-radius: 16px;
            background: rgba(51,166,107,0.08);
            border: 1px solid rgba(51,166,107,0.2);
        }
        .earn-stat .num {
            font-size: 22px;
            font-weight: 800;
            color: var(--green);
            letter-spacing: -0.02em;
        }
        .earn-stat .lbl {
            font-size: 12px;
            color: var(--text-muted);
            font-weight: 500;
            margin-top: 2px;
        }

        /* ── Social proof / Trust ── */
        .trust-section {
            padding: 100px 0;
            background: var(--surface);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }
        .trust-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 56px;
        }
        .trust-card {
            padding: 28px;
            border-radius: 20px;
            background: var(--surface-2);
            border: 1px solid var(--border);
        }
        .trust-card .stars {
            color: #ffd633;
            font-size: 14px;
            letter-spacing: 2px;
            margin-bottom: 12px;
        }
        .trust-card .quote {
            font-size: 14px;
            line-height: 1.7;
            color: var(--text);
            font-weight: 500;
            margin-bottom: 16px;
        }
        .trust-card .author {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .trust-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 800;
            color: var(--text);
        }
        .trust-card .author-info .name {
            font-size: 13px;
            font-weight: 700;
        }
        .trust-card .author-info .role {
            font-size: 11px;
            color: var(--text-dim);
            font-weight: 500;
        }

        /* ── Pricing ── */
        .pricing-section {
            padding: 100px 0;
        }
        .pricing-card {
            max-width: 520px;
            margin: 48px auto 0;
            padding: 40px;
            border-radius: 28px;
            background: var(--surface);
            border: 1px solid var(--border);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: var(--rainbow);
        }
        .pricing-label {
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--green);
            margin-bottom: 8px;
        }
        .pricing-amount {
            font-size: 56px;
            font-weight: 800;
            letter-spacing: -0.04em;
        }
        .pricing-amount span { font-size: 20px; color: var(--text-muted); font-weight: 600; }
        .pricing-desc {
            font-size: 14px;
            color: var(--text-muted);
            margin-top: 8px;
            margin-bottom: 28px;
            line-height: 1.7;
        }
        .pricing-list {
            list-style: none;
            text-align: left;
            margin-bottom: 32px;
        }
        .pricing-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            font-size: 14px;
            font-weight: 500;
            color: var(--text);
            border-bottom: 1px solid var(--border);
        }
        .pricing-list li:last-child { border: none; }
        .pricing-list .check {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: rgba(51,166,107,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            color: var(--green);
            flex-shrink: 0;
        }

        /* ── Download CTA ── */
        .download-section {
            padding: 120px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .download-section::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 600px;
            height: 300px;
            background: radial-gradient(ellipse, rgba(51,166,107,0.1) 0%, transparent 70%);
        }
        .download-section .container { position: relative; z-index: 1; }
        .download-section .section-subtitle { margin: 0 auto 40px; }
        .store-buttons {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }
        .store-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 12px 28px;
            border-radius: 14px;
            background: var(--text);
            color: var(--black);
            font-weight: 700;
            font-size: 15px;
            transition: transform 0.3s var(--ease-out-quart), box-shadow 0.3s;
        }
        .store-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(255,255,255,0.15);
        }
        .store-btn svg { width: 24px; height: 24px; }
        .store-btn .store-label { text-align: left; }
        .store-btn .store-label small { font-size: 10px; font-weight: 500; display: block; opacity: 0.6; }
        .store-btn .store-label span { font-size: 16px; font-weight: 700; }

        /* ── Footer ── */
        footer {
            padding: 48px 0 32px;
            border-top: 1px solid var(--border);
        }
        footer .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }
        .footer-left {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 700;
            font-size: 15px;
        }
        .footer-left img { width: 28px; height: 28px; border-radius: 8px; }
        .footer-links {
            display: flex;
            gap: 24px;
            list-style: none;
        }
        .footer-links a {
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 500;
            transition: color 0.2s;
        }
        .footer-links a:hover { color: var(--text); }
        .footer-copy {
            width: 100%;
            text-align: center;
            font-size: 12px;
            color: var(--text-dim);
            margin-top: 24px;
            padding-top: 24px;
            border-top: 1px solid var(--border);
        }

        /* ── Scrolling marquee ── */
        .marquee-wrap {
            overflow: hidden;
            padding: 20px 0;
            border-bottom: 1px solid var(--border);
        }
        .marquee-track {
            display: flex;
            width: max-content;
            animation: marquee-scroll 30s linear infinite;
        }
        @keyframes marquee-scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .marquee-item {
            padding: 0 40px;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-dim);
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .marquee-item .sep { color: var(--green); font-size: 8px; }
        .marquee-item.mow-emoji { font-size: 18px; opacity: 0.4; padding: 0 20px; }

        /* ── Mobile (≤768px) ── */
        @media (max-width: 768px) {
            /* Safe area for notched iPhones */
            body {
                padding-left: env(safe-area-inset-left);
                padding-right: env(safe-area-inset-right);
            }

            /* Clean tap highlights on mobile */
            a, button { -webkit-tap-highlight-color: transparent; }

            /* Nav */
            nav { padding: 12px 0; }
            nav .container { padding: 0 16px; }
            .nav-logo span { font-size: 15px; }
            /* Ensure hamburger has proper 44px touch target */
            .mobile-menu-btn { min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }

            /* Hero */
            .hero {
                padding: 120px 0 48px;
                min-height: auto;
            }
            .hero .container {
                grid-template-columns: 1fr;
                gap: 36px;
                text-align: center;
                padding: 0 20px;
            }
            .hero-content { margin: 0 auto; }
            .hero-brand-badge {
                justify-content: center;
                gap: 10px;
                margin-bottom: 20px;
            }
            .hero-brand-badge .badge-logo { width: 38px; height: 38px; border-radius: 11px; }
            .hero-brand-badge .badge-text { font-size: 11px; letter-spacing: 0.08em; }
            .hero h1 { font-size: 34px; letter-spacing: -0.02em; margin-bottom: 14px; }
            .hero p { font-size: 15px; margin: 0 auto 28px; max-width: 340px; }

            /* Pill buttons full-width stack */
            .hero-actions {
                flex-direction: column;
                gap: 10px;
                width: 100%;
                max-width: 320px;
                margin: 0 auto;
            }
            .pill-btn, .pill-btn-solid {
                width: 100%;
                justify-content: center;
                padding: 16px 24px;
                font-size: 15px;
            }

            /* Phone mockups */
            .hero-phones { height: 360px; }
            .phone-frame { width: 165px; height: 358px; border-radius: 28px; }
            .phone-frame-1 { transform: rotate(-3deg) translateX(14px); }
            .phone-frame-2 { transform: rotate(5deg) translateX(-14px); }
            @keyframes phone-float {
                0%, 100% { transform: rotate(-3deg) translateX(14px) translateY(0); }
                50% { transform: rotate(-3deg) translateX(14px) translateY(-8px); }
            }
            @keyframes phone-float-2 {
                0%, 100% { transform: rotate(5deg) translateX(-14px) translateY(0); }
                50% { transform: rotate(5deg) translateX(-14px) translateY(-6px); }
            }
            .phone-swirl-arrow { width: 40px; height: 40px; }
            .phone-swirl-arrow svg { width: 16px; height: 16px; }

            /* Marquee */
            .marquee-item { padding: 0 20px; font-size: 12px; }
            .marquee-item.mow-emoji { font-size: 14px; padding: 0 12px; }

            /* Stats */
            .stats-bar { padding: 32px 0; }
            .stats-bar .container { grid-template-columns: repeat(2, 1fr); gap: 20px; }
            .stat-item .stat-number { font-size: 28px; }
            .stat-item .stat-label { font-size: 11px; }

            /* Sections */
            .how-it-works { padding: 64px 0; }
            .how-it-works .container { padding: 0 20px; }
            .how-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 36px; }
            .how-card { padding: 24px 22px; border-radius: 20px; }
            .how-card h3 { font-size: 16px; }
            .how-card p { font-size: 13px; }
            .how-number { width: 38px; height: 38px; border-radius: 12px; font-size: 16px; margin-bottom: 14px; }
            .section-title { font-size: 28px; margin-bottom: 10px; }
            .section-subtitle { font-size: 14px; }
            .section-label { font-size: 10px; margin-bottom: 8px; }

            /* Features */
            .features { padding: 64px 0; }
            .features .container { padding: 0 20px; }
            .features-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 36px; }
            .feature-card { padding: 22px; border-radius: 16px; }
            .feature-card h3 { font-size: 15px; }
            .feature-card p { font-size: 12px; }
            .feature-icon { width: 38px; height: 38px; border-radius: 10px; font-size: 17px; margin-bottom: 12px; }

            /* Earn */
            .earn-section { padding: 64px 0; }
            .earn-section .container {
                grid-template-columns: 1fr;
                gap: 36px;
                padding: 0 20px;
            }
            .earn-content { text-align: center; margin: 0 auto; }
            .earn-content .section-subtitle { margin: 0 auto; }
            .earn-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
            .earn-stat { padding: 14px; border-radius: 14px; }
            .earn-stat .num { font-size: 20px; }
            .earn-stat .lbl { font-size: 11px; }
            .earn-phone .phone-frame { width: 220px; height: 478px; }
            .earn-content .pill-btn { width: auto; max-width: 280px; margin: 0 auto; }

            /* Trust */
            .trust-section { padding: 64px 0; }
            .trust-section .container { padding: 0 20px; }
            .trust-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 36px; }
            .trust-card { padding: 22px; border-radius: 16px; }
            .trust-card .quote { font-size: 13px; margin-bottom: 14px; }
            .trust-card .stars { font-size: 12px; }
            .trust-avatar { width: 32px; height: 32px; font-size: 12px; }

            /* Pricing */
            .pricing-section { padding: 64px 0; }
            .pricing-section .container { padding: 0 20px; }
            .pricing-card { padding: 28px 22px; border-radius: 22px; margin-top: 36px; }
            .pricing-amount { font-size: 44px; }
            .pricing-amount span { font-size: 18px; }
            .pricing-desc { font-size: 13px; }
            .pricing-list li { font-size: 13px; padding: 10px 0; min-height: 44px; display: flex; align-items: center; }

            /* Download */
            .download-section { padding: 64px 0; }
            .download-section .container { padding: 0 20px; }
            .store-buttons { flex-direction: column; align-items: center; gap: 12px; }
            .store-btn {
                width: 100%;
                max-width: 300px;
                padding: 16px 24px;
                border-radius: 16px;
                justify-content: center;
                min-height: 56px;
            }

            /* Footer */
            footer { padding: 36px 0 24px; }
            footer .container {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 16px;
                padding: 0 20px;
                padding-bottom: calc(16px + env(safe-area-inset-bottom));
            }
            .footer-left { font-size: 14px; }
            .footer-links { flex-wrap: wrap; justify-content: center; gap: 8px 20px; }
            .footer-links a { font-size: 13px; padding: 8px 4px; min-height: 44px; display: inline-flex; align-items: center; }
            .footer-copy { font-size: 11px; margin-top: 16px; padding-top: 16px; }
        }

        /* ── Small phones (≤390px, iPhone SE / mini) ── */
        @media (max-width: 390px) {
            .hero h1 { font-size: 28px; }
            .hero p { font-size: 14px; max-width: 300px; }
            .hero-brand-badge .badge-text { font-size: 10px; }
            .hero-brand-badge .badge-logo { width: 34px; height: 34px; }
            .hero-phones { height: 305px; }
            .phone-frame { width: 140px; height: 304px; border-radius: 24px; }
            .section-title { font-size: 24px; }
            .stat-item .stat-number { font-size: 24px; }
            .pricing-amount { font-size: 36px; }
            .earn-phone .phone-frame { width: 190px; height: 413px; }
        }

        /* ── Page transitions for nav pills ── */
        section {
            scroll-margin-top: 80px;
        }

        /* ── Shimmer on rainbow borders ── */
        @keyframes shimmer {
            0% { background-position: -200% 0; }
            100% { background-position: 200% 0; }
        }
        .rainbow-shimmer::before {
            background-size: 200% 100%;
            animation: shimmer 3s linear infinite;
        }
