        :root {
            /* Neutrals — Millyon Design System */
            --ink:      #0f0f14;   /* --millyon-black / --text */
            --ink-soft: #48484f;   /* readable body copy */
            --ink-mute: #8a8a8e;   /* --text-dim (secondary) */
            --line:     #e5e5ea;   /* --separator */
            --bg:       #ffffff;   /* --card */
            --bg-alt:   #f2f2f7;   /* --bg (iOS grouped) */

            /* Brand (fixed across all Millyon products) */
            --brand-blue:   #2ebeef;  /* --millyon-blue — actions/links/brand only */
            --brand-deep:   #1fa9d8;  /* --millyon-blue-600 hover/pressed */
            --brand-orange: #f6a23a;  /* the logo's sweeping arrow */

            --accent:      #2ebeef;
            --accent-ink:  #1fa9d8;
            --accent-text: #0e7ca0;   /* darkened brand cyan for accessible text on white */

            /* Category accents — exact DS hues */
            --c-green:  #6ec36a;
            --c-teal:   #4aa8c9;
            --c-orange: #f6a23a;
            --c-red:    #f24d4d;
            --c-purple: #9166e8;

            --display: -apple-system, 'SF Pro Display', 'SF Pro', 'Inter', system-ui, sans-serif;
            --body:    -apple-system, 'SF Pro Text', 'SF Pro', 'Inter', system-ui, sans-serif;
            --ease:    cubic-bezier(0.32, 0.72, 0, 1);

            /* Elevation — DS is light and atmospheric */
            --shadow-card: 0 1px 2px rgba(15,15,20,0.04);   /* resting card */
            --shadow-soft: 0 4px 18px rgba(0,0,0,0.08);      /* floating */
            --shadow-glow: 0 4px 14px rgba(46,190,239,0.33); /* blue CTA glow signature */
            --shadow-phone: 0 40px 80px -28px rgba(15,15,20,.42), 0 12px 28px -12px rgba(15,15,20,.26);
        }

        *, *::before, *::after { box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        body {
            font-family: var(--body);
            color: var(--ink);
            background: var(--bg);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
        }

        h1, h2, h3, h4, .display { font-family: var(--display); }

        a { text-decoration: none; }
        img { max-width: 100%; }

        /* ── DEVICE FRAME ────────────────────────── */
        .device {
            position: relative;
            background: #0c0c14;
            border-radius: 42px;
            padding: 9px;
            box-shadow: var(--shadow-phone);
        }
        .device img {
            display: block;
            width: 100%;
            height: auto;
            border-radius: 33px;
        }
        .device-land {
            background: #0c0c14;
            border-radius: 40px;
            padding: 10px;
            box-shadow: var(--shadow-phone);
        }
        .device-land img { display: block; width: 100%; height: auto; border-radius: 30px; }

        /* ── NAV ─────────────────────────────────── */
        .site-nav {
            position: sticky;
            top: 0;
            z-index: 300;
            background: rgba(255,255,255,0.72);
            backdrop-filter: saturate(180%) blur(16px);
            -webkit-backdrop-filter: saturate(180%) blur(16px);
            border-bottom: 1px solid var(--line);
        }
        .site-nav .inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.9rem 0;
        }
        .brand-logo { display: inline-flex; align-items: center; }
        .brand-logo svg { height: 44px; width: 44px; display: block; }

        .btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--accent-text);
            background: rgba(46,190,239,0.08);
            border: 1px solid rgba(46,190,239,0.28);
            border-radius: 999px;
            padding: 0.6rem 1.35rem;
            font-weight: 600;
            font-size: 0.9rem;
            transition: background .2s var(--ease), transform .2s var(--ease);
        }
        .btn-ghost:hover {
            background: rgba(46,190,239,0.15);
            color: var(--accent-text);
            transform: translateY(-1px);
        }

        .badge-appstore img {
            height: 52px;
            width: auto;
            display: block;
        }
        .badge-appstore { display: inline-block; transition: transform .2s var(--ease), filter .2s var(--ease); }
        .badge-appstore:hover { transform: translateY(-2px); filter: drop-shadow(var(--shadow-glow)); }

        /* ── HERO ────────────────────────────────── */
        .hero {
            position: relative;
            padding: 5.5rem 0 4rem;
            background:
                radial-gradient(ellipse 55% 45% at 82% 12%, rgba(246,162,58,0.14), transparent 70%),
                radial-gradient(ellipse 50% 45% at 6% 88%, rgba(46,190,239,0.14), transparent 70%),
                var(--bg);
            overflow: hidden;
        }
        .hero-content { position: relative; z-index: 2; }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.76rem;
            font-weight: 600;
            letter-spacing: 0.4px;
            text-transform: uppercase;
            color: var(--accent-text);
            background: rgba(46,190,239,0.10);
            border: 1px solid rgba(46,190,239,0.22);
            padding: 0.4rem 0.9rem;
            border-radius: 50px;
            margin-bottom: 1.5rem;
        }
        .eyebrow .dot {
            width: 7px; height: 7px; border-radius: 50%;
            background: var(--c-green);
            box-shadow: 0 0 0 3px rgba(110,195,106,0.20);
        }

        .hero-title {
            font-size: clamp(2.7rem, 6vw, 4.6rem);
            font-weight: 700;
            line-height: 1.02;
            letter-spacing: -2.5px;
            color: var(--ink);
            margin-bottom: 1.4rem;
        }
        .hero-title em {
            font-style: normal;
            color: var(--accent-text);
        }
        .hero-sub {
            font-size: clamp(1.05rem, 1.6vw, 1.2rem);
            color: var(--ink-soft);
            line-height: 1.65;
            max-width: 470px;
            margin-bottom: 2.2rem;
        }
        .hero-actions {
            display: flex;
            align-items: center;
            gap: 1.4rem;
            flex-wrap: wrap;
        }
        .hero-note {
            font-size: 0.85rem;
            color: var(--ink-mute);
            margin-top: 1.3rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .hero-note i { color: var(--c-green); }

        /* Two-phone hero stack */
        .hero-visual { position: relative; height: 640px; }
        .hero-visual::before {
            content: '';
            position: absolute;
            width: 460px; height: 460px;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            background: radial-gradient(circle, rgba(246,162,58,0.22), rgba(46,190,239,0.16) 55%, transparent 72%);
            filter: blur(10px);
            z-index: 0;
        }
        .device--front {
            position: absolute;
            left: 8%; top: 50%;
            transform: translateY(-50%) rotate(-4deg);
            width: 292px; z-index: 2;
        }
        .device--back {
            position: absolute;
            right: 4%; top: 50%;
            transform: translateY(-44%) rotate(6deg);
            width: 262px; z-index: 1;
        }

        /* ── LOGO STRIP / STATS ──────────────────── */
        .stats {
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
            background: var(--bg-alt);
        }
        .stat-item { text-align: center; padding: 2.2rem 1rem; }
        .stat-num {
            font-family: var(--display);
            font-weight: 700;
            font-size: 2.4rem;
            letter-spacing: -1.5px;
            color: var(--ink);
            line-height: 1;
        }
        .stat-label {
            font-size: 0.85rem;
            color: var(--ink-mute);
            margin-top: 0.45rem;
        }

        /* ── SECTIONS ────────────────────────────── */
        .sec { padding: 6.5rem 0; }
        .sec-label {
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 1.4px;
            text-transform: uppercase;
            color: var(--ink-mute);
            margin-bottom: 0.85rem;
        }
        .sec-title {
            font-size: clamp(2rem, 4vw, 3.1rem);
            font-weight: 700;
            letter-spacing: -1.7px;
            line-height: 1.08;
            color: var(--ink);
        }
        .sec-lead {
            font-size: 1.1rem;
            color: var(--ink-soft);
            line-height: 1.65;
            max-width: 620px;
        }

        /* ── FEATURES ────────────────────────────── */
        .features { background: var(--bg-alt); }
        .feat-card {
            background: #fff;
            border-radius: 20px;
            padding: 2rem 1.75rem;
            height: 100%;
            box-shadow: var(--shadow-card);
            transition: transform .22s var(--ease), box-shadow .22s var(--ease);
        }
        .feat-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-soft);
        }
        .feat-icon {
            width: 52px; height: 52px;
            border-radius: 15px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.25rem;
            margin-bottom: 1.25rem;
        }
        .fi-o { background: rgba(246,162,58,0.15);  color: #c9781a; }
        .fi-b { background: rgba(46,190,239,0.15);  color: var(--accent-text); }
        .fi-p { background: rgba(145,102,232,0.15); color: #7a4fd6; }
        .fi-t { background: rgba(74,168,201,0.16);  color: #2f7f9c; }
        .fi-g { background: rgba(110,195,106,0.16); color: #4a9e46; }
        .fi-pink { background: rgba(228,87,143,0.14); color: #d43f78; }
        .feat-card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            letter-spacing: -0.4px;
            margin-bottom: 0.55rem;
        }
        .feat-card p {
            font-size: 0.96rem;
            line-height: 1.65;
            color: var(--ink-soft);
            margin: 0;
        }

        /* ── BENEFITS ────────────────────────────── */
        .benefits { background: var(--bg-alt); }
        .benefit-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem 2.5rem;
            margin-top: 3.5rem;
        }
        .benefit { display: flex; gap: 1rem; align-items: flex-start; }
        .benefit-icon {
            flex: 0 0 auto;
            width: 46px; height: 46px;
            border-radius: 13px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.15rem;
        }
        .benefit h3 {
            font-size: 1.05rem;
            font-weight: 700;
            letter-spacing: -0.3px;
            margin: 0 0 0.3rem;
        }
        .benefit p {
            font-size: 0.95rem;
            line-height: 1.55;
            color: var(--ink-soft);
            margin: 0;
        }
        @media (max-width: 991px) { .benefit-grid { grid-template-columns: repeat(2, 1fr); gap: 1.75rem 2rem; } }
        @media (max-width: 575px) { .benefit-grid { grid-template-columns: 1fr; gap: 1.5rem; } }

        /* ── SHOWCASE ────────────────────────────── */
        .showcase-row { align-items: center; }
        .showcase-row + .showcase-row { margin-top: 7rem; }
        .showcase-copy .sec-title { margin-bottom: 1.1rem; }
        .showcase-copy p {
            font-size: 1.08rem;
            line-height: 1.75;
            color: var(--ink-soft);
        }
        .mini-list { list-style: none; padding: 0; margin: 1.6rem 0 0; }
        .mini-list li {
            display: flex; align-items: flex-start; gap: 0.7rem;
            font-size: 1rem; color: var(--ink);
            padding: 0.45rem 0;
        }
        .mini-list i {
            color: var(--accent-text);
            margin-top: 0.25rem;
            font-size: 0.9rem;
        }
        .showcase-phone { max-width: 300px; margin: 0 auto; }

        /* ── GRID FEATURE (landscape) ────────────── */
        .grid-feature { background: var(--bg-alt); }
        .grid-feature .device-land { max-width: 960px; margin: 3rem auto 0; }

        /* ── THEMES ──────────────────────────────── */
        .themes-track {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 1.6rem;
            margin-top: 3.5rem;
        }
        .theme-item { text-align: center; }
        .theme-item .device { border-radius: 30px; padding: 6px; }
        .theme-item .device img { border-radius: 25px; }
        .theme-name {
            margin-top: 0.9rem;
            font-weight: 600;
            font-size: 0.92rem;
            color: var(--ink);
        }
        .theme-sub {
            font-size: 0.78rem;
            color: var(--ink-mute);
        }

        /* ── VIDEO ───────────────────────────────── */
        .video-sec { background: var(--ink); }
        .video-sec .sec-label { color: rgba(255,255,255,0.55); }
        .video-sec .sec-title { color: #fff; }
        .video-sec .sec-lead { color: rgba(255,255,255,0.6); margin: 0.85rem auto 0; }
        .video-frame {
            border-radius: 22px;
            overflow: hidden;
            box-shadow: 0 50px 110px -30px rgba(0,0,0,0.7);
            border: 1px solid rgba(255,255,255,0.08);
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 9;
            background: #0a0a0a;
        }
        .video-frame iframe,
        .video-frame video {
            position: absolute; inset: 0;
            width: 100%; height: 100%;
            border: none; display: block;
            object-fit: cover;
        }

        /* ── DOWNLOAD BAND (two phones behind a dark overlay) ── */
        .download-band {
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-height: 640px;
            padding: 6rem 0;
            background: #0f0f14;
            color: #fff;
            text-align: center;
        }

        /* Layer 1 — the two phones, partly off screen, filling the section */
        .db-stage { position: absolute; inset: 0; z-index: 0; }
        .db-stage .device,
        .db-stage .device-land {
            position: absolute;
            box-shadow: 0 40px 90px -20px rgba(0,0,0,0.6);
        }
        .db-stage .device-land {
            width: 720px;
            left: -90px; bottom: -70px;
            transform: rotate(-7deg);
        }
        .db-stage .device {
            width: 320px;
            right: -30px; top: -70px;
            transform: rotate(8deg);
        }

        /* Layer 2 — grey overlay that pushes the phones into the background */
        .db-overlay {
            position: absolute; inset: 0; z-index: 1;
            background:
                radial-gradient(ellipse 75% 75% at 50% 50%, rgba(15,15,20,0.42), rgba(15,15,20,0.56) 100%);
        }

        /* Layer 3 — text, popping on top */
        .db-content { position: relative; z-index: 2; max-width: 620px; margin: 0 auto; }
        .db-content .sec-label { color: rgba(255,255,255,0.65); }
        .db-content h2 {
            font-family: var(--display);
            font-size: clamp(2.3rem, 5vw, 3.6rem);
            font-weight: 700;
            letter-spacing: -1.7px;
            line-height: 1.05;
            margin-bottom: 1rem;
            text-shadow: 0 2px 30px rgba(0,0,0,0.5);
        }
        .db-content p {
            color: rgba(255,255,255,0.85);
            font-size: 1.12rem;
            line-height: 1.6;
            max-width: 460px;
            margin: 0 auto 2rem;
            text-shadow: 0 1px 20px rgba(0,0,0,0.5);
        }
        .db-content .badge-appstore { position: relative; }
        .db-note {
            display: flex; align-items: center; justify-content: center; gap: 0.5rem;
            margin-top: 1.4rem;
            font-size: 0.85rem;
            color: rgba(255,255,255,0.7);
        }
        .db-note i { color: var(--c-green); }

        @media (max-width: 991px) {
            .download-band { min-height: 560px; padding: 5rem 0; }
            .db-stage .device-land { width: 560px; left: -80px; bottom: -50px; }
            .db-stage .device { width: 250px; right: -40px; top: -50px; }
        }
        @media (max-width: 575px) {
            .download-band { min-height: 520px; }
            .db-stage .device-land { width: 118%; left: -9%; bottom: -30px; }
            .db-stage .device { width: 190px; right: -50px; top: -40px; }
            .db-overlay { background:
                radial-gradient(ellipse 90% 60% at 50% 50%, rgba(15,15,20,0.46), rgba(15,15,20,0.60) 100%); }
        }

        /* ── FOOTER ──────────────────────────────── */
        footer {
            background: var(--bg);
            border-top: 1px solid var(--line);
            padding: 2.5rem 0;
        }
        .footer-inner {
            display: flex; align-items: center; justify-content: space-between;
            flex-wrap: wrap; gap: 1rem;
        }
        .footer-brand svg { height: 40px; width: 40px; display: block; }
        footer .muted { color: var(--ink-mute); font-size: 0.88rem; }
        footer a.link { color: var(--ink-soft); font-size: 0.88rem; }
        footer a.link:hover { color: var(--ink); }

        /* ── SCROLL ANIMATION ────────────────────── */
        .fade-up {
            opacity: 0;
            transform: translateY(26px);
            transition: opacity .6s ease, transform .6s ease;
        }
        .fade-up.visible { opacity: 1; transform: none; }
        .delay-1 { transition-delay: .08s; }
        .delay-2 { transition-delay: .16s; }
        .delay-3 { transition-delay: .24s; }
        .delay-4 { transition-delay: .32s; }

        /* ── RESPONSIVE ──────────────────────────── */
        @media (max-width: 1199px) {
            .themes-track { grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
        }
        @media (max-width: 991px) {
            .hero { padding: 3.5rem 0 3rem; text-align: center; }
            .hero-sub { margin-left: auto; margin-right: auto; }
            .hero-actions { justify-content: center; }
            .hero-note { justify-content: center; }
            .hero-visual { height: auto; margin-top: 3rem; }
            .hero-visual::before { width: 340px; height: 340px; }
            .device--back { display: none; }
            .device--front { position: static; transform: none; width: 264px; margin: 0 auto; }
            .sec { padding: 4.5rem 0; }
            .showcase-row + .showcase-row { margin-top: 4.5rem; }
            .showcase-copy { text-align: center; margin-bottom: 2.5rem; }
            .mini-list { display: inline-block; text-align: left; }
            .showcase-copy .sec-lead { margin-left: auto; margin-right: auto; }
        }
        @media (max-width: 575px) {
            .themes-track { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
            .footer-inner { justify-content: center; text-align: center; }
        }
        @media (prefers-reduced-motion: reduce) {
            html { scroll-behavior: auto; }
            .fade-up { opacity: 1; transform: none; transition: none; }
            * { transition: none !important; }
        }

/* ═══════════════════════════════════════════════════════════
   SUBPAGES (FAQ, Terms, audience pages, More apps)
   Added when the landing page grew into a multi-page site.
   ═══════════════════════════════════════════════════════════ */

/* ── NAV LINKS (header menu) ──────────────────── */
.nav-links {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    margin: 0 auto 0 2.4rem;
}
.nav-links > a,
.nav-links .nav-link-item {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--ink-soft);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: color .2s var(--ease);
}
.nav-links > a:hover,
.nav-links .nav-link-item:hover { color: var(--ink); }
.nav-links .nav-link-item i { font-size: 0.7rem; margin-left: 0.15rem; }
.nav-drop .dropdown-menu {
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow-soft);
    padding: 0.4rem;
    margin-top: 0.6rem;
    min-width: 190px;
}
.nav-drop .dropdown-item {
    border-radius: 9px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--ink-soft);
    padding: 0.55rem 0.8rem;
}
.nav-drop .dropdown-item:hover,
.nav-drop .dropdown-item:focus {
    background: rgba(46,190,239,0.10);
    color: var(--accent-text);
}
@media (max-width: 991px) {
    .nav-links { display: none; }
}

.footer-links { display: flex; gap: 1.3rem; flex-wrap: wrap; }

/* ── INTERIOR PAGE HERO ───────────────────────── */
.page-hero {
    position: relative;
    padding: 4.5rem 0 3.25rem;
    text-align: center;
    overflow: hidden;
    background:
        radial-gradient(ellipse 55% 60% at 82% 0%, rgba(246,162,58,0.14), transparent 70%),
        radial-gradient(ellipse 55% 60% at 8% 100%, rgba(46,190,239,0.14), transparent 70%),
        var(--bg);
    border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow { margin-bottom: 1.1rem; }
.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 700;
    letter-spacing: -1.8px;
    line-height: 1.05;
    color: var(--ink);
    margin-bottom: 1rem;
}
.page-hero h1 em { font-style: normal; color: var(--accent-text); }
.page-hero p.lead {
    font-size: 1.12rem;
    color: var(--ink-soft);
    line-height: 1.6;
    max-width: 620px;
    margin: 0 auto;
}

/* ── FAQ ACCORDION ────────────────────────────── */
.faq { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.4rem 0;
    font-family: var(--display);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.3px;
    color: var(--ink);
    cursor: pointer;
}
.faq-q:focus-visible { outline: 2px solid var(--brand-blue); outline-offset: 4px; }
.faq-q .faq-chev {
    flex: 0 0 auto;
    color: var(--accent-text);
    font-size: 0.85rem;
    transition: transform .25s var(--ease);
}
.faq-q[aria-expanded="true"] .faq-chev { transform: rotate(180deg); }
.faq-a { padding: 0 0 1.4rem; }
.faq-a p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--ink-soft);
    margin: 0;
    max-width: 680px;
}

/* ── LEGAL / TERMS ────────────────────────────── */
.legal { max-width: 760px; margin: 0 auto; }
.legal .updated {
    font-size: 0.9rem;
    color: var(--ink-mute);
    margin-bottom: 2.2rem;
}
.legal h2 {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--ink);
    margin: 2.4rem 0 0.6rem;
}
.legal p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--ink-soft);
    margin: 0 0 1rem;
}
.legal a { color: var(--accent-text); }
.legal a:hover { text-decoration: underline; }

/* ── APP CARDS (More apps) ────────────────────── */
.app-grid { margin-top: 1rem; }
.app-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.25rem 1.75rem;
    height: 100%;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.app-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.app-icon-img {
    width: 74px; height: 74px;
    border-radius: 18px;
    margin: 0 auto 1.25rem;
    display: block;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--line);
}
.app-icon-svg {
    width: 74px; height: 74px;
    display: block;
    margin: 0 auto 1.25rem;
}
.app-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.4px;
    margin-bottom: 0.55rem;
}
.app-card p {
    font-size: 0.96rem;
    line-height: 1.6;
    color: var(--ink-soft);
    margin: 0 0 1.35rem;
}
.app-card .badge-appstore img { height: 44px; margin: 0 auto; }
