/* landing.css - landing page (/) specific styles. Requires redesign-core.css. */

        .pain-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-top:46px; }
        .pain { display:flex; gap:14px; align-items:flex-start; text-align:left; }
        .pain .material-icons { color:var(--orange); font-size:26px; flex:0 0 auto; margin-top:2px; }
        .pain h4 { font-size:1.05rem; margin:0 0 5px; letter-spacing:-0.01em; }
        .pain p { color:var(--muted); font-size:0.95rem; margin:0; line-height:1.55; }
        .pain-pivot { margin:48px auto 0; text-align:center; font-size:1.3rem; font-weight:700; color:var(--ink); max-width:800px; letter-spacing:-0.01em; line-height:1.45; }
        .pain-pivot b { color:var(--orange); }
        @media(max-width:900px){ .pain-grid{ grid-template-columns:1fr; gap:22px; } .pain-pivot{ font-size:1.12rem; } }

        /* Hero */
        .hero { position: relative; padding: 165px 0 90px; overflow: hidden; background: linear-gradient(180deg, var(--bg-tint), #fff 70%); }
        .hero::before {
            content: ""; position: absolute; top: -160px; left: 50%; transform: translateX(-50%);
            width: 1100px; height: 620px;
            background: radial-gradient(ellipse at center, rgba(255,102,0,0.14), transparent 62%);
            pointer-events: none; z-index: 0;
        }
        .hero-grid {
            position: absolute; inset: 0; z-index: 0; opacity: 0.5;
            background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
            background-size: 58px 58px;
            mask-image: radial-gradient(ellipse 80% 55% at 50% 32%, #000 25%, transparent 72%);
            -webkit-mask-image: radial-gradient(ellipse 80% 55% at 50% 32%, #000 25%, transparent 72%);
        }
        .hero-inner { position: relative; z-index: 1; text-align: center; }
        .hero .hero-logo { height: 60px; width: auto; margin: 0 auto 6px; }
        .hero-tagline { font-weight: 700; font-size: 1.02rem; letter-spacing: 0.005em; color: var(--ink); margin: 0 0 34px; }
        .hero .pill {
            display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px; border-radius: 999px;
            border: 1px solid var(--line-2); background: #fff; font-size: 0.85rem; color: var(--muted);
            margin-bottom: 26px; box-shadow: var(--shadow-sm);
        }
        .hero .pill b { color: var(--ink); font-weight: 700; }
        .hero h1 { margin-bottom: 20px; }
        .hero h1 .accent { color: var(--orange); }
        .hero-sub { color: var(--muted); font-size: 1.15rem; max-width: 640px; margin: 0 auto 34px; }

        /* Search module */
        .search-wrap { max-width: 720px; margin: 0 auto; }
        /* Category tabs — baseline with animated active underline */
        .search-tabs { display: flex; align-items: stretch; justify-content: center; gap: 4px; margin-bottom: 22px; background: none; border: none; border-bottom: 1px solid var(--line); padding: 0; }
        .search-tab {
            position: relative; padding: 12px 26px; border: none; background: transparent; cursor: pointer; font-family: inherit;
            font-weight: 700; font-size: 0.95rem; letter-spacing: 0.06em; text-transform: uppercase;
            color: var(--muted-2); transition: color .2s; white-space: nowrap;
        }
        .search-tab::after {
            content: ""; position: absolute; left: 18px; right: 18px; bottom: -1px; height: 3px; border-radius: 3px 3px 0 0;
            background: var(--orange); transform: scaleX(0); transform-origin: center; transition: transform .22s ease;
        }
        .search-tab:hover { color: var(--ink-2); }
        .search-tab:hover::after { transform: scaleX(0.4); opacity: 0.5; }
        .search-tab.active { color: var(--ink); }
        .search-tab.active::after { transform: scaleX(1); opacity: 1; }
        .search-box { display: flex; gap: 10px; background: #fff; border: 1px solid var(--line-2); border-radius: 15px; padding: 10px; box-shadow: var(--shadow); }
        .search-box:focus-within { border-color: var(--line-2); box-shadow: var(--shadow); }
        .search-box .material-icons { color: var(--muted-2); align-self: center; margin-left: 10px; }
        .search-box input[type="text"], .search-box input[type="search"] {
            flex: 1; background: transparent; border: none; outline: none; color: var(--ink);
            font-size: 1.05rem; padding: 12px 8px; font-family: inherit;
        }
        .search-box input::placeholder { color: var(--muted-2); }
        .search-box input[type="submit"] {
            background: var(--ink); color: var(--bg); border: none; border-radius: 9px;
            padding: 0 28px; font-weight: 700; font-size: 1rem; cursor: pointer; font-family: inherit;
            transition: background .2s, opacity .2s;
        }
        .search-box input[type="submit"]:hover { background: var(--ink-2); }
        .hero-actions { margin-top: 30px; display: flex; gap: 14px; align-items: center; justify-content: center; flex-wrap: wrap; }
        .hero-demo-link { display: inline-flex; align-items: center; gap: 4px; color: var(--ink-2); font-weight: 600; font-size: 0.98rem; transition: color .2s; }
        .hero-demo-link .material-icons { font-size: 18px; transition: transform .2s; }
        .hero-demo-link:hover { color: var(--orange); }
        .hero-demo-link:hover .material-icons { transform: translateX(3px); }
        .trust-line { margin-top: 26px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px 22px; color: var(--muted); font-size: 0.9rem; }
        .trust-line span { display: inline-flex; align-items: center; gap: 7px; }
        .trust-line .material-icons { font-size: 17px; color: var(--orange); }



        /* Stats */
        .stats { background: var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
        .stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
        .stat { background: #fff; padding: 34px 24px; text-align: center; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
        .stat .num { font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 900; letter-spacing: -0.03em; color: var(--ink); }
        .stat .label { color: var(--muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.11em; font-weight: 600; margin-top: 8px; }

        /* Generic two-col */
        .split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
        .split.reverse > .media { order: -1; }
        .feature-list { list-style: none; padding: 0; margin: 28px 0 0; }
        .feature-list li { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--muted); }
        .feature-list li .material-icons { color: var(--orange); font-size: 22px; }
        .feature-list li b { color: var(--ink); font-weight: 600; }
        .media-card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: var(--shadow-lg); }
        .media-card img { width: 100%; }

        /* Discover / Plan / Pitch workflow */
        .dpp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 54px; }
        .dpp-card { display: flex; flex-direction: column; }
        .dpp-media { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); background: #fff; aspect-ratio: 16/10; }
        .dpp-media video { width: 100%; height: 100%; object-fit: cover; display: block; }
        .dpp-step { display: inline-flex; align-items: center; gap: 9px; margin-top: 24px; font-size: 0.76rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; color: var(--orange); }
        .dpp-step .n { display:inline-flex; align-items:center; justify-content:center; width:24px; height:24px; border-radius:50%; background:var(--orange-soft); color:var(--orange); font-size:0.74rem; }
        .dpp-card h3 { font-size: 1.24rem; margin: 12px 0 8px; letter-spacing:-0.01em; }
        .dpp-card p { color: var(--muted); font-size: 0.98rem; margin: 0; }
        .dpp-cta { margin-top: 46px; display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }


        /* ---- Outreach tool mockups (fixed light = screenshot look in both themes) ---- */
        .tl-stack { position:relative; min-height:430px; }
        .tl-card { position:absolute; background:#fff; border:1px solid #e9eaee; border-radius:16px; box-shadow:0 30px 80px rgba(20,22,30,.16); overflow:hidden; text-align:left; opacity:0; transform:translateY(16px); }
        .tl-head { display:flex; align-items:center; gap:9px; padding:12px 15px; border-bottom:1px solid #eef0f3; font-weight:800; font-size:0.9rem; color:#16161a; background:#fcfcfd; }
        .tl-ic { width:26px; height:26px; border-radius:8px; background:#ffeede; color:#ff6600; display:grid; place-items:center; flex:0 0 auto; }
        .tl-ic .material-icons { font-size:16px; }
        .tl-tag { margin-left:auto; font-size:0.6rem; font-weight:800; letter-spacing:.07em; text-transform:uppercase; color:#ff6600; background:#ffeede; border-radius:999px; padding:4px 9px; white-space:nowrap; }
        .tl-body { padding:14px 15px; }
        .tl-label, .tl-fl { font-size:0.62rem; font-weight:800; letter-spacing:.1em; text-transform:uppercase; color:#9aa0aa; }
        .tl-label { margin-bottom:9px; }
        .tl-rep { display:flex; align-items:center; gap:10px; padding:9px 10px; border:1px solid #eef0f3; border-radius:12px; margin-bottom:8px; }
        .tl-rep:last-child { margin-bottom:0; }
        .tl-rep.on { border-color:#ff6600; box-shadow:0 0 0 1px #ff6600; background:#fff8f3; }
        .tl-av { width:32px; height:32px; border-radius:50%; background:#16161a; color:#fff; font-size:0.7rem; font-weight:800; display:grid; place-items:center; flex:0 0 auto; }
        .tl-rep.on .tl-av { background:#ff6600; }
        .tl-rep-main { flex:1; min-width:0; }
        .tl-rep-main b { display:block; font-size:0.84rem; color:#16161a; line-height:1.2; }
        .tl-rep-main span { font-size:0.7rem; color:#9aa0aa; }
        .tl-region { font-size:0.62rem; font-weight:700; color:#6b6e76; background:#f1f2f4; border-radius:999px; padding:3px 8px; white-space:nowrap; flex:0 0 auto; }
        .tl-check { font-size:19px; flex:0 0 auto; }
        .tl-check:not(.off) { color:#ff6600; }
        .tl-check.off { color:#cfd2d8; }
        .tl-field { margin-bottom:11px; }
        .tl-field:last-of-type { margin-bottom:14px; }
        .tl-fl { display:block; margin-bottom:6px; }
        .tl-select, .tl-inp { display:flex; align-items:center; border:1px solid #e3e5ea; border-radius:10px; padding:9px 11px; font-size:0.8rem; color:#16161a; background:#fff; }
        .tl-select { justify-content:space-between; gap:6px; font-weight:600; }
        .tl-select .material-icons { font-size:18px; color:#9aa0aa; }
        .tl-inp { color:#3b3d44; flex-wrap:wrap; gap:4px; line-height:1.5; }
        .tl-tok { background:#ffeede; color:#ff6600; font-weight:700; border-radius:5px; padding:1px 6px; }
        .tl-send { border:none; cursor:default; background:#ff6600; color:#fff; font-weight:800; font-size:0.82rem; padding:10px 16px; border-radius:10px; display:inline-flex; align-items:center; gap:7px; box-shadow:0 10px 22px rgba(255,102,0,.28); transition:background .35s ease, box-shadow .35s ease; }
        .tl-send .material-icons { font-size:17px; }
        .tl-send.sending { background:#9aa0aa; box-shadow:0 10px 22px rgba(154,160,170,.26); }
        .tl-send.sending .material-icons { animation:tlSpin .8s linear infinite; }
        .tl-send.sent { background:#1f9d55; box-shadow:0 10px 22px rgba(31,157,85,.28); }
        @keyframes tlSpin { to { transform:rotate(360deg); } }
        .tl-tok { transition:background .3s ease, color .3s ease, padding .3s ease; }
        .tl-tok.filled { background:transparent; color:#16161a; font-weight:700; padding:0; }

        /* ---- Intelligence: analytics + rankings (fixed light) ---- */
        .iq-stack { position:relative; min-height:540px; }
        .iq-card { position:absolute; background:#fff; border:1px solid #e9eaee; border-radius:16px; box-shadow:0 30px 80px rgba(20,22,30,.16); overflow:hidden; text-align:left; opacity:0; transform:translateY(16px); }
        .iq-head { display:flex; align-items:center; gap:10px; padding:12px 14px; border-bottom:1px solid #eef0f3; background:#fcfcfd; }
        .iq-av { width:34px; height:34px; border-radius:50%; background:#ff6600; color:#fff; font-size:0.72rem; font-weight:800; display:grid; place-items:center; flex:0 0 auto; }
        .iq-ic { width:30px; height:30px; border-radius:9px; background:#ffeede; color:#ff6600; display:grid; place-items:center; flex:0 0 auto; }
        .iq-ic .material-icons { font-size:17px; }
        .iq-head-main { flex:1; min-width:0; }
        .iq-head-main b { display:block; font-size:0.9rem; color:#16161a; line-height:1.2; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
        .iq-head-main span { font-size:0.68rem; color:#9aa0aa; }
        .iq-tag { font-size:0.58rem; font-weight:800; letter-spacing:.06em; text-transform:uppercase; color:#ff6600; background:#ffeede; border-radius:999px; padding:4px 9px; white-space:nowrap; flex:0 0 auto; }
        .iq-body { padding:13px 14px; }
        .iq-reach { display:flex; align-items:baseline; justify-content:space-between; gap:10px; padding-bottom:11px; border-bottom:1px solid #f0f1f4; margin-bottom:12px; }
        .iq-reach-l { font-size:0.66rem; font-weight:800; letter-spacing:.07em; text-transform:uppercase; color:#9aa0aa; }
        .iq-reach-v { font-size:1.22rem; font-weight:800; color:#ff6600; letter-spacing:-.01em; }
        .iq-tiles { display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-bottom:14px; }
        .iq-tile { border:1px solid #eef0f3; border-radius:12px; padding:9px 11px; }
        .iq-tl { display:block; font-size:0.58rem; font-weight:800; letter-spacing:.07em; text-transform:uppercase; color:#9aa0aa; margin-bottom:5px; }
        .iq-tv { font-size:1.12rem; font-weight:800; color:#16161a; }
        .iq-tv i { font-style:normal; font-size:0.76rem; color:#9aa0aa; font-weight:700; }
        .iq-pill { display:inline-block; margin-top:7px; font-size:0.56rem; font-weight:800; letter-spacing:.04em; text-transform:uppercase; color:#1f9d55; background:#e7f6ee; border-radius:999px; padding:3px 8px; }
        .iq-trend-h { display:flex; align-items:center; gap:6px; font-size:0.64rem; font-weight:800; letter-spacing:.04em; text-transform:uppercase; color:#16161a; margin-bottom:8px; }
        .iq-trend-h .material-icons { font-size:15px; color:#ff6600; }
        .iq-trend-sub { margin-left:auto; color:#9aa0aa; font-weight:700; text-transform:none; letter-spacing:0; }
        .iq-spark { width:100%; height:52px; display:block; }
        .iq-rank-body { padding-top:9px; padding-bottom:7px; }
        .iq-row { display:flex; align-items:center; gap:11px; padding:7px 0; border-top:1px solid #f0f1f4; }
        .iq-row:first-child { border-top:none; }
        .iq-rn { font-size:0.8rem; font-weight:800; color:#ff6600; width:20px; flex:0 0 auto; }
        .iq-rmain { flex:1; min-width:0; }
        .iq-rtop { display:flex; justify-content:space-between; gap:10px; margin-bottom:5px; }
        .iq-rtop b { font-size:0.78rem; color:#16161a; font-weight:700; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; min-width:0; }
        .iq-rtop span { font-size:0.76rem; color:#6b6e76; font-weight:700; flex:0 0 auto; }
        .iq-bar { height:6px; background:#f1f2f4; border-radius:999px; overflow:hidden; }
        .iq-bar i { display:block; height:100%; width:0; border-radius:999px; background:linear-gradient(90deg,#ff6600,#ff8534); transition:width 1.1s var(--ease-out); }
        .iq-stack.live .iq-bar i { width:var(--w); }
        /* logo tiles, progress ring, speedometer gauge */
        .iq-logo { width:26px; height:26px; border-radius:7px; overflow:hidden; flex:0 0 auto; background:#fff; border:1px solid #eef0f3; }
        .iq-logo img { width:100%; height:100%; object-fit:cover; display:block; }
        .iq-ring-wrap { display:flex; align-items:center; gap:10px; margin-top:5px; }
        .iq-ring { width:58px; height:58px; flex:0 0 auto; }
        .iq-ring-bg { fill:none; stroke:#f0f1f4; stroke-width:8; }
        .iq-ring-fg { fill:none; stroke:#1DB954; stroke-width:8; stroke-linecap:round; stroke-dasharray:207.3; stroke-dashoffset:207.3; }
        .iq-stack.live .iq-ring-fg { animation:iqRing 1.2s var(--ease-out) .3s forwards; }
        @keyframes iqRing { to { stroke-dashoffset:12.4; } }
        .iq-ring-num { fill:#16161a; font-size:24px; font-weight:800; text-anchor:middle; }
        .iq-ring-den { fill:#9aa0aa; font-size:11px; font-weight:700; text-anchor:middle; }
        .iq-gauge-wrap { margin-top:5px; text-align:center; }
        .iq-gauge { width:92px; height:55px; display:block; margin:0 auto; }
        .iq-gauge-bg { fill:none; stroke:#f0f1f4; stroke-width:8; stroke-linecap:round; }
        .iq-seg { fill:none; stroke-width:8; stroke-linecap:round; stroke-dasharray:0 400; }
        .iq-stack.live .iq-seg { animation:iqSeg 1s var(--ease-out) .25s forwards; }
        @keyframes iqSeg { to { stroke-dasharray:36.5 400; } }
        .iq-needle { transform-box:view-box; transform-origin:50px 54px; transform:rotate(-90deg); }
        .iq-needle line { stroke:#16161a; stroke-width:3; stroke-linecap:round; }
        .iq-needle circle { fill:#16161a; }
        .iq-stack.live .iq-needle { animation:iqNeedle 1.2s var(--ease-out) .35s forwards; }
        @keyframes iqNeedle { to { transform:rotate(68deg); } }
        .iq-gauge-labels { display:flex; justify-content:space-between; font-size:0.5rem; font-weight:800; letter-spacing:.04em; text-transform:uppercase; color:#9aa0aa; margin:2px 3px 0; }
        .iq-gauge-val { display:block; margin-top:6px; font-size:0.72rem; font-weight:800; color:#16161a; }
        @media (prefers-reduced-motion: reduce) {
            .iq-ring-fg { stroke-dashoffset:12.4 !important; animation:none !important; }
            .iq-seg { stroke-dasharray:36.5 400 !important; animation:none !important; }
            .iq-needle { transform:rotate(68deg) !important; animation:none !important; }
        }
        .iq-analytics { top:-36px; right:0; width:78%; z-index:1; }
        .iq-rank { bottom:0; left:0; width:80%; z-index:2; }
        .iq-line { stroke-dasharray:620; stroke-dashoffset:620; }
        .iq-stack.live .iq-line { animation:iqDraw 1.5s ease .2s forwards; }
        @keyframes iqDraw { to { stroke-dashoffset:0; } }
        .iq-area { opacity:0; transition:opacity .8s ease .5s; }
        .iq-stack.live .iq-area { opacity:1; }
        @keyframes iqUp { to { opacity:1; transform:none; } }
        .iq-stack.live .iq-analytics { animation:iqUp .6s var(--ease-out) .05s forwards; }
        .iq-stack.live .iq-rank { animation:iqUp .6s var(--ease-out) .2s forwards; }
        @media (prefers-reduced-motion: reduce) {
            .iq-card { opacity:1 !important; transform:none !important; animation:none !important; }
            .iq-bar i { transition:none !important; width:var(--w) !important; }
            .iq-line { stroke-dashoffset:0 !important; animation:none !important; }
            .iq-area { opacity:1 !important; }
        }
        @media (max-width:920px) {
            .iq-stack { min-height:0; display:flex; flex-direction:column; gap:18px; }
            .iq-card { position:static !important; width:100% !important; }
        }
        .tl-avails { top:-28px; left:0; width:80%; z-index:1; }
        .tl-mailer { bottom:0; right:0; width:82%; z-index:2; }
        @keyframes tlUp { to { opacity:1; transform:none; } }
        .tl-stack.live .tl-avails { animation:tlUp .6s var(--ease-out) .05s forwards; }
        .tl-stack.live .tl-mailer { animation:tlUp .6s var(--ease-out) .22s forwards; }
        @media (prefers-reduced-motion: reduce) {
            .tl-card { opacity:1 !important; transform:none !important; animation:none !important; }
        }
        @media (max-width:920px) {
            .tl-stack { min-height:0; display:flex; flex-direction:column; gap:18px; }
            .tl-card { position:static !important; width:100% !important; }
        }

        /* Inside-the-platform: 5-service showcase */
        .inside-row { margin-top: 46px; gap: 52px; }
        .inside-row:first-of-type { margin-top: 30px; }
        .svc-meta { display:flex; align-items:center; gap:12px; margin-bottom:14px; }
        .svc-num { font-size:0.95rem; font-weight:900; color:var(--orange); letter-spacing:0.04em; }
        .svc-tag { font-size:0.66rem; font-weight:800; letter-spacing:0.1em; padding:3px 10px; border-radius:999px; text-transform:uppercase; }
        .svc-tag.pro { background:var(--orange-soft); color:var(--orange); }
        .svc-tag.free { background:rgba(31,157,85,0.14); color:#1f9d55; }
        .inside-row h3 { font-size:1.5rem; letter-spacing:-0.02em; margin:0 0 9px; }
        .inside-row .svc-sub { color:var(--ink-2); font-weight:600; font-size:1.05rem; margin:0 0 10px; }
        .inside-row p.svc-desc { color:var(--muted); font-size:1rem; margin:0; }
        .svc-media { aspect-ratio:16/11; }
        .svc-media video { width:100%; height:100%; object-fit:cover; display:block; }

        /* Placeholder mocks (fixed light palette = screenshot look in both themes) */
        .mock { width:100%; background:#fff; padding:16px 18px; text-align:left; display:flex; flex-direction:column; min-height:248px; }
        .mock-head { display:flex; justify-content:space-between; align-items:center; font-weight:700; font-size:0.92rem; color:#16161a; margin-bottom:8px; }
        .mock-head .mh-tag { color:#ff6600; font-size:0.64rem; font-weight:800; letter-spacing:0.12em; }
        .mc-row { display:flex; align-items:center; gap:12px; padding:11px 0; border-top:1px solid #eef0f3; }
        .mc-av { width:38px; height:38px; border-radius:50%; background:#e7e9ee; flex:0 0 auto; display:flex; align-items:center; justify-content:center; }
        .mc-av .material-icons { color:#b6bac3; font-size:22px; }
        .mc-av.rt { background:#ffeede; color:#ff6600; font-weight:800; font-size:0.92rem; }
        .route-shot { padding:0; }
        .route-shot img { width:100%; display:block; }
        .shot-foot { display:flex; align-items:center; gap:7px; padding:11px 16px; font-size:0.78rem; color:#6b6e76; border-top:1px solid #eef0f3; background:#fff; }
        .shot-foot .material-icons { font-size:15px; color:#ff6600; }
        .mc-name { font-weight:700; font-size:0.84rem; color:#16161a; }
        .mc-name.lock { filter:blur(4.5px); user-select:none; }
        .mc-role { font-size:0.74rem; color:#6b6e76; }
        .mc-mail { margin-left:auto; width:30px; height:30px; border-radius:50%; border:1px solid #e0e2e7; display:flex; align-items:center; justify-content:center; }
        .mc-mail .material-icons { font-size:15px; color:#b6bac3; }
        .mock-foot { margin-top:auto; padding-top:14px; display:flex; align-items:center; gap:7px; color:#9aa0aa; font-size:0.76rem; }
        .mock-foot .material-icons { font-size:15px; color:#ff6600; }
        .mi-stats { display:flex; gap:8px; margin-bottom:18px; }
        .mi-stat { flex:1; background:#f6f7f9; border-radius:10px; padding:11px 8px; text-align:center; }
        .mi-stat .v { font-weight:800; font-size:1rem; color:#16161a; }
        .mi-stat .l { font-size:0.62rem; color:#6b6e76; text-transform:uppercase; letter-spacing:0.05em; margin-top:3px; }
        .mi-gtitle { font-size:0.78rem; font-weight:700; color:#16161a; margin-bottom:10px; }
        .mi-track { height:11px; border-radius:7px; background:linear-gradient(90deg,#28c840,#ffd23f,#febc2e,#ff5f57); position:relative; margin-bottom:7px; }
        .mi-track .ptr { position:absolute; right:9%; top:-5px; width:3px; height:21px; background:#16161a; border-radius:2px; }
        .mi-labels { display:flex; justify-content:space-between; font-size:0.64rem; color:#6b6e76; font-weight:700; }
        .mi-lock { margin-top:auto; padding:11px 12px; border:1px dashed #d8dbe1; border-radius:10px; display:flex; align-items:center; gap:8px; color:#9aa0aa; font-size:0.76rem; }
        .mi-lock .material-icons { font-size:16px; color:#ff6600; }
        .inside-cta { margin-top: 46px; text-align:center; }
        #inside { padding: 86px 0; }
        .inside-note { color:var(--muted); font-size:0.94rem; margin-bottom: 20px; }
        .mc-when { margin-left:auto; font-size:0.74rem; font-weight:700; color:#ff6600; background:#ffeede; padding:4px 10px; border-radius:7px; white-space:nowrap; }
        .inside-full { display:block; }
        .inside-full .inside-head { max-width:760px; margin:0 auto; text-align:center; }
        .inside-full .svc-meta { justify-content:center; }
        .route-caption { display:inline-flex; align-items:center; gap:7px; margin-top:14px; font-size:0.84rem; font-weight:600; color:var(--orange); }
        .route-caption .material-icons { font-size:17px; }
        .route-embed { position:relative; margin-top:30px; padding:0; }
        .route-embed iframe { width:100%; height:700px; border:0; display:block; background:#f6f7f9; }
        @media (max-width:900px){ .route-embed iframe { height:580px; } }
        .mc-when { margin-left:auto; font-size:0.74rem; color:var(--orange); font-weight:800; white-space:nowrap; }
        /* Route: full-width live tool embed */
        .inside-full { margin-top: 84px; }
        .route-embed { position: relative; }
        .route-embed iframe { width:100%; height:680px; border:0; display:block; background:#fff; }
        .route-badge { position:absolute; top:14px; left:14px; z-index:3; background:var(--orange); color:#fff; font-size:0.72rem; font-weight:800; letter-spacing:0.08em; text-transform:uppercase; padding:6px 12px; border-radius:999px; box-shadow:var(--shadow-sm); display:inline-flex; align-items:center; gap:6px; }
        .route-badge .material-icons { font-size:14px; }
        @media (max-width:560px){ .route-embed iframe { height:560px; } }

        /* Discover 'near you' mock extras */
        .mc-name2 { font-weight:700; font-size:0.84rem; color:#16161a; }
        .disc-radius { display:flex; align-items:center; gap:6px; font-size:0.74rem; color:#6b6e76; background:#f6f7f9; padding:7px 11px; border-radius:8px; margin-bottom:4px; }
        .disc-radius .material-icons { font-size:14px; color:#ff6600; }
        .disc-dist { margin-left:auto; font-size:0.76rem; font-weight:700; color:#ff6600; }

        /* Route: full-width live tool */
        .route-row { margin-top: 78px; }
        .route-head { text-align:center; max-width:720px; margin:0 auto 30px; }
        .route-head .svc-meta { justify-content:center; }
        .route-tool { height: 560px; padding:0; }
        .route-tool iframe { width:100%; height:100%; border:0; display:block; }

        /* Industry intelligence + ranking */
        .rank-split { display:grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items:center; }
        .rank-img img { width:100%; filter: drop-shadow(0 22px 46px rgba(20,22,30,0.18)); }
        .rank-meta { display:inline-flex; align-items:center; gap:8px; font-size:0.84rem; color:var(--muted); margin-top:16px; }
        .rank-meta .material-icons { font-size:18px; color:var(--orange); }
        .intel-links { display:flex; flex-wrap:wrap; gap:10px; margin-top:30px; }
        .intel-chip { display:inline-flex; align-items:center; gap:8px; padding:10px 17px; border:1px solid var(--line-2); border-radius:999px; font-weight:600; font-size:0.9rem; color:var(--ink-2); background:#fff; transition:border-color .2s, color .2s; }
        .intel-chip:hover { border-color:var(--orange); color:var(--orange); }
        .intel-chip .material-icons { font-size:18px; color:var(--orange); }

        /* Newsletter */
        .newsletter { margin-top: 56px; padding-top: 40px; border-top:1px solid var(--line); max-width: 620px; }
        .newsletter h3 { font-size:1.18rem; margin:0 0 6px; }
        .newsletter p { color:var(--muted); font-size:0.96rem; margin:0 0 16px; }
        .nl-form { display:flex; gap:10px; flex-wrap:wrap; }
        .nl-form input[type=email] { flex:1; min-width:230px; padding:14px 16px; border:1px solid var(--line-2); border-radius:11px; font-family:inherit; font-size:1rem; background:#fff; color:var(--ink); outline:none; transition:border-color .2s, box-shadow .2s; }
        .nl-form input[type=email]:focus { border-color:var(--line-2); }
        .nl-note { color:var(--muted-2); font-size:0.82rem; margin-top:11px; }
        [data-theme="dark"] .intel-chip, [data-theme="dark"] .nl-form input[type=email] { background: rgba(255,255,255,0.05); }

        /* Industry Intelligence hub cards */
        .intel-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:50px; align-items:stretch; }
        .intel-card { display:flex; flex-direction:column; background:var(--bg); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; text-decoration:none; transition:transform .2s, box-shadow .2s, border-color .2s; }
        .intel-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); border-color:var(--orange); }
        .ic-rankimg { width:100%; display:block; border-bottom:1px solid var(--line); }
        .ic-body { padding:22px 22px 24px; display:flex; flex-direction:column; flex:1; }
        .ic-tag { display:inline-flex; align-items:center; gap:7px; font-size:0.71rem; font-weight:800; letter-spacing:0.1em; text-transform:uppercase; color:var(--orange); margin-bottom:14px; }
        .ic-tag .material-icons { font-size:17px; }
        .intel-card h3 { font-size:1.15rem; margin:0 0 14px; letter-spacing:-0.01em; color:var(--ink); }
        .ic-news { list-style:none; padding:0; margin:0 0 18px; display:flex; flex-direction:column; gap:13px; }
        .ic-news li { display:flex; flex-direction:column; gap:3px; }
        .ic-news .nt-date { font-size:0.7rem; color:var(--muted-2); font-weight:700; letter-spacing:0.03em; text-transform:uppercase; }
        .ic-news .nt-title { font-size:0.92rem; color:var(--ink-2); font-weight:600; line-height:1.35; }
        .ic-list { list-style:none; padding:0; margin:0 0 18px; display:flex; flex-direction:column; gap:11px; }
        .ic-list li { display:flex; align-items:flex-start; gap:9px; font-size:0.93rem; color:var(--ink-2); line-height:1.4; }
        .ic-list li .material-icons { font-size:17px; color:var(--orange); margin-top:1px; flex:0 0 auto; }
        .ic-more { margin-top:auto; display:inline-flex; align-items:center; gap:5px; font-weight:700; font-size:0.92rem; color:var(--orange); }
        .ic-more .material-icons { font-size:18px; }
        .intel-cta { text-align:center; margin-top:42px; }

        /* Newsletter band (reworked) */
        .nl-card { background:var(--ink); color:#fff; border-radius:22px; padding:48px 52px; display:flex; gap:46px; align-items:center; justify-content:space-between; flex-wrap:wrap; box-shadow:var(--shadow-lg); }
        .nl-card .nl-left { flex:1 1 360px; }
        .nl-eyebrow { color:var(--orange-2); font-size:0.78rem; font-weight:800; letter-spacing:0.14em; text-transform:uppercase; }
        .nl-card h2 { color:#fff; font-size:1.75rem; margin:12px 0 10px; letter-spacing:-0.02em; }
        .nl-card .nl-sub { color:rgba(255,255,255,0.72); font-size:1.02rem; margin:0; line-height:1.5; }
        .nl-card .nl-right { flex:1 1 330px; }
        .nl-card .nl-form { display:flex; gap:10px; flex-wrap:wrap; }
        .nl-card .nl-form input[type=email] { flex:1; min-width:210px; padding:15px 16px; border:1px solid rgba(255,255,255,0.22); border-radius:12px; background:rgba(255,255,255,0.09); color:#fff; font-size:1rem; font-family:inherit; outline:none; transition:border-color .2s; }
        .nl-card .nl-form input[type=email]::placeholder { color:rgba(255,255,255,0.5); }
        .nl-card .nl-form input[type=email]:focus { border-color:rgba(255,255,255,0.4); }
        .nl-card .nl-note { color:rgba(255,255,255,0.5); font-size:0.82rem; margin-top:13px; }

        /* "Why it's hard" — pain points (first design, refined type & spacing) */
        .pain-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:46px; margin-top:60px; }
        .pain { display:flex; gap:16px; align-items:flex-start; text-align:left; }
        .pain > .material-icons { color:var(--orange); font-size:26px; flex:0 0 auto; margin-top:3px; }
        .pain h4 { font-size:1.14rem; font-weight:700; margin:0 0 9px; letter-spacing:-0.015em; line-height:1.25; }
        .pain p { color:var(--muted); font-size:0.96rem; margin:0; line-height:1.65; }
        .pain-pivot { margin:62px auto 0; text-align:center; font-size:1.24rem; font-weight:600; color:var(--ink-2); max-width:720px; letter-spacing:-0.012em; line-height:1.5; }
        .pain-pivot b { color:var(--orange); font-weight:700; }
        @media(max-width:900px){ .pain-grid{ grid-template-columns:1fr; gap:34px; } .pain-pivot{ font-size:1.08rem; margin-top:46px; } }

        /* News & Insights — graphical split */
        .ni-list { list-style:none; margin:30px 0 34px; padding:0; }
        .ni-list li { display:flex; gap:13px; align-items:flex-start; padding:14px 0; border-bottom:1px solid var(--line); font-size:1rem; color:var(--ink-2); line-height:1.45; }
        .ni-list li:first-child { border-top:1px solid var(--line); }
        .ni-list li > .material-icons { color:var(--orange); font-size:21px; flex:0 0 auto; margin-top:1px; }
        .ni-list li b { color:var(--ink); font-weight:700; }
        /* ---- VIP-News phone scene ---- */
        #news .split { align-items:center; }
        .vn-proof { display:flex; flex-wrap:wrap; gap:10px; margin-top:30px; }
        .vn-chip { display:inline-flex; align-items:center; gap:7px; border:1px solid var(--line); background:var(--bg); border-radius:999px; padding:9px 14px; color:var(--muted); font-size:0.84rem; font-weight:700; box-shadow:var(--shadow-sm); }
        .vn-chip .material-icons { font-size:17px; color:var(--orange); }

        .vn-scene { position:relative; min-height:640px; display:grid; place-items:center; isolation:isolate; }

        /* floating accents (on-brand: hairline card + orange eyebrow) */
        .vn-float { position:absolute; z-index:6; background:#fff; border:1px solid #e9eaee; border-radius:16px; box-shadow:var(--shadow-lg); padding:13px 15px; max-width:188px; }
        .vn-flabel { display:inline-flex; align-items:center; gap:7px; color:var(--orange); font-size:0.66rem; letter-spacing:0.08em; text-transform:uppercase; font-weight:800; margin-bottom:6px; }
        .vn-flabel .material-icons { font-size:15px; }
        .vn-float b { display:block; font-size:0.9rem; line-height:1.2; color:#16161a; font-weight:700; }
        .vn-fa { top:128px; left:-22px; }
        .vn-fb { bottom:96px; right:-22px; }
        .vn-pdot { width:8px; height:8px; border-radius:50%; background:var(--orange); }
        .vn-live .vn-pdot { animation:vnPulse 1.9s ease-out infinite; }

        /* phone device */
        .vn-phone { position:relative; z-index:4; width:300px; height:658px; border-radius:46px; padding:11px; background:linear-gradient(155deg,#2c2f37,#15161b 62%); box-shadow:0 40px 92px rgba(20,22,30,.30), inset 0 0 0 1px rgba(255,255,255,.14); }
        .vn-island { position:absolute; top:20px; left:50%; transform:translateX(-50%); width:88px; height:24px; background:#0c0d11; border-radius:14px; z-index:10; }
        .vn-screen { height:100%; border-radius:35px; background:#fff; overflow:hidden; position:relative; }
        .vn-app { height:100%; display:flex; flex-direction:column; background:#fff; color:#16161a; text-align:left; }
        .vn-status { height:40px; display:flex; align-items:flex-end; justify-content:space-between; padding:0 20px 5px; font-size:11px; font-weight:700; }
        .vn-stat-ic { display:flex; gap:5px; align-items:center; }
        .vn-stat-ic .material-icons { font-size:13px; }
        .vn-appbar { display:flex; align-items:center; justify-content:space-between; padding:4px 16px 12px; border-bottom:1px solid #eef0f3; }
        .vn-brand { display:inline-flex; align-items:center; font-size:18px; font-weight:900; letter-spacing:-.02em; color:#16161a; }
        .vn-brand .vn-logo-img { height:17px; width:auto; margin-right:7px; }
        .vn-live { display:inline-flex; align-items:center; gap:6px; font-size:10px; font-weight:800; text-transform:uppercase; letter-spacing:.07em; color:#ff6600; background:#ffeede; border-radius:999px; padding:5px 10px; }
        .vn-tabs { display:flex; gap:18px; padding:12px 16px 0; font-size:12px; font-weight:700; color:#9aa0aa; border-bottom:1px solid #eef0f3; }
        .vn-tabs span { padding-bottom:10px; }
        .vn-tabs .on { color:#16161a; position:relative; }
        .vn-tabs .on::after { content:""; position:absolute; left:0; bottom:-1px; width:100%; height:2.5px; background:#ff6600; border-radius:3px; }
        .vn-feed { flex:1; overflow:hidden; padding:13px 16px 0; }
        .vn-hero { border:1px solid #eef0f3; border-radius:16px; overflow:hidden; box-shadow:0 6px 18px rgba(20,22,30,.08); margin-bottom:13px; }
        .vn-hero-img { height:100px; background:linear-gradient(135deg,#23262d,#ff6600); position:relative; }
        .vn-hero-img img { width:100%; height:100%; object-fit:cover; object-position:center 30%; display:block; }
        .vn-hero-body { padding:13px 14px 15px; }
        .vn-chip2 { display:inline-block; background:#ffeede; color:#ff6600; font-size:9px; font-weight:800; letter-spacing:.06em; text-transform:uppercase; border-radius:999px; padding:4px 10px; margin-bottom:9px; }
        .vn-hero h3 { font-size:15.5px; line-height:1.2; letter-spacing:-.01em; color:#16161a; font-weight:800; margin:0 0 8px; }
        .vn-hero-meta { font-size:10px; color:#9aa0aa; font-weight:700; text-transform:uppercase; letter-spacing:.05em; }
        .vn-sec { font-size:9.5px; font-weight:800; letter-spacing:.12em; text-transform:uppercase; color:#ff6600; display:flex; align-items:center; gap:7px; margin-bottom:10px; }
        .vn-sec::before { content:""; width:7px; height:7px; border-radius:50%; background:#ff6600; }
        .vn-list { display:flex; flex-direction:column; }
        .vn-item { display:flex; gap:11px; align-items:flex-start; padding:8px 0; border-top:1px solid #eef0f3; }
        .vn-item:first-child { border-top:none; }
        .vn-idot { width:9px; height:9px; border-radius:50%; flex:0 0 auto; margin-top:4px; }
        .vn-idot.c1 { background:#ff6600; }
        .vn-idot.c2 { background:#16161a; }
        .vn-idot.c3 { background:#ff8534; }
        .vn-it-body { min-width:0; }
        .vn-item h4 { font-size:12.5px; line-height:1.28; letter-spacing:-.005em; color:#16161a; font-weight:700; margin:0 0 4px; }
        .vn-it-meta { font-size:9.5px; color:#9aa0aa; font-weight:700; text-transform:uppercase; letter-spacing:.05em; }

        /* motion */
        @keyframes vnUp { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:none; } }
        @keyframes vnPulse { 0% { box-shadow:0 0 0 0 rgba(255,102,0,.5); } 70% { box-shadow:0 0 0 6px rgba(255,102,0,0); } 100% { box-shadow:0 0 0 0 rgba(255,102,0,0); } }
        .vn-hero, .vn-item { opacity:0; transform:translateY(10px); }
        .vn-scene.live .vn-hero { animation:vnUp .55s var(--ease-out) .05s forwards; }
        .vn-scene.live .vn-item { animation:vnUp .5s var(--ease-out) forwards; animation-delay:calc(.24s + var(--d) * .12s); }

        @media (max-width:920px) {
            .vn-fa { left:4px; }
            .vn-fb { right:4px; }
        }
        @media (max-width:560px) {
            .vn-scene { min-height:620px; }
            .vn-phone { width:282px; height:616px; }
            .vn-float { max-width:170px; padding:11px 12px; }
            .vn-fa { top:104px; left:-6px; }
            .vn-fb { bottom:84px; right:-6px; }
        }
        @media (prefers-reduced-motion: reduce) {
            .vn-hero, .vn-item { opacity:1 !important; transform:none !important; animation:none !important; }
            .vn-pdot, .vn-live { animation:none !important; }
        }

        /* Outcome blocks (SystemOne-style) */
        .oc-icon { width:52px; height:52px; border-radius:14px; background:var(--orange-soft); display:flex; align-items:center; justify-content:center; margin-bottom:20px; }
        .oc-icon .material-icons { color:var(--orange); font-size:27px; }
        .oc-desc { color:var(--muted); font-size:1.04rem; line-height:1.6; margin:0 0 22px; max-width:46ch; }
        .oc-list { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:13px; }
        .oc-list li { display:flex; align-items:flex-start; gap:11px; font-size:1.01rem; color:var(--ink-2); line-height:1.4; }
        .oc-list li > .material-icons { color:var(--orange); font-size:20px; flex:0 0 auto; margin-top:1px; }

        /* Phone mockup (the "on the go" graphic) */
        .media-card.bare { border:none; background:none; box-shadow:none; overflow:visible; }
        .phone { width:300px; max-width:100%; margin:0 auto; background:var(--ink); border-radius:42px; padding:13px; box-shadow:var(--shadow-lg); }
        .phone-screen { position:relative; border-radius:30px; overflow:hidden; background:#fff; }
        .phone-notch { position:absolute; top:0; left:50%; transform:translateX(-50%); width:118px; height:25px; background:var(--ink); border-radius:0 0 16px 16px; z-index:5; }
        .phone-screen .mock { min-height:0; padding-top:38px; }

        /* SystemOne-style feature cards */
        .feat-card { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center; background:var(--bg-soft); border:1px solid var(--line); border-radius:var(--radius-lg); padding:46px; margin-bottom:26px; transition:box-shadow var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-out); }
        .feat-card:hover { box-shadow:var(--shadow); border-color:var(--line-2); }
        .feat-card .feat-media { order:1; min-width:0; }
        .feat-card .feat-content { order:2; }
        .feat-card.reverse .feat-media { order:2; }
        .feat-card.reverse .feat-content { order:1; }
        .feat-content h3 { font-size:1.85rem; line-height:1.14; margin:0 0 12px; letter-spacing:-0.01em; }
        .feat-divider { height:1px; background:var(--line-2); margin:22px 0; }
        @media (max-width:900px){
            .feat-card { grid-template-columns:1fr; gap:26px; padding:26px; }
            .feat-card .feat-media, .feat-card.reverse .feat-media { order:2; }
            .feat-card .feat-content, .feat-card.reverse .feat-content { order:1; }
            .feat-content h3 { font-size:1.5rem; }
        }

        /* SystemOne-style stacked feature cards */
        .inside-title { text-align:center; max-width:760px; margin:0 auto 52px; }
        .inside-title h2 { font-size:clamp(2rem, 1.1rem + 3vw, 3.05rem); line-height:1.08; margin-top:14px; }
        .feature-cards { display:flex; flex-direction:column; gap:24px; }
        .feature-card { position:sticky; background:var(--bg); border:1px solid var(--line); border-radius:var(--radius-lg); box-shadow:var(--shadow); overflow:hidden; display:grid; grid-template-columns:1.02fr 1fr; min-height:440px; }
        .feature-card:nth-child(1){ top:86px; }
        .feature-card:nth-child(2){ top:100px; }
        .feature-card:nth-child(3){ top:114px; }
        .feature-card:nth-child(4){ top:128px; }
        .feature-card:nth-child(5){ top:142px; }
        .fc-media { background:var(--bg-soft); display:flex; align-items:center; justify-content:center; padding:36px; border-right:1px solid var(--line); }
        .fc-media .media-card { width:100%; max-width:430px; }
        .fc-body { padding:46px 48px; display:flex; flex-direction:column; justify-content:center; }
        .fc-num { font-size:0.82rem; font-weight:800; letter-spacing:.12em; color:var(--orange); margin-bottom:16px; }
        .fc-body h3 { font-size:clamp(1.5rem,1.1rem+1vw,1.95rem); line-height:1.12; margin:0 0 12px; }
        .fc-desc { color:var(--muted); line-height:1.62; margin:0 0 20px; }
        .fc-line { height:1px; background:var(--line); margin:0 0 20px; }
        @media (max-width:860px){
            .feature-card { position:static; grid-template-columns:1fr; min-height:0; }
            .fc-media { border-right:none; border-bottom:1px solid var(--line); padding:26px; }
            .fc-body { padding:30px 26px; }
        }
        @media (prefers-reduced-motion: reduce){ .feature-card { position:static; } }

        /* Newsletter — light, low-prominence */
        .nl-light { background:var(--bg-soft); border:1px solid var(--line); border-radius:18px; padding:36px 42px; display:flex; gap:42px; align-items:center; justify-content:space-between; flex-wrap:wrap; }
        .nl-light .nl-left { flex:1 1 340px; }
        .nl-light .nl-eyebrow { color:var(--orange); font-size:0.76rem; font-weight:800; letter-spacing:0.13em; text-transform:uppercase; }
        .nl-light h2 { font-size:1.5rem; margin:11px 0 8px; letter-spacing:-0.02em; }
        .nl-light .nl-sub { color:var(--muted); font-size:0.98rem; margin:0; line-height:1.5; }
        .nl-light .nl-right { flex:1 1 320px; }
        .nl-light .nl-form { display:flex; gap:10px; flex-wrap:wrap; }
        .nl-light .nl-form input[type=email] { flex:1; min-width:200px; padding:14px 16px; border:1px solid var(--line-2); border-radius:11px; background:var(--bg); color:var(--ink); font-size:1rem; font-family:inherit; outline:none; transition:border-color .2s, box-shadow .2s; }
        .nl-light .nl-form input[type=email]:focus { border-color:var(--line-2); }
        .nl-light .nl-note { color:var(--muted-2); font-size:0.82rem; margin-top:12px; }

        @media(max-width:900px){ .flow-grid{ grid-template-columns:1fr; } }
        @media(max-width:760px){ .teaser-3{ grid-template-columns:1fr; gap:30px; } .nl-light{ padding:28px 24px; gap:22px; } }

        /* ---- Interactive preview animations (homepage trailer) ---- */
        .mc-name.lock { transition: filter .5s ease; }
        .media-card.live .mc-name.lock { animation: unblurCycle 5.2s ease-in-out infinite; }
        .media-card.live .mc-row:nth-child(3) .mc-name.lock { animation-delay:.22s; }
        .media-card.live .mc-row:nth-child(4) .mc-name.lock { animation-delay:.44s; }
        @keyframes unblurCycle { 0%,12%{ filter:blur(4.5px); } 32%,70%{ filter:blur(0); } 90%,100%{ filter:blur(4.5px); } }

        .media-card.live .mc-row { opacity:0; animation: rowIn .55s ease forwards; }
        .media-card.live .mc-row:nth-child(2){ animation-delay:.04s; }
        .media-card.live .mc-row:nth-child(3){ animation-delay:.16s; }
        .media-card.live .mc-row:nth-child(4){ animation-delay:.28s; }
        .media-card.live .mc-row:nth-child(5){ animation-delay:.40s; }
        @keyframes rowIn { from{ opacity:0; transform:translateY(9px);} to{ opacity:1; transform:none; } }

        .media-card.route-shot.live img { animation: kenburns 15s ease-in-out infinite alternate; transform-origin:58% 52%; }
        @keyframes kenburns { from{ transform:scale(1);} to{ transform:scale(1.07);} }

        .media-card.live .mi-stat { opacity:0; animation: popIn .5s ease forwards; }
        .media-card.live .mi-stat:nth-child(2){ animation-delay:.1s; }
        .media-card.live .mi-stat:nth-child(3){ animation-delay:.2s; }
        @keyframes popIn { from{ opacity:0; transform:scale(.92);} to{ opacity:1; transform:none; } }
        .media-card.live .mi-track .ptr { animation: ptrSweep 1.7s cubic-bezier(.22,1,.36,1) forwards; }
        @keyframes ptrSweep { from{ right:92%; } to{ right:9%; } }

        .media-card:hover .mc-name.lock { animation: none !important; filter: blur(0) !important; }

        /* Contacts — animated search */
        .search-mock .sm-field { display:flex; align-items:center; gap:9px; border:1px solid #e6e7ea; border-radius:10px; padding:11px 13px; background:#fafbfc; margin-bottom:6px; }
        .search-mock .sm-field > .material-icons { color:#9aa0aa; font-size:19px; flex:0 0 auto; }
        .sm-typed { display:inline-block; white-space:nowrap; overflow:hidden; font-size:0.9rem; color:#16161a; font-weight:600; max-width:0; vertical-align:bottom; }
        .sm-cur { width:2px; height:15px; background:#ff6600; display:inline-block; opacity:0; margin-left:1px; }
        .media-card.live .sm-typed { animation: smtype 1.05s steps(20,end) .3s forwards; }
        .media-card.live .sm-cur { animation: smblink .7s steps(1) infinite; }
        @keyframes smtype { from{max-width:0} to{max-width:18ch} }
        @keyframes smblink { 50%{opacity:1} }
        .sm-results .mc-row { opacity:0; transform:translateY(8px); }
        .media-card.live .sm-results .mc-row { animation: srin .5s ease forwards; }
        .media-card.live .sm-results .mc-row:nth-child(1){ animation-delay:1.55s; }
        .media-card.live .sm-results .mc-row:nth-child(2){ animation-delay:1.75s; }
        .media-card.live .sm-results .mc-row:nth-child(3){ animation-delay:1.95s; }
        @keyframes srin { to{opacity:1; transform:none} }
        .mock-foot.ok { color:#1f9d55; opacity:0; }
        .mock-foot.ok .material-icons { color:#1f9d55; }
        .media-card.live .mock-foot.ok { animation: srin .5s ease 2.25s forwards; }
        .mc-mail.on { background:#fff; border-color:#ffd0ab; }
        .mc-mail.on .material-icons { color:#ff6600; }

        /* Route — self-routing tour */
        .route-mock .rm-map { position:relative; height:230px; border-radius:10px; overflow:hidden; margin-bottom:12px;
            background:
              repeating-linear-gradient(0deg, rgba(120,140,160,0.07) 0 1px, transparent 1px 22px),
              repeating-linear-gradient(90deg, rgba(120,140,160,0.07) 0 1px, transparent 1px 22px),
              linear-gradient(160deg,#e9f0f4,#dde7ed); }
        .rm-land { position:absolute; background:rgba(190,206,188,0.5); filter:blur(7px); border-radius:46% 54% 60% 40%; }
        .rm-svg { position:absolute; inset:0; width:100%; height:100%; z-index:1; }
        .rm-route { fill:none; stroke:#ff6600; stroke-width:3.5; stroke-linecap:round; stroke-linejoin:round; stroke-dasharray:400; stroke-dashoffset:400; }
        .media-card.live .rm-route { animation: rmdraw 1.8s ease .35s forwards; }
        @keyframes rmdraw { to{stroke-dashoffset:0} }
        .rm-pin { position:absolute; transform:translate(-50%,-50%) scale(0); width:23px; height:23px; border-radius:50%; background:#ff6600; color:#fff; font-weight:800; font-size:0.72rem; display:flex; align-items:center; justify-content:center; box-shadow:0 3px 8px rgba(20,22,30,.28); z-index:2; }
        .media-card.live .rm-pin { animation-name:rmpin; animation-duration:.45s; animation-timing-function:cubic-bezier(.34,1.56,.64,1); animation-fill-mode:forwards; }
        @keyframes rmpin { 0%{transform:translate(-50%,-50%) scale(0)} 70%{transform:translate(-50%,-50%) scale(1.18)} 100%{transform:translate(-50%,-50%) scale(1)} }
        .rm-status { position:absolute; top:11px; left:11px; z-index:3; display:flex; align-items:center; gap:7px; background:rgba(255,255,255,.93); border-radius:999px; padding:5px 12px; font-size:0.72rem; font-weight:700; color:#16161a; box-shadow:0 2px 6px rgba(20,22,30,.12); }
        .rm-status .dot { width:8px; height:8px; border-radius:50%; background:#ff6600; animation: rmblink 1s infinite; }
        .media-card.live .rm-status { animation: rmfade .5s ease 2.15s forwards; }
        @keyframes rmblink { 50%{opacity:.3} }
        @keyframes rmfade { to{opacity:0} }
        .rm-stats { display:flex; gap:8px; }
        .rm-stats span { flex:1; text-align:center; background:#f6f7f9; border-radius:8px; padding:9px 6px; font-size:0.74rem; font-weight:700; color:#16161a; opacity:0; }
        .media-card.live .rm-stats span { animation: srin .5s ease forwards; }
        .media-card.live .rm-stats span:nth-child(1){ animation-delay:2.2s; }
        .media-card.live .rm-stats span:nth-child(2){ animation-delay:2.35s; }
        .media-card.live .rm-stats span:nth-child(3){ animation-delay:2.5s; }
        @media (prefers-reduced-motion: reduce){
            .sm-typed{ max-width:18ch !important; animation:none !important; }
            .sm-results .mc-row,.mock-foot.ok,.rm-stats span{ opacity:1 !important; transform:none !important; animation:none !important; }
            .rm-route{ stroke-dashoffset:0 !important; animation:none !important; }
            .rm-pin{ transform:translate(-50%,-50%) scale(1) !important; animation:none !important; }
            .rm-status{ display:none; }
        }

        @media (prefers-reduced-motion: reduce) {
            .media-card.live .mc-name.lock,
            .media-card.route-shot.live img,
            .media-card.live .mi-track .ptr { animation: none !important; }
            .media-card.live .mc-row, .media-card.live .mi-stat { opacity:1 !important; animation:none !important; }
            .mc-name.lock { filter: blur(4.5px); }
        }
        @media(max-width:900px){ .intel-grid{ grid-template-columns:1fr; } }
        @media(max-width:760px){ .nl-card{ padding:34px 26px; gap:26px; } .nl-card h2{ font-size:1.42rem; } }

        /* Testimonials */
        .quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 50px; }
        .quote-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm); transition: border-color .2s, transform .2s, box-shadow .2s; }
        .quote-card:hover { border-color: var(--line-2); transform: translateY(-3px); box-shadow: var(--shadow); }
        .quote-stars { height: 22px; margin-bottom: 18px; }
        .quote-stars img { height: 22px; width: auto; }
        .quote-card blockquote { margin: 0 0 22px; font-size: 1.12rem; line-height: 1.6; color: var(--ink); font-weight: 500; }
        .quote-author { display: flex; align-items: center; gap: 14px; }
        .quote-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line-2); }
        .quote-author .name { font-weight: 700; font-size: 0.95rem; }
        .quote-author .role { color: var(--muted); font-size: 0.85rem; }

        /* Partners */
        .partners-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
        .partner-cell {
            background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 22px;
            display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
            min-height: 150px; transition: border-color .2s, box-shadow .2s, transform .2s;
        }
        .partner-cell:hover { border-color: var(--line-2); box-shadow: var(--shadow); transform: translateY(-2px); }
        .partner-cell .logo-box { height: 62px; display: flex; align-items: center; justify-content: center; }
        .partner-cell img { max-height: 62px; width: auto; object-fit: contain; }
        .partner-cell .pname { font-size: 0.82rem; color: var(--muted); text-align: center; line-height: 1.3; }
        .show-more-wrap { text-align: center; margin-top: 40px; }

        /* Pricing */
        .pricing { background: var(--bg-soft); border-top: 1px solid var(--line); }
        .price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 860px; margin: 56px auto 0; }
        .price-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 40px 36px; box-shadow: var(--shadow-sm); }
        .price-card.featured { border-color: var(--orange); box-shadow: 0 0 0 1px var(--orange), var(--shadow); }
        .price-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--orange); color: #fff; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; padding: 6px 16px; border-radius: 999px; text-transform: uppercase; white-space: nowrap; }
        .price-card .plan { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); font-weight: 700; }
        .price-card .amount { font-size: 3.4rem; font-weight: 900; letter-spacing: -0.03em; margin: 14px 0 2px; color: var(--ink); }
        .price-card .amount span { font-size: 1rem; font-weight: 600; color: var(--muted); letter-spacing: 0; }
        .price-card .billed { color: var(--muted); font-size: 0.92rem; margin-bottom: 26px; }
        .price-card .btn { width: 100%; }
        .price-feats { list-style: none; padding: 0; margin: 26px 0 0; }
        .price-feats li { display: flex; gap: 10px; align-items: center; padding: 9px 0; color: var(--ink-2); font-size: 0.95rem; }
        .price-feats li .material-icons { color: var(--orange); font-size: 19px; }

        /* FAQ */
        .faq-list { max-width: 800px; margin: 50px auto 0; }
        .faq-item { border-bottom: 1px solid var(--line); }
        .faq-q { display: flex; justify-content: space-between; align-items: center; gap: 20px; width: 100%; padding: 24px 4px; cursor: pointer; font-weight: 600; font-size: 1.1rem; text-align: left; background: none; border: none; color: var(--ink); font-family: inherit; }
        .faq-q .material-icons { color: var(--orange); transition: transform .25s; flex-shrink: 0; }
        .faq-item.open .faq-q .material-icons, .faq-q[aria-expanded="true"] .material-icons { transform: rotate(45deg); }
        .faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; color: var(--muted); }
        .faq-a-inner { padding: 0 4px 24px; }
        .faq-a a { color: var(--orange); text-decoration: underline; }

        /* Final CTA */
        .final-cta { position: relative; text-align: center; overflow: hidden; background: linear-gradient(180deg, #fff, var(--bg-tint)); border-top: 1px solid var(--line); }
        .final-cta::before {
            content: ""; position: absolute; bottom: -260px; left: 50%; transform: translateX(-50%);
            width: 1000px; height: 600px;
            background: radial-gradient(ellipse at center, rgba(255,102,0,0.16), transparent 65%); z-index: 0;
        }
        .final-cta .container { position: relative; z-index: 1; }
        .final-cta h2 { max-width: 760px; margin: 0 auto 32px; }


        @media (max-width: 900px) {
            .nav-links { display: none; }
            .nav-cta .nav-login { display: none; }
            .menu-toggle { display: block; }
            .nav-cta .theme-toggle, .nav-cta .nav-login { display: none; }
            .split { grid-template-columns: 1fr; gap: 40px; }
            .split.reverse > .media { order: 0; }
            .quote-grid { grid-template-columns: 1fr; }
            .partners-grid { grid-template-columns: repeat(2, 1fr); }
            .price-grid { grid-template-columns: 1fr; }
            .stats-grid { grid-template-columns: 1fr; }
            .dpp-grid { grid-template-columns: 1fr; gap: 36px; }
            .rank-split { grid-template-columns: 1fr; gap: 40px; }
            .rank-split .rank-img { order: -1; max-width: 460px; margin: 0 auto; }
            .section { padding: 80px 0; }
        }
        @media (max-width: 560px) {
            .search-box { flex-wrap: wrap; }
            .search-box input[type="submit"] { width: 100%; padding: 14px; }
            .search-tabs { gap: 0; overflow-x: auto; -webkit-overflow-scrolling: touch; justify-content: flex-start; }
            .search-tab { padding: 11px 14px; font-size: 0.82rem; letter-spacing: 0.03em; }
            .search-tab::after { left: 10px; right: 10px; }
            .route-tool { height: 460px; }
            .footer-links { gap: 36px; }
        }

        /* Shared-component dark overrides (body/header/mobile-menu/theme-toggle/footer-social/ui-autocomplete)
           live in redesign-core.css so every redesigned page gets them. Only landing-only classes stay here. */
        [data-theme="dark"] .btn-ghost,
        [data-theme="dark"] .search-box,
        [data-theme="dark"] .stat,
        [data-theme="dark"] .media-card,
        [data-theme="dark"] .quote-card,
        [data-theme="dark"] .price-card,
        [data-theme="dark"] .hero .pill { background: var(--bg-soft) !important; }
        [data-theme="dark"] .footer-news { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.10); }
        [data-theme="dark"] .hero { background: linear-gradient(180deg, #17120c, var(--bg) 70%); }
        [data-theme="dark"] .final-cta { background: linear-gradient(180deg, var(--bg), #17120c); }
        [data-theme="dark"] .hero::before,
        [data-theme="dark"] .final-cta::before { background: radial-gradient(ellipse at center, rgba(255,102,0,0.22), transparent 64%); }
        [data-theme="dark"] .price-card.featured { box-shadow: 0 0 0 1px var(--orange), var(--shadow); }
        /* Keep partner logo tiles light so dark logos stay visible */
        [data-theme="dark"] .partner-cell { background: #f7f8fa; border-color: rgba(255,255,255,0.06); }
        [data-theme="dark"] .partner-cell .pname { color: #555; }
        [data-theme="dark"] .demo-card { background: #fff !important; }

        /* ============================================================
           REFINED PLATFORM SECTIONS — Workflow, Discover, Route,
           Contacts, Intelligence  (clean white, hairline borders)
           ============================================================ */
        .band-clean { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

        /* ---- Workflow preview ---- */
        .wf-steps { position:relative; display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:60px; }
        /* connecting track behind the number-dots (node centres sit at 1/6, 1/2, 5/6) */
        .wf-track { position:absolute; left:16.666%; right:16.666%; top:33px; height:3px; transform:translateY(-50%); background:var(--orange-soft); border-radius:3px; z-index:0; overflow:hidden; }
        .wf-track::after { content:''; position:absolute; inset:0; background:var(--orange); border-radius:inherit; transform:scaleX(0); transform-origin:left; }
        .wf-steps.live .wf-track::after { animation:wfDraw 1s var(--ease-out) .12s forwards; }
        @keyframes wfDraw { to { transform:scaleX(1); } }
        .wf-step { position:relative; z-index:1; text-align:center; padding:0 16px; }
        .wf-num { position:relative; z-index:1; display:inline-flex; align-items:center; justify-content:center; width:66px; height:66px; border-radius:50%; background:var(--orange); color:#fff; font-weight:800; font-size:1.45rem; margin:0 auto 22px; box-shadow:0 0 0 6px var(--bg), 0 8px 22px rgba(255,102,0,0.30); transform:scale(0); opacity:0; }
        .wf-steps.live .wf-num { animation:wfPop .52s var(--ease-out) forwards; animation-delay:calc(.3s + var(--d,0) * .26s); }
        @keyframes wfPop { 0% { transform:scale(0); opacity:0; } 60% { transform:scale(1.12); opacity:1; } 100% { transform:scale(1); opacity:1; } }
        .wf-step h3 { font-size:1.18rem; margin-bottom:10px; }
        .wf-step p { color:var(--muted); font-size:0.96rem; line-height:1.55; margin:0 auto; max-width:300px; }

        /* ---- Feature split (text + visual) ---- */
        .feat-split { display:grid; grid-template-columns:0.92fr 1.08fr; gap:60px; align-items:center; }
        .feat-text, .feat-visual { min-width:0; }
        .feat-split.reverse .feat-visual { order:-1; }
        .feat-text h2 { margin-top:6px; }
        .feat-text .oc-desc { color:var(--muted); line-height:1.6; margin:18px 0 0; }
        .check-list { list-style:none; margin:26px 0 0; padding:0; display:flex; flex-direction:column; }
        .check-list li { display:flex; align-items:flex-start; gap:11px; padding:11px 0; border-bottom:1px solid var(--line); color:var(--ink-2); font-size:0.98rem; }
        .check-list li:last-child { border-bottom:none; }
        .check-list .material-icons { color:var(--orange); font-size:20px; flex:0 0 auto; margin-top:1px; }
        .feat-actions { margin-top:28px; display:flex; gap:14px; flex-wrap:wrap; }

        /* ---- Browser chrome (shared) ---- */
        .browser { border:1px solid var(--line); border-radius:var(--radius-lg); overflow:hidden; background:#fff; box-shadow:var(--shadow-lg); }
        .bw-bar { display:flex; align-items:center; gap:8px; padding:12px 16px; background:var(--bg-soft); border-bottom:1px solid var(--line); }
        .bw-dot { width:11px; height:11px; border-radius:50%; }
        .bw-dot.r{background:#ff5f57}.bw-dot.y{background:#febc2e}.bw-dot.g{background:#28c840}
        .bw-title { margin-left:8px; font-size:0.82rem; font-weight:700; color:var(--ink-2); }
        .bw-foot { padding:16px 20px; font-size:0.86rem; color:var(--muted); line-height:1.5; border-top:1px solid var(--line); background:#fff; }

        /* ---- Industry Map mockup ---- */
        .map-body { display:grid; grid-template-columns:240px 1fr; min-height:430px; }
        .map-side { padding:16px 16px 18px; border-right:1px solid var(--line); background:#fff; overflow:hidden; }
        .ms-label { font-size:0.66rem; font-weight:800; letter-spacing:0.07em; text-transform:uppercase; color:var(--muted-2); margin:14px 0 8px; }
        .ms-label:first-child { margin-top:0; }
        .ms-search { display:flex; align-items:center; gap:8px; padding:9px 11px; border:1px solid var(--line-2); border-radius:9px; color:var(--muted); font-size:0.82rem; }
        .ms-search .material-icons { font-size:17px; color:var(--orange); }
        .chip-row { display:flex; flex-wrap:wrap; gap:7px; }
        .chip { font-size:0.74rem; font-weight:600; padding:5px 11px; border:1px solid var(--line-2); border-radius:999px; color:var(--ink-2); background:#fff; }
        .chip.on { background:var(--orange); border-color:var(--orange); color:#fff; }
        .ms-result { display:flex; align-items:center; gap:10px; padding:9px 0; border-top:1px solid var(--line); }
        .ms-result:first-of-type { border-top:none; }
        .mr-av { width:30px; height:30px; border-radius:7px; display:flex; align-items:center; justify-content:center; font-size:0.62rem; font-weight:800; color:#fff; flex:0 0 auto; }
        .mr-av.rf{background:var(--orange)} .mr-av.atc{background:#2f6df0}
        .mr-name { font-size:0.82rem; font-weight:700; color:var(--ink); line-height:1.2; }
        .mr-meta { font-size:0.7rem; color:var(--muted); margin-top:2px; }

        .map-canvas { position:relative; background:linear-gradient(180deg,#eef1f6,#e7ebf2); overflow:hidden; }
        .mc-top { position:absolute; top:14px; left:14px; right:14px; display:flex; justify-content:space-between; z-index:4; }
        .seg { display:inline-flex; background:#fff; border-radius:999px; padding:3px; box-shadow:var(--shadow-sm); font-size:0.74rem; font-weight:700; }
        .seg span { padding:5px 14px; border-radius:999px; color:var(--ink-2); }
        .seg .seg-on { background:var(--orange); color:#fff; }
        .mc-filter { display:inline-flex; align-items:center; gap:6px; background:var(--ink); color:#fff; font-size:0.74rem; font-weight:700; padding:7px 13px; border-radius:999px; }
        .mc-filter .material-icons { font-size:15px; color:var(--orange-2); }
        .mc-grid { position:absolute; inset:0; background-image:linear-gradient(var(--line) 1px,transparent 1px),linear-gradient(90deg,var(--line) 1px,transparent 1px); background-size:46px 46px; opacity:0.5; }
        .halo { position:absolute; border-radius:50%; background:radial-gradient(circle,rgba(255,102,0,0.18),rgba(255,102,0,0)); }
        .halo.h1 { width:230px; height:230px; left:42%; top:18%; }
        .halo.h2 { width:170px; height:170px; left:30%; top:54%; }
        .map-pin { position:absolute; width:18px; height:18px; border-radius:50% 50% 50% 0; transform:rotate(-45deg); box-shadow:0 3px 7px rgba(0,0,0,0.25); z-index:3; }
        .map-pin::after { content:''; position:absolute; inset:5px; background:#fff; border-radius:50%; }
        .map-pin.pink{background:#e0398b}.map-pin.blue{background:#2f6df0}.map-pin.orange{background:var(--orange)}.map-pin.green{background:#2bb673}
        .map-cluster { position:absolute; min-width:34px; height:34px; padding:0 8px; border-radius:999px; background:var(--orange); color:#fff; font-weight:800; font-size:0.82rem; display:flex; align-items:center; justify-content:center; box-shadow:0 4px 10px rgba(255,102,0,0.4); border:2px solid #fff; z-index:3; }
        .map-cluster.dark { background:#3b3d44; box-shadow:0 4px 10px rgba(0,0,0,0.3); }
        .map-legend { position:absolute; left:14px; bottom:54px; background:#fff; border:1px solid var(--line); border-radius:10px; padding:11px 13px; box-shadow:var(--shadow-sm); z-index:4; }
        .ml-h { font-size:0.7rem; font-weight:800; color:var(--ink); margin-bottom:6px; }
        .ml-row { display:flex; align-items:center; gap:7px; font-size:0.72rem; color:var(--ink-2); padding:2px 0; }
        .ml-d { width:9px; height:9px; border-radius:50%; }
        .ml-d.blue{background:#2f6df0}.ml-d.pink{background:#e0398b}.ml-d.dark{background:#3b3d44}
        .map-cta { position:absolute; right:14px; bottom:14px; display:inline-flex; align-items:center; gap:6px; background:var(--ink); color:#fff; font-size:0.76rem; font-weight:700; padding:9px 14px; border-radius:999px; box-shadow:var(--shadow-lg); z-index:4; }
        .map-cta .material-icons { font-size:16px; color:var(--orange-2); }

        /* ---- Real Leaflet industry map preview ---- */
        .map-canvas { background:linear-gradient(180deg,#eef1f6,#e7ebf2); min-height:430px; }
        #vipMap.vip-map { position:absolute; inset:0; z-index:1; background:#eef1f6; }
        .map-canvas { min-width:0; }
        .map-canvas .mc-top { position:relative; z-index:6; }
        .map-canvas .map-legend, .map-canvas .map-cta { z-index:6; }
        .leaflet-container { font:inherit !important; background:#eef1f6 !important; }
        .leaflet-container a { color:var(--orange); }
        .leaflet-control-attribution { font-size:9px !important; background:rgba(255,255,255,.7) !important; margin:0 !important; }
        :root[data-theme="dark"] .leaflet-control-attribution { background:rgba(18,20,26,.6) !important; color:#9aa3b2 !important; }
        :root[data-theme="dark"] #vipMap.vip-map, :root[data-theme="dark"] .leaflet-container { background:#eef1f6 !important; }
        /* keep the whole industry-map & tour-routing graphic light in dark mode (like contacts/intelligence) */
        [data-theme="dark"] .map-browser, [data-theme="dark"] .route-browser { --bg:#ffffff; --bg-soft:#f6f7f9; --line:#e9eaee; --line-2:#dfe1e6; --ink:#16161a; --ink-2:#3b3d44; --muted:#6b6e76; --muted-2:#82858d; }
        .vmk-dot { position:relative; width:26px; height:26px; border-radius:50%; border:2px solid #fff; box-shadow:0 3px 8px rgba(20,25,40,.35); display:flex; align-items:center; justify-content:center; box-sizing:border-box; }
        .vmk-dot svg { width:14px; height:14px; fill:none; stroke:#fff; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
        .vmk-dot svg .fillw { fill:#fff; stroke:none; }
        .vcl { width:40px; height:40px; border-radius:50%; background:var(--orange); color:#fff; border:3px solid #fff; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:0.82rem; box-shadow:0 3px 10px rgba(255,102,0,.45); box-sizing:border-box; }
        .vmk-dot.is-live::after { content:''; position:absolute; inset:-4px; border-radius:50%; border:2px solid currentColor; opacity:.6; animation:vipPulse 2.2s ease-out infinite; }
        @keyframes vipPulse { 0%{transform:scale(.75);opacity:.6} 100%{transform:scale(2.3);opacity:0} }
        .vmk-dot, .vcl { opacity:0; transform:translateY(-9px) scale(.5); }
        .map-browser.live .vmk-dot, .map-browser.live .vcl { animation:vipDrop .5s var(--ease-out) var(--vd,0s) forwards; }
        @keyframes vipDrop { to { opacity:1; transform:none; } }
        @media (prefers-reduced-motion: reduce) {
            .vmk-dot, .vcl { opacity:1 !important; transform:none !important; animation:none !important; }
            .vmk-dot.is-live::after { animation:none !important; opacity:0 !important; }
        }

        /* live entrance for map */
        .map-browser .map-pin { opacity:0; transform:rotate(-45deg) scale(.4) translateY(-6px); }
        .map-browser .map-cluster { opacity:0; transform:scale(.4) translateY(-6px); }
        .map-browser.live .map-pin { animation:pinDrop .5s var(--ease-out) forwards; animation-delay:var(--d,0s); }
        .map-browser.live .map-cluster { animation:pinPop .45s var(--ease-out) forwards; animation-delay:var(--d,0s); }
        @keyframes pinDrop { to { opacity:1; transform:rotate(-45deg) scale(1) translateY(0); } }
        @keyframes pinPop { to { opacity:1; transform:scale(1) translateY(0); } }

        /* ---- Tour Routing mockup ---- */
        .route-body { display:grid; grid-template-columns:260px 1fr; min-height:440px; }
        .route-side { padding:16px; border-right:1px solid var(--line); background:#fff; }
        .rs-field { margin-bottom:14px; }
        .rs-field:last-child { margin-bottom:0; }
        .rs-step { display:flex; align-items:center; gap:8px; font-size:0.66rem; font-weight:800; letter-spacing:0.06em; text-transform:uppercase; color:var(--muted-2); margin-bottom:7px; }
        .rs-num { display:inline-flex; align-items:center; justify-content:center; width:18px; height:18px; border-radius:50%; background:var(--orange-soft); color:var(--orange); font-size:0.66rem; }
        .rs-select { display:flex; justify-content:space-between; align-items:center; padding:9px 11px; border:1px solid var(--line-2); border-radius:9px; font-size:0.84rem; font-weight:600; color:var(--ink); }
        .rs-select .material-icons { font-size:18px; color:var(--muted); }
        .rs-note { margin-top:8px; padding:9px 11px; background:var(--bg-soft); border-radius:8px; font-size:0.72rem; color:var(--muted); line-height:1.45; }
        .rs-note b { color:var(--ink-2); }
        .rs-stepper { display:flex; align-items:center; justify-content:space-between; border:1px solid var(--line-2); border-radius:9px; padding:8px 14px; font-size:0.84rem; }
        .rs-stepper span { color:var(--orange); font-weight:800; font-size:1.05rem; cursor:default; }
        .rs-types { display:flex; gap:7px; }
        .rt { flex:1; display:flex; flex-direction:column; align-items:center; gap:3px; padding:9px 4px; border:1px solid var(--line-2); border-radius:9px; font-size:0.72rem; font-weight:600; color:var(--ink-2); }
        .rt .material-icons { font-size:17px; color:var(--orange); }
        .rs-slider { display:flex; align-items:center; gap:10px; }
        .rs-track { position:relative; flex:1; height:6px; border-radius:999px; background:var(--line-2); }
        .rs-fill { position:absolute; left:0; top:0; height:100%; width:62%; border-radius:999px; background:var(--orange); }
        .rs-knob { position:absolute; left:62%; top:50%; width:15px; height:15px; border-radius:50%; background:#fff; border:3px solid var(--orange); transform:translate(-50%,-50%); }
        .rs-val { font-size:0.76rem; font-weight:700; color:var(--ink); white-space:nowrap; }

        .route-canvas { display:flex; flex-direction:column; background:#fff; min-width:0; }
        .rc-stats { display:grid; grid-template-columns:repeat(5,1fr); border-bottom:1px solid var(--line); }
        .rc-stat { padding:12px 14px; border-right:1px solid var(--line); }
        .rc-stat:last-child { border-right:none; }
        .rc-l { display:block; font-size:0.6rem; font-weight:800; letter-spacing:0.05em; text-transform:uppercase; color:var(--muted-2); }
        .rc-v { display:block; font-size:1.05rem; font-weight:800; color:var(--ink); margin-top:3px; }
        .rc-map { position:relative; flex:1; background:linear-gradient(180deg,#eaf0f7,#e3e9f1); overflow:hidden; min-height:240px; }
        .rc-grid { position:absolute; inset:0; background-image:linear-gradient(var(--line) 1px,transparent 1px),linear-gradient(90deg,var(--line) 1px,transparent 1px); background-size:44px 44px; opacity:0.5; }
        .rc-svg { position:absolute; inset:0; width:100%; height:100%; }
        .rc-route { fill:none; stroke:var(--orange); stroke-width:3; stroke-linecap:round; stroke-linejoin:round; stroke-dasharray:6 8; }
        .route-browser.live .rc-route { stroke-dasharray:600; stroke-dashoffset:600; animation:drawRoute 2s var(--ease-out) forwards; }
        @keyframes drawRoute { to { stroke-dashoffset:0; } }
        .rc-pin { position:absolute; width:26px; height:26px; border-radius:50%; background:var(--orange); color:#fff; font-weight:800; font-size:0.78rem; display:flex; align-items:center; justify-content:center; border:2px solid #fff; box-shadow:0 4px 9px rgba(255,102,0,0.4); transform:translate(-50%,-50%) scale(.3); opacity:0; z-index:3; }
        .route-browser.live .rc-pin { animation:pinPop2 .45s var(--ease-out) forwards; animation-delay:var(--d); }
        @keyframes pinPop2 { to { opacity:1; transform:translate(-50%,-50%) scale(1); } }
        .rc-tag { position:absolute; display:inline-flex; align-items:center; gap:6px; background:var(--ink); color:#fff; font-size:0.72rem; font-weight:700; padding:7px 12px; border-radius:999px; box-shadow:var(--shadow-lg); z-index:4; }
        .rc-tag .material-icons { font-size:15px; color:var(--orange-2); }
        .rc-tag.est { top:14%; left:46%; }
        .rc-tag.pitch { bottom:18%; left:40%; }

        /* route map (real Leaflet) */
        .rc-stat { padding:11px 10px; }
        .rc-v { font-size:0.96rem; }
        .rc-stat.highlight .rc-v { color:var(--orange); }
        #vipRoute.vip-rmap { position:absolute; inset:0; z-index:1; background:#eaf0f7; }
        :root[data-theme="dark"] #vipRoute.vip-rmap { background:#eaf0f7 !important; }
        .rc-map .rc-tag { z-index:6; }
        .vrt { width:26px; height:26px; border-radius:50%; background:var(--orange); color:#fff; font-weight:800; font-size:0.78rem; display:flex; align-items:center; justify-content:center; border:2px solid #fff; box-shadow:0 4px 9px rgba(255,102,0,.45); box-sizing:border-box; position:relative; opacity:0; transform:translateY(-8px) scale(.4); }
        .route-browser.live .vrt { animation:vrtPop .45s var(--ease-out) var(--d,0s) forwards; }
        @keyframes vrtPop { to { opacity:1; transform:none; } }
        .vrt.start::after { content:''; position:absolute; inset:-4px; border-radius:50%; border:2px solid var(--orange); opacity:.6; animation:vipPulse 2.2s ease-out infinite; }
        .vroute { stroke:#ff6600; stroke-width:3; fill:none; stroke-linecap:round; stroke-linejoin:round; filter:drop-shadow(0 2px 3px rgba(255,102,0,.3)); }
        @media (prefers-reduced-motion: reduce) {
            .vrt { opacity:1 !important; transform:none !important; animation:none !important; }
            .vrt.start::after { animation:none !important; opacity:0 !important; }
        }
        .rc-stops { display:flex; border-top:1px solid var(--line); overflow-x:auto; scrollbar-width:none; min-width:0; }
        .rc-stops::-webkit-scrollbar { display:none; }
        .rc-stop { display:flex; align-items:center; gap:8px; padding:11px 14px; font-size:0.8rem; font-weight:600; color:var(--ink); border-right:1px solid var(--line); white-space:nowrap; flex:0 0 auto; opacity:0; transform:translateY(6px); }
        .route-browser.live .rc-stop { animation:rcStopIn .4s var(--ease-out) var(--sd,0s) forwards; }
        @keyframes rcStopIn { to { opacity:1; transform:none; } }
        .rc-stop:last-child { border-right:none; }
        @media (prefers-reduced-motion: reduce) { .rc-stop { opacity:1 !important; transform:none !important; animation:none !important; } }
        .rc-stop b { display:inline-flex; align-items:center; justify-content:center; width:20px; height:20px; border-radius:50%; background:var(--orange); color:#fff; font-size:0.7rem; }

        /* ---- Contacts mini cards + pitch host ---- */

        /* ---- Intelligence grid ---- */
        .intel-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:22px; margin-top:46px; }
        .intel-card { padding:26px 22px; border:1px solid var(--line); border-radius:var(--radius); background:#fff; box-shadow:var(--shadow-sm); transition:transform var(--dur-2) var(--ease-out), box-shadow var(--dur-2) var(--ease-out); }
        .intel-card:hover { transform:translateY(-3px); box-shadow:var(--shadow-lg); }
        .intel-ic { width:42px; height:42px; border-radius:12px; background:var(--orange-soft); display:flex; align-items:center; justify-content:center; margin-bottom:15px; }
        .intel-ic .material-icons { color:var(--orange); font-size:23px; }
        .intel-card h3 { font-size:1.08rem; margin-bottom:8px; }
        .intel-card p { margin:0; color:var(--muted); font-size:0.92rem; line-height:1.55; }
        .intel-foot { margin-top:40px; text-align:center; display:flex; flex-direction:column; align-items:center; gap:22px; }
        .intel-foot p { max-width:680px; margin:0; color:var(--muted); font-size:1rem; line-height:1.6; }

        /* ---- Audience chips ---- */
        .audience-chips { margin-top:40px; display:flex; flex-wrap:wrap; gap:10px; justify-content:center; }
        .audience-chips span { font-size:0.82rem; font-weight:600; color:var(--ink-2); padding:7px 15px; border:1px solid var(--line-2); border-radius:999px; background:#fff; }

        /* ---- Pricing plan sub ---- */
        .plan-sub { font-size:0.86rem; color:var(--muted); margin:4px 0 14px; line-height:1.4; }

        /* ---- Responsive ---- */
        @media (max-width: 920px) {
            .wf-steps { grid-template-columns:1fr; gap:38px; margin-top:44px; }
            .wf-track { display:none; }
            .feat-split, .feat-split.reverse { grid-template-columns:1fr; gap:36px; }
            .feat-split.reverse .feat-visual { order:0; }
            .intel-grid { grid-template-columns:repeat(2,1fr); }
            .map-body { grid-template-columns:1fr; }
            .map-side { display:none; }
            .map-canvas { min-height:340px; }
            .route-body { grid-template-columns:1fr; }
            .route-side { border-right:none; border-bottom:1px solid var(--line); }
        }
        @media (max-width: 560px) {
            .intel-grid { grid-template-columns:1fr; }
            .rc-stats { grid-template-columns:repeat(2,1fr); }
            .rc-stat:nth-child(2) { border-right:none; }
            .audience-chips span { font-size:0.76rem; padding:6px 12px; }
        }

        @media (prefers-reduced-motion: reduce) {
            .map-browser .map-pin, .map-browser .map-cluster, .route-browser .rc-pin { opacity:1 !important; transform:none !important; animation:none !important; }
            .map-pin { transform:rotate(-45deg) !important; }
            .route-browser .rc-route { stroke-dashoffset:0 !important; animation:none !important; }
            .wf-num { transform:none !important; opacity:1 !important; animation:none !important; }
            .wf-track::after { transform:none !important; animation:none !important; }
            .intel-card:hover { transform:none; }
        }
