        :root {
            --ocean: #0A3D4C;
            --teal: #0E7C86;
            --teal-light: #149C97;
            --mango: #FFB020;
            --mango-dark: #E29200;
            --seafoam: #E8F6F3;
            --paper: #FBFDFC;
            --ink: #0B1F1D;
            --ink-soft: #4C6663;
            --line: #D3E6E3;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--ink);
            background: var(--paper);
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        .display-font {
            font-family: 'Space Grotesk', sans-serif;
            letter-spacing: -0.01em;
        }

        a {
            text-decoration: none;
        }

        .container-narrow {
            max-width: 1120px;
            margin: 0 auto;
            padding-left: 1.25rem;
            padding-right: 1.25rem;
        }

        /* Skip link */
        .skip-link {
            position: absolute;
            left: -9999px;
            top: 0;
            background: var(--ocean);
            color: #fff;
            padding: .6rem 1rem;
            z-index: 2000;
            border-radius: 0 0 .4rem 0;
        }

        .skip-link:focus {
            left: 0;
        }

        :focus-visible {
            outline: 3px solid var(--mango);
            outline-offset: 2px;
        }

        /* ===== Navbar ===== */
        .cr-navbar {
            background: rgba(251, 253, 252, 0.92);
            backdrop-filter: blur(8px);
            border-bottom: 1px solid var(--line);
            position: sticky;
            top: 0;
            z-index: 50;
        }

        .nav-wrap {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 1.25rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }

        .cr-brand {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            font-size: 1.35rem;
            color: var(--ink);
            display: flex;
            align-items: center;
            gap: .2rem;
        }

        nav.cr-links {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .cr-nav-link {
            color: var(--ink-soft);
            font-weight: 500;
            font-size: .95rem;
            text-decoration: none;
            transition: color .15s ease;
        }

        .cr-nav-link:hover,
        .cr-nav-link:focus-visible {
            color: var(--ocean);
        }

        .btn-mango {
            background: var(--mango);
            color: var(--ink);
            font-weight: 600;
            border: none;
            border-radius: .5rem;
            padding: .55rem 1.3rem;
            transition: background .15s ease, transform .15s ease;
            display: inline-block;
        }

        .btn-mango:hover {
            background: var(--mango-dark);
            color: var(--ink);
            transform: translateY(-1px);
        }

        .btn-outline-teal {
            border: 1.5px solid var(--teal);
            color: var(--teal);
            font-weight: 600;
            border-radius: .5rem;
            padding: .55rem 1.3rem;
            background: transparent;
            transition: background .15s ease, color .15s ease;
        }

        .btn-outline-teal:hover {
            background: var(--teal);
            color: #fff;
        }

        .right-side {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 6px;
            margin: -6px;
        }

        .menu-toggle span {
            display: block;
            width: 20px;
            height: 2px;
            background: var(--ink);
            margin: 4px 0;
            transition: transform .2s ease, opacity .2s ease;
        }

        .menu-toggle.open span:nth-child(1) {
            transform: translateY(6px) rotate(45deg);
        }

        .menu-toggle.open span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.open span:nth-child(3) {
            transform: translateY(-6px) rotate(-45deg);
        }

        @media (max-width: 767.98px) {
            nav.cr-links {
                position: absolute;
                top: 72px;
                left: 0;
                right: 0;
                background: var(--paper);
                border-bottom: 1px solid var(--line);
                flex-direction: column;
                align-items: flex-start;
                gap: 0;
                padding: .5rem 1.25rem 1rem;
                display: none;
            }

            nav.cr-links.open {
                display: flex;
            }

            nav.cr-links a.cr-nav-link {
                width: 100%;
                padding: .75rem 0;
                border-bottom: 1px solid var(--line);
                font-size: 1rem;
            }

            nav.cr-links a.cr-nav-link:last-of-type {
                border-bottom: none;
            }

            nav.cr-links .btn-mango {
                display: none;
            }

            nav.cr-links.open .btn-mango {
                display: inline-block;
                margin-top: .75rem;
                text-align: center;
                width: fit-content;
            }

            .right-side>.btn-mango {
                display: none;
            }

            .menu-toggle {
                display: block;
            }
        }

        /* ===== Store badges ===== */
        .store-badges {
            display: flex;
            flex-wrap: wrap;
            gap: .75rem;
        }

        .store-badge {
            display: inline-flex;
            align-items: center;
            gap: .6rem;
            background: var(--ink);
            color: #fff;
            border: 1px solid var(--ink);
            border-radius: .55rem;
            padding: .5rem .95rem;
            transition: transform .15s ease, background .15s ease;
        }

        .store-badge:hover {
            transform: translateY(-1px);
            background: #16302d;
            color: #fff;
        }

        .store-badge svg {
            flex: none;
            width: 22px;
            height: 22px;
        }

        .store-badge .badge-text {
            display: flex;
            flex-direction: column;
            line-height: 1.15;
        }

        .store-badge .badge-eyebrow {
            font-size: .6rem;
            opacity: .8;
        }

        .store-badge .badge-name {
            font-family: 'Space Grotesk', sans-serif;
            font-size: .95rem;
            font-weight: 600;
        }

        .store-badge.on-light {
            background: #fff;
            color: var(--ink);
            border-color: rgba(255, 255, 255, 0.5);
        }

        .store-badge.on-light:hover {
            background: var(--seafoam);
            color: var(--ink);
        }

        /* ===== Hero ===== */
        .hero {
            padding: 6rem 0 3.5rem;
            background:
                radial-gradient(60% 60% at 85% 10%, rgba(20, 156, 151, 0.08), transparent 70%),
                var(--paper);
        }

        .hero h1 {
            font-size: clamp(2.15rem, 1.2rem + 3.2vw, 3.4rem);
            font-weight: 700;
            line-height: 1.08;
            color: var(--ocean);
            max-width: 11ch;
        }

        .hero p.lede {
            font-size: 1.1rem;
            color: var(--ink-soft);
            max-width: 38ch;
            margin-top: 1.1rem;
        }

        .hero-stats {
            display: flex;
            gap: 2.2rem;
            margin-top: 2.2rem;
            flex-wrap: wrap;
        }

        .hero-stats .stat-num {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--ocean);
            line-height: 1;
        }

        .hero-stats .stat-label {
            font-size: .82rem;
            color: var(--ink-soft);
            margin-top: .25rem;
        }

        /* Phone mockup */
        .phone {
            width: 280px;
            max-width: 82vw;
            aspect-ratio: 9/18.5;
            background: var(--ink);
            border-radius: 2.4rem;
            padding: .5rem;
            margin: 0 auto;
            box-shadow: 0 30px 60px -20px rgba(10, 61, 76, 0.35);
        }

        .phone-screen {
            background: var(--seafoam);
            width: 100%;
            height: 100%;
            border-radius: 1.9rem;
            overflow: hidden;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .phone-notch {
            position: absolute;
            top: .5rem;
            left: 50%;
            transform: translateX(-50%);
            width: 34%;
            height: .9rem;
            background: var(--ink);
            border-radius: 1rem;
            z-index: 3;
        }

        .phone-map {
            flex: 1 1 auto;
            position: relative;
            padding-top: 1.9rem;
        }

        .phone-map svg {
            width: 100%;
            height: 100%;
            display: block;
        }

        .phone-panel {
            background: var(--paper);
            border-top-left-radius: 1.1rem;
            border-top-right-radius: 1.1rem;
            padding: .9rem 1rem 1.1rem;
            box-shadow: 0 -6px 18px -12px rgba(10, 61, 76, 0.25);
        }

        .phone-field {
            display: flex;
            align-items: center;
            gap: .5rem;
            background: var(--seafoam);
            border-radius: .6rem;
            padding: .42rem .65rem;
            font-size: .72rem;
            color: var(--ink-soft);
            margin-bottom: .4rem;
        }

        .phone-field .pin {
            width: .4rem;
            height: .4rem;
            border-radius: 50%;
            flex: none;
        }

        .phone-summary {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: .55rem;
            padding-top: .55rem;
            border-top: 1px dashed var(--line);
            font-size: .7rem;
            color: var(--ocean);
            font-weight: 600;
        }

        /* ===== Section shell ===== */
        .section {
            padding: 4.5rem 0;
        }

        .section-tint {
            background: var(--seafoam);
        }

        .section-head {
            max-width: 46ch;
            margin-bottom: 2.75rem;
        }

        .section-head h2 {
            font-size: clamp(1.6rem, 1.1rem + 1.6vw, 2.2rem);
            color: var(--ocean);
            font-weight: 700;
        }

        .section-head p {
            color: var(--ink-soft);
            margin-top: .6rem;
            font-size: 1.02rem;
        }

        /* ===== Features: route line ===== */
        .route-line-wrap {
            position: relative;
        }

        .route-line-track {
            position: relative;
            display: flex;
            justify-content: space-between;
            gap: 1.5rem;
        }

        .route-line-track::before {
            content: "";
            position: absolute;
            top: 16px;
            left: 16px;
            right: 16px;
            height: 3px;
            background-image: linear-gradient(90deg, var(--teal) 0 10px, transparent 10px 18px);
            background-size: 18px 3px;
            background-repeat: repeat-x;
            z-index: 0;
        }

        .route-stop {
            position: relative;
            z-index: 1;
            flex: 1 1 0;
            min-width: 0;
        }

        .route-stop .stop-dot {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: var(--ocean);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            font-size: .95rem;
            box-shadow: 0 0 0 6px var(--paper);
        }

        .section-tint .route-stop .stop-dot {
            box-shadow: 0 0 0 6px var(--seafoam);
        }

        .route-stop h3 {
            font-size: 1.12rem;
            margin-top: 1.1rem;
            color: var(--ink);
            font-weight: 700;
        }

        .route-stop p {
            color: var(--ink-soft);
            font-size: .94rem;
            margin-top: .4rem;
        }

        @media (max-width:767.98px) {
            .route-line-track {
                flex-direction: column;
                gap: 2rem;
            }

            .route-line-track::before {
                top: 16px;
                bottom: 16px;
                left: 16px;
                right: auto;
                width: 3px;
                height: auto;
                background-image: linear-gradient(180deg, var(--teal) 0 10px, transparent 10px 18px);
                background-size: 3px 18px;
            }

            .route-stop {
                padding-left: 3.2rem;
            }

            .route-stop .stop-dot {
                position: absolute;
                left: 0;
                top: 0;
            }
        }

        /* ===== Steps ===== */
        .step-card {
            padding-right: 1rem;
        }

        .step-num {
            font-family: 'Space Grotesk', sans-serif;
            font-size: .85rem;
            font-weight: 700;
            color: var(--teal);
            border: 1.5px solid var(--teal);
            border-radius: 50%;
            width: 2.1rem;
            height: 2.1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
        }

        .step-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
        }

        .step-card p {
            color: var(--ink-soft);
            font-size: .95rem;
            margin-top: .4rem;
        }

        /* ===== Screens strip ===== */
        .screens-strip {
            display: flex;
            gap: 1.5rem;
            overflow-x: auto;
            padding: .5rem .25rem 1.25rem;
            scroll-snap-type: x proximity;
        }

        .screens-strip .phone {
            flex: none;
            scroll-snap-align: center;
        }

        .screens-strip::-webkit-scrollbar {
            height: 6px;
        }

        .screens-strip::-webkit-scrollbar-thumb {
            background: var(--line);
            border-radius: 3px;
        }

        /* ===== Testimonials ===== */
        .quote-block {
            max-width: 640px;
            margin: 0 auto;
            text-align: center;
        }

        .quote-mark {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 3.5rem;
            color: var(--mango);
            line-height: 1;
            display: block;
            margin-bottom: .5rem;
        }

        .quote-text {
            font-size: 1.3rem;
            color: var(--ocean);
            font-weight: 600;
            line-height: 1.45;
        }

        .quote-cite {
            margin-top: 1.1rem;
            color: var(--ink-soft);
            font-size: .92rem;
        }

        #testimonialCarousel .carousel-indicators {
            position: static;
            margin-top: 2rem;
        }

        #testimonialCarousel .carousel-indicators [data-bs-target] {
            width: 22px;
            height: 3px;
            border-radius: 2px;
            background: var(--line);
            opacity: 1;
            border: none;
        }

        #testimonialCarousel .carousel-indicators .active {
            background: var(--teal);
        }

        /* ===== FAQ ===== */
        .faq-section {
            background: var(--ocean);
            color: #fff;
        }

        .faq-section .section-head h2 {
            color: #fff;
        }

        .faq-section .section-head p {
            color: rgba(255, 255, 255, 0.72);
        }

        .accordion-item {
            background: transparent;
            border: 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: 0;
        }

        .accordion-button {
            background: transparent;
            color: #fff;
            font-weight: 600;
            font-size: 1.02rem;
            padding: 1.1rem 0;
            box-shadow: none;
        }

        .accordion-button:not(.collapsed) {
            background: transparent;
            color: var(--mango);
            box-shadow: none;
        }

        .accordion-button::after {
            filter: invert(1);
        }

        .accordion-body {
            color: rgba(255, 255, 255, 0.75);
            padding: 0 0 1.3rem;
            font-size: .96rem;
        }

        /* ===== Final CTA ===== */
        .cta-band {
            background: var(--teal);
            color: #fff;
            border-radius: 1.4rem;
            padding: 3.2rem 2rem;
            margin: 0 1rem;
        }

        .cta-band h2 {
            color: #fff;
            font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2rem);
            font-weight: 700;
        }

        .cta-band p {
            color: rgba(255, 255, 255, 0.82);
            max-width: 40ch;
        }

        .qr-box {
            width: 200px;
            height: 200px;
            background: #fff;
            border-radius: .7rem;
            padding: 8px;
            margin-left: auto;
        }

        /* ===== Footer ===== */
        footer {
            background: var(--ink);
            color: rgba(255, 255, 255, 0.65);
            padding: 3.5rem 0 2rem;
        }

        footer h6 {
            color: #fff;
            font-weight: 700;
            font-size: .85rem;
            margin-bottom: 1rem;
        }

        footer a {
            color: rgba(255, 255, 255, 0.65);
            font-size: .9rem;
            display: block;
            margin-bottom: .55rem;
        }

        footer a:hover {
            color: var(--mango);
        }

        .footer-brand {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            color: #fff;
            font-size: 1.25rem;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            margin-top: 2.5rem;
            padding-top: 1.5rem;
            font-size: .82rem;
        }

        .social-icon {
            width: 2.1rem;
            height: 2.1rem;
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: .5rem;
        }

        .social-icon:hover {
            border-color: var(--mango);
        }

        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }

            * {
                transition: none !important;
                animation: none !important;
            }
        }

        /* ===== Mobile responsive fixes ===== */
        @media (max-width: 767.98px) {
            .hero {
                padding: 2.75rem 0 2.75rem;
                text-align: center;
            }

            .hero .col-lg-6:first-child {
                order: 2;
            }

            .hero .col-lg-6:last-child {
                order: 1;
                margin-bottom: 1rem;
            }

            .hero h1 {
                max-width: none;
                margin-inline: auto;
            }

            .hero p.lede {
                margin-inline: auto;
            }

            .hero-stats {
                justify-content: center;
                gap: 1.5rem 2rem;
            }

            .hero .store-badges,
            .hero .d-flex.flex-wrap.gap-3 {
                justify-content: center;
            }

            .section {
                padding: 3rem 0;
            }

            .section-head {
                max-width: none;
            }

            .cta-band {
                margin: 0;
                padding: 2.25rem 1.5rem;
                text-align: center;
            }

            .cta-band .row {
                justify-content: center;
            }

            .cta-band .store-badges {
                justify-content: center;
            }

            .quote-text {
                font-size: 1.08rem;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 420px) {
            .phone {
                width: 240px;
            }

            .hero-stats {
                gap: 1.25rem 1.75rem;
            }

            .store-badge {
                padding: .45rem .8rem;
            }
        }