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

        :root {
            --navy: #0f1d2e;
            --navy-deep: #0a1520;
            --navy-light: #1a2d44;
            --navy-surface: #152238;
            --orange: #e8943a;
            --blue: #3b8ed4;
            --green: #2d8c5a;
            --white: #e8e4df;
            --white-dim: #9aa3ae;
            --white-muted: #586170;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
            background: var(--navy-deep);
            color: var(--white);
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        ::selection {
            background: var(--orange);
            color: var(--navy-deep);
        }

        /* ═══════ ROUTE LINES — the signature element ═══════ */
        .routes-bg {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .routes-bg svg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        /* ═══════ LAYOUT ═══════ */
        .wrap {
            position: relative;
            z-index: 1;
        }

        .contain {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 28px;
        }

        .contain--wide {
            max-width: 1000px;
        }

        /* ═══════ NAV ═══════ */
        .nav {
            padding: 28px 0;
        }

        .nav .contain {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .nav-mark {
            display: flex;
            align-items: center;
            gap: 14px;
            text-decoration: none;
            color: var(--white);
        }

        .nav-mark img {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.3);
        }

        .nav-mark span {
            font-weight: 700;
            font-size: 1.2rem;
            letter-spacing: -0.03em;
        }

        .nav-right {
            display: flex;
            gap: 28px;
            list-style: none;
            align-items: center;
        }

        .nav-right a {
            color: var(--white-muted);
            text-decoration: none;
            font-size: 0.88rem;
            font-weight: 500;
            transition: color 0.25s;
        }

        .nav-right a:hover { color: var(--white); }

        /* Language switcher (shown once locale pages land in PR 2) */
        .lang-switch {
            position: relative;
        }

        .lang-switch summary {
            list-style: none;
            cursor: pointer;
            color: var(--white-muted);
            font-size: 0.88rem;
            font-weight: 500;
            padding: 6px 10px;
            border: 1px solid var(--navy-light);
            border-radius: 8px;
            transition: color 0.25s, border-color 0.25s;
        }

        .lang-switch summary::-webkit-details-marker { display: none; }
        .lang-switch summary:hover { color: var(--white); border-color: var(--navy-surface); }

        .lang-switch[open] summary { color: var(--white); border-color: var(--orange); }

        .lang-switch-menu {
            position: absolute;
            right: 0;
            top: calc(100% + 8px);
            background: var(--navy);
            border: 1px solid var(--navy-light);
            border-radius: 12px;
            padding: 6px;
            list-style: none;
            min-width: 140px;
            z-index: 10;
            box-shadow: 0 10px 40px rgba(0,0,0,0.4);
        }

        .lang-switch-menu li { list-style: none; }

        .lang-switch-menu a {
            display: block;
            padding: 8px 12px;
            border-radius: 8px;
            color: var(--white-dim);
            font-size: 0.88rem;
            text-decoration: none;
            transition: background 0.2s, color 0.2s;
        }

        .lang-switch-menu a:hover {
            background: var(--navy-surface);
            color: var(--white);
        }

        .lang-switch-menu a.active {
            color: var(--orange);
        }

        @media (max-width: 560px) {
            .nav-right { gap: 16px; }
            .nav-right li.nav-feat { display: none; }
        }

        /* ═══════ HERO ═══════ */
        .hero {
            padding: 10vh 0 8vh;
            min-height: 80vh;
            display: flex;
            align-items: center;
        }

        @media (max-width: 768px) {
            .hero { padding: 8vh 0 6vh; min-height: auto; }
        }

        .hero .contain {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }

        @media (max-width: 768px) {
            .hero .contain {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 48px;
            }
        }

        .hero-text { animation: enter 1s ease-out; }

        .hero h1 {
            font-size: clamp(2.2rem, 5.2vw, 3.4rem);
            font-weight: 700;
            line-height: 1.08;
            letter-spacing: -0.04em;
            margin-bottom: 20px;
        }

        .hero h1 em {
            font-family: 'Instrument Serif', Georgia, serif;
            font-weight: 400;
            font-style: italic;
            color: var(--orange);
        }

        .hero-sub {
            font-family: 'Instrument Serif', Georgia, serif;
            font-size: clamp(1.1rem, 2.2vw, 1.35rem);
            color: var(--white-dim);
            font-style: italic;
            line-height: 1.4;
            margin-bottom: 20px;
        }

        .hero-sub em {
            color: var(--orange);
            font-style: italic;
        }

        .hero-desc {
            font-size: 1.02rem;
            line-height: 1.7;
            color: var(--white-dim);
            max-width: 440px;
            margin-bottom: 32px;
            font-weight: 400;
        }

        @media (max-width: 768px) {
            .hero-desc, .hero-sub { margin-left: auto; margin-right: auto; }
        }

        /* App Store button — styled like the real badge */
        .dl-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 0 24px;
            height: 52px;
            background: #fff;
            color: #000;
            text-decoration: none;
            border-radius: 13px;
            font-size: 0.92rem;
            font-weight: 600;
            letter-spacing: -0.01em;
            transition: transform 0.2s, box-shadow 0.3s;
            box-shadow: 0 4px 24px rgba(0,0,0,0.2);
        }

        .dl-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 40px rgba(232,148,58,0.15);
        }

        .dl-btn svg { width: 20px; height: 20px; fill: #000; }

        .dl-sub {
            margin-top: 14px;
            font-size: 0.78rem;
            color: var(--white-muted);
        }

        /* Trust strip — rating + data source badge */
        .trust-strip {
            margin-top: 22px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            font-size: 0.82rem;
        }

        @media (max-width: 768px) {
            .trust-strip { align-items: center; }
        }

        .trust-rating {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--white-dim);
            text-decoration: none;
            padding: 6px 10px;
            border-radius: 100px;
            background: rgba(232,228,223,0.04);
            border: 1px solid var(--navy-light);
            transition: border-color 0.25s, color 0.25s;
            width: fit-content;
        }

        .trust-rating:hover { border-color: var(--orange); color: var(--white); }

        .trust-rating .stars { color: var(--orange); letter-spacing: 1px; font-weight: 700; }

        .data-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--white-muted);
            padding: 6px 10px;
            border-radius: 100px;
            background: rgba(59,142,212,0.05);
            border: 1px solid var(--navy-light);
            width: fit-content;
        }

        .data-badge svg {
            width: 14px;
            height: 14px;
            fill: var(--blue);
            flex-shrink: 0;
        }

        /* Single-phone hero (clean, no semi-opaque duplicates) */
        .hero-phone {
            display: flex;
            justify-content: center;
            animation: phoneEnter 1.2s ease-out 0.15s both;
        }

        .phone {
            width: 260px;
            aspect-ratio: 9 / 19.2;
            background: var(--navy);
            border-radius: 36px;
            border: 2.5px solid var(--navy-light);
            position: relative;
            overflow: hidden;
            box-shadow:
                0 60px 120px -20px rgba(0,0,0,0.55),
                inset 0 1px 0 rgba(255,255,255,0.04);
        }

        .phone-inner {
            position: absolute;
            inset: 0;
            border-radius: 34px;
            overflow: hidden;
        }

        .phone-screen {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 34px;
        }

        .phone-notch {
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 90px;
            height: 26px;
            background: #000;
            border-radius: 16px;
            z-index: 2;
        }

        @media (max-width: 768px) {
            .phone { width: 220px; }
        }

        /* ═══════ FEATURES — editorial layout, not a grid ═══════ */
        .features {
            padding: 12vh 0;
        }

        .feat-heading {
            margin-bottom: 48px;
        }

        .feat-heading .num {
            font-size: 0.72rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            color: var(--orange);
            margin-bottom: 12px;
        }

        .feat-heading h2 {
            font-size: clamp(1.6rem, 3.5vw, 2.2rem);
            font-weight: 700;
            letter-spacing: -0.03em;
            line-height: 1.2;
        }

        /* ── Bento grid ── */
        .bento {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: auto auto auto;
            gap: 14px;
        }

        @media (max-width: 700px) {
            .bento {
                grid-template-columns: 1fr;
            }
        }

        .bento-card {
            background: var(--navy);
            border: 1px solid var(--navy-light);
            border-radius: 20px;
            padding: 32px 28px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 16px;
            transition: border-color 0.3s, transform 0.2s;
            position: relative;
            overflow: hidden;
        }

        .bento-card:hover {
            border-color: var(--navy-surface);
            transform: translateY(-2px);
        }

        .bento-card h3 {
            font-size: 1.05rem;
            font-weight: 600;
            letter-spacing: -0.01em;
            line-height: 1.3;
        }

        .bento-card p {
            font-size: 0.88rem;
            color: var(--white-dim);
            line-height: 1.6;
        }

        .bento-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            padding: 5px 12px;
            border-radius: 100px;
            width: fit-content;
        }

        .bento-tag--orange { background: rgba(232,148,58,0.12); color: var(--orange); }
        .bento-tag--blue { background: rgba(59,142,212,0.12); color: var(--blue); }
        .bento-tag--green { background: rgba(45,140,90,0.12); color: var(--green); }
        .bento-tag--white { background: rgba(232,228,223,0.08); color: var(--white-dim); }

        /* Hero card — spans 2 columns */
        .bento-hero {
            grid-column: span 2;
            padding: 40px 36px;
        }

        .bento-hero h3 {
            font-size: 1.5rem;
            letter-spacing: -0.025em;
        }

        .bento-hero p {
            font-size: 0.95rem;
            max-width: 380px;
        }

        /* Accent stripe on hero card */
        .bento-hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 36px;
            right: 36px;
            height: 3px;
            border-radius: 3px 3px 0 0;
            background: linear-gradient(90deg, var(--orange), var(--blue), var(--green));
            opacity: 0.5;
        }

        /* Tall card — spans 3 rows */
        .bento-tall {
            grid-row: span 3;
        }

        /* Banner card — full width, compact */
        .bento-banner {
            grid-column: 1 / -1;
            flex-direction: row;
            align-items: center;
            gap: 20px;
            padding: 24px 32px;
            background: var(--navy-surface);
            border-color: transparent;
        }

        .bento-banner h3 { flex-shrink: 0; }
        .bento-banner p { flex: 1; }

        .bento-banner .bento-tag {
            flex-shrink: 0;
        }

        @media (max-width: 700px) {
            .bento-hero { grid-column: span 1; padding: 32px 28px; }
            .bento-hero h3 { font-size: 1.2rem; }
            .bento-tall { grid-row: span 1; }
            .bento-banner { flex-direction: column; align-items: flex-start; }
        }

        /* Map card with screenshot */
        .bento-map {
            padding-bottom: 0;
            gap: 12px;
        }

        .bento-map-text {
            flex-shrink: 0;
        }

        .bento-map-img {
            width: calc(100% + 56px);
            margin: 0 -28px;
            margin-top: auto;
            border-radius: 12px 12px 0 0;
            display: block;
            object-fit: cover;
            object-position: top center;
            flex: 1;
            min-height: 0;
        }

        /* Mini live indicator in real-time card */
        .live-dots {
            display: flex;
            gap: 6px;
            margin-top: 8px;
        }

        .live-dots span {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            animation: livePulse 1.4s ease-in-out infinite;
        }

        .live-dots span:nth-child(1) { background: var(--orange); animation-delay: 0s; }
        .live-dots span:nth-child(2) { background: var(--blue); animation-delay: 0.2s; }
        .live-dots span:nth-child(3) { background: var(--green); animation-delay: 0.4s; }

        @keyframes livePulse {
            0%, 100% { opacity: 0.3; transform: scale(0.85); }
            50% { opacity: 1; transform: scale(1); }
        }

        /* ── Languages card inside bento ── */
        .bento-langs {
            justify-content: center;
        }

        .bento-langs .lang-list {
            margin-top: 10px;
            display: flex;
            flex-direction: column;
            gap: 4px;
            font-size: 0.86rem;
            color: var(--white-dim);
        }

        .bento-langs .lang-sep { display: none; }

        /* ═══════ CTA BAND (mid-page) ═══════ */
        .cta-band {
            padding: 10vh 0 8vh;
            border-top: 1px solid var(--navy-light);
            border-bottom: 1px solid var(--navy-light);
        }

        .cta-band .contain {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 22px;
        }

        .cta-band h2 {
            font-size: clamp(1.6rem, 3.5vw, 2.4rem);
            font-weight: 700;
            letter-spacing: -0.03em;
            line-height: 1.2;
            max-width: 620px;
        }

        .cta-band h2 em {
            font-family: 'Instrument Serif', Georgia, serif;
            font-style: italic;
            color: var(--orange);
            font-weight: 400;
        }

        .cta-band p {
            font-size: 1rem;
            color: var(--white-dim);
            max-width: 520px;
            line-height: 1.6;
        }

        /* ═══════ SUPPORT ═══════ */
        .support {
            padding: 10vh 0;
            border-top: 1px solid var(--navy-light);
        }

        .support-heading {
            font-size: clamp(1.6rem, 3.5vw, 2.2rem);
            font-weight: 700;
            letter-spacing: -0.03em;
            margin-bottom: 48px;
        }

        .support-grid {
            display: grid;
            grid-template-columns: 1fr 1.4fr;
            gap: 20px;
            align-items: start;
        }

        @media (max-width: 700px) {
            .support-grid { grid-template-columns: 1fr; }
        }

        /* Contact card */
        .contact-card {
            background: var(--navy);
            border: 1px solid var(--navy-light);
            border-radius: 20px;
            padding: 36px 32px;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .contact-card h3 {
            font-size: 1.05rem;
            font-weight: 600;
            letter-spacing: -0.01em;
        }

        .contact-card p {
            font-size: 0.9rem;
            color: var(--white-dim);
            line-height: 1.6;
        }

        .contact-email {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 16px 20px;
            background: var(--navy-deep);
            border: 1px solid var(--navy-light);
            border-radius: 14px;
            text-decoration: none;
            transition: border-color 0.3s, background 0.3s;
        }

        .contact-email:hover {
            border-color: var(--orange);
            background: rgba(232, 148, 58, 0.04);
        }

        .contact-email-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--orange);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-email-icon svg {
            width: 18px;
            height: 18px;
            fill: var(--navy-deep);
        }

        .contact-email-text {
            display: flex;
            flex-direction: column;
            gap: 1px;
        }

        .contact-email-label {
            font-size: 0.72rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--white-muted);
        }

        .contact-email-addr {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--white);
        }

        /* FAQ column */
        .faq-col {
            display: flex;
            flex-direction: column;
            gap: 1px;
            background: var(--navy-light);
            border-radius: 20px;
            overflow: hidden;
        }

        .faq-item {
            padding: 28px 28px;
            background: var(--navy);
            transition: background 0.25s;
        }

        .faq-item:hover {
            background: var(--navy-surface);
        }

        .faq-item strong {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 6px;
            font-size: 0.92rem;
            font-weight: 600;
        }

        .faq-item strong::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--orange);
            flex-shrink: 0;
        }

        .faq-item p {
            font-size: 0.88rem;
            color: var(--white-dim);
            line-height: 1.65;
            padding-left: 16px;
        }

        /* ═══════ FOOTER ═══════ */
        footer {
            padding: 32px 0 96px;
            border-top: 1px solid var(--navy-light);
        }

        footer .contain {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        .foot-left {
            display: flex;
            align-items: center;
            gap: 18px;
            flex-wrap: wrap;
        }

        .foot-copy {
            font-size: 0.78rem;
            color: var(--white-muted);
        }

        .foot-dl {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.78rem;
            color: var(--orange);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.25s;
        }

        .foot-dl:hover { color: var(--white); }

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

        .foot-links a {
            font-size: 0.78rem;
            color: var(--white-muted);
            text-decoration: none;
            transition: color 0.25s;
        }

        .foot-links a:hover { color: var(--white-dim); }

        /* ═══════ STICKY MOBILE CTA ═══════ */
        .sticky-cta {
            position: fixed;
            left: 50%;
            transform: translateX(-50%) translateY(120%);
            bottom: 16px;
            z-index: 50;
            display: none;
            padding: 12px 22px;
            background: #fff;
            color: #000;
            border-radius: 14px;
            font-size: 0.9rem;
            font-weight: 600;
            text-decoration: none;
            box-shadow: 0 12px 40px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.08);
            transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
            align-items: center;
            gap: 8px;
        }

        .sticky-cta svg { width: 16px; height: 16px; fill: #000; }

        .sticky-cta.visible {
            transform: translateX(-50%) translateY(0);
        }

        @media (max-width: 768px) {
            .sticky-cta { display: inline-flex; }
        }

        /* ═══════ ANIMATIONS ═══════ */
        @keyframes enter {
            from { opacity: 0; transform: translateY(32px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes phoneEnter {
            from { opacity: 0; transform: translateY(48px) scale(0.96); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }

        @keyframes draw {
            to { stroke-dashoffset: 0; }
        }

        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

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

        /* ═══════ CONTENT / ARTICLE PAGES ═══════ */
        .article-hero {
            padding: 8vh 0 6vh;
        }

        .article-hero .contain { max-width: 760px; }

        .breadcrumbs {
            display: flex;
            gap: 8px;
            align-items: center;
            flex-wrap: wrap;
            font-size: 0.82rem;
            color: var(--white-muted);
            margin-bottom: 18px;
        }

        .breadcrumbs a {
            color: var(--white-dim);
            text-decoration: none;
            transition: color 0.25s;
        }

        .breadcrumbs a:hover { color: var(--orange); }

        .breadcrumbs svg {
            width: 10px;
            height: 10px;
            fill: var(--white-muted);
            flex-shrink: 0;
        }

        .article-hero h1 {
            font-size: clamp(1.8rem, 4vw, 2.6rem);
            font-weight: 700;
            line-height: 1.15;
            letter-spacing: -0.03em;
            margin-bottom: 16px;
        }

        .article-hero h1 em {
            font-family: 'Instrument Serif', Georgia, serif;
            font-style: italic;
            font-weight: 400;
            color: var(--orange);
        }

        .article-hero .lede {
            font-size: 1.1rem;
            line-height: 1.6;
            color: var(--white-dim);
        }

        .article-body {
            padding: 2vh 0 10vh;
        }

        .article-body .contain { max-width: 760px; }

        .article {
            color: var(--white-dim);
            line-height: 1.72;
            font-size: 1rem;
        }

        .article h2 {
            color: var(--white);
            font-size: clamp(1.35rem, 2.5vw, 1.6rem);
            font-weight: 700;
            letter-spacing: -0.02em;
            margin: 48px 0 14px;
            line-height: 1.25;
        }

        .article h3 {
            color: var(--white);
            font-size: 1.1rem;
            font-weight: 600;
            margin: 28px 0 10px;
        }

        .article p { margin-bottom: 18px; }

        .article ul, .article ol { margin: 0 0 18px 24px; }

        .article li { margin-bottom: 8px; }

        .article strong { color: var(--white); }

        .article a {
            color: var(--orange);
            text-decoration: none;
            border-bottom: 1px solid rgba(232,148,58,0.3);
            transition: border-color 0.25s, color 0.25s;
        }

        .article a:hover {
            border-color: var(--orange);
            color: var(--white);
        }

        .article-callout {
            background: var(--navy);
            border: 1px solid var(--navy-light);
            border-left: 3px solid var(--orange);
            border-radius: 12px;
            padding: 20px 24px;
            margin: 28px 0;
        }

        .article-callout strong { color: var(--orange); }

        .compare-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0 32px;
            background: var(--navy);
            border-radius: 14px;
            overflow: hidden;
            font-size: 0.92rem;
        }

        .compare-table th,
        .compare-table td {
            padding: 14px 18px;
            text-align: left;
            border-bottom: 1px solid var(--navy-light);
            vertical-align: top;
        }

        .compare-table thead th {
            background: var(--navy-surface);
            color: var(--white);
            font-weight: 600;
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .compare-table tbody td:first-child {
            color: var(--white);
            font-weight: 600;
        }

        .compare-table tr:last-child td { border-bottom: none; }

        .compare-check { color: var(--green); }
        .compare-cross { color: var(--white-muted); }

        .toc {
            background: var(--navy);
            border: 1px solid var(--navy-light);
            border-radius: 14px;
            padding: 20px 24px;
            margin: 24px 0 36px;
        }

        .toc h2 {
            margin: 0 0 12px;
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            color: var(--orange);
            font-weight: 600;
        }

        .toc ol {
            margin: 0;
            padding-left: 20px;
            list-style: decimal;
        }

        .toc li {
            margin-bottom: 6px;
            font-size: 0.92rem;
        }

        .toc a {
            color: var(--white-dim);
            text-decoration: none;
            border-bottom: none;
        }

        .toc a:hover { color: var(--orange); }
