/* =========================================================
   EVUNITY — Landing page
   Brand: accent orange #ff7300 / primary indigo #2709b7
   ========================================================= */

:root {
    --brand: #ff7300;
    --brand-2: #ff9a3c;
    --brand-deep: #d65f00;
    --ink: #2709b7;
    --ink-2: #1c0691;
    --ink-3: #0e034b;

    --bg: #ffffff;
    --bg-soft: #fafafb;
    --bg-tint: #f5f5fb;
    --bg-dark: #0d0e2c;
    --bg-dark-2: #131542;

    --line: #ececf3;
    --line-2: #e1e1eb;
    --muted: #6b6e83;
    --text: #15172e;

    --radius: 14px;
    --radius-lg: 22px;
    --shadow-sm: 0 1px 2px rgba(15, 17, 46, .04), 0 1px 1px rgba(15, 17, 46, .04);
    --shadow: 0 4px 14px rgba(15, 17, 46, .08), 0 1px 2px rgba(15, 17, 46, .04);
    --shadow-lg: 0 30px 60px -20px rgba(15, 17, 46, .25), 0 10px 24px -12px rgba(15, 17, 46, .15);

    --container: 1200px;
    --gap: 28px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    font-feature-settings: 'cv02','cv03','cv04','cv11';
    color: var(--text);
    background: var(--bg);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 { font-family: 'Space Grotesk', 'Inter', sans-serif; letter-spacing: -0.02em; margin: 0; color: var(--ink-3); }
h1 { font-weight: 700; }
h2 { font-weight: 700; }
p { margin: 0; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14.5px;
    border: 1px solid transparent;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
    white-space: nowrap;
    line-height: 1;
}
.btn-lg { padding: 14px 22px; font-size: 15.5px; }
.btn-primary {
    background: linear-gradient(180deg, var(--brand) 0%, var(--brand-deep) 100%);
    color: #fff;
    box-shadow: 0 8px 18px -6px rgba(255, 122, 20, .55), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 24px -8px rgba(255, 122, 20, .65), inset 0 1px 0 rgba(255,255,255,.25); }
.btn-outline {
    background: rgba(255,255,255,.02);
    color: var(--ink-3);
    border-color: var(--line-2);
}
.btn-outline:hover { background: #fff; border-color: var(--ink-3); }
.btn-light {
    background: #fff;
    color: var(--ink-3);
    box-shadow: 0 1px 0 rgba(0,0,0,.04);
}
.btn-light:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-ghost {
    background: transparent;
    color: var(--ink-3);
    border-color: transparent;
}
.btn-ghost:hover { background: var(--bg-tint); }

/* ---------- Announcement bar ---------- */
.announce {
    background: var(--ink-3);
    color: #d8d8e8;
    font-size: 13px;
}
.announce-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 24px;
    flex-wrap: wrap;
}
.announce-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 4px rgba(255, 122, 20, .22);
}
.announce-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-weight: 600;
    border-left: 1px solid rgba(255,255,255,.15);
    padding-left: 14px;
    margin-left: 4px;
}
.announce-link:hover { color: var(--brand-2); }

/* ---------- Navigation ---------- */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease, background .2s ease;
}
.nav.scrolled {
    border-bottom-color: var(--line);
    background: rgba(255, 255, 255, .95);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 24px;
}
.brand { display: inline-flex; align-items: center; }
.brand-mark { height: 32px; width: auto; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}
.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    color: var(--ink-3);
    font-size: 14.5px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: background .15s ease, color .15s ease;
}
.nav-link:hover { background: var(--bg-tint); }

.nav-item.has-menu { position: relative; }
.mega {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--shadow-lg);
    min-width: 560px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .18s ease, transform .18s ease;
}
.nav-item.has-menu:hover .mega,
.nav-item.has-menu:focus-within .mega {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(2px);
}
.mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.mega-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    transition: background .15s ease;
}
.mega-item:hover { background: var(--bg-tint); }
.mega-item strong { display: block; color: var(--ink-3); font-size: 14px; font-weight: 600; }
.mega-item span { display: block; color: var(--muted); font-size: 12.5px; }
.mega-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #fff3e6 0%, #ffe2c4 100%);
    color: var(--brand-deep);
    display: grid; place-items: center;
    flex-shrink: 0;
}
.mega-icon svg { width: 18px; height: 18px; }

.nav-cta { display: flex; align-items: center; gap: 6px; }
.nav-burger {
    display: none;
    background: none;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 8px;
    color: var(--ink-3);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    overflow: hidden;
    padding: 64px 0 0;
    background: linear-gradient(180deg, #fdfdff 0%, #f6f6fc 100%);
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(42, 45, 168, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(42, 45, 168, .06) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.7) 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.7) 30%, transparent 70%);
}
.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .55;
}
.glow-1 { width: 460px; height: 460px; background: rgba(255, 122, 20, .45); top: -120px; right: -80px; }
.glow-2 { width: 400px; height: 400px; background: rgba(42, 45, 168, .30); bottom: -120px; left: -100px; }

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 48px;
    align-items: center;
    padding-top: 56px;
    padding-bottom: 56px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.75);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 6px 14px 6px 6px;
    font-size: 13px;
    color: var(--ink-2);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}
.eyebrow-pill {
    background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
    color: #fff;
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 11.5px;
    letter-spacing: .02em;
}
.eyebrow-text { font-weight: 500; }

.hero-title {
    font-size: clamp(40px, 5.5vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.035em;
    color: var(--ink-3);
    margin-bottom: 22px;
}
.grad-text {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 60%, var(--ink) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-sub {
    font-size: 18px;
    color: var(--muted);
    max-width: 540px;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero-trust .trust-row { display: flex; align-items: center; gap: 14px; }
.trust-avatars { display: flex; }
.avt {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-sm);
}
.avt:first-child { margin-left: 0; }
.avt-1 { background: url('https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=120&h=120&fit=crop&crop=faces') center/cover, linear-gradient(135deg, #ffb380, #ff7a14); }
.avt-2 { background: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=120&h=120&fit=crop&crop=faces') center/cover, linear-gradient(135deg, #8a8eff, #2a2da8); }
.avt-3 { background: url('https://images.unsplash.com/photo-1438761681033-6461ffad8d80?w=120&h=120&fit=crop&crop=faces') center/cover, linear-gradient(135deg, #ffd190, #ff9a3c); }
.avt-4 { background: url('https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?w=120&h=120&fit=crop&crop=faces') center/cover, linear-gradient(135deg, #b6b8ff, #4d51d8); }

.trust-stars { display: inline-flex; gap: 2px; margin-bottom: 2px; }
.trust-text { color: var(--muted); font-size: 13.5px; }
.trust-text strong { color: var(--ink-3); }

/* ---------- Hero visual ---------- */
.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone {
    position: relative;
    width: 280px;
    height: 570px;
    background: linear-gradient(170deg, #1c1d50 0%, #0c0d3d 100%);
    border-radius: 42px;
    padding: 14px;
    box-shadow:
        0 40px 80px -20px rgba(15, 17, 46, .35),
        0 25px 40px -25px rgba(255, 122, 20, .25),
        inset 0 0 0 1px rgba(255,255,255,.07);
    transform: rotate(-3deg);
    z-index: 2;
}
.phone-notch {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 88px;
    height: 22px;
    background: #000;
    border-radius: 99px;
    z-index: 3;
}
.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #2a2da8 0%, #0c0d3d 60%, #060727 100%);
    border-radius: 30px;
    overflow: hidden;
    color: #fff;
    display: flex;
    flex-direction: column;
}
.phone-statusbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px 8px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}
.phone-icons { display: inline-flex; gap: 6px; align-items: center; opacity: .9; }
.phone-app { padding: 18px 18px 22px; flex: 1; display: flex; flex-direction: column; }

.app-greet { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.greet-hi { font-size: 17px; font-weight: 700; }
.greet-sub { font-size: 12px; opacity: .65; }
.avatar-circle {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
    display: grid; place-items: center;
    color: #fff; font-weight: 700; font-size: 14px;
}

.charging-card {
    background: linear-gradient(170deg, rgba(255, 122, 20, .92) 0%, rgba(232, 92, 0, .95) 100%);
    border-radius: 20px;
    padding: 14px 14px 16px;
    margin-bottom: 14px;
    box-shadow: 0 10px 30px -10px rgba(255, 122, 20, .55);
    overflow: hidden;
}
.charging-head {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 4px;
    opacity: .95;
    white-space: nowrap;
}
.live-dot {
    width: 7px; height: 7px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255,255,255,.25);
    animation: pulse 1.6s ease-out infinite;
}
.charging-station { font-size: 12.5px; opacity: .9; margin-bottom: 8px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.progress-ring {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 6px auto 14px;
}
.progress-ring svg { width: 100%; height: 100%; display: block; }
.progress-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
}
.progress-num {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -.025em;
    line-height: 1;
    margin-bottom: 4px;
}
.progress-label {
    display: block;
    font-size: 9.5px;
    text-transform: uppercase;
    letter-spacing: .14em;
    opacity: .85;
    font-weight: 600;
    line-height: 1;
}
.ring-progress {
    animation: ring-fill 2.4s cubic-bezier(.22,.61,.36,1) forwards;
    stroke-dashoffset: 314;
}
@keyframes ring-fill { to { stroke-dashoffset: 94; } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,255,255,.5); } 100% { box-shadow: 0 0 0 8px rgba(255,255,255,0); } }

.charging-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(255,255,255,.14);
    border-radius: 12px;
    padding: 9px 2px;
}
.charging-stats div { text-align: center; padding: 0 2px; }
.charging-stats span { display: block; font-size: 12px; font-weight: 700; white-space: nowrap; }
.charging-stats small { font-size: 9.5px; opacity: .85; }

.quick-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: auto;
}
.qa {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: rgba(255,255,255,.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 12px;
    padding: 10px;
    font-size: 11px;
    font-weight: 500;
}
.qa-active { background: rgba(255, 122, 20, .25); border-color: rgba(255, 122, 20, .4); color: var(--brand-2); }

.float-card {
    position: absolute;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    padding: 16px;
    z-index: 3;
    border: 1px solid var(--line);
}
.float-a {
    top: 30px;
    right: -10px;
    width: 220px;
    animation: float 6s ease-in-out infinite;
}
.float-b {
    bottom: 60px;
    left: -10px;
    width: 200px;
    animation: float 7s ease-in-out infinite reverse;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.float-header {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 600;
    margin-bottom: 8px;
}
.float-header strong { color: var(--ink-3); font-weight: 600; }
.green-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, .2);
}
.float-stat { display: flex; flex-direction: column; }
.big-num { font-size: 28px; font-weight: 800; color: var(--ink-3); letter-spacing: -.02em; }
.big-num small { font-size: 14px; font-weight: 600; color: var(--muted); }
.float-label, .float-meta { font-size: 12px; color: var(--muted); }
.float-value { font-size: 24px; font-weight: 800; color: var(--ink-3); letter-spacing: -.02em; }
.float-value small { font-size: 13px; font-weight: 600; color: var(--muted); }

.mini-chart { display: flex; align-items: flex-end; gap: 3px; height: 38px; margin-top: 10px; }
.mini-chart span {
    flex: 1;
    background: linear-gradient(180deg, var(--brand) 0%, var(--brand-deep) 100%);
    border-radius: 3px 3px 0 0;
    min-height: 4px;
    opacity: .85;
}

/* ---------- Logo strip ---------- */
.logo-strip {
    position: relative;
    z-index: 1;
    padding: 36px 24px 40px;
    text-align: center;
    border-top: 1px solid var(--line);
    margin-top: 24px;
}
.logo-strip-label {
    display: block;
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 22px;
    font-weight: 600;
}
.logo-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.logo-pill {
    color: var(--ink-2);
    opacity: .55;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: .08em;
    font-size: 18px;
    padding: 6px 14px;
    transition: opacity .2s ease;
}
.logo-pill:hover { opacity: 1; }

/* ---------- Stats band ---------- */
.stats {
    padding: 56px 0;
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.stat {
    text-align: center;
    border-right: 1px solid var(--line);
    padding: 8px;
}
.stat:last-child { border-right: none; }
.stat-num {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 700;
    color: var(--ink-3);
    letter-spacing: -.03em;
    line-height: 1;
}
.stat-suffix {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -.03em;
    line-height: 1;
}
.stat-label {
    display: block;
    margin-top: 8px;
    font-size: 13.5px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 600;
}

/* ---------- Section base ---------- */
.section { padding: 110px 0; position: relative; }
.section-dark {
    background: linear-gradient(180deg, #0c0d3d 0%, #131542 100%);
    color: #d8d9e8;
    overflow: hidden;
}
.section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 122, 20, .15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(63, 67, 224, .25) 0%, transparent 45%);
    pointer-events: none;
}
.section-dark > .container { position: relative; z-index: 1; }
.section-tint { background: var(--bg-tint); }

.section-head {
    text-align: center;
    max-width: 740px;
    margin: 0 auto 56px;
}
.kicker {
    display: inline-block;
    color: var(--brand-deep);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 14px;
    padding: 6px 12px;
    background: rgba(255, 122, 20, .08);
    border-radius: 999px;
}
.kicker-light {
    color: var(--brand-2);
    background: rgba(255, 122, 20, .12);
}
.section-title {
    font-size: clamp(30px, 3.4vw, 48px);
    line-height: 1.08;
    letter-spacing: -.03em;
    margin-bottom: 16px;
}
.section-title-light { color: #fff; }
.section-lede {
    font-size: 17.5px;
    color: var(--muted);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}
.section-lede-light { color: #a8a9c5; }

/* ---------- Why grid ---------- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.why-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: transparent;
}
.why-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #fff3e6 0%, #ffdcba 100%);
    color: var(--brand-deep);
    display: grid; place-items: center;
    margin-bottom: 18px;
}
.why-icon svg { width: 24px; height: 24px; }
.why-card h3 {
    font-size: 19px;
    margin-bottom: 8px;
    font-weight: 600;
}
.why-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

/* ---------- Mobile feature tabs ---------- */
.feature-tabs { max-width: 1100px; margin: 0 auto; }
.tab-list {
    display: flex;
    gap: 6px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 999px;
    padding: 6px;
    width: fit-content;
    margin: 0 auto 40px;
    flex-wrap: wrap;
    justify-content: center;
}
.tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #a8a9c5;
    border: none;
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    transition: all .2s ease;
}
.tab:hover { color: #fff; }
.tab-active {
    background: linear-gradient(180deg, var(--brand) 0%, var(--brand-deep) 100%);
    color: #fff;
    box-shadow: 0 8px 18px -6px rgba(255, 122, 20, .55);
}
.tab-panel { display: none; animation: fadeIn .4s ease; }
.tab-panel-active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px);} to { opacity: 1; transform: translateY(0);} }

.split {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 60px;
    align-items: center;
}
.split-copy h3 {
    color: #fff;
    font-size: clamp(24px, 2.4vw, 34px);
    margin-bottom: 14px;
    line-height: 1.15;
}
.split-copy > p {
    color: #a8a9c5;
    font-size: 16.5px;
    margin-bottom: 22px;
}
.check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    gap: 10px;
}
.check-list li {
    position: relative;
    padding-left: 30px;
    color: #d8d9e8;
    font-size: 15px;
}
.check-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 5px;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: rgba(255, 122, 20, .15) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ff8a1c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center no-repeat;
}

/* ---------- Map card ---------- */
.map-card {
    background: linear-gradient(170deg, #16184d 0%, #0a0b30 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,.08);
    overflow: hidden;
    box-shadow: 0 30px 60px -25px rgba(0,0,0,.6);
}
.map-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    color: #fff;
    font-size: 14px;
}
.map-canvas {
    position: relative;
    height: 280px;
    background:
        radial-gradient(circle at 30% 40%, rgba(63, 67, 224, .2) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 122, 20, .15) 0%, transparent 50%),
        #0c0d3d;
}
.map-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.pin {
    position: absolute;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 4px rgba(255, 122, 20, .25), 0 0 14px rgba(255, 122, 20, .6);
}
.pin-pulse {
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--brand);
    opacity: .5;
    animation: pin-pulse 2s ease-out infinite;
}
@keyframes pin-pulse { to { transform: scale(2.5); opacity: 0; } }
.pin-1 { top: 60px; left: 80px; }
.pin-2 { top: 110px; left: 200px; }
.pin-3 { top: 180px; left: 110px; }
.pin-4 { top: 80px; right: 90px; background: #4d51d8; box-shadow: 0 0 0 4px rgba(77,81,216,.25), 0 0 14px rgba(77,81,216,.6); }
.pin-5 { top: 200px; right: 50px; }
.map-tooltip {
    position: absolute;
    top: 32px;
    left: 110px;
    background: #fff;
    color: var(--ink-3);
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,.25);
    display: grid;
    gap: 2px;
    min-width: 130px;
}
.map-tooltip strong { font-size: 12.5px; }
.map-tooltip span { color: var(--muted); font-size: 11.5px; }
.map-pace { color: var(--brand-deep) !important; font-weight: 600; }
.map-foot {
    display: flex;
    justify-content: space-between;
    padding: 14px 18px;
    border-top: 1px solid rgba(255,255,255,.06);
    color: #a8a9c5;
    font-size: 13px;
}
.map-foot b { color: #fff; }
.badge {
    display: inline-block;
    font-size: 11px;
    padding: 3px 9px;
    border-radius: 999px;
    font-weight: 600;
    background: rgba(255,255,255,.08);
    color: #fff;
}
.badge-soft { background: rgba(255, 122, 20, .15); color: var(--brand-2); }

/* ---------- Vehicle card ---------- */
.vehicle-card {
    background: linear-gradient(170deg, #16184d 0%, #0a0b30 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,.08);
    padding: 24px;
    color: #fff;
    box-shadow: 0 30px 60px -25px rgba(0,0,0,.6);
}
.vehicle-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 22px; }
.vehicle-name { display: block; font-weight: 700; font-size: 17px; }
.vehicle-plate { font-size: 12.5px; color: #a8a9c5; }
.badge-on { background: rgba(34, 197, 94, .15); color: #4ade80; }

.vehicle-bat { margin-bottom: 22px; }
.bat-shell {
    height: 12px;
    background: rgba(255,255,255,.06);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 8px;
}
.bat-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--brand) 0%, #ffd190 100%);
    border-radius: 999px;
    box-shadow: 0 0 14px rgba(255, 122, 20, .4);
}
.bat-meta { display: flex; justify-content: space-between; font-size: 13px; color: #a8a9c5; }
.bat-meta b { color: #fff; }

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 18px;
}
.vg-item {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
}
.vg-item span { display: block; font-size: 11px; color: #a8a9c5; }
.vg-item b { display: block; font-size: 14px; margin-top: 2px; }

.vehicle-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.vehicle-actions button {
    background: rgba(255, 122, 20, .12);
    border: 1px solid rgba(255, 122, 20, .25);
    color: var(--brand-2);
    border-radius: 10px;
    padding: 10px;
    font-size: 12px;
    font-weight: 600;
}

/* ---------- Marketplace card ---------- */
.market-card {
    background: linear-gradient(170deg, #16184d 0%, #0a0b30 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,.08);
    padding: 18px;
    box-shadow: 0 30px 60px -25px rgba(0,0,0,.6);
}
.market-list { display: grid; gap: 10px; }
.m-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 14px;
}
.m-thumb {
    width: 56px; height: 56px;
    border-radius: 12px;
    flex-shrink: 0;
    object-fit: cover;
    background: linear-gradient(135deg, #2a2da8, #0c0d3d);
    box-shadow: 0 4px 10px -4px rgba(0,0,0,.5);
}
.m-info { flex: 1; min-width: 0; }
.m-info b {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.m-info span { display: block; color: #a8a9c5; font-size: 12px; margin-top: 2px; }
.m-tag {
    background: rgba(255, 122, 20, .12);
    color: var(--brand-2);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
}

/* ---------- Community card ---------- */
.community-card { display: grid; gap: 12px; min-width: 0; }
.post {
    background: linear-gradient(170deg, #16184d 0%, #0a0b30 100%);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-lg);
    padding: 18px;
    color: #fff;
    box-shadow: 0 20px 40px -25px rgba(0,0,0,.5);
    overflow: hidden;
}
.post-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; min-width: 0; }
.post-head > div { min-width: 0; flex: 1; }
.avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
    color: #fff;
    display: grid; place-items: center;
    font-weight: 700;
    flex-shrink: 0;
}
.avatar-b { background: linear-gradient(135deg, #4d51d8, #2a2da8); }
.avatar-photo { background-size: cover; background-position: center; font-size: 0; }
.avatar-l { background-image: url('https://images.unsplash.com/photo-1438761681033-6461ffad8d80?w=120&h=120&fit=crop&crop=faces'); }
.avatar-k { background-image: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=120&h=120&fit=crop&crop=faces'); }
.post-head b { display: block; font-size: 14px; }
.post-head span { font-size: 12px; color: #a8a9c5; }
.post p {
    color: #d8d9e8;
    font-size: 14.5px;
    margin-bottom: 10px;
    line-height: 1.55;
    overflow-wrap: break-word;
    word-wrap: break-word;
}
.post-meta {
    display: flex;
    gap: 16px;
    color: #8e90ad;
    font-size: 12.5px;
    flex-wrap: wrap;
}

/* ---------- Operator dashboard ---------- */
.dashboard-shell {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 1180px;
    margin: 0 auto;
}
.ds-top {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
    gap: 14px;
}
.ds-dots { display: flex; gap: 6px; }
.ds-dots span { width: 11px; height: 11px; border-radius: 50%; background: #d8d8df; }
.ds-dots span:nth-child(1) { background: #ff6b6b; }
.ds-dots span:nth-child(2) { background: #ffd166; }
.ds-dots span:nth-child(3) { background: #4ade80; }
.ds-url {
    flex: 1;
    text-align: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 13px;
    color: var(--muted);
}
.ds-body { display: grid; grid-template-columns: 220px 1fr; min-height: 600px; }
.ds-side {
    background: var(--bg-soft);
    border-right: 1px solid var(--line);
    padding: 20px 14px;
}
.ds-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--brand-deep);
    margin-bottom: 22px;
    padding: 4px 8px;
}
.ds-nav { display: flex; flex-direction: column; gap: 2px; }
.ds-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 8px;
    color: var(--muted);
    font-size: 13.5px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background .15s ease, color .15s ease, transform .15s ease;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}
.ds-nav a svg { width: 16px; height: 16px; flex-shrink: 0; opacity: .7; }
.ds-nav a:hover { background: rgba(255, 122, 20, .06); color: var(--ink-3); }
.ds-nav a:hover svg { opacity: 1; color: var(--brand-deep); }
.ds-nav a:active { transform: scale(.98); }
.ds-nav a:focus-visible { outline: 2px solid var(--brand); outline-offset: 1px; }
.ds-active {
    background: #fff !important;
    color: var(--ink-3) !important;
    box-shadow: 0 1px 3px rgba(15, 17, 46, .08), 0 1px 0 rgba(15, 17, 46, .04);
    font-weight: 600 !important;
    position: relative;
}
.ds-active svg { opacity: 1 !important; color: var(--brand-deep) !important; }
.ds-active::before {
    content: '';
    position: absolute;
    left: 0; top: 8px; bottom: 8px;
    width: 3px;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--brand) 0%, var(--brand-deep) 100%);
}

.ds-main { padding: 24px; overflow: hidden; }
.ds-headerbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
    flex-wrap: wrap;
    gap: 12px;
}
.ds-headerbar h4 { font-size: 20px; margin: 0; }
.ds-sub { font-size: 13px; color: var(--muted); }
.ds-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-tint);
    color: var(--muted);
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 500;
}
.pip {
    width: 7px; height: 7px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, .15);
}
.pill-on { background: rgba(34, 197, 94, .1); color: #16a34a; font-weight: 600; }
.pill-warn { background: rgba(245, 158, 11, .1); color: #d97706; font-weight: 600; }

.ds-kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 20px;
}
.kpi {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px;
}
.kpi-label { display: block; font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; font-weight: 600; }
.kpi-val { display: block; font-size: 24px; font-weight: 700; color: var(--ink-3); margin: 6px 0 4px; font-family: 'Space Grotesk', sans-serif; letter-spacing: -.02em; }
.kpi-val small { font-size: 13px; color: var(--muted); font-weight: 500; }
.kpi-delta { font-size: 12px; font-weight: 600; }
.kpi-delta.up { color: #16a34a; }
.kpi-delta.down { color: #dc2626; }

.ds-row { display: grid; grid-template-columns: 1.6fr 1fr; gap: 14px; margin-bottom: 14px; }
.ds-row:has(.ds-half) { grid-template-columns: 1fr 1fr; }
.ds-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px;
}
.ds-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}
.ds-card-head strong { font-size: 14px; color: var(--ink-3); }
.ds-tabs {
    display: inline-flex;
    background: var(--bg-tint);
    border-radius: 8px;
    padding: 3px;
    font-size: 12px;
    font-weight: 600;
}
.ds-tabs span { padding: 4px 10px; border-radius: 6px; color: var(--muted); }
.ds-tabs .on { background: #fff; color: var(--ink-3); box-shadow: var(--shadow-sm); }

.chart { width: 100%; height: 200px; }
.sessions { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.sessions li {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 10px;
    padding: 8px 6px;
    font-size: 13px;
    color: var(--muted);
    align-items: center;
}
.sessions li b { color: var(--ink-3); font-weight: 600; }
.sessions li i { font-style: normal; font-size: 12px; color: var(--brand-deep); font-weight: 600; }
.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot-green { background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,.15); }
.dot-amber { background: #f59e0b; }
.dot-red { background: #ef4444; }

.ds-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.ds-table th { text-align: left; color: var(--muted); font-weight: 600; padding: 8px 6px; border-bottom: 1px solid var(--line); font-size: 12px; text-transform: uppercase; letter-spacing: .04em; }
.ds-table td { padding: 10px 6px; border-bottom: 1px solid var(--line); color: var(--ink-3); }
.ds-table tr:last-child td { border-bottom: none; }

.alerts { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.alerts li { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: flex-start; padding: 6px 0; }
.alerts b { display: block; font-size: 13.5px; color: var(--ink-3); }
.alerts span { font-size: 12.5px; color: var(--muted); }
.badge-warn { background: rgba(245, 158, 11, .1); color: #d97706; }

/* ---------- Dashboard view panels ---------- */
.ds-view { display: none; animation: dsFadeIn .25s ease; }
.ds-view-active { display: block; }
@keyframes dsFadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

.ds-toolbar { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.ds-search {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--bg-tint);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 6px 12px;
    color: var(--muted);
    font-size: 12.5px;
}
.ds-btn {
    background: linear-gradient(180deg, var(--brand) 0%, var(--brand-deep) 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 7px 14px;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 10px -4px rgba(255, 122, 20, .55);
    transition: transform .15s ease, box-shadow .15s ease;
}
.ds-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 14px -4px rgba(255, 122, 20, .6); }

.ds-table-full { table-layout: auto; }
.ds-table-full td { vertical-align: middle; }
.ds-table-full td small { display: block; color: var(--muted); font-size: 11.5px; margin-top: 2px; }
.ds-table-full .dot { display: inline-block; vertical-align: middle; margin-right: 6px; }
.ds-table-full tr:hover td { background: rgba(255, 122, 20, .03); }

.user-cell { display: flex; align-items: center; gap: 10px; }
.user-cell b { display: block; font-size: 13.5px; color: var(--ink-3); }
.user-cell small { color: var(--muted); font-size: 11.5px; }
.u-avatar {
    width: 34px; height: 34px;
    border-radius: 50%;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
}
.u-1 { background-image: url('https://images.unsplash.com/photo-1438761681033-6461ffad8d80?w=120&h=120&fit=crop&crop=faces'); }
.u-2 { background-image: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=120&h=120&fit=crop&crop=faces'); }
.u-3 { background-image: url('https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=120&h=120&fit=crop&crop=faces'); }
.u-4 { background-image: url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?w=120&h=120&fit=crop&crop=faces'); }
.u-5 { background-image: url('https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?w=120&h=120&fit=crop&crop=faces'); }

/* Tariffs */
.ds-tariff-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.ds-tariff-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px;
    transition: transform .2s ease, box-shadow .2s ease;
}
.ds-tariff-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.tc-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.tc-head b { color: var(--ink-3); font-size: 14.5px; }
.tc-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px; font-weight: 700;
    color: var(--ink-3);
    letter-spacing: -.02em;
    margin-bottom: 10px;
}
.tc-price small { font-size: 13px; color: var(--muted); font-weight: 500; }
.tc-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.tc-list li {
    color: var(--muted);
    font-size: 12.5px;
    padding-left: 18px;
    position: relative;
}
.tc-list li::before {
    content: '';
    position: absolute;
    left: 4px; top: 7px;
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--brand);
}

/* Reports */
.bar-chart {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    align-items: flex-end;
    height: 180px;
    padding-top: 12px;
}
.bar { display: flex; flex-direction: column; align-items: center; height: 100%; gap: 8px; }
.bar-fill {
    width: 100%;
    background: linear-gradient(180deg, var(--brand) 0%, var(--brand-deep) 100%);
    border-radius: 6px 6px 0 0;
    min-height: 8px;
    transition: height .6s cubic-bezier(.22,.61,.36,1);
}
.bar small { color: var(--muted); font-size: 11px; font-weight: 500; }
.rep-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.rep-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background: var(--bg-tint);
    border-radius: 10px;
    gap: 12px;
}
.rep-list b { display: block; color: var(--ink-3); font-size: 13.5px; }
.rep-list span { color: var(--muted); font-size: 12px; }

/* Settings */
.ds-settings {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
}
.ds-set-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
    gap: 16px;
}
.ds-set-row:last-child { border-bottom: none; }
.ds-set-row b { display: block; color: var(--ink-3); font-size: 14px; }
.ds-set-row > div span { color: var(--muted); font-size: 12.5px; }
.ds-set-row input,
.ds-set-row select {
    background: var(--bg-tint);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 7px 12px;
    font-size: 13px;
    color: var(--ink-3);
    min-width: 220px;
    max-width: 280px;
    font-family: inherit;
}
.ds-toggle { position: relative; display: inline-block; width: 38px; height: 22px; cursor: pointer; }
.ds-toggle input { opacity: 0; width: 0; height: 0; }
.ds-toggle span {
    position: absolute; inset: 0;
    background: #d1d5db;
    border-radius: 999px;
    transition: background .2s ease;
}
.ds-toggle span::before {
    content: ''; position: absolute;
    top: 2px; left: 2px;
    width: 18px; height: 18px;
    background: #fff;
    border-radius: 50%;
    transition: transform .2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.ds-toggle input:checked + span { background: var(--brand); }
.ds-toggle input:checked + span::before { transform: translateX(16px); }

/* ---------- White-label ---------- */
.wl-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.wl-features { display: grid; gap: 18px; margin: 32px 0 28px; }
.wl-item { display: grid; grid-template-columns: 48px 1fr; gap: 16px; align-items: flex-start; }
.wl-num {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
    color: #fff;
    border-radius: 12px;
    display: grid; place-items: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 14px;
}
.wl-item b { display: block; font-size: 15.5px; color: var(--ink-3); margin-bottom: 2px; }
.wl-item span { display: block; color: var(--muted); font-size: 14px; line-height: 1.55; }

.wl-visual { position: relative; height: 580px; }
.wl-phone {
    position: absolute;
    width: 200px;
    height: 400px;
    background: linear-gradient(170deg, #1c1d50 0%, #0c0d3d 100%);
    border-radius: 28px;
    padding: 8px;
    box-shadow: var(--shadow-lg);
}
.wl-phone-1 { left: 10%; top: 30px; transform: rotate(-8deg); z-index: 1; }
.wl-phone-2 { left: 40%; top: 80px; transform: rotate(0deg); z-index: 3; }
.wl-phone-3 { right: 5%; top: 30px; transform: rotate(8deg); z-index: 1; }
.wl-screen { width: 100%; height: 100%; border-radius: 22px; padding: 24px 18px; color: #fff; display: flex; flex-direction: column; }
.wl-screen-a { background: linear-gradient(170deg, #2a2da8 0%, #0c0d3d 100%); }
.wl-screen-b { background: linear-gradient(170deg, #0d6efd 0%, #051e4d 100%); }
.wl-screen-c { background: linear-gradient(170deg, #ff7a14 0%, #c33b00 100%); }
.wl-brand { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 16px; letter-spacing: .12em; margin-bottom: 18px; }
.wl-brand-2 { color: #b6d7ff; }
.wl-brand-3 { color: #fff; opacity: .95; }
.wl-hero-pic {
    flex: 1;
    background:
        linear-gradient(180deg, rgba(42, 45, 168, .4) 0%, rgba(12, 13, 61, .65) 100%),
        url('https://images.unsplash.com/photo-1593941707882-a5bba14938c7?auto=format&fit=crop&w=400&h=600&q=80') center/cover;
    border-radius: 12px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}
.wl-hero-pic::after {
    content: '';
    position: absolute;
    width: 56px; height: 56px;
    background: rgba(255,255,255,.95);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    box-shadow: 0 0 0 14px rgba(255,255,255,.18), 0 0 0 28px rgba(255,255,255,.08);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='%23ff7a14'><path d='M14 2L4 14h7l-1 8 10-12h-7l1-8z'/></svg>");
    background-position: center;
    background-repeat: no-repeat;
}
.wl-cta {
    background: var(--brand);
    color: #fff;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 13px;
}
.wl-cta-2 { background: #ffffff; color: #0d6efd; }
.wl-cta-3 { background: #fff; color: var(--brand-deep); }
.wl-list { flex: 1; display: grid; gap: 8px; margin-bottom: 12px; }
.wl-row {
    display: flex;
    justify-content: space-between;
    background: rgba(255,255,255,.08);
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 12px;
}
.wl-ring {
    width: 130px; height: 130px;
    margin: 20px auto 8px;
    border-radius: 50%;
    border: 8px solid rgba(255,255,255,.2);
    border-top-color: #fff;
    transform: rotate(45deg);
}
.wl-num-big { text-align: center; font-family: 'Space Grotesk', sans-serif; font-size: 32px; font-weight: 700; margin-bottom: auto; }

/* ---------- Network diagram ---------- */
.network-diagram {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    height: 500px;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 122, 20, .06) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.network-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: visible;
}
.node {
    position: absolute;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px 22px;
    text-align: center;
    box-shadow: var(--shadow);
    z-index: 1;
    min-width: 150px;
    transition: transform .3s ease, box-shadow .3s ease;
}
.node:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.node-icon {
    width: 44px; height: 44px;
    margin: 0 auto 8px;
    border-radius: 12px;
    background: linear-gradient(135deg, #fff3e6 0%, #ffdcba 100%);
    color: var(--brand-deep);
    display: grid; place-items: center;
}
.node-icon svg { width: 22px; height: 22px; }
.node b { display: block; color: var(--ink-3); font-size: 14.5px; font-weight: 600; }
.node span { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }
.node-driver  { top: 60px;    left: 50px;  }
.node-vehicle { bottom: 60px; left: 50px;  }
.node-charger { top: 60px;    right: 50px; }
.node-operator{ bottom: 60px; right: 50px; }
.node-core {
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
    color: #fff;
    border: none;
    box-shadow:
        0 20px 40px -15px rgba(42, 45, 168, .55),
        0 0 0 6px rgba(42, 45, 168, .08),
        0 0 0 14px rgba(42, 45, 168, .04);
    padding: 24px 32px;
    z-index: 2;
}
.node-core b { color: #fff; font-size: 17px; }
.node-core span { color: rgba(255,255,255,.7); }
.node-core .node-icon { background: rgba(255,255,255,.15); color: #fff; }
.node-core::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 22px;
    border: 1px dashed rgba(42, 45, 168, .22);
    animation: spin 30s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Integrations ---------- */
.integrations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.int-feature {
    grid-column: span 2;
    background: linear-gradient(170deg, #ffffff 0%, #fff9f3 100%) !important;
}
.int-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    transition: transform .2s ease, box-shadow .2s ease;
}
.int-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.int-tag {
    display: inline-block;
    font-size: 11px;
    color: var(--brand-deep);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 12px;
    background: rgba(255, 122, 20, .1);
    padding: 4px 10px;
    border-radius: 999px;
}
.int-card h3 { font-size: 24px; margin-bottom: 8px; font-weight: 700; }
.int-card h4 { font-size: 16px; margin-bottom: 6px; font-weight: 600; color: var(--ink-3); }
.int-card p { color: var(--muted); font-size: 14px; line-height: 1.6; }
.int-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.ibadge {
    background: #fff;
    border: 1px solid var(--line-2);
    color: var(--ink-3);
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin: 0;
    position: relative;
}
.quote::before {
    content: '"';
    position: absolute;
    top: 8px; left: 22px;
    font-family: 'Space Grotesk', serif;
    font-size: 80px;
    color: var(--brand);
    opacity: .15;
    line-height: 1;
}
.quote blockquote {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink-3);
    position: relative;
    z-index: 1;
}
.quote figcaption {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}
.qavatar {
    width: 40px; height: 40px;
    border-radius: 50%;
}
.qa-1 { background: url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?w=120&h=120&fit=crop&crop=faces') center/cover, linear-gradient(135deg, var(--brand), var(--brand-deep)); }
.qa-2 { background: url('https://images.unsplash.com/photo-1500648767791-00dcc994a43e?w=120&h=120&fit=crop&crop=faces') center/cover, linear-gradient(135deg, #4d51d8, #2a2da8); }
.qa-3 { background: url('https://images.unsplash.com/photo-1580489944761-15a19d654956?w=120&h=120&fit=crop&crop=faces') center/cover, linear-gradient(135deg, #ffd190, #ff7a14); }
.quote b { display: block; font-size: 14px; color: var(--ink-3); }
.quote figcaption span { font-size: 12.5px; color: var(--muted); }

/* ---------- Final CTA ---------- */
.cta-final {
    background: linear-gradient(135deg, var(--ink-3) 0%, var(--ink-2) 60%, var(--ink) 100%);
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 0% 0%, rgba(255, 122, 20, .25) 0%, transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(255, 122, 20, .15) 0%, transparent 40%);
    pointer-events: none;
}
.cta-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}
.cta-text h2 {
    color: #fff;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.05;
    margin: 14px 0 18px;
}
.cta-text p {
    color: rgba(255,255,255,.7);
    font-size: 17.5px;
    margin-bottom: 28px;
    max-width: 540px;
}
.cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cta-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.cta-stat {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    padding: 22px;
    backdrop-filter: blur(10px);
}
.cta-stat span {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.02em;
    line-height: 1;
    margin-bottom: 6px;
}
.cta-stat small { color: rgba(255,255,255,.65); font-size: 13px; text-transform: uppercase; letter-spacing: .04em; font-weight: 600; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: flex-start; }
.contact-list { margin-top: 32px; display: grid; gap: 18px; }
.cl-item { display: flex; align-items: center; gap: 14px; }
.cl-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #fff3e6 0%, #ffdcba 100%);
    color: var(--brand-deep);
    display: grid; place-items: center;
}
.cl-icon svg { width: 20px; height: 20px; }
.cl-item b { display: block; color: var(--ink-3); font-size: 14.5px; }
.cl-item span { display: block; color: var(--muted); font-size: 14px; }

.contact-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 16px;
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-3); margin-bottom: 6px; }
.field input, .field select, .field textarea {
    width: 100%;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 11px 14px;
    font-family: inherit;
    font-size: 14.5px;
    color: var(--ink-3);
    transition: border-color .2s ease, background .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--brand);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 122, 20, .12);
}
.field textarea { resize: vertical; }
.contact-form .btn { justify-content: center; }
.form-success {
    background: rgba(34, 197, 94, .1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, .25);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    display: none;
}
.form-success.show { display: block; }

/* ---------- Footer ---------- */
.footer {
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    padding: 72px 0 30px;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.8fr repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--line);
}
.footer-brand { max-width: 320px; }
.footer-mark { height: 28px; margin-bottom: 14px; }
.footer-brand p { color: var(--muted); font-size: 14px; line-height: 1.6; margin-bottom: 20px; }
.socials { display: flex; gap: 8px; }
.socials a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--muted);
    display: grid; place-items: center;
    transition: color .2s ease, border-color .2s ease, transform .2s ease;
}
.socials a:hover { color: var(--brand-deep); border-color: var(--brand); transform: translateY(-2px); }

.footer-col h5 {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink-3);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 16px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--muted); font-size: 14px; transition: color .2s ease; }
.footer-col a:hover { color: var(--brand-deep); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    font-size: 13px;
    color: var(--muted);
}
.legal { display: flex; gap: 18px; }
.legal a:hover { color: var(--ink-3); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* =========================================================
   RESPONSIVE — multi-breakpoint
   1280 · 1080 · 960 · 780 · 600 · 460
   ========================================================= */

/* Large desktop tweaks */
@media (max-width: 1280px) {
    :root { --container: 1140px; }
    .hero-title { font-size: clamp(38px, 5vw, 64px); }
    .section { padding: 100px 0; }
    .mega { min-width: 520px; }
}

/* Small desktop / tablet landscape */
@media (max-width: 1080px) {
    :root { --container: 960px; }
    .container { padding: 0 28px; }

    .nav-inner { gap: 16px; }
    .nav-link { padding: 8px 10px; font-size: 14px; }

    .hero { padding-top: 40px; }
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 56px;
        padding-top: 48px;
        padding-bottom: 32px;
        text-align: center;
    }
    .hero-copy { max-width: 720px; margin: 0 auto; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-trust .trust-row { justify-content: center; }

    .hero-visual { height: 600px; max-width: 520px; margin: 0 auto; }
    .float-a { right: -8px; top: 50px; }
    .float-b { left: -8px; bottom: 80px; }

    .wl-grid { grid-template-columns: 1fr; gap: 56px; }
    .wl-copy { text-align: center; max-width: 720px; margin: 0 auto; }
    .wl-item { text-align: left; }
    .wl-visual { height: 520px; margin: 0 auto; max-width: 640px; width: 100%; }

    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .cta-inner { grid-template-columns: 1fr; gap: 48px; }
    .cta-text { text-align: center; }
    .cta-text p { margin-left: auto; margin-right: auto; }
    .cta-actions { justify-content: center; }
    .cta-side { max-width: 600px; margin: 0 auto; width: 100%; }

    .integrations-grid { grid-template-columns: repeat(2, 1fr); }
    .int-feature { grid-column: span 2; }

    .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
    .footer-brand { grid-column: span 4; max-width: 100%; }
    .footer-mark { height: 26px; }

    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .quotes { grid-template-columns: 1fr; max-width: 720px; margin: 0 auto; }

    .ds-kpis { grid-template-columns: repeat(4, 1fr); gap: 10px; }
    .kpi-val { font-size: 20px; }

    .split { gap: 40px; }
}

/* Tablet portrait */
@media (max-width: 960px) {
    .nav-links { display: none; }
    .nav-burger { display: inline-flex; }
    .nav-cta .btn-ghost { display: none; }
    .nav.menu-open .nav-links {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: #fff;
        flex-direction: column;
        padding: 14px;
        border-bottom: 1px solid var(--line);
        align-items: stretch;
        gap: 2px;
        box-shadow: var(--shadow);
    }
    .nav.menu-open .nav-link {
        padding: 12px 14px;
        border-radius: 10px;
        text-align: left;
        font-size: 15px;
    }
    .nav.menu-open .nav-item.has-menu { display: none; }
    .nav.menu-open .mega { display: none; }

    .section { padding: 84px 0; }
    .section-head { margin-bottom: 44px; }
    .section-title { font-size: clamp(28px, 4vw, 38px); }
    .section-lede { font-size: 16px; }

    .stats { padding: 44px 0; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stat { border-right: none; padding: 16px 8px; border-bottom: 1px solid var(--line); }
    .stat:nth-last-child(-n+2) { border-bottom: none; }
    .stat-num, .stat-suffix { font-size: 38px; }

    .split { grid-template-columns: 1fr; gap: 36px; }
    .split-copy { text-align: center; max-width: 640px; margin: 0 auto; }
    .check-list { text-align: left; max-width: 480px; margin-left: auto; margin-right: auto; }

    .feature-tabs { padding: 0; }
    .tab-list {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        scrollbar-width: none;
        margin: 0 auto 32px;
    }
    .tab-list::-webkit-scrollbar { display: none; }
    .tab { white-space: nowrap; padding: 9px 16px; font-size: 13.5px; }

    /* Operator dashboard becomes simpler on tablet */
    .ds-body { grid-template-columns: 1fr; }
    .ds-side { display: none; }
    .ds-main { padding: 20px; }
    .ds-kpis { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .ds-row { grid-template-columns: 1fr; }
    .chart { height: 180px; }

    .integrations-grid { grid-template-columns: 1fr 1fr; }
    .int-feature { grid-column: span 2; }
    .int-card { padding: 22px; }
    .int-card h3 { font-size: 22px; }

    /* Network diagram: convert from absolute to grid */
    .network-diagram {
        height: auto;
        padding: 28px 18px;
        background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
    }
    .network-lines { display: none; }
    .node {
        position: relative;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        margin: 0 auto;
        width: 100%;
        max-width: 220px;
    }
    .network-diagram {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "driver  charger"
            "core    core"
            "vehicle operator";
        gap: 16px;
    }
    .node-driver   { grid-area: driver; }
    .node-charger  { grid-area: charger; }
    .node-core     { grid-area: core; max-width: 280px; }
    .node-vehicle  { grid-area: vehicle; }
    .node-operator { grid-area: operator; }

    /* White-label: simpler 2-phone layout */
    .wl-visual { height: 500px; }
    .wl-phone { width: 180px; height: 360px; }
    .wl-phone-1 { left: 12%; top: 40px; }
    .wl-phone-2 { left: 50%; transform: translateX(-50%) rotate(0); top: 80px; }
    .wl-phone-3 { right: 12%; top: 40px; }

    /* Hero: scale phone */
    .hero-visual { height: 560px; }
    .phone { width: 260px; height: 530px; }

    .quotes { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer-brand { grid-column: span 2; }
}

/* Large mobile / small tablet */
@media (max-width: 780px) {
    .container { padding: 0 20px; }
    .announce-inner { font-size: 12.5px; padding: 9px 16px; }
    .announce-link { padding-left: 10px; margin-left: 2px; }

    .nav-inner { padding: 12px 20px; }
    .brand-mark { height: 28px; }

    .hero { padding-top: 24px; }
    .hero-inner { padding-top: 40px; padding-bottom: 16px; gap: 44px; }
    .hero-title { font-size: clamp(34px, 7vw, 48px); letter-spacing: -.025em; }
    .hero-sub { font-size: 16px; }
    .eyebrow { font-size: 12px; padding-right: 12px; }
    .eyebrow-text { display: none; }
    .eyebrow-pill { font-size: 11px; }

    .hero-actions .btn-lg { padding: 13px 18px; font-size: 14.5px; }

    /* Hero phone scales down */
    .hero-visual { height: 540px; }
    .phone { width: 240px; height: 490px; border-radius: 38px; padding: 10px; }
    .phone-notch { width: 78px; height: 18px; }
    .phone-screen { border-radius: 28px; }

    .float-a { width: 170px; right: -4px; top: 40px; padding: 14px; }
    .float-b { width: 170px; left: -4px; bottom: 70px; padding: 14px; }
    .big-num { font-size: 24px; }
    .float-value { font-size: 22px; }

    .logo-strip { padding: 28px 20px 32px; }
    .logo-strip-label { font-size: 11px; margin-bottom: 16px; }
    .logo-pill { font-size: 14px; padding: 4px 8px; }

    .section { padding: 64px 0; }
    .section-head { margin-bottom: 36px; }
    .kicker { font-size: 12px; padding: 5px 10px; }
    .section-title { font-size: clamp(26px, 5.5vw, 34px); }

    .why-grid { grid-template-columns: 1fr; }
    .why-card { padding: 24px; }

    .integrations-grid { grid-template-columns: 1fr; }
    .int-feature { grid-column: span 1; }

    /* Dashboard: scrollable horizontal table area */
    .dashboard-shell { border-radius: var(--radius); }
    .ds-headerbar { flex-direction: column; align-items: flex-start; gap: 8px; }
    .ds-pills { gap: 6px; }
    .pill { font-size: 12px; padding: 4px 10px; }
    .ds-main { padding: 16px; }
    .ds-table { font-size: 12.5px; }
    .ds-card { padding: 14px; }
    .ds-card-head strong { font-size: 13.5px; }

    /* White label - show single centered phone, smaller */
    .wl-visual { height: 460px; max-width: 100%; }
    .wl-phone-1, .wl-phone-3 { display: none; }
    .wl-phone-2 {
        left: 50%;
        top: 20px;
        transform: translateX(-50%);
        width: 220px;
        height: 420px;
    }
    .wl-features { margin: 24px 0 24px; }

    /* CTA */
    .cta-final { padding: 64px 0; }
    .cta-text h2 { font-size: clamp(28px, 6vw, 40px); }
    .cta-text p { font-size: 16px; }
    .cta-side { grid-template-columns: 1fr 1fr; gap: 10px; }
    .cta-stat { padding: 18px; }
    .cta-stat span { font-size: 28px; }

    /* Contact */
    .contact-form { padding: 24px; }
    .grid-2 { grid-template-columns: 1fr; }
    .vehicle-grid { grid-template-columns: repeat(2, 1fr); }

    /* Footer */
    .footer { padding: 56px 0 24px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; padding-bottom: 36px; }
    .footer-brand { grid-column: span 2; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

    .quote { padding: 24px; }
}

/* Mobile */
@media (max-width: 600px) {
    .container { padding: 0 18px; }

    .announce-inner { gap: 8px; }
    .announce-link svg { display: none; }

    .nav-inner { padding: 10px 18px; }
    .nav-cta .btn-primary { padding: 9px 14px; font-size: 13.5px; }

    .hero { padding-top: 16px; }
    .hero-inner { gap: 36px; padding-top: 28px; padding-bottom: 8px; }
    .hero-title { font-size: 36px; line-height: 1.05; }
    .hero-sub { font-size: 15.5px; }
    .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; width: 100%; max-width: 320px; margin-left: auto; margin-right: auto; }
    .hero-actions .btn { justify-content: center; width: 100%; }

    .trust-text { font-size: 12.5px; }
    .avt { width: 32px; height: 32px; }

    /* Hero phone - even smaller */
    .hero-visual { height: 500px; transform: scale(.95); }
    .phone { width: 220px; height: 450px; }
    .float-a { width: 150px; right: 4px; top: 30px; padding: 12px; }
    .float-b { width: 150px; left: 4px; bottom: 50px; padding: 12px; }
    .big-num { font-size: 22px; }
    .float-value { font-size: 20px; }
    .mini-chart { height: 32px; }

    /* Stats */
    .stats { padding: 36px 0; }
    .stats-grid { gap: 14px; }
    .stat { padding: 10px 4px; }
    .stat-num, .stat-suffix { font-size: 30px; }
    .stat-label { font-size: 11.5px; }

    /* Section spacing */
    .section { padding: 56px 0; }
    .section-head { margin-bottom: 32px; }
    .section-title { font-size: 26px; }
    .section-lede { font-size: 15px; }
    .kicker { margin-bottom: 10px; }

    /* Why */
    .why-card { padding: 22px; border-radius: 18px; }
    .why-icon { width: 42px; height: 42px; margin-bottom: 14px; }
    .why-card h3 { font-size: 17px; }
    .why-card p { font-size: 14.5px; }

    /* Tabs */
    .tab-list { padding: 4px; gap: 4px; }
    .tab { padding: 8px 14px; font-size: 13px; }
    .tab svg { width: 15px; height: 15px; }
    .split-copy h3 { font-size: 22px; }
    .split-copy > p { font-size: 15px; }
    .check-list li { font-size: 14px; padding-left: 26px; }

    /* Dashboard scaling */
    .ds-top { padding: 10px 12px; }
    .ds-url { font-size: 11px; padding: 4px 10px; }
    .ds-kpis { grid-template-columns: 1fr 1fr; }
    .kpi { padding: 12px; }
    .kpi-val { font-size: 18px; }
    .kpi-label { font-size: 10.5px; }
    .chart { height: 150px; }
    .sessions li { grid-template-columns: auto 1fr auto; font-size: 12px; }
    .sessions li i { grid-column: 3; }
    .ds-table { display: block; overflow-x: auto; white-space: nowrap; }

    /* White label */
    .wl-visual { height: 420px; }
    .wl-phone-2 { width: 200px; height: 380px; top: 10px; }
    .wl-item { grid-template-columns: 40px 1fr; gap: 12px; }
    .wl-num { width: 38px; height: 38px; font-size: 13px; }

    /* Network diagram simpler */
    .network-diagram {
        grid-template-columns: 1fr;
        grid-template-areas:
            "driver"
            "vehicle"
            "core"
            "charger"
            "operator";
        padding: 22px 14px;
        gap: 12px;
    }
    .node { max-width: 280px; padding: 14px 18px; }
    .node-core { padding: 18px 22px; }
    .node-core b { font-size: 16px; }

    /* Integrations */
    .int-card { padding: 20px; }
    .int-card h3 { font-size: 20px; }
    .ibadge { padding: 4px 10px; font-size: 11.5px; }

    /* Quotes */
    .quote { padding: 22px; }
    .quote blockquote { font-size: 15px; }
    .quote::before { font-size: 64px; top: 0; left: 16px; }

    /* CTA */
    .cta-final { padding: 56px 0; }
    .cta-text h2 { font-size: 28px; }
    .cta-text p { font-size: 15px; }
    .cta-actions { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; margin: 0 auto; }
    .cta-actions .btn { justify-content: center; width: 100%; }
    .cta-side { grid-template-columns: 1fr; max-width: 360px; }
    .cta-stat { padding: 16px 20px; display: flex; align-items: baseline; gap: 14px; }
    .cta-stat span { font-size: 26px; margin-bottom: 0; }

    /* Contact form */
    .contact-form { padding: 20px; border-radius: 18px; }
    .field input, .field select, .field textarea { font-size: 14px; padding: 10px 12px; }

    /* Footer */
    .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
    .footer-brand { grid-column: span 2; max-width: 100%; }
    .footer-col h5 { font-size: 12px; margin-bottom: 12px; }
    .footer-col a { font-size: 13.5px; }
}

/* Small mobile */
@media (max-width: 460px) {
    .container { padding: 0 16px; }
    .announce { display: none; }
    .nav-inner { padding: 10px 16px; }
    .brand-mark { height: 26px; }
    .nav-cta .btn-primary { padding: 8px 12px; font-size: 13px; }
    .nav-cta { gap: 4px; }

    .hero-title { font-size: 32px; }
    .hero-visual { height: 460px; transform: scale(.9); }
    .phone { width: 210px; height: 430px; }
    .float-a, .float-b { width: 140px; padding: 10px; }
    .float-a { right: -10px; }
    .float-b { left: -10px; bottom: 40px; }
    .big-num { font-size: 20px; }

    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-num, .stat-suffix { font-size: 26px; }

    .section-title { font-size: 24px; line-height: 1.15; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-brand { grid-column: span 1; }
    .legal { flex-wrap: wrap; justify-content: center; }

    .ds-pills { display: none; }
    .map-tooltip { display: none; }
}

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}

/* =========================================================
   SPEC REWRITE — sections added during the honest-content
   refresh. New components live below so existing styles stay
   untouched. Brand-token driven, mobile-first.
   ========================================================= */

/* Generic helpers */
.hero-note,
.cta-note {
    margin-top: 18px;
    color: var(--muted);
    font-size: 13.5px;
    max-width: 520px;
}
.cta-note { color: rgba(255,255,255,.7); }

.tag {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 9px;
    border-radius: 999px;
    background: rgba(39,9,183,.08);
    color: var(--ink);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
    vertical-align: middle;
}
.tag-ocpi {
    background: rgba(255,115,0,.12);
    color: var(--brand-deep);
}

.kicker-roadmap {
    color: var(--brand-deep);
}

.link-cta {
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
    color: var(--ink);
    font-size: 14.5px;
}

.honesty-note {
    margin-top: 28px;
    text-align: center;
    color: var(--muted);
    font-size: 13.5px;
    font-style: italic;
}

/* Audience split */
.audience-split { padding-top: 0; }
.split-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.split-card {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 18px;
    align-items: flex-start;
    padding: 26px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: #fff;
    color: inherit;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.split-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--line-2);
}
.split-icon {
    width: 56px; height: 56px;
    display: grid; place-items: center;
    border-radius: 14px;
    background: rgba(39,9,183,.08);
    color: var(--ink);
}
.split-icon svg { width: 26px; height: 26px; }
.split-icon-alt {
    background: rgba(255,115,0,.12);
    color: var(--brand-deep);
}
.split-tag {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 6px;
}
.split-tag-alt { color: var(--brand-deep); }
.split-card h3 {
    font-size: 22px;
    margin-bottom: 6px;
}
.split-card p {
    color: var(--muted);
    font-size: 14.5px;
    margin-bottom: 10px;
}
.split-arrow {
    font-weight: 600;
    color: var(--ink);
    font-size: 14.5px;
}

/* 3-col why grid */
.why-grid-3 { grid-template-columns: repeat(3, 1fr); }

/* Feature grid (for-drivers) */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 8px;
}
.feature-card {
    padding: 24px;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.10);
    color: #fff;
}
.feature-card h3 {
    color: #fff;
    font-size: 18px;
    margin: 14px 0 8px;
}
.feature-card p {
    color: rgba(255,255,255,.72);
    font-size: 14.5px;
}
.feature-icon {
    width: 44px; height: 44px;
    display: grid; place-items: center;
    border-radius: 12px;
    background: rgba(255,115,0,.18);
    color: var(--brand);
}
.feature-icon svg { width: 22px; height: 22px; }

.driver-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 44px;
    flex-wrap: wrap;
}

/* Steps list (numbered) */
.steps-list {
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
    display: grid;
    gap: 16px;
}
.steps-list li {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 14px;
    align-items: flex-start;
}
.steps-list li > span {
    width: 32px; height: 32px;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    display: grid; place-items: center;
    font-weight: 700;
    font-size: 14px;
}
.steps-list li b {
    display: block;
    font-size: 15.5px;
    color: var(--ink-3);
    margin-bottom: 2px;
}
.steps-list li p {
    color: var(--muted);
    font-size: 14px;
    margin: 0;
}

/* One wallet */
.one-wallet-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    align-items: center;
}
.one-wallet-foot {
    margin-top: 22px;
    color: var(--muted);
    font-size: 13.5px;
}
.one-wallet-visual { display: grid; place-items: center; }
.wallet-hub {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 5 / 4;
}
.wallet-core {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 168px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ink), var(--ink-2));
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px;
    box-shadow: 0 18px 40px -10px rgba(39,9,183,.45);
    z-index: 2;
}
.wallet-core-icon {
    width: 28px;
    height: 28px;
    color: rgba(255,255,255,.85);
    margin-bottom: 6px;
}
.wallet-core-label {
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: rgba(255,255,255,.65);
}
.wallet-core-amount {
    font-weight: 700;
    font-size: 17px;
    margin-top: 4px;
    letter-spacing: -.01em;
}
.wallet-core-sub {
    font-size: 9.5px;
    color: rgba(255,255,255,.55);
    margin-top: 6px;
    letter-spacing: .04em;
    line-height: 1.3;
    max-width: 130px;
}
.wallet-node {
    position: absolute;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: 14px;
    padding: 10px 12px;
    min-width: 110px;
    display: grid;
    z-index: 2;
}
.wallet-node b {
    font-size: 13.5px;
    color: var(--ink-3);
}
.wallet-node small {
    font-size: 11.5px;
    color: var(--muted);
}
.wn-1 { top: 6%;  left: 0; }
.wn-2 { top: 6%;  right: 0; }
.wn-3 { bottom: 6%; left: 0; }
.wn-4 { bottom: 6%; right: 0; }
.wallet-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Marketplace & community */
.mc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.mc-card {
    padding: 26px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}
.mc-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}
.mc-card > p {
    color: var(--muted);
    margin-bottom: 14px;
    font-size: 14.5px;
}
.check-list.dark li {
    color: var(--text);
    font-size: 14px;
}

/* Hosts grid */
.hosts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.host-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: relative;
}
.host-card-accent {
    background: linear-gradient(160deg, rgba(255,115,0,.06), #fff);
    border-color: rgba(255,115,0,.25);
}
.host-num {
    display: inline-block;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 700;
    color: var(--brand);
    font-size: 14px;
    letter-spacing: .04em;
    margin-bottom: 10px;
}
.host-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}
.host-card p {
    color: var(--muted);
    font-size: 14.5px;
}

.hosts-for-who { margin-top: 36px; }
.hosts-for-who h4 {
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px;
}
.for-who-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.who-pill {
    padding: 8px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    font-size: 13.5px;
    color: var(--ink-3);
    font-weight: 500;
}
.hosts-cta {
    display: inline-flex;
    margin-top: 36px;
}

/* How it works */
.how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.how-col {
    padding: 28px;
    background: var(--bg-tint);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
}
.how-col-head { margin-bottom: 10px; }
.how-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(39,9,183,.1);
    color: var(--ink);
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 10px;
}
.how-tag-alt {
    background: rgba(255,115,0,.12);
    color: var(--brand-deep);
}
.how-col h3 {
    font-size: 22px;
    line-height: 1.2;
}

/* Network */
.network-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 36px;
}
.net-card {
    padding: 28px;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    color: #fff;
}
.net-card h3 {
    color: #fff;
    font-size: 28px;
    margin: 8px 0 10px;
}
.net-card p {
    color: rgba(255,255,255,.72);
    font-size: 14.5px;
}
.net-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: rgba(39,9,183,.35);
    color: #cdd0ff;
}
.net-tag-alt {
    background: rgba(255,115,0,.2);
    color: #ffd1ad;
}
.network-bullets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.net-bullet {
    padding: 20px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius);
}
.net-bullet b {
    display: block;
    color: #fff;
    margin-bottom: 6px;
    font-size: 14.5px;
}
.net-bullet p {
    color: rgba(255,255,255,.7);
    font-size: 13.5px;
}
.net-link {
    color: var(--brand);
    font-weight: 600;
}

/* Markets */
.markets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.market-card {
    padding: 22px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}
.market-flag {
    width: 42px; height: 42px;
    border-radius: 12px;
    display: grid; place-items: center;
    background: linear-gradient(135deg, var(--ink), var(--ink-2));
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .04em;
    margin-bottom: 14px;
}
.market-card h3 {
    font-size: 18px;
    margin-bottom: 4px;
}
.market-meta {
    color: var(--muted);
    font-size: 12.5px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.market-card > p:last-child {
    color: var(--muted);
    font-size: 14px;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.price-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 30px;
}
.price-card-accent {
    background: linear-gradient(160deg, rgba(255,115,0,.06), #fff);
    border-color: rgba(255,115,0,.25);
}
.price-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(39,9,183,.1);
    color: var(--ink);
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 14px;
}
.price-tag-alt {
    background: rgba(255,115,0,.15);
    color: var(--brand-deep);
}
.price-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}
.price-foot {
    margin-top: 18px;
    color: var(--muted);
    font-size: 13px;
}

/* Roadmap */
.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.roadmap-card {
    background: #fff;
    border: 1px dashed rgba(255,115,0,.4);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: relative;
}
.roadmap-stage {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255,115,0,.1);
    color: var(--brand-deep);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 12px;
}
.roadmap-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}
.roadmap-card p {
    color: var(--muted);
    font-size: 14px;
}

/* Consent checkbox in contact form */
.consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 4px 0 12px;
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.45;
}
.consent input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--ink);
}

/* Responsive — match existing breakpoints */
@media (max-width: 1000px) {
    .split-cards,
    .one-wallet-grid,
    .mc-grid,
    .how-grid,
    .network-cards,
    .pricing-grid { grid-template-columns: 1fr; }
    .why-grid-3,
    .feature-grid,
    .hosts-grid,
    .roadmap-grid,
    .network-bullets { grid-template-columns: 1fr 1fr; }
    .markets-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .why-grid-3,
    .feature-grid,
    .hosts-grid,
    .roadmap-grid,
    .network-bullets,
    .markets-grid { grid-template-columns: 1fr; }
    .wallet-hub { max-width: 320px; }
    .wallet-core { width: 130px; padding: 10px; }
    .wallet-core-icon { width: 22px; height: 22px; margin-bottom: 4px; }
    .wallet-core-amount { font-size: 14px; }
    .wallet-core-sub { font-size: 8.5px; max-width: 100px; }
    .wallet-node { min-width: 88px; padding: 8px 10px; }
    .wallet-node b { font-size: 12.5px; }
    .wallet-node small { font-size: 10.5px; }
    .split-card { grid-template-columns: 44px 1fr; padding: 20px; }
    .split-icon { width: 44px; height: 44px; }
    .split-icon svg { width: 22px; height: 22px; }
}

/* =========================================================
   MULTI-PAGE BUILD — new components for the standalone pages
   ========================================================= */

/* Active nav link */
.nav-link-active {
    color: var(--ink);
    position: relative;
}
.nav-link-active::after {
    content: '';
    position: absolute;
    left: 12px; right: 12px;
    bottom: -6px;
    height: 2px;
    border-radius: 2px;
    background: var(--brand);
}

/* Alt eyebrow pill */
.eyebrow-pill-alt {
    background: rgba(255,115,0,.12);
    color: var(--brand-deep);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    display: inline-block;
}

/* Page hero (subpage variant) */
.page-hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0 64px;
    background: linear-gradient(180deg, #fafafb 0%, #f1f1f8 100%);
}
.page-hero-alt {
    background: linear-gradient(180deg, #fff7ef 0%, #ffece0 100%);
}
.page-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 48px;
    align-items: center;
}
.page-hero-inner-narrow {
    grid-template-columns: 1fr;
    max-width: 760px;
    text-align: center;
}
.page-hero-narrow { padding: 96px 0 56px; }
.page-hero-copy { max-width: 580px; }
.page-hero-inner-narrow .page-hero-copy,
.page-hero-inner-narrow > * { margin-left: auto; margin-right: auto; }
.page-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.05;
    letter-spacing: -.02em;
    color: var(--ink-3);
    margin: 16px 0 14px;
    font-weight: 700;
}
.page-hero-sub {
    font-size: 17px;
    color: var(--muted);
    margin-bottom: 22px;
    max-width: 560px;
}
.page-hero-inner-narrow .page-hero-sub { margin-left: auto; margin-right: auto; }
.page-hero-visual {
    display: grid;
    place-items: center;
    min-height: 480px;
}

/* App store badges */
.app-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 22px 0 6px;
}
.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 18px 9px 14px;
    background: #0e034b;
    color: #fff;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.08);
    transition: transform .15s ease, box-shadow .2s ease;
    text-decoration: none;
}
.app-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px -10px rgba(14, 3, 75, .45);
}
.app-badge svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}
.app-badge div { display: flex; flex-direction: column; line-height: 1.05; text-align: left; }
.app-badge small {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255,255,255,.7);
}
.app-badge b {
    font-size: 16px;
    font-weight: 600;
    margin-top: 2px;
    letter-spacing: -.01em;
}

.app-badge-sm {
    padding: 7px 14px 7px 12px;
}
.app-badge-sm svg { width: 22px; height: 22px; }
.app-badge-sm b { font-size: 14px; }
.app-badge-sm small { font-size: 9.5px; }

.footer-stores {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

/* Flow strip (4 horizontal steps) */
.flow-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 8px;
}
.flow-step {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: relative;
}
.flow-num {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 14px;
}
.flow-step h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--ink-3);
}
.flow-step p {
    color: var(--muted);
    font-size: 14px;
}

/* Cross-link band (mid-page CTA strip) */
.cross-link-band {
    display: grid;
    grid-template-columns: 1.4fr auto;
    gap: 28px;
    align-items: center;
    padding: 32px;
    background: var(--bg-tint);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}
.cross-link-band .section-title { font-size: 28px; margin: 6px 0 8px; }
.cross-link-band .section-lede { font-size: 15px; }
.cross-link-band-dark {
    background: rgba(255,255,255,.04);
    border-color: rgba(255,255,255,.08);
}

/* Explain grid */
.explain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.explain-card {
    padding: 26px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}
.explain-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}
.explain-card p {
    color: var(--muted);
    font-size: 14.5px;
}

/* Architecture grid (network page) */
.arch-grid {
    display: grid;
    gap: 0;
    justify-items: center;
}
.arch-row {
    display: grid;
    grid-template-columns: 1fr 60px 1.2fr 60px 1fr;
    gap: 0;
    align-items: center;
    width: 100%;
    max-width: 920px;
}
.arch-row-app {
    grid-template-columns: 1fr;
    margin-top: 16px;
    justify-items: center;
}
.arch-node {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 20px 22px;
    text-align: center;
    min-height: 80px;
    display: grid;
    align-content: center;
}
.arch-node b {
    display: block;
    font-size: 15.5px;
    color: var(--ink-3);
}
.arch-node small {
    display: block;
    color: var(--muted);
    font-size: 12.5px;
    margin-top: 4px;
    letter-spacing: .02em;
}
.arch-node-core {
    background: linear-gradient(135deg, var(--ink), var(--ink-2));
    border-color: transparent;
    box-shadow: 0 14px 30px -10px rgba(39,9,183,.35);
}
.arch-node-core b { color: #fff; }
.arch-node-core small { color: rgba(255,255,255,.7); }
.arch-node-host { border-color: rgba(255,115,0,.3); }
.arch-node-partner { border-color: rgba(39,9,183,.25); }
.arch-node-app {
    border-color: rgba(255,115,0,.3);
    max-width: 240px;
    width: 100%;
}
.arch-line {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--ink) 50%, transparent 100%);
    opacity: .35;
    width: 100%;
}
.arch-line-down {
    width: 2px;
    height: 44px;
    background: linear-gradient(180deg, transparent 0%, var(--ink) 50%, transparent 100%);
    opacity: .35;
    margin: 0 auto;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}
.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px 22px;
}
.faq-item summary {
    font-weight: 600;
    font-size: 15.5px;
    color: var(--ink-3);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 22px;
    font-weight: 400;
    color: var(--muted);
    transition: transform .2s ease;
}
.faq-item[open] summary::after {
    content: '−';
}
.faq-item p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.55;
}

/* Host card stack (hosts hero visual) */
.host-card-stack {
    width: 100%;
    max-width: 380px;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: 22px;
    display: grid;
    gap: 16px;
}
.hcs-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.hcs-row-1 b {
    display: block;
    font-size: 14.5px;
    color: var(--ink-3);
}
.hcs-row-1 small {
    color: var(--muted);
    font-size: 12px;
}
.hcs-row-1 > div { flex: 1; }
.hcs-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
}
.hcs-dot-green {
    background: #2ecc71;
    box-shadow: 0 0 0 4px rgba(46,204,113,.18);
}
.hcs-tag {
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(46,204,113,.12);
    color: #1f9d5b;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.hcs-row-2 {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
}
.hcs-bar {
    height: 8px;
    background: var(--bg-tint);
    border-radius: 999px;
    overflow: hidden;
}
.hcs-bar-fill {
    width: 64%;
    height: 100%;
    background: linear-gradient(90deg, var(--brand), var(--brand-deep));
}
.hcs-bar-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12.5px;
    color: var(--muted);
}
.hcs-bar-meta b { color: var(--ink-3); }
.hcs-row-3 { gap: 8px; }
.hcs-btn {
    flex: 1;
    padding: 9px 0;
    border-radius: 10px;
    background: var(--bg-tint);
    color: var(--ink-3);
    border: 1px solid var(--line);
    font-weight: 500;
    font-size: 13px;
}
.hcs-btn-stop {
    background: rgba(255,115,0,.1);
    border-color: rgba(255,115,0,.3);
    color: var(--brand-deep);
    font-weight: 600;
}
.hcs-row-4 {
    border-top: 1px dashed var(--line);
    padding-top: 12px;
    justify-content: center;
}
.hcs-row-4 small { color: var(--muted); font-size: 12px; }

/* For-who-row larger variant */
.for-who-row-lg .who-pill {
    padding: 12px 20px;
    font-size: 15px;
}

/* Notify form (roadmap page) */
.notify-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 48px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}
.notify-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: grid;
    gap: 16px;
    box-shadow: var(--shadow);
}
.notify-form .btn { justify-self: start; }
.notify-form .form-success {
    display: none;
    padding: 12px 14px;
    background: rgba(46,204,113,.1);
    border-radius: 10px;
    color: #1f9d5b;
    font-size: 14px;
}
.notify-form .form-success.show { display: block; }

/* Section padding adjustments for cross-link bands */
.cross-link-band a.btn { white-space: nowrap; }

/* Responsive */
@media (max-width: 1000px) {
    .page-hero-inner { grid-template-columns: 1fr; }
    .page-hero-visual { min-height: 0; }
    .flow-strip { grid-template-columns: 1fr 1fr; }
    .explain-grid { grid-template-columns: 1fr; }
    .arch-row { grid-template-columns: 1fr; gap: 12px; justify-items: center; }
    .arch-line { display: none; }
    .cross-link-band { grid-template-columns: 1fr; }
    .notify-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 640px) {
    .flow-strip { grid-template-columns: 1fr; }
    .page-hero { padding: 72px 0 48px; }
    .page-hero-title { font-size: 34px; }
    .app-badge { padding: 8px 14px 8px 12px; }
    .app-badge b { font-size: 14px; }
}


