@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600&family=DM+Mono:wght@400;500&display=swap');


/* ── Typography system ── */
h1, h2, h3, h4, h5, h6,
.eco-title, .hero-title, .scta-title,
.spotlight-text h2, .prod-item-body h3, .prod-header h2,
.oc-text h2, .oc-form-box h3, .cta-text h2, .section-header h2,
.wl-text h2, .ois-step h4, .sc-text h2, .sc-feature h4,
.pf-col-title, .oc-card h4, .tdb-proto-title, .tdb-summary-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}
body, p, a, span, li, input, select, button, label, td {
    font-family: 'DM Sans', -apple-system, sans-serif;
}
.mono, .pf-badge, .tdb-proto-tag, .tdb-summary-tag, .tdb-section-label,
.tdb-charts-label, .tdb-metric-lbl, .tdb-metric-sub, .tdb-badge--pp,
.tdb-badge--stock, .num-unit, .hstat-unit, .eco-eyebrow, .prod-item-tag,
.hw-block-spec, .sts-lbl, .sts-val .mono, td.mono, .hss-val {
    font-family: 'DM Mono', monospace;
}

/* ─── TOKENS ─── */
:root {
    --bg:        #f5f5f7;
    --border:    rgba(0,0,0,0.08);
    --accent:    #0066cc;
    --amber:     #d97706;
    --red:       #e30000;
    --green:     #28a745;
    --text:      #1d1d1f;
    --muted:     #86868b;
    --font:      'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --mono:      'DM Mono', 'SF Mono', Menlo, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { margin: 0; padding: 0; background: var(--bg); color: var(--text); font-family: var(--font); -webkit-font-smoothing: antialiased; overflow-x: hidden; width: 100%; }
#page-wrapper { width: 100%; display: flex; flex-direction: column; align-items: center; }
main { width: 100%; display: flex; flex-direction: column; align-items: center; }
.text-blue { color: var(--accent); }
section[id] { scroll-margin-top: 80px; }

/* ─── HEADER ─── */
.oem-header {
    width: 100%; position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 28px; height: 72px;
    background: transparent;
    transition: background 0.4s, backdrop-filter 0.4s;
}
.oem-header.scrolled {
    background: rgba(4,12,26,0.88);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.logo-link { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; z-index: 2; }
.nav-logo-massive { height: 44px; width: auto; object-fit: contain; }

/* FLOATING PILL NAV */
.main-nav {
    position: absolute; left: 50%; transform: translateX(-50%);
    display: flex; align-items: center; gap: 2px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px; padding: 5px 6px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1;
}
.main-nav a {
    color: rgba(255,255,255,0.55);
    text-decoration: none; font-size: 0.78rem; font-weight: 600;
    padding: 6px 14px; border-radius: 40px;
    transition: color 0.18s, background 0.18s;
    white-space: nowrap; letter-spacing: 0.1px;
}
.main-nav a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.main-nav a.nav-active { color: #fff; background: rgba(255,255,255,0.12); }
.header-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; z-index: 2; }
.status-box {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 6px 14px; border-radius: 30px;
    font-size: 0.73rem; font-weight: 700;
    white-space: nowrap; color: rgba(255,255,255,0.75);
    transition: background 0.2s;
    overflow: hidden; max-width: 140px;
}
.status-box:hover { background: rgba(255,255,255,0.12); }
.status-light { width: 6px; height: 6px; border-radius: 50%; background: #ccc; }
.status-light.active { background: #34d399; box-shadow: 0 0 0 3px rgba(52,211,153,0.2); animation: pulse-green 2.5s infinite; }

/* hamburger — hidden on desktop */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; border-radius: 8px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.25s; }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── HERO ─── */

/* Add this right after your existing .hero-section rules */
.hero-section::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
    background: linear-gradient(to bottom, transparent, #020610);
    pointer-events: none;
    z-index: 3;
}
.hero-section {
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background: #040c1a;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
    padding: 0;
}
.hero-scan {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,102,204,0.015) 2px, rgba(0,102,204,0.015) 4px);
    animation: scan-move 8s linear infinite;
}
@keyframes scan-move { 0%{background-position:0 0} 100%{background-position:0 200px} }

.hero-bg-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(0,102,204,0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,102,204,0.07) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.hero-bg-glow {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 50% 50%, rgba(0,102,204,0.2) 0%, transparent 65%),
        radial-gradient(ellipse 40% 35% at 15% 85%, rgba(77,163,255,0.07) 0%, transparent 60%),
        radial-gradient(ellipse 30% 30% at 85% 15%, rgba(0,66,204,0.09) 0%, transparent 60%);
    pointer-events: none;
}
.hero-content {
    position: relative; z-index: 2;
    text-align: center;
    width: 100%; max-width: 860px;
    padding: 72px 20px 0;
    animation: fade-up 0.9s ease both;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2px;
    color: rgba(255,255,255,0.45);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 5px 14px; border-radius: 30px;
    margin-bottom: 24px;
    max-width: 90%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hero-badge-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 8px rgba(52,211,153,0.6);
    animation: blink 2s infinite;
    flex-shrink: 0;
}
.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.6rem, 5.5vw, 5rem);
    font-weight: 800; line-height: 1.05;
    letter-spacing: -2px; margin: 0 0 22px;
    color: #fff;
}
.hero-title-accent {
    background: linear-gradient(130deg, #4da3ff 0%, #0066cc 55%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.05rem; color: rgba(255,255,255,0.42);
    line-height: 1.7; margin: 0 auto 36px; max-width: 580px;
}
.hero-actions {
    display: flex; align-items: center; justify-content: center;
    gap: 12px; margin-bottom: 56px; flex-wrap: wrap;
}
.hero-btn-primary {
    background: var(--accent); color: #fff;
    padding: 13px 28px; border-radius: 30px;
    font-size: 0.9rem; font-weight: 700;
    text-decoration: none; transition: all 0.2s;
    box-shadow: 0 8px 24px rgba(0,102,204,0.35);
    display: inline-block;
}
.hero-btn-primary:hover { background: #0055b3; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,102,204,0.45); }
.hero-btn-ghost {
    color: rgba(255,255,255,0.65);
    padding: 13px 22px; border-radius: 30px;
    font-size: 0.9rem; font-weight: 600;
    text-decoration: none; transition: all 0.2s;
    border: 1px solid rgba(255,255,255,0.14);
    display: inline-block;
}
.hero-btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.06); }
.hero-stats {
    display: flex; align-items: center; width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px; padding: 16px 0;
    backdrop-filter: blur(12px);
    gap: 0; max-width: 560px; margin: 0 auto;
}
.hstat { flex: 1; min-width: 0; text-align: center; padding: 4px 10px; }
.hstat-val {
    display: block; font-family: 'Poppins', sans-serif;
    font-size: 2rem; font-weight: 700; color: #fff;
    letter-spacing: -0.5px; line-height: 1.1;
}
.hstat-unit { font-size: 0.8rem; font-weight: 700; color: #4da3ff; margin-left: 2px; }
.hstat-lbl { display: block; font-size: 0.58rem; color: rgba(255,255,255,0.28); text-transform: uppercase; letter-spacing: 0.8px; margin-top: 4px; font-weight: 600; }
.hstat-div { width: 1px; height: 40px; background: rgba(255,255,255,0.1); flex-shrink: 0; }


/* ═══════════════════════════════════════════
   ECOSYSTEM NETWORK SECTION
═══════════════════════════════════════════ */
.eco-section {
    width: 100%;
    background: #040c1a;
    display: flex; flex-direction: column; align-items: center;
    padding: 80px 24px 72px;
    position: relative; overflow: hidden;
}
/* Alt variant for architecture — clearly different from hero */
.eco-section--alt {
    background: #080e1f;
    border-top: 1px solid rgba(77,163,255,0.15);
}
.eco-section--alt::before {
    background-image:
        linear-gradient(rgba(77,163,255,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(77,163,255,0.06) 1px, transparent 1px);
    background-size: 40px 40px;
}
.eco-section--alt::after {
    background: radial-gradient(ellipse at center, rgba(0,102,204,0.08) 0%, transparent 65%);
}

/* Deep grid layer */
.eco-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(77,163,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(77,163,255,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Radial glow in center */
.eco-section::after {
    content: '';
    position: absolute;
    top: 30%; left: 50%; transform: translate(-50%, -50%);
    width: 900px; height: 500px;
    background: radial-gradient(ellipse at center, rgba(0,102,204,0.12) 0%, rgba(77,163,255,0.05) 40%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* INTRO */
.eco-intro { text-align: left; max-width: 680px; margin: 0 0 32px; padding: 0 0 32px; border-bottom: 1px solid rgba(255,255,255,0.07); position: relative; z-index: 2; animation: fade-up 0.8s ease both; }
.eco-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--mono); font-size: 0.62rem; font-weight: 700;
    letter-spacing: 2px; color: #4da3ff; text-transform: uppercase;
    background: rgba(77,163,255,0.08); padding: 6px 18px;
    border-radius: 20px; border: 1px solid rgba(77,163,255,0.2);
    margin-bottom: 16px;
}
.eco-eyebrow::before {
    content: '';
    width: 6px; height: 6px; border-radius: 50%;
    background: #4da3ff;
    box-shadow: 0 0 8px 2px rgba(77,163,255,0.6);
    animation: blink 2s infinite;
}
.eco-title {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 700; letter-spacing: -1px; line-height: 1.1;
    margin: 0 0 12px; color: #fff;
}
.eco-sub { font-size: 0.9rem; color: rgba(255,255,255,0.45); line-height: 1.7; margin: 0; max-width: 520px; }

/* SCENARIO TABS */
.scenario-bar { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-bottom: 40px; max-width: 1000px; margin-left: auto; margin-right: auto; position: relative; z-index: 2; }
.scenario-track {
    display: flex; align-items: center; gap: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 30px; padding: 10px 24px;
    backdrop-filter: blur(12px);
}
.scenario-item { display: flex; align-items: center; gap: 7px; font-size: 0.68rem; font-weight: 700; color: rgba(255,255,255,0.25); text-transform: uppercase; letter-spacing: 0.8px; transition: color 0.35s; cursor: default; }
.scenario-item.active { color: #fff; }
.scenario-item.active .sc-dot { background: #4da3ff; box-shadow: 0 0 0 3px rgba(77,163,255,0.22); animation: blink 2s infinite; }
.scenario-item[data-scenario="fault"].active .sc-dot  { background: #ff4444; box-shadow: 0 0 0 3px rgba(255,68,68,0.22); animation: blink 0.8s infinite; }
.scenario-item[data-scenario="postride"].active .sc-dot { background: #a78bfa; box-shadow: 0 0 0 3px rgba(167,139,250,0.22); }
.sc-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.12); transition: all 0.35s; flex-shrink: 0; }
.scenario-divider { color: rgba(255,255,255,0.1); font-size: 1rem; }
.scenario-progress-bar { width: 200px; height: 2px; background: rgba(255,255,255,0.07); border-radius: 2px; overflow: hidden; }
.scenario-progress-fill { height: 100%; background: linear-gradient(90deg, #4da3ff, #a78bfa); border-radius: 2px; width: 0%; transition: width 0.1s linear; }

/* CANVAS */
.eco-canvas {
    width: 100%; max-width: 1100px;
    height: 440px;
    position: relative; z-index: 2;
}

/* ECO NODE — upgraded */
.eco-node {
    position: absolute; z-index: 4;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px; padding: 14px 16px 12px;
    width: 122px;
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    text-align: center;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: border-color 0.45s, box-shadow 0.45s, background 0.45s, transform 0.3s;
}
.eco-node:hover { transform: translateY(-2px); }
.eco-node.lit {
    border-color: rgba(77,163,255,0.45);
    box-shadow: 0 0 0 1px rgba(77,163,255,0.1), 0 8px 32px rgba(77,163,255,0.18), inset 0 1px 0 rgba(77,163,255,0.08);
    background: rgba(77,163,255,0.06);
}
.eco-node.fault-lit  {
    border-color: rgba(255,68,68,0.5) !important;
    box-shadow: 0 0 0 1px rgba(255,68,68,0.15), 0 8px 32px rgba(255,68,68,0.22) !important;
    background: rgba(255,68,68,0.07) !important;
    animation: node-shake 0.35s ease;
}
.eco-node.social-lit {
    border-color: rgba(167,139,250,0.45) !important;
    box-shadow: 0 0 0 1px rgba(167,139,250,0.12), 0 8px 32px rgba(167,139,250,0.18) !important;
    background: rgba(167,139,250,0.06) !important;
}

.en-master { width: 148px; padding: 18px 18px 14px; border-radius: 24px; }
.en-master.lit { box-shadow: 0 0 0 2px rgba(77,163,255,0.12), 0 12px 40px rgba(77,163,255,0.22), inset 0 1px 0 rgba(77,163,255,0.1); }

/* Glow blob */
.en-glow { position: absolute; inset: -32px; border-radius: 50%; background: radial-gradient(circle, rgba(77,163,255,0.12), transparent 70%); pointer-events: none; opacity: 0; transition: opacity 0.5s; }
.lit .en-glow        { opacity: 1; }
.fault-lit .en-glow  { background: radial-gradient(circle, rgba(255,68,68,0.16), transparent 70%); opacity: 1; }
.social-lit .en-glow { background: radial-gradient(circle, rgba(167,139,250,0.14), transparent 70%); opacity: 1; }

/* Icon */
.en-icon    { width: 38px; height: 38px; border-radius: 11px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: background 0.4s, border-color 0.4s; }
.en-icon svg { width: 18px; height: 18px; color: rgba(255,255,255,0.4); transition: color 0.4s; }
.en-icon-lg { width: 46px; height: 46px; border-radius: 14px; }
.en-icon-lg svg { width: 23px; height: 23px; }
.en-icon-sm { width: 30px; height: 30px; border-radius: 9px; }
.en-icon-sm svg { width: 15px; height: 15px; }
.lit .en-icon        { background: rgba(77,163,255,0.14);  border-color: rgba(77,163,255,0.3); box-shadow: 0 0 0 4px rgba(77,163,255,0.06); }
.lit .en-icon svg    { color: #4da3ff; }
.fault-lit .en-icon  { background: rgba(255,68,68,0.14);   border-color: rgba(255,68,68,0.32); }
.fault-lit .en-icon svg { color: #ff6666; }
.social-lit .en-icon { background: rgba(167,139,250,0.14); border-color: rgba(167,139,250,0.3); }
.social-lit .en-icon svg { color: #a78bfa; }

/* Text */
.en-label { font-size: 0.58rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; color: rgba(255,255,255,0.28); transition: color 0.4s; margin-top: 3px; }
.en-val   { font-family: var(--mono); font-size: 0.82rem; font-weight: 800; color: rgba(255,255,255,0.5); transition: color 0.4s; }
.en-sub   { font-size: 0.5rem; color: rgba(255,255,255,0.15); font-weight: 500; }
.lit .en-label        { color: rgba(255,255,255,0.7); }
.fault-lit .en-label  { color: rgba(255,255,255,0.7); }
.social-lit .en-label { color: rgba(255,255,255,0.7); }
.lit .en-val          { color: #4da3ff; }
.fault-lit .en-val    { color: #ff6666; }
.social-lit .en-val   { color: #a78bfa; }

/* Status dot */
.en-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.1); transition: background 0.4s, box-shadow 0.4s; margin-top: 2px; }
.lit .en-dot        { background: #4da3ff; box-shadow: 0 0 0 3px rgba(77,163,255,0.2); animation: dp-blue 2s infinite; }
.fault-lit .en-dot  { background: #ff4444; box-shadow: 0 0 0 3px rgba(255,68,68,0.2); animation: dp-red 0.8s infinite; }
.social-lit .en-dot { background: #a78bfa; box-shadow: 0 0 0 3px rgba(167,139,250,0.2); animation: dp-purple 2s infinite; }

/* Feature nodes */
.en-feature { width: 104px; padding: 12px 13px 10px; border-radius: 16px; }

/* CPU bars */
.en-bars { display: flex; gap: 3px; height: 11px; align-items: flex-end; margin-top: 2px; }
.en-bars div { width: 4px; background: rgba(255,255,255,0.07); border-radius: 2px; height: 30%; transition: background 0.4s; }
.lit .en-bars div { background: #4da3ff; animation: bar-calc 0.5s infinite alternate ease-in-out; }
.lit .en-bars div:nth-child(2) { animation-delay: 0.12s; }
.lit .en-bars div:nth-child(3) { animation-delay: 0.24s; }
.lit .en-bars div:nth-child(4) { animation-delay: 0.36s; }

/* Motor ring */
.en-motor-ring { position: absolute; width: 110px; height: 110px; border-radius: 50%; border: 1px dashed rgba(255,255,255,0.04); pointer-events: none; }
.lit .en-motor-ring { border-color: rgba(77,163,255,0.2); animation: motor-spin 4s linear infinite; }

/* SVG wires — upgraded */
.eco-wires { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
.wire { opacity: 0.25; transition: opacity 0.5s; }
.wire.active { opacity: 1; filter: drop-shadow(0 0 3px rgba(77,163,255,0.5)); }

/* Layer labels */
.layer-label { position: absolute; font-family: var(--mono); font-size: 0.5rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.12); z-index: 3; }
.layer-divider { position: absolute; top: 0; bottom: 0; width: 1px; background: linear-gradient(180deg, transparent, rgba(255,255,255,0.04) 30%, rgba(255,255,255,0.04) 70%, transparent); z-index: 0; }

/* CALLOUT — glassmorphic */
.eco-callout {
    position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px; padding: 14px 20px;
    display: flex; align-items: flex-start; gap: 12px;
    min-width: 340px; max-width: 480px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10;
    transition: all 0.45s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.06);
}
.callout-icon  { font-size: 1.4rem; flex-shrink: 0; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); }
.callout-title { font-size: 0.78rem; font-weight: 800; color: #fff; margin-bottom: 4px; letter-spacing: -0.2px; }
.callout-desc  { font-size: 0.66rem; color: rgba(255,255,255,0.4); line-height: 1.6; }

/* ── APP DATA PANEL ── */
.app-panel {
    position: absolute;
    left: 500px; top: 14px;
    width: 210px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px; padding: 16px;
    backdrop-filter: blur(14px);
    z-index: 6;
    transition: border-color 0.4s;
}
.ap-screen { display: flex; flex-direction: column; gap: 10px; }
.ap-screen.hidden { display: none; }

/* Live ride screen */
.ap-hero { display: flex; align-items: baseline; gap: 5px; justify-content: center; padding: 4px 0; }
.ap-big  { font-size: 2.4rem; font-weight: 300; color: #fff; line-height: 1; font-family: var(--mono); }
.ap-unit { font-size: 0.75rem; color: rgba(255,255,255,0.4); font-weight: 600; }
.ap-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 2px 0; }
.ap-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ap-stat  { background: rgba(255,255,255,0.04); border-radius: 10px; padding: 8px; display: flex; flex-direction: column; gap: 3px; }
.ap-lbl   { font-size: 0.55rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: rgba(255,255,255,0.28); }
.ap-val   { font-family: var(--mono); font-size: 0.82rem; font-weight: 800; color: rgba(255,255,255,0.7); }
.ap-val.blue   { color: #4da3ff; }
.ap-val.amber  { color: #f59e0b; }
.ap-val.green  { color: #34d399; }
.ap-mini-chart { display: flex; align-items: flex-end; gap: 4px; height: 44px; }
.amc-bar { flex: 1; height: var(--h); background: rgba(77,163,255,0.2); border-radius: 3px 3px 0 0; transition: height 0.6s ease; }
.amc-bar.active { background: rgba(77,163,255,0.7); }
.ap-label-row { font-size: 0.54rem; color: rgba(255,255,255,0.22); text-align: center; }

/* Fault screen */
.ap-fault-badge { background: rgba(255,68,68,0.12); border: 1px solid rgba(255,68,68,0.25); border-radius: 8px; padding: 7px 10px; font-size: 0.68rem; font-weight: 700; color: #ff6666; text-align: center; animation: blink 1.2s infinite; }
.ap-phase-row { display: flex; flex-direction: column; gap: 6px; }
.ap-phase { display: grid; grid-template-columns: 44px 1fr 36px; align-items: center; gap: 7px; }
.ap-pbar  { height: 5px; background: rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden; }
.ap-pbar div { height: 100%; border-radius: 3px; }
.ap-dead  { background: #ff4444 !important; animation: bar-flicker 0.7s infinite; }
.ap-hint  { font-size: 0.62rem; color: rgba(255,255,255,0.35); font-style: italic; }
.ap-action-btn { background: rgba(255,68,68,0.15); border: 1px solid rgba(255,68,68,0.3); border-radius: 8px; padding: 8px; font-size: 0.68rem; font-weight: 700; color: #ff6666; text-align: center; cursor: pointer; }
.green { color: #34d399; } .red { color: #ff4444; }

/* Post-ride screen */
.ap-ride-summary { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; }
.ars-stat { background: rgba(255,255,255,0.04); border-radius: 9px; padding: 8px 4px; text-align: center; }
.ars-num  { display: block; font-family: var(--mono); font-size: 0.72rem; font-weight: 800; color: #fff; }
.ars-lbl  { display: block; font-size: 0.5rem; color: rgba(255,255,255,0.28); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2px; }
.ap-health-row { display: flex; flex-direction: column; gap: 5px; }
.ahr-item { display: flex; align-items: center; gap: 7px; font-size: 0.64rem; color: rgba(255,255,255,0.5); }
.ahr-dot  { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.ahr-dot.green { background: #34d399; }
.ahr-dot.amber { background: #f59e0b; }
.ap-social-row { display: flex; flex-direction: column; gap: 7px; }
.ap-social-label { font-size: 0.68rem; font-weight: 700; color: rgba(255,255,255,0.6); }
.ap-social-chips { display: flex; flex-wrap: wrap; gap: 5px; }
.asc { font-size: 0.58rem; background: rgba(167,139,250,0.12); border: 1px solid rgba(167,139,250,0.2); border-radius: 20px; padding: 3px 9px; color: rgba(167,139,250,0.8); font-weight: 600; }
.asc--active { background: rgba(167,139,250,0.22); color: #c4b5fd; border-color: rgba(167,139,250,0.4); }
.ap-share-btn { background: linear-gradient(135deg, #7c3aed, #a78bfa); border-radius: 8px; padding: 8px; font-size: 0.68rem; font-weight: 700; color: #fff; text-align: center; cursor: pointer; }

/* PULSE DOTS */
.pulse-dot { position: absolute; width: 8px; height: 8px; border-radius: 50%; pointer-events: none; z-index: 5; opacity: 0; transition: opacity 0.15s; }
.pulse-dot.visible { opacity: 1; }
.pulse-dot.blue   { background: #4da3ff; box-shadow: 0 0 8px 2px rgba(77,163,255,0.6); }
.pulse-dot.amber  { background: #f59e0b; box-shadow: 0 0 8px 2px rgba(245,158,11,0.6); }
.pulse-dot.green  { background: #34d399; box-shadow: 0 0 8px 2px rgba(52,211,153,0.6); }
.pulse-dot.purple { background: #a78bfa; box-shadow: 0 0 8px 2px rgba(167,139,250,0.6); }
.pulse-dot.red    { background: #ff4444; box-shadow: 0 0 8px 2px rgba(255,68,68,0.6); }

/* KEYFRAMES */
@keyframes fade-up  { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:translateY(0); } }
@keyframes blink    { 50% { opacity:0.3; } }
@keyframes bar-calc { 0% { height:20%; } 100% { height:100%; } }
@keyframes bar-flicker { 0%,100% { opacity:1; } 50% { opacity:0.15; } }
@keyframes motor-spin  { 100% { transform:rotate(360deg); } }
@keyframes node-shake  { 0%,100%{transform:translateX(0)} 25%{transform:translateX(-4px)} 75%{transform:translateX(4px)} }
@keyframes pulse-green { 0%,100%{ box-shadow:0 0 0 3px rgba(40,167,69,0.18); } 50%{ box-shadow:0 0 0 5px rgba(40,167,69,0.06); } }
@keyframes dp-blue   { 0%,100%{ box-shadow:0 0 0 3px rgba(77,163,255,0.18); } 50%{ box-shadow:0 0 0 5px rgba(77,163,255,0.06); } }
@keyframes dp-red    { 0%,100%{ box-shadow:0 0 0 3px rgba(255,68,68,0.22); } 50%{ box-shadow:0 0 0 6px rgba(255,68,68,0.08); } }
@keyframes dp-purple { 0%,100%{ box-shadow:0 0 0 3px rgba(167,139,250,0.18); } 50%{ box-shadow:0 0 0 5px rgba(167,139,250,0.06); } }

@keyframes pulse-green { 0%,100%{ box-shadow:0 0 0 3px rgba(40,167,69,0.18); } 50%{ box-shadow:0 0 0 5px rgba(40,167,69,0.06); } }

/* ═══════════════════════════════════════════
   MARKETING / PAGE CONTENT
═══════════════════════════════════════════ */
.page-content { width: 100%; background: #fff; border-top: 1px solid var(--border); display: flex; flex-direction: column; align-items: center; }
.content-section { width: 100%; max-width: 1200px; padding: 100px 24px; display: flex; flex-direction: column; align-items: center; }
.section-header { text-align: center; margin-bottom: 60px; max-width: 600px; }
.section-header h2 { font-size: 2.4rem; font-weight: 800; letter-spacing: -1px; margin: 0 0 14px; }
.section-header p { font-size: 1.05rem; color: var(--muted); line-height: 1.65; margin: 0; }

.engineering-spotlight { padding: 120px 24px; width: 100%; border-bottom: 1px solid var(--border); }
.spotlight-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.eyebrow {
    color: var(--accent); text-transform: uppercase; font-family: var(--mono);
    font-size: 0.62rem; letter-spacing: 3px; margin-bottom: 14px; display: block;
    font-weight: 600;
}
.spotlight-text h2 { font-size: 2.4rem; margin: 0 0 20px; font-weight: 800; letter-spacing: -1px; }
.spotlight-text p { font-size: 1rem; color: var(--muted); line-height: 1.7; margin: 0; }
.eng-features { list-style: none; padding: 0; margin: 36px 0; }
.eng-features li { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 24px; font-size: 0.92rem; color: var(--muted); line-height: 1.6; }
.eng-features li span { font-family: var(--mono); color: var(--accent); font-size: 0.85rem; font-weight: 700; margin-top: 2px; flex-shrink: 0; }
.image-frame { position: relative; border-radius: 24px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 30px 60px -15px rgba(0,0,0,0.12); width: 100%; aspect-ratio: 4/5; max-height: 580px; }
.workshop-img { width: 100%; height: 100%; object-fit: cover; }
.btn-primary { background: var(--text); color: #fff; padding: 16px 32px; font-size: 0.95rem; font-weight: 700; border-radius: 30px; border: none; cursor: pointer; transition: 0.25s; margin-top: 32px; display: inline-block; }
.btn-primary:hover { background: var(--accent); transform: scale(1.04); }

/* ══════════════════════════════════════════
   APP SHOWCASE SECTION
══════════════════════════════════════════ */
.app-showcase {
    background: #f7f8fa;
    width: 100%;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 100px 24px 110px;
    display: flex; flex-direction: column; align-items: center;
}
.app-showcase-inner {
    display: flex;
    width: 100%; max-width: 1100px;
    gap: 64px;
    align-items: flex-start;
    justify-content: space-between;
}

/* ── LEFT MENU ── */
.app-tab-menu {
    flex: 1;
    display: flex; flex-direction: column;
    gap: 6px;
    padding-top: 8px;
}
.atm-item {
    display: flex; align-items: center; gap: 16px;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 0.22s ease;
    opacity: 0.48;
    background: transparent;
}
.atm-item:hover  { opacity: 0.78; background: #fff; }
.atm-item.active {
    opacity: 1; background: #fff;
    border-color: rgba(0,102,204,0.18);
    box-shadow: 0 6px 24px rgba(0,102,204,0.07);
}
.atm-icon {
    width: 38px; height: 38px; flex-shrink: 0;
    background: var(--bg); border: 1px solid var(--border);
    border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
}
.atm-icon svg { width: 18px; height: 18px; color: var(--muted); }
.atm-item.active .atm-icon { background: rgba(0,102,204,0.08); border-color: rgba(0,102,204,0.18); }
.atm-item.active .atm-icon svg { color: var(--accent); }
.atm-text { flex: 1; }
.atm-text h4 { margin: 0 0 3px; font-size: 0.95rem; font-weight: 700; color: var(--text); }
.atm-text p  { margin: 0; font-size: 0.78rem; color: var(--muted); line-height: 1.45; }
.atm-arrow { font-size: 0.85rem; color: var(--accent); opacity: 0; transition: opacity 0.2s; }
.atm-item.active .atm-arrow { opacity: 1; }

/* ── PHONE SHELL ── */
.app-phone-wrap {
    flex: 0 0 290px;
    display: flex; justify-content: center;
    position: sticky; top: 100px;
}
.app-phone {
    width: 290px; height: 620px;
    background: #fff;
    border-radius: 44px;
    box-shadow:
        inset 0 0 0 1.5px #d1d1d6,
        inset 0 0 0 8px #f2f2f7,
        0 32px 64px rgba(0,0,0,0.13),
        0 8px 20px rgba(0,0,0,0.06);
    position: relative; overflow: hidden;
}
.app-notch {
    position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
    width: 90px; height: 26px;
    background: #111; border-radius: 20px;
    z-index: 100;
}
.app-home-bar {
    position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
    width: 100px; height: 4px;
    background: #000; border-radius: 3px; opacity: 0.2;
    z-index: 100;
}

/* ── APP SCREEN (shared) ── */
.app-screen {
    position: absolute; inset: 0;
    background: #f2f2f7;
    display: flex; flex-direction: column;
    gap: 9px;
    opacity: 0; pointer-events: none;
    transform: translateY(12px) scale(0.98);
    transition: opacity 0.3s ease, transform 0.3s ease;
    overflow: hidden;
}
.app-screen.active {
    opacity: 1; pointer-events: auto;
    transform: translateY(0) scale(1);
}
/* make everything between header and nav scrollable */
.app-screen > *:not(.as-header):not(.as-nav) {
    flex-shrink: 0;
}
/* the inner scroll wrapper used on some screens */
.as-scroll {
    flex: 1; overflow-y: auto; display: flex; flex-direction: column; gap: 9px;
    padding: 10px 0 4px;
    scrollbar-width: none;
}
.as-scroll::-webkit-scrollbar { display: none; }

.as-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 52px 16px 12px;
    background: rgba(242,242,247,0.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    flex-shrink: 0;
    gap: 8px;
}
.as-back {
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(0,0,0,0.06);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: var(--accent); cursor: pointer;
    flex-shrink: 0; transition: background 0.15s;
    font-weight: 400; line-height: 1;
}
.as-back:active { background: rgba(0,102,204,0.12); }
.as-title { font-size: 1rem; font-weight: 800; color: #1c1c1e; letter-spacing: -0.3px; flex: 1; }
.as-header-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.as-connected   { font-size: 0.62rem; font-weight: 700; color: var(--green); }
.as-batt        { font-size: 0.62rem; font-family: var(--mono); font-weight: 700; color: #3c3c43; }
.as-live-dot    { font-size: 0.62rem; font-weight: 700; color: #ff3b30; animation: blink 1.1s infinite; }
.as-period-pill { font-size: 0.62rem; font-weight: 700; background: rgba(0,102,204,0.1); color: var(--accent); padding: 3px 9px; border-radius: 10px; }
.as-health-score { font-size: 0.7rem; color: #3c3c43; }
.as-health-score strong { color: var(--green); }

/* ── BOTTOM NAV ── */
.as-nav {
    display: flex; justify-content: space-around; align-items: center;
    padding: 8px 8px 22px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(0,0,0,0.07);
    flex-shrink: 0;
    margin-top: auto;
}
.as-nav-item {
    display: flex; flex-direction: column; align-items: center; gap: 3px;
    padding: 4px 10px;
    font-size: 0.54rem; font-weight: 600; color: #8e8e93;
    cursor: pointer;
}
.as-nav-item svg { width: 20px; height: 20px; }
.as-nav-item.active { color: var(--accent); }
.as-nav-item.active svg { stroke: var(--accent); }

/* ══ SCREEN 1: LIVE RIDE ══ */
.as-speed-hero {
    display: flex; justify-content: center; align-items: center;
    padding: 4px 0 2px;
    flex-shrink: 0;
}
.ash-ring { position: relative; width: 130px; height: 130px; flex-shrink: 0; }
.ash-gauge { width: 100%; height: 100%; }
.ash-center {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.ash-val  { font-size: 2.2rem; font-weight: 200; color: #1c1c1e; line-height: 1; letter-spacing: -1px; font-family: var(--mono); }
.ash-unit { font-size: 0.65rem; font-weight: 700; color: #8e8e93; letter-spacing: 1px; }

.as-pill-row { display: flex; gap: 7px; justify-content: center; padding: 0 14px; flex-shrink: 0; }
.asp { font-size: 0.62rem; font-weight: 700; padding: 4px 11px; border-radius: 20px; }
.asp--blue  { background: rgba(0,102,204,0.1); color: var(--accent); }
.asp--green { background: rgba(52,211,153,0.12); color: #059669; }

.as-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 7px; padding: 0 14px; flex-shrink: 0; }
.asg-cell  { background: #fff; border-radius: 12px; padding: 9px 6px; text-align: center; border: 1px solid var(--border); display: flex; flex-direction: column; gap: 3px; }
.asg-val   { font-size: 0.82rem; font-weight: 800; color: #1c1c1e; font-family: var(--mono); }
.asg-lbl   { font-size: 0.52rem; font-weight: 600; color: #8e8e93; text-transform: uppercase; letter-spacing: 0.3px; }
.asg-val.blue  { color: var(--accent); }
.asg-val.amber { color: var(--amber); }
.asg-val.green { color: #059669; }

.as-card { background: #fff; border-radius: 14px; padding: 13px; border: 1px solid var(--border); flex-shrink: 0; margin: 0 14px; }
.as-card--dark { background: #1c1c1e; border-color: transparent; }
.asc-top   { display: flex; justify-content: space-between; align-items: center; margin-bottom: 9px; }
.asc-label { font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: #8e8e93; }
.as-card--dark .asc-label { color: rgba(255,255,255,0.45); }
.asc-val-sm { font-size: 0.65rem; font-weight: 800; }
.asc-val-sm.blue { color: var(--accent); }

.assist-track { display: flex; flex-direction: column; gap: 5px; }
.assist-segments { display: flex; gap: 4px; }
.aseg { flex: 1; height: 6px; border-radius: 3px; background: #e5e5ea; transition: background 0.25s; }
.aseg.active { background: var(--accent); }
.assist-labels { display: flex; justify-content: space-between; }
.assist-labels span { font-size: 0.48rem; color: #8e8e93; font-weight: 600; }

.power-split-bar { display: flex; height: 22px; border-radius: 8px; overflow: hidden; gap: 2px; }
.psb-rider, .psb-motor { display: flex; align-items: center; justify-content: center; font-size: 0.55rem; font-weight: 700; }
.psb-rider { background: rgba(245,158,11,0.25); color: var(--amber); border-radius: 8px 0 0 8px; }
.psb-motor { background: rgba(0,102,204,0.22); color: var(--accent); border-radius: 0 8px 8px 0; flex: 1; }

/* ══ SCREEN 2: DIAGNOSTICS ══ */
.diag-fault-card {
    background: #fff8f8; border: 1.5px solid rgba(255,59,48,0.22);
    border-radius: 16px; padding: 14px; margin: 0 14px; flex-shrink: 0;
}
.dfc-top { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.dfc-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; }
.dfc-code { font-size: 0.92rem; font-weight: 800; color: #ff3b30; font-family: var(--mono); }
.dfc-name { font-size: 0.68rem; color: #3c3c43; font-weight: 600; margin-top: 1px; }
.dfc-time { font-size: 0.58rem; color: #8e8e93; margin-left: auto; flex-shrink: 0; }
.dfc-phases { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.dfp { display: grid; grid-template-columns: 44px 1fr 40px; align-items: center; gap: 8px; }
.dfp-lbl { font-size: 0.62rem; font-weight: 700; color: #3c3c43; }
.dfp-track { height: 6px; background: #e5e5ea; border-radius: 3px; overflow: hidden; }
.dfp-fill { height: 100%; background: var(--green); border-radius: 3px; width: 90%; }
.dfp-fill.dead { width: 3%; background: #ff3b30; animation: bar-flicker 0.6s infinite; }
.dfp-v { font-size: 0.62rem; font-weight: 800; font-family: var(--mono); text-align: right; }
.dfp-v.green { color: #059669; }
.dfp-v.red   { color: #ff3b30; }
.dfc-action {
    font-size: 0.7rem; font-weight: 700; color: #ff3b30;
    background: rgba(255,59,48,0.08); border-radius: 9px;
    padding: 9px 12px; text-align: center; cursor: pointer;
}

.diag-section-lbl { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: #8e8e93; padding: 0 14px; flex-shrink: 0; }
.diag-list { display: flex; flex-direction: column; gap: 0; background: #fff; border-radius: 14px; border: 1px solid var(--border); overflow: hidden; margin: 0 14px; flex-shrink: 0; }
.dl-row { display: flex; align-items: center; gap: 10px; padding: 10px 13px; border-bottom: 1px solid #f2f2f7; font-size: 0.73rem; font-weight: 600; color: #1c1c1e; }
.dl-row:last-child { border-bottom: none; }
.dl-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.dl-row.ok   .dl-dot { background: #34d399; }
.dl-row.err  .dl-dot { background: #ff3b30; animation: blink 0.9s infinite; }
.dl-row.warn .dl-dot { background: var(--amber); }
.dl-name   { flex: 1; }
.dl-status { font-size: 0.64rem; font-weight: 700; font-family: var(--mono); }
.dl-val    { font-size: 0.64rem; font-weight: 700; font-family: var(--mono); color: #3c3c43; }
.dl-val.amber { color: var(--amber); }
.dl-row.ok   .dl-status { color: #059669; }
.dl-row.err  .dl-status { color: #ff3b30; }

/* ══ SCREEN 3: ANALYTICS ══ */
.an-summary {
    background: #fff; border-radius: 16px; border: 1px solid var(--border);
    padding: 14px; margin: 0 14px; display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.an-big { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.an-num  { font-size: 2.2rem; font-weight: 200; color: #1c1c1e; font-family: var(--mono); line-height: 1; }
.an-unit2{ font-size: 0.65rem; font-weight: 700; color: #8e8e93; text-align: center; }
.an-label{ font-size: 0.54rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px; color: #8e8e93; }
.an-divider { width: 1px; background: #e5e5ea; align-self: stretch; flex-shrink: 0; }
.an-sub-stats { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.an-ss { display: flex; justify-content: space-between; align-items: center; }
.an-ss-val { font-size: 0.78rem; font-weight: 800; color: #1c1c1e; font-family: var(--mono); }
.an-ss-val.green { color: #059669; }
.an-ss-val.blue  { color: var(--accent); }
.an-ss-lbl { font-size: 0.58rem; color: #8e8e93; font-weight: 600; }

.an-chart-block {
    background: #fff; border-radius: 16px; border: 1px solid var(--border);
    padding: 13px; margin: 0 14px; flex-shrink: 0;
}
.an-chart-lbl { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: #8e8e93; margin-bottom: 10px; }
.an-chart { position: relative; height: 70px; }
.an-bars  { display: flex; align-items: flex-end; gap: 5px; height: 70px; position: absolute; inset: 0; }
.anb { flex: 1; height: var(--h); background: rgba(0,102,204,0.1); border-radius: 3px 3px 0 0; }
.anb.hi { background: rgba(0,102,204,0.28); }
.an-line { position: absolute; inset: 0; width: 100%; height: 100%; }
.an-chart-days { display: flex; justify-content: space-between; padding: 4px 0 0; }
.an-chart-days span { font-size: 0.54rem; color: #8e8e93; font-weight: 600; flex: 1; text-align: center; }

.an-breakdown { background: #fff; border-radius: 16px; border: 1px solid var(--border); padding: 13px; margin: 0 14px; flex-shrink: 0; }
.an-energy-row { margin: 8px 0 6px; }
.an-energy-bar { display: flex; height: 10px; border-radius: 5px; overflow: hidden; gap: 2px; }
.aeb-seg { height: 100%; }
.aeb-seg:first-child { border-radius: 5px 0 0 5px; }
.aeb-seg:last-child  { border-radius: 0 5px 5px 0; }
.an-energy-legend { display: flex; gap: 16px; }
.an-energy-legend span { font-size: 0.6rem; font-weight: 600; color: #3c3c43; display: flex; align-items: center; gap: 5px; }
.an-energy-legend i { display: inline-block; width: 8px; height: 8px; border-radius: 2px; }

.an-rides { background: #fff; border-radius: 16px; border: 1px solid var(--border); padding: 13px; margin: 0 14px; flex-shrink: 0; }
.an-ride-row { display: flex; align-items: center; padding: 8px 0; border-bottom: 1px solid #f2f2f7; font-size: 0.72rem; }
.an-ride-row:last-child { border-bottom: none; padding-bottom: 0; }
.anr-date { flex: 1; font-weight: 600; color: #3c3c43; }
.anr-dist { font-family: var(--mono); font-weight: 700; color: #1c1c1e; margin-right: 10px; }
.anr-eff  { font-family: var(--mono); font-size: 0.65rem; font-weight: 800; padding: 2px 7px; border-radius: 8px; }
.anr-eff.green { color: #059669; background: rgba(52,211,153,0.1); }
.anr-eff.amber { color: var(--amber); background: rgba(245,158,11,0.1); }

/* ══ SCREEN 4: BIKE HEALTH ══ */
.bh-score-ring {
    display: flex; justify-content: center; align-items: center;
    padding: 4px 0 0; flex-shrink: 0; position: relative; height: 110px;
}
.bh-gauge { width: 110px; height: 110px; }
.bh-gauge-center {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    display: flex; flex-direction: column; align-items: center;
}
.bh-num   { font-size: 1.9rem; font-weight: 200; color: #1c1c1e; font-family: var(--mono); line-height: 1; }
.bh-label { font-size: 0.6rem; font-weight: 700; color: #059669; text-transform: uppercase; letter-spacing: 0.5px; }

.bh-items { display: flex; flex-direction: column; gap: 0; background: #fff; border-radius: 16px; border: 1px solid var(--border); overflow: hidden; margin: 0 14px; flex-shrink: 0; }
.bhi { display: flex; align-items: center; justify-content: space-between; padding: 11px 13px; border-bottom: 1px solid #f2f2f7; gap: 10px; }
.bhi:last-child { border-bottom: none; }
.bhi-left  { display: flex; align-items: center; gap: 9px; flex: 1; }
.bhi-icon  { font-size: 1rem; flex-shrink: 0; }
.bhi-name  { display: block; font-size: 0.73rem; font-weight: 700; color: #1c1c1e; }
.bhi-sub   { display: block; font-size: 0.58rem; color: #8e8e93; font-weight: 500; margin-top: 1px; }
.bhi-right { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; flex-shrink: 0; min-width: 64px; }
.bhi-bar   { width: 60px; height: 4px; background: #e5e5ea; border-radius: 2px; overflow: hidden; }
.bhi-fill  { height: 100%; border-radius: 2px; }
.bhi-val   { font-size: 0.62rem; font-weight: 800; font-family: var(--mono); }
.bhi-val.green { color: #059669; }
.bhi-val.amber { color: var(--amber); }
.bhi-val.blue  { color: var(--accent); }

/* ══ SCREEN 5: SOCIAL ══ */
.soc-my-ride {
    background: #fff; border-radius: 16px; border: 1px solid var(--border);
    padding: 14px; margin: 0 14px; flex-shrink: 0;
}
.smr-header { display: flex; align-items: center; gap: 10px; margin-bottom: 11px; }
.smr-avatar {
    width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
    background: var(--accent); color: #fff; font-size: 0.85rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
}
.smr-name  { font-size: 0.78rem; font-weight: 700; color: #1c1c1e; }
.smr-time  { font-size: 0.6rem; color: #8e8e93; }
.smr-badge { margin-left: auto; font-size: 0.75rem; background: rgba(245,158,11,0.12); padding: 3px 8px; border-radius: 8px; }
.smr-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; margin-bottom: 10px; }
.smr-s     { background: #f7f8fa; border-radius: 10px; padding: 7px 5px; text-align: center; }
.smr-v     { display: block; font-size: 0.75rem; font-weight: 800; color: #1c1c1e; font-family: var(--mono); }
.smr-v.green { color: #059669; }
.smr-l     { display: block; font-size: 0.5rem; color: #8e8e93; font-weight: 600; margin-top: 2px; text-transform: uppercase; }
.smr-tags  { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 10px; }
.smrt { font-size: 0.6rem; font-weight: 600; padding: 3px 9px; background: #f2f2f7; border-radius: 20px; color: #3c3c43; }
.smr-actions { display: flex; gap: 8px; }
.smra { font-size: 0.65rem; font-weight: 700; padding: 6px 12px; border-radius: 9px; background: #f2f2f7; color: #3c3c43; cursor: pointer; }
.smra.share { background: var(--accent); color: #fff; }
.smra.active { background: #ff2d55; color: #fff; }

.soc-leaderboard {
    background: #fff; border-radius: 16px; border: 1px solid var(--border);
    padding: 13px; margin: 0 14px; flex-shrink: 0;
}
.slb-title { font-size: 0.68rem; font-weight: 700; color: #1c1c1e; margin-bottom: 8px; }
.slb-row { display: flex; align-items: center; gap: 10px; padding: 7px 0; border-bottom: 1px solid #f2f2f7; font-size: 0.72rem; }
.slb-row:last-child { border-bottom: none; padding-bottom: 0; }
.slb-rank { width: 20px; font-family: var(--mono); font-weight: 800; color: #8e8e93; font-size: 0.65rem; }
.slb-row.rank1 .slb-rank { color: #f59e0b; }
.slb-row.rank2 .slb-rank { color: #94a3b8; }
.slb-row.you   { background: rgba(0,102,204,0.04); border-radius: 8px; padding: 7px 8px; }
.slb-row.you .slb-rank { color: var(--accent); }
.slb-name { flex: 1; font-weight: 700; color: #1c1c1e; }
.slb-row.you .slb-name { color: var(--accent); }
.slb-dist { font-family: var(--mono); font-weight: 700; color: #3c3c43; font-size: 0.7rem; }

.soc-feed-item {
    background: #fff; border-radius: 16px; border: 1px solid var(--border);
    padding: 12px; margin: 0 14px; flex-shrink: 0;
}
.sfi-header { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.sfi-av { width: 28px; height: 28px; border-radius: 50%; background: #e5e5ea; color: #3c3c43; font-size: 0.75rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sfi-name { font-size: 0.72rem; font-weight: 700; color: #1c1c1e; }
.sfi-time { font-size: 0.58rem; color: #8e8e93; }
.sfi-stats { font-size: 0.65rem; color: #3c3c43; font-weight: 600; margin-bottom: 8px; }
.sfi-actions { display: flex; gap: 12px; }
.sfi-actions span { font-size: 0.62rem; font-weight: 600; color: #8e8e93; cursor: pointer; }

/* ══ SCREEN 6: SETTINGS ══ */
.set-ota-card {
    background: rgba(52,211,153,0.07); border: 1.5px solid rgba(52,211,153,0.22);
    border-radius: 14px; padding: 12px 14px; margin: 0 14px; flex-shrink: 0;
}
.ota-top  { display: flex; align-items: center; gap: 9px; margin-bottom: 4px; }
.ota-chip { font-size: 0.62rem; font-weight: 800; color: #059669; background: rgba(52,211,153,0.15); padding: 3px 9px; border-radius: 8px; }
.ota-ver  { font-size: 0.65rem; font-weight: 700; color: #3c3c43; font-family: var(--mono); }
.ota-desc { font-size: 0.62rem; color: #8e8e93; }

.set-section-lbl { font-size: 0.58rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: #8e8e93; padding: 4px 14px 2px; flex-shrink: 0; }
.set-profiles { display: flex; gap: 7px; padding: 0 14px; flex-shrink: 0; }
.setp { flex: 1; background: #fff; border: 1.5px solid var(--border); border-radius: 12px; padding: 10px 8px; text-align: center; cursor: pointer; transition: all 0.2s; }
.setp.active { border-color: rgba(0,102,204,0.3); background: rgba(0,102,204,0.05); }
.setp-name { font-size: 0.75rem; font-weight: 700; color: #1c1c1e; }
.setp-sub  { font-size: 0.52rem; color: #8e8e93; margin-top: 2px; }

.set-list { background: #fff; border-radius: 14px; border: 1px solid var(--border); overflow: hidden; margin: 0 14px; flex-shrink: 0; }
.setl-row { display: flex; justify-content: space-between; align-items: center; padding: 11px 14px; border-bottom: 1px solid #f2f2f7; font-size: 0.73rem; font-weight: 600; color: #1c1c1e; }
.setl-row:last-child { border-bottom: none; }
.setl-val { font-size: 0.68rem; color: #8e8e93; font-family: var(--mono); }
.setl-val.blue { color: var(--accent); font-family: inherit; }
.setl-val.mono { font-size: 0.6rem; }
.setl-toggle { width: 36px; height: 20px; background: #e5e5ea; border-radius: 10px; position: relative; cursor: pointer; transition: background 0.2s; }
.setl-toggle::after { content: ''; position: absolute; top: 2px; left: 2px; width: 16px; height: 16px; background: #fff; border-radius: 50%; transition: left 0.2s; box-shadow: 0 1px 3px rgba(0,0,0,0.15); }
.setl-toggle.on { background: #34c759; }
.setl-toggle.on::after { left: 18px; }

/* utility colors used across screens */
.text-green { color: var(--green); } .text-red { color: var(--red); } .text-amber { color: var(--amber); }
.blue { color: var(--accent); } .amber { color: var(--amber); } .green { color: #059669; } .red { color: #ff3b30; }

/* ── INCLINE DETECT BANNER ── */
.incline-banner {
    display: flex; align-items: center; gap: 10px;
    margin: 0 14px;
    background: linear-gradient(135deg, rgba(245,158,11,0.12), rgba(245,158,11,0.06));
    border: 1.5px solid rgba(245,158,11,0.3);
    border-radius: 14px; padding: 10px 13px;
    flex-shrink: 0;
    animation: incline-pulse 2.5s ease infinite;
}
.incline-icon  { font-size: 1.2rem; flex-shrink: 0; }
.incline-text  { flex: 1; }
.incline-title { display: block; font-size: 0.72rem; font-weight: 800; color: #92400e; }
.incline-sub   { display: block; font-size: 0.59rem; color: #b45309; margin-top: 1px; }
.incline-badge { font-size: 0.58rem; font-weight: 900; background: #f59e0b; color: #fff; padding: 3px 7px; border-radius: 6px; letter-spacing: 0.5px; }
@keyframes incline-pulse { 0%,100%{ border-color:rgba(245,158,11,0.3); } 50%{ border-color:rgba(245,158,11,0.65); } }

/* ── ASSIST NUMS (replaces mode labels) ── */
.assist-nums { display: flex; justify-content: space-between; margin-top: 4px; }
.assist-nums span { font-size: 0.54rem; color: #8e8e93; font-weight: 700; font-family: var(--mono); flex: 1; text-align: center; }

/* ── RIDE ACTION ROW (boost + split) ── */
.ride-action-row { display: flex; gap: 8px; padding: 0 14px; flex-shrink: 0; align-items: stretch; }
.boost-btn {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 4px; padding: 10px 14px;
    background: linear-gradient(135deg, #1a56db, #0066cc);
    border-radius: 14px; cursor: pointer;
    box-shadow: 0 4px 14px rgba(0,102,204,0.35);
    flex-shrink: 0; min-width: 62px;
    transition: transform 0.15s, box-shadow 0.15s;
}
.boost-btn:active { transform: scale(0.94); box-shadow: 0 2px 6px rgba(0,102,204,0.25); }
.boost-btn svg  { width: 18px; height: 18px; color: #fff; }
.boost-btn span { font-size: 0.62rem; font-weight: 800; color: #fff; letter-spacing: 0.3px; }

/* ── LOCK CARD ── */
.set-lock-card {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; margin: 0 14px;
    background: rgba(255,59,48,0.07); border: 1.5px solid rgba(255,59,48,0.22);
    border-radius: 16px; padding: 14px; cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
    flex-shrink: 0;
}
.set-lock-card.unlocked {
    background: rgba(52,199,89,0.07); border-color: rgba(52,199,89,0.25);
}
.slc-left  { display: flex; align-items: center; gap: 11px; }
.slc-icon  { font-size: 1.5rem; }
.slc-title { font-size: 0.8rem; font-weight: 800; color: #1c1c1e; }
.slc-sub   { font-size: 0.6rem; color: #8e8e93; margin-top: 2px; }
.slc-state { font-size: 0.6rem; font-weight: 900; letter-spacing: 0.8px; padding: 5px 10px; border-radius: 8px; }
.slc-state.locked   { background: rgba(255,59,48,0.12); color: #ff3b30; }
.slc-state.unlocked { background: rgba(52,199,89,0.12); color: #34c759; }

/* ── SMART FEATURE ROWS ── */
.setl-feat { display: flex; align-items: center; gap: 9px; flex: 1; }
.setl-feat-icon { font-size: 1.05rem; width: 22px; text-align: center; flex-shrink: 0; }
.setl-feat-name { display: block; font-size: 0.73rem; font-weight: 700; color: #1c1c1e; }
.setl-feat-sub  { display: block; font-size: 0.57rem; color: #8e8e93; margin-top: 1px; }

/* ── SLIDER ROWS ── */
.setl-slider-row { align-items: center; }
.setl-slider-wrap { display: flex; align-items: center; gap: 8px; }
.setl-slider-track { width: 80px; height: 4px; background: #e5e5ea; border-radius: 2px; position: relative; }
.setl-slider-fill  { height: 100%; background: var(--accent); border-radius: 2px; }
.setl-slider-thumb {
    position: absolute; top: 50%; transform: translate(-50%,-50%);
    width: 14px; height: 14px; background: #fff; border: 2px solid var(--accent);
    border-radius: 50%; box-shadow: 0 1px 4px rgba(0,0,0,0.18);
}
.setl-slider-val { font-size: 0.68rem; font-weight: 800; font-family: var(--mono); color: var(--accent); min-width: 22px; text-align: right; }

/* ── INCLINE STAT ROW (analytics) ── */
.an-incline-row { display: flex; gap: 8px; margin-top: 8px; }
.air-item { flex: 1; background: #f7f8fa; border-radius: 10px; padding: 8px 6px; text-align: center; }
.air-val  { display: block; font-size: 0.82rem; font-weight: 800; color: #1c1c1e; font-family: var(--mono); }
.air-val.amber { color: var(--amber); }
.air-val.green { color: #059669; }
.air-lbl  { display: block; font-size: 0.52rem; color: #8e8e93; font-weight: 600; text-transform: uppercase; letter-spacing: 0.3px; margin-top: 3px; }

/* Specs */
.specs-container { width: 100%; background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 28px; }
.premium-table { width: 100%; border-collapse: collapse; }
.premium-table tr { border-bottom: 1px solid var(--border); }
.premium-table tr:last-child { border-bottom: none; }
.premium-table td { padding: 18px 10px; font-size: 0.95rem; }
.premium-table td:first-child { color: var(--muted); font-weight: 600; }
.premium-table td:last-child { text-align: right; font-weight: 700; }

/* ── Specs tabs ── */
.specs-tabs {
    display: flex; gap: 6px; margin-bottom: 20px;
    border-bottom: 1.5px solid var(--border); padding-bottom: 0;
}
.stab {
    padding: 10px 18px; font-size: 0.82rem; font-weight: 700;
    color: var(--muted); cursor: pointer; border-radius: 10px 10px 0 0;
    border: 1.5px solid transparent; border-bottom: none;
    transition: all 0.18s; margin-bottom: -1.5px;
    background: transparent;
}
.stab:hover { color: var(--text); background: rgba(0,102,204,0.04); }
.stab.active {
    color: var(--accent); background: #fff;
    border-color: var(--border); border-bottom-color: #fff;
}
.spec-panel { display: none; }
.spec-panel.active { display: block; }
.mono { font-family: var(--mono); }

/* CTA */
.cta-box { width: 100%; background: linear-gradient(135deg, rgba(0,102,204,0.04), #fff); border: 1px solid var(--border); border-radius: 24px; padding: 60px; display: flex; align-items: center; gap: 48px; }
.cta-text { flex: 1; }
.cta-text h2 { font-size: 2.1rem; margin: 0 0 14px; font-weight: 800; letter-spacing: -1px; }
.cta-text p { color: var(--muted); font-size: 1rem; margin: 0 0 28px; line-height: 1.65; max-width: 440px; }
.cta-image-wrapper { flex: 1; border-radius: 14px; overflow: hidden; box-shadow: 0 16px 40px rgba(0,0,0,0.1); aspect-ratio: 16/9; }
.cta-image { width: 100%; height: 100%; object-fit: cover; }

footer { width: 100%; border-top: 1px solid var(--border); padding: 40px 24px; display: flex; justify-content: center; }
.footer-content { text-align: center; }
.footer-logo { height: 32px; opacity: 0.5; margin-bottom: 12px; filter: grayscale(100%); display: block; margin: 0 auto 12px; }
.text-muted { color: var(--muted); font-size: 0.82rem; }

/* ─── KEYFRAMES ─── */
@keyframes fade-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes spin { 100% { transform: rotate(360deg); } }
@keyframes blink { 50% { opacity: 0.35; } }
@keyframes scan { 0% { top: 0; } 100% { top: 100%; } }
@keyframes bar-flicker { 0%,100% { opacity: 1; } 50% { opacity: 0.2; } }
@keyframes pulse-green { 0%,100% { box-shadow: 0 0 0 3px rgba(40,167,69,0.18); } 50% { box-shadow: 0 0 0 5px rgba(40,167,69,0.06); } }
@keyframes node-breathe       { 0%,100% { opacity: 0.8; } 50% { opacity: 1; } }
@keyframes node-breathe-amber { 0%,100% { opacity: 0.7; } 50% { opacity: 1; } }
@keyframes node-breathe-red   { 0%,100% { opacity: 0.6; } 50% { opacity: 1; box-shadow: 0 0 8px rgba(227,0,0,0.4); } }
@keyframes ota-progress { 0% { width: 55%; } 100% { width: 80%; } }

/* ══════════════════════════════════════════
   HARDWARE SCHEMATIC VISUAL
══════════════════════════════════════════ */
.hw-schematic {
    background: #0d1117; border-radius: 24px;
    padding: 28px; color: #fff;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 24px 48px rgba(0,0,0,0.2);
    display: flex; flex-direction: column; gap: 20px;
}
.hw-title { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.35); }
.hw-diagram { display: flex; align-items: center; gap: 8px; }
.hw-block {
    flex: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px; padding: 16px 10px; display: flex; flex-direction: column; align-items: center; gap: 6px; position: relative;
}
.hw-block.hw-main { background: rgba(0,102,204,0.15); border-color: rgba(77,163,255,0.3); flex: 1.3; }
.hw-block-icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; }
.hw-block-icon svg { width: 32px; height: 32px; color: rgba(255,255,255,0.7); }
.hw-main .hw-block-icon svg { color: #4da3ff; }
.hw-block-name { font-size: 0.68rem; font-weight: 700; color: rgba(255,255,255,0.8); text-align: center; }
.hw-block-spec { font-size: 0.55rem; color: rgba(255,255,255,0.35); font-family: var(--mono); }
.hw-block-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.2); }
.hw-dot-pulse { background: #4da3ff; animation: dp-blue 2s infinite; }
.hw-arrow { font-size: 0.9rem; color: rgba(255,255,255,0.2); flex-shrink: 0; }
.hw-hmi-row { display: flex; align-items: center; justify-content: space-between; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 10px; padding: 10px 14px; }
.hw-hmi-badge { font-size: 0.65rem; font-weight: 700; color: rgba(255,255,255,0.55); }
.hw-hmi-connect { font-size: 0.58rem; color: rgba(255,255,255,0.25); font-family: var(--mono); }
.hw-specs-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.hss-item { background: rgba(255,255,255,0.04); border-radius: 10px; padding: 10px 6px; text-align: center; }
.hss-val { display: block; font-size: 0.75rem; font-weight: 800; color: #4da3ff; font-family: var(--mono); }
.hss-lbl { display: block; font-size: 0.5rem; color: rgba(255,255,255,0.3); margin-top: 3px; text-transform: uppercase; letter-spacing: 0.4px; }

/* ══════════════════════════════════════════
   ECOSYSTEM CANVAS WRAPPER
══════════════════════════════════════════ */
.eco-canvas-wrap {
    width: 100%; display: flex; justify-content: center;
    position: relative; z-index: 2;
}

/* ══════════════════════════════════════════
   OEM INTEGRATION STEPS SECTION
══════════════════════════════════════════ */
.oem-integration-section { width: 100%; background: var(--bg); padding: 80px 24px; border-top: 1px solid var(--border); }
.ois-inner { max-width: 1100px; margin: 0 auto; }
.ois-steps { display: flex; align-items: flex-start; gap: 0; }
.ois-step {
    flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center;
    padding: 0 20px;
}
.ois-num { font-family: var(--mono); font-size: 0.65rem; font-weight: 800; color: var(--accent); letter-spacing: 1px; margin-bottom: 10px; }
.ois-icon { font-size: 2rem; margin-bottom: 12px; }
.ois-step h4 { font-size: 1rem; font-weight: 800; margin: 0 0 8px; }
.ois-step p  { font-size: 0.82rem; color: var(--muted); line-height: 1.6; margin: 0; }
.ois-connector { width: 48px; height: 2px; background: linear-gradient(90deg, var(--accent), rgba(0,102,204,0.2)); border-radius: 1px; flex-shrink: 0; margin-top: 60px; }

/* ══════════════════════════════════════════
   PRODUCTS — BOLD STACK LAYOUT
══════════════════════════════════════════ */
.products-section {
    width: 100%; background: #fff;
    border-top: 1px solid var(--border);
}
.products-inner { max-width: 1140px; margin: 0 auto; padding: 88px 24px 96px; }
.prod-header { margin-bottom: 64px; }
.prod-header h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; letter-spacing: -1.5px; margin: 8px 0 0; line-height: 1.1; }

.prod-stack { display: flex; flex-direction: column; gap: 0; }

.prod-item {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    min-height: 500px;
    border-top: 1px solid var(--border);
}
.prod-item:last-child { border-bottom: 1px solid var(--border); }
.prod-item--dark { background: #06101f; }

/* Image side */
.prod-item-img {
    position: relative;
    background: linear-gradient(135deg, #f0f4fb 0%, #e4ecf7 100%);
    display: flex; align-items: center; justify-content: center;
    padding: 36px; overflow: hidden;
}
.prod-item--dark .prod-item-img { background: linear-gradient(135deg, #0d1830 0%, #111e38 100%); }
.prod-item-img img {
    width: 78%; max-width: 380px;
    object-fit: contain;
    position: relative; z-index: 2;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 20px 48px rgba(0,0,0,0.14));
}
.prod-item--dark .prod-item-img img { filter: drop-shadow(0 20px 48px rgba(0,102,204,0.25)); }
.prod-item:hover .prod-item-img img { transform: scale(1.04) translateY(-6px); }

.prod-item-num {
    position: absolute; top: 0; left: 0;
    font-family: var(--mono); font-size: 7rem; font-weight: 900;
    color: rgba(0,0,0,0.04); line-height: 1;
    pointer-events: none; z-index: 1;
    letter-spacing: -4px;
}
.prod-item-num--ghost { color: rgba(255,255,255,0.03); }

.prod-item-pills {
    position: absolute; bottom: 16px; left: 16px;
    display: flex; gap: 6px; z-index: 3; flex-wrap: wrap;
}
.pip {
    font-size: 0.6rem; font-weight: 800; letter-spacing: 0.5px;
    padding: 4px 10px; border-radius: 20px;
    background: rgba(255,255,255,0.85);
    color: var(--text);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0,0,0,0.08);
}
.pip--blue { background: rgba(0,102,204,0.12); color: #4da3ff; border-color: rgba(77,163,255,0.2); }
.pip--ip { background: rgba(52,199,89,0.1); color: #059669; border-color: rgba(52,199,89,0.2); }

/* Body side */
.prod-item-body {
    display: flex; flex-direction: column; justify-content: center;
    padding: 56px 60px;
}
.prod-item--dark .prod-item-body { padding-left: 60px; padding-right: 40px; }
.prod-item-tag {
    font-size: 0.6rem; font-weight: 900; text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--muted); background: var(--border);
    padding: 4px 12px; border-radius: 6px;
    align-self: flex-start; margin-bottom: 16px;
}
.prod-item-tag--blue { color: #4da3ff; background: rgba(77,163,255,0.1); border: 1px solid rgba(77,163,255,0.2); }
.prod-item-body h3 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700; letter-spacing: -0.5px;
    margin: 0 0 18px; line-height: 1.15;
    color: var(--text);
    font-family: 'Poppins', sans-serif;
}
.prod-item--dark .prod-item-body h3 { color: #fff; }
.prod-item-body p {
    font-size: 0.9rem; color: var(--muted);
    line-height: 1.75; margin: 0; max-width: 380px;
}
.prod-item--dark .prod-item-body p { color: rgba(255,255,255,0.42); }

/* ── Simple cert strip ── */
.cert-section {
    width: 100%; background: #f7f8fa;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
}
.cert-inner {
    max-width: 1100px; margin: 0 auto;
    display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.cert-globe { font-size: 1.4rem; flex-shrink: 0; }
.cert-text { flex: 1; }
.cert-text strong { font-size: 0.88rem; font-weight: 800; color: var(--text); display: block; }
.cert-text span { font-size: 0.72rem; color: var(--muted); font-family: var(--mono); }
.cert-badge-pill {
    font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
    padding: 6px 14px; border-radius: 20px;
    background: rgba(52,199,89,0.1);
    color: #059669; border: 1px solid rgba(52,199,89,0.2);
    flex-shrink: 0;
}

/* nav support link */
.nav-support-pill {
    display: inline-flex; align-items: center;
    background: var(--accent); color: #fff;
    padding: 7px 16px; border-radius: 20px;
    font-size: 0.8rem; font-weight: 700;
    text-decoration: none; white-space: nowrap;
    transition: background 0.2s, transform 0.15s;
    flex-shrink: 0;
}
.nav-support-pill:hover { background: #0055b3; transform: translateY(-1px); }
.mobile-nav-only { display: none !important; }

.btn-secondary {
    display: inline-flex; align-items: center;
    background: transparent; color: rgba(255,255,255,0.6);
    padding: 12px 22px; border-radius: 4px;
    font-size: 0.88rem; font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.2s;
}
.btn-secondary:hover { color: #fff; border-color: rgba(255,255,255,0.5); }

.nav-support-link {
    background: var(--accent) !important;
    color: #fff !important;
    padding: 6px 14px !important;
    border-radius: 20px;
    font-size: 0.82rem !important;
    transition: background 0.2s !important;
}
.nav-support-link:hover { background: #0052a3 !important; }

/* ══════════════════════════════════════════
   OEM SUPPORT — WhatsApp Chat Widget
══════════════════════════════════════════ */
.support-section {
    width: 100%; background: #040c1a;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 80px 24px 96px;
    position: relative; overflow: hidden;
}
.support-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(77,163,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(77,163,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.support-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }
.support-header { text-align: center; max-width: 560px; margin: 0 auto 56px; }
.support-header h2 { font-size: clamp(2.2rem, 3.5vw, 3rem); font-weight: 800; letter-spacing: -0.3px; margin: 8px 0 16px; line-height: 1.05; color: #fff; font-family: 'Poppins', sans-serif; }
.support-header p { font-size: 0.95rem; color: rgba(255,255,255,0.38); line-height: 1.7; }

.support-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 28px; align-items: start; }

/* ── WhatsApp Chat Widget ── */
.wa-chat-widget {
    background: #e5ddd5;
    border-radius: 20px; overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.4);
    display: flex; flex-direction: column;
    max-height: 560px;
}
.wa-chat-header {
    background: #075e54;
    padding: 14px 18px; display: flex;
    align-items: center; gap: 12px; flex-shrink: 0;
}
.wa-chat-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: #25d366; display: flex;
    align-items: center; justify-content: center; flex-shrink: 0;
}
.wa-chat-avatar svg { width: 22px; height: 22px; }
.wa-chat-info { flex: 1; }
.wa-chat-name { font-size: 0.9rem; font-weight: 700; color: #fff; }
.wa-chat-status { font-size: 0.68rem; color: rgba(255,255,255,0.65); display: flex; align-items: center; gap: 5px; margin-top: 1px; }
.wa-online-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; flex-shrink: 0; }
.wa-chat-logo { flex-shrink: 0; }

.wa-chat-messages {
    flex: 1; overflow-y: auto; padding: 12px 14px;
    display: flex; flex-direction: column; gap: 8px;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='100' height='100' fill='%23e5ddd5'/%3E%3C/svg%3E");
    min-height: 220px; max-height: 300px;
    scrollbar-width: thin; scrollbar-color: rgba(0,0,0,0.1) transparent;
}
.wa-date-sep {
    text-align: center; font-size: 0.62rem; color: #667781;
    background: rgba(225,245,254,0.9); padding: 3px 10px; border-radius: 8px;
    align-self: center; margin: 4px 0;
}
.wa-msg { display: flex; flex-direction: column; max-width: 80%; }
.wa-msg--in { align-self: flex-start; }
.wa-msg--out { align-self: flex-end; }
.wa-msg p {
    background: #fff; border-radius: 0 12px 12px 12px;
    padding: 8px 12px; font-size: 0.82rem; color: #1c1c1e;
    line-height: 1.5; margin: 0;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.wa-msg--out p { background: #d9fdd3; border-radius: 12px 0 12px 12px; color: #0a0a0a; }
.wa-time { font-size: 0.58rem; color: #667781; margin-top: 3px; padding: 0 4px; align-self: flex-end; }
.wa-msg--in .wa-time { align-self: flex-start; }

.wa-quick-replies {
    background: #f0f2f5; border-top: 1px solid #e0e0e0;
    padding: 10px 12px; display: flex; gap: 7px;
    flex-wrap: wrap; flex-shrink: 0;
}
.wa-qr {
    font-size: 0.72rem; font-weight: 600; color: #075e54;
    background: #fff; border: 1px solid #d0d0d0;
    border-radius: 20px; padding: 6px 12px;
    cursor: pointer; transition: all 0.15s;
    white-space: nowrap;
}
.wa-qr:hover { background: #dcf8c6; border-color: #25d366; }
.wa-qr:active { transform: scale(0.96); }

.wa-chat-input-row {
    background: #f0f2f5; padding: 10px 12px;
    display: flex; align-items: center; gap: 10px; flex-shrink: 0;
    border-top: 1px solid #e0e0e0;
}
.wa-input {
    flex: 1; background: #fff; border: none; border-radius: 24px;
    padding: 10px 16px; font-size: 0.82rem; color: #1c1c1e;
    outline: none; box-shadow: 0 1px 2px rgba(0,0,0,0.08);
    font-family: var(--font);
}
.wa-input::placeholder { color: #aaa; }
.wa-send-btn {
    width: 40px; height: 40px; border-radius: 50%;
    background: #075e54; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: #fff; flex-shrink: 0; transition: background 0.15s;
}
.wa-send-btn:hover { background: #128c7e; }
.wa-send-btn svg { width: 16px; height: 16px; }

/* ── Support info column ── */
.support-info { display: flex; flex-direction: column; gap: 14px; }
.support-info-card {
    display: flex; align-items: flex-start; gap: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px; padding: 18px 20px;
    transition: border-color 0.2s;
}
.support-info-card:hover { border-color: rgba(255,255,255,0.14); }
.sic-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; }
.support-info-card strong { display: block; font-size: 0.85rem; font-weight: 800; color: #fff; margin-bottom: 3px; }
.support-info-card span { font-size: 0.75rem; color: rgba(255,255,255,0.38); line-height: 1.5; }
.support-open-wa {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: #25d366; color: #fff;
    padding: 14px 24px; border-radius: 14px;
    font-size: 0.88rem; font-weight: 800;
    text-decoration: none; transition: all 0.2s;
    box-shadow: 0 8px 24px rgba(37,211,102,0.25);
    margin-top: 4px;
}
.support-open-wa:hover { background: #1ebe5a; transform: translateY(-2px); }

/* ══════════════════════════════════════════
   MOBILE ARCHITECTURE FLOW
══════════════════════════════════════════ */
.eco-desktop-only { display: flex; }
.eco-mobile-flow  { display: none; }

.eco-mobile-flow {
    width: 100%; max-width: 480px; padding: 0 20px 8px;
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    margin: 0 auto;
}
.emf-node {
    display: flex; align-items: center; gap: 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px; padding: 14px 16px;
    transition: all 0.3s;
}
.emf-node--active, .emf-node--featured {
    border-color: rgba(77,163,255,0.4);
    background: rgba(77,163,255,0.07);
    box-shadow: 0 0 0 1px rgba(77,163,255,0.1), 0 8px 24px rgba(77,163,255,0.12);
}
.emf-node--app {
    border-color: rgba(52,211,153,0.4);
    background: rgba(52,211,153,0.06);
}
.emf-icon {
    width: 36px; height: 36px; flex-shrink: 0;
    background: rgba(255,255,255,0.07); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
}
.emf-node--active .emf-icon, .emf-node--featured .emf-icon { color: #4da3ff; background: rgba(77,163,255,0.12); }
.emf-node--app .emf-icon { color: #34d399; background: rgba(52,211,153,0.1); }
.emf-icon svg { width: 18px; height: 18px; }
.emf-content { flex: 1; }
.emf-label { font-size: 0.78rem; font-weight: 800; color: #fff; }
.emf-val { font-size: 0.65rem; color: rgba(255,255,255,0.4); font-family: var(--mono); margin-top: 2px; }
.emf-chip {
    font-size: 0.55rem; font-weight: 800; letter-spacing: 0.5px;
    padding: 3px 9px; border-radius: 8px;
    background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.45);
    flex-shrink: 0; text-transform: uppercase;
}
.emf-chip--blue { background: rgba(77,163,255,0.15); color: #4da3ff; }
.emf-chip--amber { background: rgba(245,158,11,0.15); color: #f59e0b; }
.emf-chip--green { background: rgba(52,211,153,0.15); color: #34d399; }

.emf-wire {
    display: flex; flex-direction: column; align-items: center;
    padding: 4px 0; gap: 3px; position: relative;
}
.emf-wire-line {
    width: 2px; height: 28px;
    background: linear-gradient(180deg, rgba(77,163,255,0.3), rgba(77,163,255,0.6));
    border-radius: 1px;
}
.emf-wire-dashed {
    background: none;
    border-left: 2px dashed rgba(77,163,255,0.35);
    height: 24px; width: 0;
}
.emf-wire-dot { width: 6px; height: 6px; border-radius: 50%; background: #4da3ff; opacity: 0.7; }
.emf-wire--wireless { padding: 6px 0; }
.emf-wire-label { font-size: 0.5rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(77,163,255,0.5); font-weight: 700; }

.emf-desc {
    margin-top: 20px;
    font-size: 0.82rem; color: rgba(255,255,255,0.38); line-height: 1.65;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px; padding: 16px;
    text-align: center;
}

/* ══════════════════════════════════════════
   WHITE-LABEL SECTION
══════════════════════════════════════════ */
.wl-section {
    width: 100%; background: #f7f8fa;
    border-top: 1px solid var(--border);
    padding: 96px 24px;
}
.wl-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.wl-text h2 { font-size: 2.4rem; font-weight: 800; letter-spacing: -1px; margin: 8px 0 20px; line-height: 1.1; }
.wl-text p { font-size: 1rem; color: var(--muted); line-height: 1.7; margin: 0 0 28px; }
.wl-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.wl-list li { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; color: var(--muted); font-weight: 500; }
.wl-check { color: var(--accent); font-weight: 900; font-size: 0.9rem; flex-shrink: 0; }
.wl-visual { display: flex; justify-content: center; align-items: center; }
.wl-phone-pair { display: flex; align-items: center; gap: 20px; }
.wl-arrow-between { font-size: 1.4rem; color: var(--muted); flex-shrink: 0; }
.wl-phone {
    width: 120px; height: 200px;
    background: #fff; border-radius: 20px;
    box-shadow: inset 0 0 0 1.5px #d1d1d6, inset 0 0 0 6px #f2f2f7, 0 20px 48px rgba(0,0,0,0.12);
    overflow: hidden; position: relative;
    display: flex; flex-direction: column;
}
.wl-phone-notch {
    width: 50px; height: 12px; background: #111; border-radius: 0 0 10px 10px;
    margin: 0 auto;
}
.wl-phone-screen {
    flex: 1; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 8px; gap: 6px;
}
.wl-screen-logo {
    width: 40px; height: 40px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 0.6rem; font-weight: 900; letter-spacing: 1px;
}
.wl-screen-name { font-size: 0.6rem; font-weight: 800; color: #1c1c1e; }
.wl-screen-sub { font-size: 0.48rem; color: #8e8e93; }
.wl-screen-bar { height: 3px; width: 60px; border-radius: 2px; margin-top: 6px; opacity: 0.8; }

/* ══════════════════════════════════════════
   CERTIFICATIONS STRIP
══════════════════════════════════════════ */
.cert-section {
    width: 100%; background: #fff;
    border-top: 1px solid var(--border);
    padding: 40px 24px;
}
.cert-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.cert-label { font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.2px; color: var(--muted); white-space: nowrap; flex-shrink: 0; }
.cert-badges { display: flex; align-items: center; gap: 0; flex: 1; flex-wrap: wrap; }
.cert-badge { display: flex; align-items: center; gap: 10px; padding: 0 24px; }
.cert-badge:first-child { padding-left: 0; }
.cert-icon { font-size: 1.2rem; flex-shrink: 0; }
.cert-badge strong { display: block; font-size: 0.8rem; color: var(--text); }
.cert-badge small { display: block; font-size: 0.62rem; color: var(--muted); margin-top: 1px; }
.cert-sep { width: 1px; height: 32px; background: var(--border); flex-shrink: 0; }

/* ══════════════════════════════════════════
   NUMBERS STRIP
══════════════════════════════════════════ */
.numbers-section {
    width: 100%; background: #0a0f1e;
    padding: 0; border-top: 1px solid rgba(255,255,255,0.06);
}
.numbers-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr);
    padding: 0 24px;
}
.num-item {
    padding: 48px 32px;
    border-right: 1px solid rgba(255,255,255,0.07);
    display: flex; flex-direction: column; gap: 10px;
}
.num-item:last-child { border-right: none; }
.num-div { display: none; }
.num-val {
    font-size: 2.8rem; font-weight: 200; color: #fff;
    font-family: var(--mono); letter-spacing: -2px; line-height: 1;
}
.num-unit { font-size: 1.2rem; font-weight: 700; color: var(--accent); margin-left: 3px; letter-spacing: 0; }
.num-lbl { font-size: 0.8rem; color: rgba(255,255,255,0.45); line-height: 1.5; font-weight: 500; max-width: 180px; }

/* otr-auto badge */
.otr-auto { font-size: 0.6rem; font-weight: 700; color: #059669; background: rgba(52,199,89,0.1); border: 1px solid rgba(52,199,89,0.2); padding: 3px 9px; border-radius: 10px; }

/* ══════════════════════════════════════════
   OEM HOME SCREEN
══════════════════════════════════════════ */
.oem-home-brand {
    display: flex; align-items: center; justify-content: space-between;
    padding: 52px 16px 8px; flex-shrink: 0;
}
.ohb-pp-logo { height: 20px; width: auto; object-fit: contain; }
.ohb-right { display: flex; align-items: center; gap: 8px; }
.ohb-battery {
    font-size: 0.6rem; font-weight: 800; font-family: var(--mono); color: #1c1c1e;
    background: rgba(52,199,89,0.12); border: 1px solid rgba(52,199,89,0.25);
    padding: 2px 7px; border-radius: 8px;
}
.ohb-chip {
    font-size: 0.58rem; font-weight: 700; color: #059669;
    background: rgba(52,199,89,0.1); border: 1px solid rgba(52,199,89,0.2);
    padding: 3px 9px; border-radius: 10px;
}

.oem-bike-hero {
    flex-shrink: 0; position: relative;
    margin: 0 12px;
    background: linear-gradient(160deg, #f0f4ff 0%, #e8f0fb 100%);
    border-radius: 18px; overflow: hidden;
    border: 1px solid rgba(0,102,204,0.1);
    display: flex; flex-direction: column;
}
.obh-gradient-overlay {
    position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse at 30% 70%, rgba(0,102,204,0.07) 0%, transparent 65%);
    z-index: 1;
}
.obh-bike-img {
    width: 100%; height: 148px; object-fit: contain;
    display: block; position: relative; z-index: 2;
    padding: 8px 8px 0;
    filter: drop-shadow(0 8px 20px rgba(0,102,204,0.1));
}
.obh-status-row {
    display: flex; align-items: center; justify-content: space-around;
    background: rgba(255,255,255,0.75); border-top: 1px solid rgba(0,0,0,0.06);
    padding: 7px 0; z-index: 2; position: relative;
}
.obh-sr { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.obh-sr-divider { width: 1px; height: 28px; background: rgba(0,0,0,0.08); }
.obhsr-val { font-size: 0.72rem; font-weight: 800; color: #1c1c1e; font-family: var(--mono); }
.obhsr-val.green { color: #059669; }
.obhsr-bar { width: 36px; height: 3px; background: #e5e5ea; border-radius: 2px; overflow: hidden; }
.obhsr-fill { height: 100%; border-radius: 2px; }
.obhsr-lbl { font-size: 0.47rem; text-transform: uppercase; letter-spacing: 0.5px; color: #8e8e93; font-weight: 700; }

.oem-theme-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 14px; flex-shrink: 0;
}
.otr-lbl { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: #8e8e93; }
.otr-swatches { display: flex; gap: 7px; }
.otr-sw {
    width: 18px; height: 18px; border-radius: 50%; cursor: pointer;
    border: 2px solid transparent; transition: all 0.18s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.12);
}
.otr-sw.active { border-color: #fff; box-shadow: 0 0 0 2.5px var(--accent, #0066cc), 0 2px 6px rgba(0,0,0,0.15); transform: scale(1.2); }

.oem-quick-actions {
    display: grid; grid-template-columns: repeat(4,1fr); gap: 6px;
    padding: 0 12px; flex-shrink: 0;
}
.oqa-btn {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    background: #fff; border: 1px solid var(--border); border-radius: 14px;
    padding: 10px 4px; cursor: pointer; transition: all 0.18s;
    font-size: 0.53rem; font-weight: 700; color: #3c3c43;
    text-align: center; position: relative;
}
.oqa-btn svg { width: 19px; height: 19px; color: var(--accent); }
.oqa-btn:active { transform: scale(0.94); background: rgba(0,102,204,0.06); }
.oqa-btn--update svg { color: #ff9500; }
.oqa-update-dot {
    position: absolute; top: 7px; right: 8px;
    width: 7px; height: 7px; border-radius: 50%;
    background: #ff3b30; border: 1.5px solid #fff;
}

/* ── ATM update badge ── */
.atm-update-dot {
    position: absolute; top: -3px; right: -3px;
    width: 9px; height: 9px; border-radius: 50%;
    background: #ff3b30; border: 2px solid var(--bg);
}

/* ══════════════════════════════════════════
   UPDATE SCREEN
══════════════════════════════════════════ */
.upd-banner {
    display: flex; align-items: center; gap: 12px;
    margin: 0 14px; padding: 13px;
    background: linear-gradient(135deg, rgba(0,102,204,0.08), rgba(0,102,204,0.04));
    border: 1.5px solid rgba(0,102,204,0.2); border-radius: 16px; flex-shrink: 0;
}
.upd-banner-icon { font-size: 1.6rem; flex-shrink: 0; }
.upd-banner-title { font-size: 0.82rem; font-weight: 800; color: #1c1c1e; }
.upd-banner-sub   { font-size: 0.58rem; color: #8e8e93; margin-top: 2px; }

.upd-section-lbl {
    font-size: 0.6rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.8px;
    color: #8e8e93; padding: 0 14px; flex-shrink: 0;
}
.upd-changelog { display: flex; flex-direction: column; gap: 6px; padding: 0 14px; flex-shrink: 0; }
.upd-change { display: flex; align-items: flex-start; gap: 9px; }
.upd-change p { font-size: 0.58rem; color: #8e8e93; margin: 2px 0 0; line-height: 1.4; }
.upd-change strong { font-size: 0.68rem; color: #1c1c1e; display: block; }
.upd-tag {
    font-size: 0.48rem; font-weight: 900; letter-spacing: 0.5px; flex-shrink: 0;
    padding: 3px 6px; border-radius: 5px; margin-top: 2px;
}
.upd-change--new      .upd-tag { background: rgba(0,102,204,0.12); color: var(--accent); }
.upd-change--improve  .upd-tag { background: rgba(52,199,89,0.12);  color: #059669; }
.upd-change--fix      .upd-tag { background: rgba(245,158,11,0.12); color: #d97706; }

.upd-components { display: flex; flex-direction: column; gap: 5px; padding: 0 14px; flex-shrink: 0; }
.upd-comp { display: flex; align-items: center; justify-content: space-between; background: #fff; border-radius: 12px; padding: 9px 12px; border: 1px solid var(--border); }
.upd-comp-left { display: flex; align-items: center; gap: 9px; }
.upd-comp-icon { font-size: 1rem; }
.upd-comp-name { font-size: 0.68rem; font-weight: 700; color: #1c1c1e; }
.upd-comp-ver  { font-size: 0.56rem; color: #8e8e93; font-family: var(--mono); margin-top: 1px; }
.upd-comp-ver strong { color: #1c1c1e; }
.upd-comp-badge { font-size: 0.53rem; font-weight: 800; padding: 3px 9px; border-radius: 8px; }
.upd-comp-badge.new { background: rgba(0,102,204,0.1); color: var(--accent); }
.upd-comp-badge.ok  { background: rgba(52,199,89,0.1); color: #059669; }

.upd-install-wrap { padding: 0 14px; flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.upd-install-btn {
    width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px;
    background: var(--accent); color: #fff; border-radius: 14px;
    padding: 13px 16px; font-size: 0.78rem; font-weight: 800; cursor: pointer;
    transition: all 0.2s; letter-spacing: 0.2px;
}
.upd-install-btn svg { width: 16px; height: 16px; }
.upd-install-btn:active { transform: scale(0.97); }
.upd-install-btn.installing { background: #8e8e93; pointer-events: none; }
.upd-install-note { font-size: 0.55rem; color: #8e8e93; text-align: center; }



/* ══════════════════════════════════════════
   PREMIUM SITE FOOTER (MASSIVE UPGRADE)
══════════════════════════════════════════ */
/* ══════════════════════════════════════════
   PREMIUM SITE FOOTER (MASSIVE UPGRADE)
══════════════════════════════════════════ */
.site-footer-premium {
    background: #020617; /* Ultra-deep premium slate */
    color: #f8fafc;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.04);
    
    /* THE FIX: Overrides the old global footer flex rule */
    display: block !important;
    padding: 0 !important;
    width: 100%;
}

/* Subtle Top Edge Glow */
.site-footer-premium::before {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 80%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(77,163,255,0.3), transparent);
    box-shadow: 0 0 30px 2px rgba(77,163,255,0.15);
}

/* 1. Massive Footer CTA Area */
.sfp-cta {
    max-width: 1140px; margin: 0 auto;
    padding: 100px 24px 80px;
    text-align: center;
    display: flex; flex-direction: column; align-items: center;
}
.sfp-cta-title {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800; letter-spacing: -1.5px;
    margin: 0 0 16px; font-family: 'Poppins', sans-serif;
    line-height: 1.1;
}
.sfp-cta-sub {
    font-size: 1.15rem; color: #94a3b8;
    max-width: 540px; line-height: 1.6; margin: 0 0 40px;
}
.sfp-btn {
    background: #0066cc; color: #fff;
    padding: 18px 40px; border-radius: 40px;
    font-weight: 700; font-size: 1.05rem; text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0,102,204,0.25);
    border: 1px solid transparent;
}
.sfp-btn:hover {
    background: #0f172a; border-color: rgba(77,163,255,0.5);
    transform: translateY(-3px); color: #4da3ff;
    box-shadow: 0 12px 32px rgba(0,102,204,0.15);
}

.sfp-divider {
    max-width: 1140px; margin: 0 auto;
    height: 1px; background: rgba(255,255,255,0.06);
}

/* 2. Main Link Grid */
.sfp-main {
    max-width: 1140px; margin: 0 auto;
    padding: 80px 24px;
    display: grid; grid-template-columns: 1.2fr 2fr; gap: 80px;
}
.sfp-brand .sfp-logo { height: 36px; opacity: 1; margin-bottom: 16px; }
.sfp-brand p { font-size: 0.95rem; color: #64748b; line-height: 1.7; margin: 0 0 28px; }
.sfp-badges { display: flex; gap: 10px; }
.sfp-badges span {
    font-size: 0.65rem; font-weight: 700; font-family: var(--mono);
    color: #94a3b8; border: 1px solid rgba(255,255,255,0.1);
    padding: 6px 12px; border-radius: 8px; letter-spacing: 0.5px;
}

.sfp-links-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
}
.sfp-col h4 {
    font-size: 0.85rem; font-weight: 700; color: #f8fafc;
    text-transform: uppercase; letter-spacing: 1.5px; margin: 0 0 28px;
}
.sfp-col a {
    display: flex; font-size: 0.95rem; color: #94a3b8;
    text-decoration: none; margin-bottom: 16px; font-weight: 500;
    transition: color 0.2s, transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.sfp-col a:hover { 
    color: #38bdf8; 
    transform: translateX(6px); /* Premium sliding hover effect */
}

/* 3. Bottom Bar */
.sfp-bottom {
    max-width: 1140px; margin: 0 auto;
    padding: 32px 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex; justify-content: space-between; align-items: center;
}
.sfp-copyright { font-size: 0.85rem; color: #64748b; }
.sfp-legal { display: flex; gap: 32px; }
.sfp-legal a { font-size: 0.85rem; color: #64748b; text-decoration: none; transition: color 0.2s; }
.sfp-legal a:hover { color: #f8fafc; }

/* 4. Mobile Overrides */
@media (max-width: 900px) {
    .sfp-main { grid-template-columns: 1fr; gap: 40px; padding: 48px 24px; }
    .sfp-links-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 600px) {
    /* Compress the massive top CTA */
    .sfp-cta { padding: 48px 20px 32px; }
    .sfp-cta-title { font-size: 1.8rem; margin-bottom: 12px; }
    .sfp-cta-sub { margin-bottom: 24px; font-size: 0.95rem; }
    .sfp-btn { padding: 14px 28px; font-size: 0.95rem; }
    
    /* Compress the middle grid */
    .sfp-main { padding: 32px 20px; gap: 32px; }
    .sfp-brand p { margin-bottom: 0; }
    
    /* Keep links in 2 columns on phones to save huge vertical space */
    .sfp-links-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .sfp-col h4 { margin: 0 0 12px; }
    .sfp-col a { margin-bottom: 10px; font-size: 0.85rem; }
    
    /* Compress bottom legal bar */
    .sfp-bottom { padding: 20px; flex-direction: column; gap: 12px; text-align: center; }
    .sfp-legal { justify-content: center; flex-wrap: wrap; gap: 12px 16px; }
}
/* ══════════════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .prod-item { grid-template-columns: 1fr 1fr; }
    .prod-item-body { padding: 36px; }
    .wl-inner { gap: 48px; }
    .support-layout { grid-template-columns: 1fr 1fr; }
    .numbers-inner { grid-template-columns: repeat(2,1fr); }
    .num-item:nth-child(2) { border-right: none; }
    .num-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.07); }
    .num-item:nth-child(4) { border-right: none; border-top: 1px solid rgba(255,255,255,0.07); }
}

/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
══════════════════════════════════════════ */
@media (max-width: 768px) {

    /* ─ GLOBAL ─ */
    section, .page-content { overflow-x: hidden; max-width: 100vw; }

    /* ─ HEADER ─ */
    .oem-header {
        display: flex; justify-content: space-between; align-items: center;
        padding: 0 16px; height: 56px;
        grid-template-columns: unset;
        background: rgba(4,12,26,0.96);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        box-shadow: 0 1px 0 rgba(255,255,255,0.07);
    }
    .nav-logo-massive { height: 30px; }
    .status-box { display: none; }
    .nav-support-pill { display: none; }
    .mobile-nav-only { display: flex !important; }
    /* Force perfect centering and sizing for the hamburger menu */
    .nav-hamburger { 
        display: flex !important; 
        flex-direction: column !important;
        justify-content: center !important; 
        align-items: center !important;
        width: 48px !important;
        height: 48px !important;
        padding: 0 !important;
        margin-right: -8px !important; /* Tucks it perfectly flush against the right edge */
    }
    .nav-hamburger span { background: rgba(255,255,255,0.85); }
    .main-nav {
        display: none; position: fixed;
        top: 56px; left: 0; right: 0; width: 100%;
        background: rgba(4,12,26,0.98);
        backdrop-filter: blur(24px);
        flex-direction: column; gap: 0; padding: 8px 0 20px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        z-index: 999; box-shadow: 0 16px 40px rgba(0,0,0,0.5);
    }
    .main-nav.open { display: flex; }
    .main-nav a { padding: 14px 20px; font-size: 0.95rem; color: rgba(255,255,255,0.7); border-bottom: 1px solid rgba(255,255,255,0.06); }
    .main-nav a:last-child { border-bottom: none; }
    .nav-support-link { margin: 10px 16px 4px !important; padding: 12px 16px !important; font-size: 0.92rem !important; border-radius: 10px !important; }

    /* ─ HERO ─ */
    .hero-section { height: 100svh; min-height: 560px; }
    .hero-content { padding: 0 20px; max-width: 100%; }
    .hero-title { font-size: clamp(2.4rem, 8.5vw, 3.4rem); letter-spacing: -0.5px; margin-bottom: 14px; line-height: 0.98; }
    .hero-subtitle { font-size: 0.875rem; margin-bottom: 26px; line-height: 1.65; }
    .hero-actions { margin-bottom: 32px; gap: 10px; flex-wrap: wrap; justify-content: center; }
    .hero-btn-primary, .hero-btn-ghost { padding: 11px 22px; font-size: 0.85rem; }
    .hero-stats { padding: 14px 0; border-radius: 14px; width: 100%; max-width: 100%; }
    .hstat { flex: 1; padding: 2px 6px; min-width: 0; }
    .hstat-val { font-size: 1.2rem; }
    .hstat-unit { font-size: 0.65rem; }
    .hstat-lbl { font-size: 0.43rem; letter-spacing: 0.4px; }
    .hstat-div { height: 28px; }

    /* MOBILE ARCHITECTURE: HORIZONTAL PIPELINE REDO */
.eco-desktop-only { display: none !important; }

.eco-mobile-flow {
    display: block !important;
    width: 100%; position: relative; padding: 10px 0 30px;
    overflow: hidden;
}

.emf-scroll-hint {
    text-align: center; font-size: 0.65rem; color: rgba(77,163,255,0.8);
    text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700;
    margin-bottom: 20px; animation: pulse 2s infinite;
}

.emf-track-inner {
    display: flex; align-items: center;
    overflow-x: auto; scroll-snap-type: x mandatory;
    gap: 12px; padding: 0 20px 20px; 
    scrollbar-width: none; /* Firefox */
    -webkit-overflow-scrolling: touch;
}
.emf-track-inner::-webkit-scrollbar { display: none; /* Chrome/Safari */ }

.emf-node {
    flex: 0 0 200px; scroll-snap-align: center;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px; padding: 24px 16px; 
    display: flex; flex-direction: column; align-items: center; 
    text-align: center; gap: 12px; backdrop-filter: blur(10px);
}
.emf-node--featured {
    background: rgba(0,102,204,0.08); border-color: rgba(77,163,255,0.3);
    box-shadow: 0 8px 32px rgba(0,102,204,0.15);
}
.emf-node--app {
    background: rgba(52,211,153,0.04); border-color: rgba(52,211,153,0.2);
}

.emf-icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.6);
}
.emf-icon svg { width: 22px; height: 22px; }

.emf-content { display: flex; flex-direction: column; gap: 4px; }
.emf-label { font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; color: rgba(255,255,255,0.6); }
.emf-val { font-family: var(--mono); font-size: 1.1rem; font-weight: 700; color: #fff; }

.emf-chip {
    font-size: 0.55rem; font-weight: 800; text-transform: uppercase; 
    letter-spacing: 0.5px; padding: 4px 10px; border-radius: 12px;
    background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5);
}
.emf-chip--blue { background: rgba(77,163,255,0.15); color: #4da3ff; }
.emf-chip--amber { background: rgba(245,158,11,0.15); color: #f59e0b; }
.emf-chip--green { background: rgba(52,211,153,0.15); color: #34d399; }

/* Mobile Architecture Glow Animations */
    .emd-card { transition: all 0.45s ease; }
    
    .emd-card.lit {
        border-color: rgba(77,163,255,0.45);
        box-shadow: 0 8px 24px rgba(77,163,255,0.15), inset 0 1px 0 rgba(77,163,255,0.08);
        background: rgba(77,163,255,0.08);
    }
    .emd-card.lit .emd-icon {
        color: #4da3ff;
        background: rgba(77,163,255,0.15);
        border-color: rgba(77,163,255,0.3);
    }
    
    .emd-card.fault-lit {
        border-color: rgba(255,68,68,0.5) !important;
        box-shadow: 0 8px 24px rgba(255,68,68,0.2) !important;
        background: rgba(255,68,68,0.08) !important;
        animation: node-shake 0.35s ease;
    }
    .emd-card.fault-lit .emd-icon {
        color: #ff6666;
        background: rgba(255,68,68,0.15);
        border-color: rgba(255,68,68,0.32);
    }
    
    .emd-card.social-lit {
        border-color: rgba(167,139,250,0.45) !important;
        box-shadow: 0 8px 24px rgba(167,139,250,0.15) !important;
        background: rgba(167,139,250,0.08) !important;
    }
    .emd-card.social-lit .emd-icon {
        color: #a78bfa;
        background: rgba(167,139,250,0.15);
        border-color: rgba(167,139,250,0.3);
    }

/* The Arrow */
.emf-wire {
    display: flex; align-items: center; justify-content: center;
    flex: 0 0 20px; font-size: 1.4rem; color: rgba(255,255,255,0.15);
}

/* Hide the old vertical line styling entirely */
.emf-wire-line, .emf-wire-dot, .emf-wire-label { display: none !important; }

    /* ─ HARDWARE SPOTLIGHT ─ */
    .engineering-spotlight { padding: 40px 0; }
    .spotlight-container { grid-template-columns: 1fr; gap: 24px; padding: 0 20px; }
    .spotlight-text h2 { font-size: 1.6rem; }
    .spotlight-text p { font-size: 0.85rem; line-height: 1.65; }
    .eng-features { margin: 18px 0; }
    .eng-features li { font-size: 0.82rem; gap: 12px; margin-bottom: 14px; }
    .workshop-visual { overflow: hidden; }
    .hw-schematic { padding: 14px; }
    .hw-specs-strip { grid-template-columns: repeat(2,1fr); gap: 6px; }
    .hw-diagram { gap: 2px; overflow: hidden; }
    .hw-block { padding: 8px 4px; min-width: 0; }
    .hw-block-name { font-size: 0.54rem; }
    .hw-block-spec { font-size: 0.46rem; }
    .spotlight-actions { text-align: center; }
    .btn-primary { margin-top: 16px; padding: 12px 24px; font-size: 0.875rem; }

    /* ─ INTEGRATION STEPS ─ */
    .oem-integration-section { padding: 40px 20px; }
    .ois-inner .section-header h2 { font-size: 1.5rem; }
.ois-steps { flex-direction: column; align-items: stretch; gap: 0; }
    .ois-step {
        display: grid;
        grid-template-columns: auto 1fr;
        column-gap: 16px;
        row-gap: 4px;
        text-align: left;
        padding: 18px 0;
        border-bottom: 1px solid var(--border);
    }
    .ois-step:last-child { border-bottom: none; }
    .ois-num { display: none; }
    .ois-icon { 
        grid-column: 1; 
        grid-row: 1 / span 2; 
        font-size: 1.6rem; 
        margin: 0; 
    }
    .ois-step h4 { 
        grid-column: 2; 
        grid-row: 1; 
        font-size: 0.92rem; 
        margin: 0; 
    }
    .ois-step p { 
        grid-column: 2; 
        grid-row: 2; 
        font-size: 0.8rem; 
        line-height: 1.6; 
        margin: 0; 
    }
    .ois-connector { display: none; }

    /* ─ PRODUCTS ─ */
    .products-section { overflow: hidden; }
    .products-inner { padding: 40px 0 0; }
    .prod-header { padding: 0 20px 32px; }
    .prod-header h2 { font-size: 1.9rem; }
    .prod-stack { overflow: hidden; }
    .prod-item { grid-template-columns: 1fr; min-height: unset; }
    .prod-item--dark .prod-item-img { order: -1; }
    .prod-item-img { padding: 28px 20px; min-height: 220px; overflow: hidden; }
    .prod-item-img img { width: 68%; max-width: 260px; }
    .prod-item-num { font-size: 4.5rem; }
    .prod-item-pills { bottom: 12px; left: 12px; gap: 5px; flex-wrap: wrap; max-width: 90%; }
    .pip { font-size: 0.55rem; padding: 3px 8px; }
    .prod-item-body { padding: 24px 20px 32px; }
    .prod-item-tag { font-size: 0.57rem; padding: 3px 10px; margin-bottom: 12px; }
    .prod-item-body h3 { font-size: 1.5rem; letter-spacing: -0.4px; margin-bottom: 12px; }
    .prod-item-body p { font-size: 0.83rem; line-height: 1.68; max-width: 100%; }

    /* ─ CERT ─ */
    .cert-section { padding: 14px 20px; overflow: hidden; }
    .cert-inner { flex-wrap: wrap; gap: 10px; }
    .cert-globe { font-size: 1.2rem; }
    .cert-text strong { font-size: 0.82rem; }
    .cert-text span { font-size: 0.62rem; }
    .cert-badge-pill { font-size: 0.6rem; padding: 5px 10px; }

    /* ─ NUMBERS ─ */
    .numbers-section { overflow: hidden; }
    .numbers-inner { grid-template-columns: repeat(2,1fr); padding: 0; }
    .num-item { padding: 22px 16px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
    .num-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07); }
    .num-item:nth-child(3), .num-item:nth-child(4) { border-bottom: none; }
    .num-val { font-size: 1.75rem; }
    .num-lbl { font-size: 0.63rem; }

    /* ─ WHITE-LABEL ─ */
    .wl-section { padding: 40px 20px; overflow: hidden; }
    .wl-inner { grid-template-columns: 1fr; gap: 28px; }
    .wl-text h2 { font-size: 1.65rem; }
    .wl-text p { font-size: 0.85rem; }
    .wl-list li { font-size: 0.83rem; gap: 10px; }
    .wl-visual { order: -1; display: flex; justify-content: center; overflow: hidden; width: 100%; }
    .wl-phone-pair { transform: scale(0.78); transform-origin: top center; width: 100%; display: flex; justify-content: center; }

    /* ─ APP SHOWCASE ─ */
    .app-showcase { padding: 40px 16px 48px; overflow: hidden; }
    .section-header { margin-bottom: 24px; }
    .section-header h2 { font-size: 1.55rem; }
    .section-header p { font-size: 0.84rem; }
    .app-showcase-inner { flex-direction: column; align-items: center; gap: 20px; overflow: hidden; }
    .app-phone-wrap { position: static; flex: none; width: 260px !important; }
    .app-phone { width: 260px !important; height: 556px; border-radius: 38px; }
    .app-notch { width: 80px; height: 22px; top: 12px; }
    .app-tab-menu { width: 100%; flex-direction: row; overflow-x: auto; gap: 5px; padding: 0 2px 8px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
    .app-tab-menu::-webkit-scrollbar { display: none; }
    .atm-item { flex-direction: column; align-items: center; text-align: center; gap: 3px; min-width: 64px; padding: 8px 5px; border-radius: 10px; flex-shrink: 0; }
    .atm-text p { display: none; }
    .atm-text h4 { font-size: 0.58rem; white-space: nowrap; }
    .atm-arrow { display: none; }
    .atm-icon { width: 26px; height: 26px; }

    /* ─ SPECS ─ */
    .specs-section { padding: 40px 20px; overflow: hidden; }
    .specs-container { padding: 0; background: transparent; border: none; box-shadow: none; }
    .specs-tabs { gap: 4px; overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; margin-bottom: 14px; border-bottom: 1.5px solid var(--border); -webkit-overflow-scrolling: touch; }
    .specs-tabs::-webkit-scrollbar { display: none; }
    .stab { padding: 8px 14px; font-size: 0.72rem; white-space: nowrap; flex-shrink: 0; }
    .spec-panel.active { display: block; }
    .premium-table { width: 100%; background: #fff; border-radius: 12px; border: 1px solid var(--border); overflow: hidden; }
    .premium-table td { padding: 12px 14px; font-size: 0.8rem; word-break: break-word; }
    .premium-table td:first-child { font-size: 0.7rem; width: 40%; }
    .premium-table td:last-child { width: 60%; }

    /* ─ CTA ─ */
    .cta-section { padding: 40px 20px; overflow: hidden; }
    .cta-box { flex-direction: column; padding: 24px 20px; gap: 20px; border-radius: 18px; }
    .cta-text h2 { font-size: 1.5rem; }
    .cta-text p { font-size: 0.84rem; }
    .cta-image-wrapper { width: 100%; max-width: 320px; align-self: center; }
    .btn-primary { margin-top: 14px; padding: 12px 24px; font-size: 0.875rem; }

    /* ─ SUPPORT ─ */
    .support-section { padding: 40px 20px 48px; overflow: hidden; }
    .support-header { margin-bottom: 32px; }
    .support-header h2 { font-size: 1.7rem; }
    .support-header p { font-size: 0.85rem; }
    .support-layout { grid-template-columns: 1fr; gap: 16px; }
    .wa-chat-widget { max-height: none; }
    .wa-chat-messages { min-height: 150px; max-height: 200px; }
    .wa-quick-replies { flex-wrap: wrap; gap: 6px; }
    .wa-qr { font-size: 0.7rem; padding: 6px 10px; }
    .support-info { gap: 10px; }
    .support-info-card { padding: 14px 16px; gap: 10px; }
    .support-info-card strong { font-size: 0.82rem; }
    .support-info-card span { font-size: 0.72rem; }
    .support-open-wa { padding: 12px 20px; font-size: 0.85rem; justify-content: center; }

    /* ─ FOOTER ─ */
    .site-footer { padding: 0; }
    .footer-inner { padding: 40px 20px 24px; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
    .footer-brand p { max-width: 100%; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
    .footer-seo-text { font-size: 0.56rem; padding: 0; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — SMALL PHONE (≤430px)
══════════════════════════════════════════ */
@media (max-width: 430px) {
    .oem-header { padding: 0 14px; height: 52px; }
    .main-nav { top: 52px; }
    .nav-logo-massive { height: 28px; }

    .hero-title { font-size: 2.1rem; letter-spacing: -0.4px; }
    .hero-subtitle { font-size: 0.82rem; }
    .hero-actions { gap: 8px; }
    .hero-btn-primary, .hero-btn-ghost { padding: 10px 18px; font-size: 0.82rem; }
    .hero-stats { border-radius: 12px; padding: 12px 0; }
    .hstat { padding: 2px 5px; }
    .hstat-val { font-size: 1.1rem; }
    .hstat-unit { font-size: 0.6rem; }
    .hstat-lbl { font-size: 0.4rem; }
    .hstat-div { height: 26px; }

    .eco-section { padding: 32px 0; }
    .eco-intro { padding: 0 16px; }
    .eco-title { font-size: 1.55rem; }
    .eco-sub { font-size: 0.8rem; }
    .scenario-bar { padding: 0 16px; }
    .eco-mobile-flow { padding: 0 14px 4px; }
    .emf-node { padding: 10px 12px; gap: 10px; }
    .emf-label { font-size: 0.72rem; }
    .emf-val { font-size: 0.6rem; }
    .emf-desc { font-size: 0.75rem; padding: 12px 14px; }

    .engineering-spotlight { padding: 32px 0; }
    .spotlight-container { padding: 0 16px; }
    .spotlight-text h2 { font-size: 1.45rem; }
    .eng-features li { font-size: 0.79rem; }

    .products-inner { padding: 32px 0 0; }
    .prod-header { padding: 0 16px 26px; }
    .prod-header h2 { font-size: 1.7rem; }
    .prod-item-img { padding: 22px 16px; min-height: 190px; }
    .prod-item-img img { width: 65%; }
    .prod-item-body { padding: 20px 16px 28px; }
    .prod-item-body h3 { font-size: 1.35rem; }
    .prod-item-body p { font-size: 0.8rem; }

    .oem-integration-section { padding: 32px 16px; }

    .numbers-inner { grid-template-columns: 1fr 1fr; }
    .num-item { padding: 18px 12px; }
    .num-val { font-size: 1.6rem; }
    .num-lbl { font-size: 0.6rem; }

    .wl-section { padding: 32px 16px; }
    .wl-phone-pair { transform: scale(0.7); }

    .app-showcase { padding: 32px 12px 40px; }
    .app-phone-wrap { width: 248px !important; }
    .app-phone { width: 248px !important; height: 530px; border-radius: 36px; }
    .app-notch { width: 76px; height: 20px; top: 11px; }
    .atm-item { min-width: 58px; padding: 7px 4px; }
    .atm-text h4 { font-size: 0.54rem; }
    .as-grid-4 { grid-template-columns: repeat(2,1fr); gap: 5px; }

    .specs-section { padding: 32px 16px; }
    .section-header h2 { font-size: 1.4rem; }
    .premium-table td { padding: 10px 12px; font-size: 0.76rem; }

    .cta-section { padding: 32px 16px; }
    .cta-box { padding: 20px 16px; }
    .cta-text h2 { font-size: 1.35rem; }

    .cert-section { padding: 12px 16px; }
    .cert-badge-pill { display: none; }

    .support-section { padding: 32px 16px 40px; }
    .support-header h2 { font-size: 1.5rem; }
    .wa-qr { font-size: 0.65rem; padding: 5px 9px; }
    .footer-inner { padding: 32px 16px 20px; }
    .footer-col { gap: 8px; }
    .footer-col a, .footer-address { font-size: 0.8rem; }
}

/* ── SEO footer text ── */
.footer-seo-text {
    font-size: 0.6rem; color: rgba(0,0,0,0.18);
    line-height: 1.5; margin: 8px 0 0;
    max-width: 600px; text-align: center;
}

/* ══════════════════════════════════════════
   TELEMETRY DASHBOARD
══════════════════════════════════════════ */
.telemetry-section {
    width: 100%;
    background: #040c1a;
    padding: 96px 24px 104px;
    position: relative; overflow: hidden;
}
.telemetry-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(0,102,204,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,102,204,0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}
.telemetry-inner { max-width: 1140px; margin: 0 auto; position: relative; z-index: 2; }

.tdb-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.tdb-header h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); color: #fff; margin: 8px 0 16px; letter-spacing: -0.5px; }
.tdb-header p { font-size: 0.95rem; color: rgba(255,255,255,0.4); line-height: 1.7; margin: 0; }

/* TABS */
.tdb-tabs {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 10px; margin-bottom: 32px;
}
.tdb-tab {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px; padding: 16px 14px;
    cursor: pointer; text-align: left;
    transition: all 0.2s; display: flex; flex-direction: column; gap: 3px;
    font-family: var(--font);
}
.tdb-tab:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.15); }
.tdb-tab.active {
    background: rgba(0,102,204,0.15);
    border-color: rgba(0,102,204,0.5);
    box-shadow: 0 0 0 1px rgba(0,102,204,0.2), 0 8px 24px rgba(0,102,204,0.1);
}
.tdb-tab-icon { font-size: 1.2rem; margin-bottom: 2px; }
.tdb-tab-label { font-size: 0.82rem; font-weight: 700; color: #fff; }
.tdb-tab-sub { font-size: 0.65rem; color: rgba(255,255,255,0.35); font-family: var(--mono); }
.tdb-tab.active .tdb-tab-label { color: #4da3ff; }
.tdb-tab.active .tdb-tab-sub { color: rgba(77,163,255,0.6); }

/* BODY */
.tdb-body {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px; padding: 28px;
}

/* PROTOCOL */
.tdb-protocol {
    border-left: 3px solid var(--accent);
    padding: 4px 0 4px 20px;
    margin-bottom: 28px;
}
.tdb-proto-tag { font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: rgba(77,163,255,0.7); margin-bottom: 6px; font-family: var(--mono); }
.tdb-proto-title { font-size: 1rem; font-weight: 700; color: #fff; margin: 0 0 10px; font-family: 'Poppins', sans-serif; }
.tdb-proto-text { font-size: 0.82rem; color: rgba(255,255,255,0.4); line-height: 1.7; margin: 0; }
.tdb-proto-text strong { color: rgba(255,255,255,0.7); font-weight: 600; }

/* CHARTS HEADER */
.tdb-charts-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.tdb-charts-label { display: flex; align-items: center; gap: 8px; font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.4); font-family: var(--mono); }
.tdb-charts-label-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.tdb-dot-blue { background: rgb(2,132,199); box-shadow: 0 0 6px rgba(2,132,199,0.5); }
.tdb-dot-amber { background: rgb(245,158,11); box-shadow: 0 0 6px rgba(245,158,11,0.5); }
.tdb-charts-hint { font-size: 0.65rem; color: rgba(255,255,255,0.25); font-family: var(--mono); }

/* LOADING */
.tdb-loading { display: flex; align-items: center; justify-content: center; gap: 14px; padding: 80px 0; color: rgba(255,255,255,0.35); font-size: 0.85rem; }
.tdb-spinner { width: 20px; height: 20px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.1); border-top-color: var(--accent); animation: spin 0.7s linear infinite; }

/* CHARTS */
.tdb-charts { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 28px; }
.tdb-chart-col {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px; padding: 16px 14px 8px; overflow: hidden; position: relative;
}
.tdb-chart-col--pp { border-top: 2px solid rgb(2,132,199); }
.tdb-chart-col--stock { border-top: 2px solid rgba(100,116,139,0.6); }
.tdb-chart-badge {
    display: inline-block; font-size: 0.62rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px; font-family: var(--mono);
    margin-bottom: 10px;
}
.tdb-badge--pp { color: rgb(2,132,199); }
.tdb-badge--stock { color: rgba(100,116,139,0.8); }
.tdb-chart-canvas { min-height: 320px; }

.tdb-error { text-align: center; padding: 40px 20px; color: rgba(255,100,100,0.7); font-size: 0.85rem; border: 1px solid rgba(227,0,0,0.2); border-radius: 8px; background: rgba(227,0,0,0.05); }

/* RESULTS */
.tdb-results { margin-bottom: 28px; }
.tdb-section-label { font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.25); margin-bottom: 14px; font-family: var(--mono); }
.tdb-metrics { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; }
.tdb-metric {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px; padding: 18px 18px 14px;
    position: relative; overflow: hidden;
}
.tdb-metric::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: rgba(255,255,255,0.1); }
.tdb-metric--pp::before { background: rgb(2,132,199); }
.tdb-metric--stock::before { background: rgb(100,116,139); }
.tdb-metric--delta::before { background: var(--green); }
.tdb-metric-lbl { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.35); margin-bottom: 8px; font-family: var(--mono); }
.tdb-metric-val { font-size: 1.9rem; font-weight: 700; color: #fff; line-height: 1; font-family: 'Poppins', sans-serif; }
.tdb-metric--delta .tdb-metric-val { color: #34d399; }
.tdb-metric-val span { font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.4); margin-left: 3px; }
.tdb-metric-sub { font-size: 0.68rem; color: rgba(255,255,255,0.28); margin-top: 8px; line-height: 1.4; font-family: var(--mono); }

/* SUMMARY */
.tdb-summary {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 24px;
}
.tdb-summary-header { margin-bottom: 16px; }
.tdb-summary-tag { font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: #34d399; margin-bottom: 6px; font-family: var(--mono); }
.tdb-summary-title { font-size: 1rem; font-weight: 700; color: #fff; font-family: 'Poppins', sans-serif; }
.tdb-summary-list { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 12px; }
.tdb-summary-list li { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.65; padding-left: 14px; border-left: 2px solid rgba(52,211,153,0.3); }
.tdb-summary-list strong { color: rgba(255,255,255,0.8); font-weight: 600; display: block; margin-bottom: 3px; }

/* Mobile */
@media (max-width: 768px) {
    .telemetry-section { padding: 48px 16px 56px; }
    .tdb-header { margin-bottom: 36px; }
    .tdb-header h2 { font-size: 1.7rem; }
    .tdb-tabs { grid-template-columns: repeat(2, 1fr); gap: 8px; margin-bottom: 20px; }
    .tdb-tab { padding: 12px; }
    .tdb-tab-label { font-size: 0.75rem; }
    .tdb-body { padding: 18px 16px; }
    .tdb-charts { grid-template-columns: 1fr; gap: 12px; }
    .tdb-chart-canvas { min-height: 260px; }
    .tdb-metrics { grid-template-columns: 1fr 1fr; gap: 8px; }
    .tdb-metric-val { font-size: 1.5rem; }
    .tdb-summary-list { grid-template-columns: 1fr; }
}
@media (max-width: 430px) {
    .tdb-tabs { grid-template-columns: 1fr 1fr; }
    .tdb-tab-icon { font-size: 1rem; }
    .tdb-metrics { grid-template-columns: 1fr; }
}
/* ══════════════════════════════════════════
   SPECS: PREMIUM TABLE DESIGN
══════════════════════════════════════════ */
.specs-table-section {
    background: #fbfbfd;
    padding: 100px 24px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.sts-header { text-align: center; max-width: 600px; margin: 0 auto 50px; }
.sts-header .eyebrow { 
    color: var(--accent); font-family: var(--mono); font-weight: 700; 
    letter-spacing: 2px; text-transform: uppercase; font-size: 0.7rem; 
    margin-bottom: 12px; display: block; 
}
.sts-header h2 { 
    font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; 
    color: var(--text); letter-spacing: -0.5px; margin: 0 0 16px; 
    font-family: 'Poppins', sans-serif;
}
.sts-header p { font-size: 1.05rem; color: var(--muted); line-height: 1.6; margin: 0; }

.sts-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 30px; flex-wrap: wrap; }
.sts-tab {
    background: transparent; border: 1px solid transparent; color: var(--muted);
    padding: 8px 18px; border-radius: 30px; font-size: 0.85rem; font-weight: 600;
    cursor: pointer; transition: all 0.2s ease; font-family: var(--font);
}
.sts-tab:hover { color: var(--text); background: rgba(0,0,0,0.03); }
.sts-tab.active { 
    background: #fff; color: var(--accent); border-color: var(--border); 
    box-shadow: 0 2px 8px rgba(0,0,0,0.04); 
}

.sts-container {
    max-width: 900px; margin: 0 auto;
    background: #fff; border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px; overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.03);
}

.sts-panel { display: none; animation: fadeIn 0.3s ease; }
.sts-panel.active { display: block; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.sts-table { width: 100%; border-collapse: collapse; text-align: left; }
.sts-table tr { border-bottom: 1px solid rgba(0,0,0,0.06); transition: background 0.2s; }
.sts-table tr:last-child { border-bottom: none; }
.sts-table tr:hover { background: #fcfcfd; }

.sts-table td { padding: 18px 24px; vertical-align: middle; }
.sts-lbl { width: 40%; font-size: 0.82rem; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.sts-val { width: 60%; font-size: 0.95rem; color: var(--text); font-weight: 500; line-height: 1.5; }
.sts-val strong { color: var(--accent); font-weight: 700; }
.sts-val .sub-text { display: block; font-size: 0.75rem; color: var(--muted); margin-top: 4px; }
.sts-val.mono { font-family: var(--mono); }

/* Mobile optimization: stack the table cells vertically so it doesn't squish */
@media (max-width: 768px) {
    .specs-table-section { padding: 60px 20px; }
    .sts-table td { padding: 14px 20px; display: block; width: 100%; }
    .sts-lbl { padding-bottom: 4px; font-size: 0.75rem; border-bottom: none; }
    .sts-val { padding-top: 0; font-size: 0.95rem; }
}
/* ══════════════════════════════════════════
   OPERATIONS & SUPPLY CHAIN SECTION
══════════════════════════════════════════ */
.supply-chain-section {
    background: #050a15;
    padding: 100px 5%;
    border-bottom: 1px solid var(--border);
}
.sc-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.sc-text .eyebrow {
    color: var(--accent); font-family: var(--mono); font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase; font-size: 0.7rem;
    margin-bottom: 12px; display: block;
}
.sc-text h2 {
    font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800;
    color: var(--text); letter-spacing: -0.5px; margin: 0 0 20px;
    font-family: 'Poppins', sans-serif;
}
.sc-text p {
    font-size: 1.05rem; color: var(--muted); line-height: 1.6; margin: 0 0 40px;
}
.sc-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.sc-feature {
    display: flex;
    gap: 20px;
}
.sc-icon {
    width: 54px; height: 54px;
    background: rgba(0,102,204,0.06);
    color: var(--accent);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; flex-shrink: 0;
}
.sc-feature h4 {
    font-size: 1.15rem; font-weight: 700; color: var(--text); margin: 0 0 8px;
    font-family: 'Poppins', sans-serif;
}
.sc-feature p {
    font-size: 0.95rem; color: var(--muted); margin: 0; line-height: 1.6;
}

/* Stats grid replacing map pin */
.sc-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.sc-stat {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px;
    border-top: 3px solid var(--accent);
}
.sc-stat-val {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem; font-weight: 700;
    color: var(--text); line-height: 1; margin-bottom: 8px;
}
.sc-stat-lbl {
    font-size: 0.8rem; color: var(--muted); line-height: 1.4;
}

/* Legacy map visual — hide */
.sc-visual {
    position: relative;
    border-radius: 24px;
    background: #fbfbfd;
    height: 500px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 60px rgba(0,0,0,0.02);
}
.sc-grid-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    color: var(--accent);
}
.sc-pin {
    position: absolute;
    display: flex; flex-direction: column; align-items: center;
    animation: floatPin 4s ease-in-out infinite;
    z-index: 2;
}
.sc-pin-dot {
    width: 18px; height: 18px; background: var(--accent); border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(0,102,204,0.15);
    position: relative;
}
.sc-pin-dot::after {
    content: ''; position: absolute; top: -6px; left: -6px; right: -6px; bottom: -6px;
    border: 2px solid var(--accent); border-radius: 50%;
    animation: pulseRing 2.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
.sc-pin-label {
    background: #fff; color: var(--text); font-weight: 700; font-size: 0.85rem;
    padding: 8px 16px; border-radius: 20px; margin-top: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08); border: 1px solid rgba(0,0,0,0.04);
}

@keyframes floatPin { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes pulseRing { 0% { transform: scale(0.8); opacity: 1; } 100% { transform: scale(2.5); opacity: 0; } }

@media (max-width: 900px) {
    .sc-inner { grid-template-columns: 1fr; gap: 50px; }
    .supply-chain-section { padding: 60px 20px; }
    .sc-visual { height: 350px; }
}
/* ══════════════════════════════════════════
   CLEAN B2B CONTACT SECTION
══════════════════════════════════════════ */
.oem-contact-section {
    background: #ffffff;
    padding: 120px 24px;
    color: #1d1d1f;
    border-top: 1px solid var(--border);
}
.oc-inner { 
    max-width: 1140px; margin: 0 auto; 
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; 
}
.oc-text h2 {
    font-size: clamp(2.4rem, 4vw, 3rem); font-weight: 800; color: #1d1d1f;
    margin: 0 0 16px; font-family: 'Poppins', sans-serif; line-height: 1.1;
    letter-spacing: -1px;
}
.oc-text p {
    font-size: 1.05rem; color: #64748b; line-height: 1.7; margin: 0 0 48px; max-width: 440px;
}

/* Clean, flat contact details */
.oc-cards { display: flex; flex-direction: column; gap: 32px; }
.oc-card { display: flex; gap: 20px; align-items: flex-start; background: transparent; border: none; padding: 0; }
.oc-icon { 
    width: 48px; height: 48px; background: rgba(0, 102, 204, 0.08); 
    color: #0066cc; border-radius: 12px; display: flex; align-items: center; 
    justify-content: center; font-size: 1.4rem; flex-shrink: 0; 
}
.oc-card h4 { margin: 0 0 4px 0; font-size: 1.1rem; color: #1d1d1f; font-family: 'Poppins', sans-serif; font-weight: 700; }
.oc-card p { margin: 0; color: #64748b; font-size: 0.95rem; line-height: 1.5; }
.oc-card a { color: #0066cc; text-decoration: none; font-weight: 600; font-size: 0.95rem; display: inline-block; margin-top: 6px; }
.oc-card a:hover { text-decoration: underline; color: #0052a3; }

/* Flat, integrated form box */
.oc-form-box { 
    background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 24px; padding: 48px 40px; 
}
.oc-form-box h3 { color: #0f172a; font-size: 1.5rem; font-family: 'Poppins', sans-serif; margin: 0 0 8px; font-weight: 700; letter-spacing: -0.5px; }
.oc-form-box p { color: #64748b; font-size: 0.95rem; margin: 0 0 32px; }
.oc-form { display: flex; flex-direction: column; gap: 20px; }
.oc-input-group { display: flex; flex-direction: column; gap: 8px; }
.oc-input-group label { 
    font-size: 0.75rem; font-weight: 700; color: #475569; 
    text-transform: uppercase; letter-spacing: 0.5px; 
}
.oc-input, .oc-select { 
    background: #ffffff; border: 1px solid #cbd5e1; padding: 16px; 
    border-radius: 12px; font-size: 0.95rem; color: #0f172a; 
    font-family: var(--font); outline: none; transition: all 0.2s; 
}
.oc-input:focus, .oc-select:focus { border-color: #0066cc; box-shadow: 0 0 0 4px rgba(0,102,204,0.1); }
.oc-btn { 
    background: #0066cc; color: #fff; border: none; padding: 18px; 
    border-radius: 12px; font-weight: 700; font-size: 1.05rem; cursor: pointer; 
    transition: background 0.2s; margin-top: 12px; font-family: var(--font); 
}
.oc-btn:hover { background: #0052a3; }
/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.precision-footer {
    background: #07101f;
    color: rgba(255,255,255,0.45);
    border-top: 1px solid rgba(255,255,255,0.07);
}

/* Top accent bar */
.precision-footer::before {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(90deg, #0066cc, #4da3ff, transparent);
}

.pf-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 56px;
    padding: 72px 32px 56px;
}

/* Brand */
.pf-brand { padding-right: 24px; }
.pf-logo {
    height: 36px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    margin-bottom: 20px;
    display: block;
}
.pf-desc {
    font-size: 0.86rem; line-height: 1.7;
    color: rgba(255,255,255,0.38);
    margin-bottom: 24px; max-width: 300px;
}
.pf-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.pf-badge {
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem; letter-spacing: 0.8px;
    color: rgba(255,255,255,0.35);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 4px 10px; border-radius: 3px;
}

/* Link columns */
.pf-col { display: flex; flex-direction: column; }
.pf-col-title {
    font-size: 0.7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px; font-family: 'DM Mono', monospace;
}
.pf-links {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 12px;
}
.pf-links a {
    color: rgba(255,255,255,0.38); text-decoration: none;
    font-size: 0.86rem; transition: color 0.2s;
    display: inline-flex; align-items: center; gap: 4px;
}
.pf-links a:hover { color: rgba(255,255,255,0.8); }

/* Bottom bar */
.pf-bottom {
    max-width: 1140px; margin: 0 auto;
    padding: 20px 32px 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.76rem; color: rgba(255,255,255,0.25);
    flex-wrap: wrap; gap: 8px;
}
.pf-bottom-links { display: flex; gap: 20px; }
.pf-bottom-links a {
    color: rgba(255,255,255,0.25); text-decoration: none; transition: color 0.2s;
}
.pf-bottom-links a:hover { color: rgba(255,255,255,0.6); }

@media (max-width: 900px) {
    .pf-inner { grid-template-columns: 1fr 1fr; gap: 40px; padding: 48px 20px 40px; }
    .pf-brand { grid-column: 1 / -1; padding-right: 0; }
    .pf-bottom { padding: 16px 20px 24px; }
}
@media (max-width: 600px) {
    .pf-inner { grid-template-columns: 1fr; gap: 40px; }
    .pf-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .pf-bottom-links { flex-wrap: wrap; justify-content: center; }
}
/* ══════════════════════════════════════════
   INTEGRATED STUDIO CTA (HARDWARE SHOWCASE)
══════════════════════════════════════════ */
.studio-cta-section {
    background: linear-gradient(180deg, #ffffff 0%, #f2f2f7 100%); /* Soft studio floor */
    padding: 120px 24px 0; /* ZERO bottom padding - this is the secret */
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0,0,0,0.03);
}

.scta-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-end; /* Forces the image to the very bottom */
    gap: 40px;
}

/* Left: Typography */
.scta-text {
    padding-bottom: 120px; /* Balances the text so it looks centered vertically */
}

.scta-eyebrow {
    font-family: var(--mono, monospace);
    color: #0066cc; 
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 20px;
    display: block;
}

.scta-title {
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 800;
    color: #1d1d1f;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin: 0 0 24px 0;
    font-family: 'Poppins', sans-serif;
}

.scta-desc {
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 40px 0;
    max-width: 450px;
}

/* Buttons */
/* Stack buttons neatly on mobile */
    .scta-actions { 
        display: flex;
        flex-direction: column; 
        width: 100%; 
        max-width: 320px; 
    }
    
    .scta-actions a { 
        width: 100%; 
        justify-content: center; 
        text-align: center; 
    }
.scta-btn-primary {
    background: #0066cc;
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 40px;
    font-weight: 600;
    font-family: var(--font, sans-serif);
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.2);
}
.scta-btn-primary:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 102, 204, 0.3);
}

.scta-btn-secondary {
    background: transparent;
    color: #1d1d1f;
    padding: 16px 36px;
    border-radius: 40px;
    font-weight: 600;
    font-family: var(--font, sans-serif);
    text-decoration: none;
    border: 2px solid rgba(0,0,0,0.1);
    transition: all 0.2s;
}
.scta-btn-secondary:hover {
    border-color: #1d1d1f;
}

/* Right: Grounded Image */
.scta-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

/* The Spotlight Glow */
.scta-visual::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 80%;
    background: radial-gradient(ellipse at bottom, rgba(0, 102, 204, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.scta-image {
    position: relative;
    z-index: 1;
    width: 120%; /* Intentionally oversized to break out of the column slightly */
    max-width: 650px;
    height: auto;
    display: block;
    margin-bottom: -5px; /* Sits completely flush against the next section */
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.08)); /* Adds realistic depth */
}

/* Mobile Styling */
/* Mobile Styling */
@media (max-width: 900px) {
    .studio-cta-section { padding: 80px 24px 0 !important; }
    
    /* OVERRIDE HTML INLINE STYLES */
    .scta-inner { 
        display: grid !important; 
        grid-template-columns: 1fr !important; 
        gap: 40px !important; 
        align-items: center; 
    }
    
    /* KILL INLINE MIN-WIDTHS CAUSING OVERFLOW */
    .scta-text, .scta-visual {
        min-width: 0 !important;
    }
    
    .scta-text { padding-bottom: 0; text-align: center; display: flex; flex-direction: column; align-items: center; }
    .scta-actions { justify-content: center; }
    .scta-image { width: 100%; max-width: 500px; }
}
/* COMPACT MOBILE ARCHITECTURE DASHBOARD */
.eco-desktop-only { display: flex; }
.eco-mobile-dashboard { display: none; }

@media (max-width: 768px) {
    .eco-desktop-only { display: none !important; }
    
    /* This creates the class you were missing! */
    .eco-mobile-dashboard {
        display: flex; flex-direction: column; align-items: center;
        width: 100%; max-width: 480px; margin: 0 auto;
        padding: 0 16px; gap: 4px;
    }
    .emd-row {
        display: flex; width: 100%; gap: 12px; justify-content: center;
    }
    .emd-card {
        flex: 1; background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,255,255,0.08); border-radius: 14px;
        padding: 14px 10px; display: flex; flex-direction: column; 
        align-items: center; text-align: center; gap: 8px;
        backdrop-filter: blur(10px);
    }
    .emd-master {
        background: rgba(0,102,204,0.08); border-color: rgba(77,163,255,0.25);
        max-width: 260px; box-shadow: 0 8px 24px rgba(0,102,204,0.1);
    }
    .emd-icon {
        width: 34px; height: 34px; border-radius: 9px; 
        display: flex; align-items: center; justify-content: center; 
        background: rgba(255,255,255,0.05);
    }
    .emd-icon svg { width: 18px; height: 18px; }
    .emd-icon.amber { color: #f59e0b; background: rgba(245,158,11,0.12); border: 1px solid rgba(245,158,11,0.2); }
    .emd-icon.blue { color: #4da3ff; background: rgba(77,163,255,0.12); border: 1px solid rgba(77,163,255,0.2); }
    .emd-icon.green { color: #34d399; background: rgba(52,211,153,0.12); border: 1px solid rgba(52,211,153,0.2); }
    .emd-icon.gray { color: #e5e5ea; border: 1px solid rgba(255,255,255,0.1); }
    
    .emd-info h4 { font-size: 0.6rem; font-weight: 800; color: rgba(255,255,255,0.4); margin: 0 0 2px; text-transform: uppercase; letter-spacing: 0.5px; }
    .emd-info span { font-family: var(--mono); font-size: 0.8rem; color: #fff; font-weight: 700; }
    
    .emd-firmware { font-size: 0.55rem; color: #4da3ff; letter-spacing: 1px; text-transform: uppercase; margin-top: 2px; font-weight: 700;}
    
    .emd-connector { height: 28px; display: flex; align-items: center; justify-content: center; position: relative; width: 100%; }
    .emd-connector::after { content: ''; width: 2px; height: 100%; background: linear-gradient(180deg, rgba(77,163,255,0.1), rgba(77,163,255,0.6)); }
    .emd-connector span { 
        position: absolute; background: #040c1a; font-size: 0.55rem; color: #4da3ff; 
        font-weight: 700; padding: 3px 10px; border: 1px solid rgba(77,163,255,0.2); border-radius: 12px; 
    }
}/* =====================================================
   POWERPEDAL — COMPLETE MOBILE STYLESHEET
   Covers: ≤768px (mobile) and ≤430px (small phone)
   Strategy: override, not patch. Full section coverage.
   ===================================================== */

/* ─────────────────────────────────────────
   0. GLOBAL RESETS & OVERFLOW GUARDS
───────────────────────────────────────── */
html {
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}
body {
    overflow-x: hidden;
    max-width: 100vw;
}
*, *::before, *::after {
    box-sizing: border-box;
    min-width: 0; /* prevents flex/grid blowout */
}
img, svg, video {
    max-width: 100%;
    height: auto;
}


/* ─────────────────────────────────────────
   1. HEADER / NAV
───────────────────────────────────────── */
@media (max-width: 768px) {
    .oem-header {
        height: 56px;
        padding: 0 16px;
        background: rgba(4, 12, 26, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255,255,255,0.07);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .header-right {
        display: flex;
        align-items: center;
        margin-left: auto;
    }
    .nav-logo-massive { height: 30px; }
    .nav-support-pill { display: none; }
    .status-box { display: none; }
    
    /* Perfect Hamburger Menu Alignment */
    .nav-hamburger { 
        display: flex !important; 
        flex-direction: column !important;
        justify-content: center !important; 
        align-items: center !important;
        width: 48px !important;
        height: 48px !important;
        padding: 0 !important;
        margin-right: -8px !important;
    }
    .mobile-nav-only { display: flex !important; }

    /* Dropdown menu */
    .main-nav {
        display: none;
        position: fixed;
        top: 56px; 
        left: 0; 
        right: 0;
        width: 100% !important;
        transform: none !important;  
        border-radius: 0 !important; 
        background: rgba(4,12,26,0.98);
        backdrop-filter: blur(24px);
        flex-direction: column;
        padding: 8px 0 24px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        z-index: 999;
        box-shadow: 0 20px 48px rgba(0,0,0,0.5);
    }
    .main-nav.open { display: flex; }
    .main-nav a {
        padding: 15px 20px;
        font-size: 1rem;
        color: rgba(255,255,255,0.75);
        border-bottom: 1px solid rgba(255,255,255,0.05);
        border-radius: 0;
        min-height: 52px;
        display: flex;
        align-items: center;
    }
    .main-nav a:last-child { border-bottom: none; }
    .nav-support-link {
        margin: 10px 16px 4px !important;
        padding: 13px 16px !important;
        border-radius: 10px !important;
        font-size: 0.95rem !important;
    }
}

@media (max-width: 430px) {
    .oem-header { height: 52px; padding: 0 14px; }
    .main-nav { top: 52px; }
    .nav-logo-massive { height: 27px; }
}


/* ─────────────────────────────────────────
   2. HERO SECTION
───────────────────────────────────────── */
@media (max-width: 768px) {
    section[id] { scroll-margin-top: 56px; }

    .hero-section {
        height: 100svh;
        min-height: 580px;
    }
    .hero-content {
        padding: 72px 20px 0;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-title {
        font-size: clamp(2.2rem, 8.5vw, 3.2rem);
        letter-spacing: -1px;
        line-height: 1.05;
        margin-bottom: 14px;
        text-align: center;
    }
    .hero-subtitle {
        font-size: 0.88rem;
        line-height: 1.65;
        margin-bottom: 28px;
        text-align: center;
    }
    .hero-actions {
        gap: 10px;
        margin-bottom: 32px;
        justify-content: center;
        flex-wrap: wrap;
    }
    .hero-btn-primary,
    .hero-btn-ghost {
        padding: 12px 22px;
        font-size: 0.88rem;
    }

    /* Stats bar */
    .hero-stats {
        padding: 12px 0;
        border-radius: 12px;
        width: 100%;
        max-width: 100%;
        flex-wrap: nowrap;
        overflow: hidden;
    }
    .hstat {
        flex: 1;
        padding: 3px 5px;
        min-width: 0;
    }
    .hstat-val {
        font-size: clamp(1.05rem, 4vw, 1.35rem);
        letter-spacing: -0.3px;
    }
    .hstat-unit { font-size: 0.6rem; }
    .hstat-lbl {
        font-size: 0.42rem;
        letter-spacing: 0.3px;
        line-height: 1.3;
        white-space: normal;
        word-break: break-word;
    }
    .hstat-div { height: 28px; }
}
@media (max-width: 430px) {
    .hero-content { padding: 64px 16px 0; }
    .hero-title { font-size: clamp(1.95rem, 7.5vw, 2.4rem); }
    .hero-subtitle { font-size: 0.82rem; }
    .hero-btn-primary, .hero-btn-ghost { padding: 11px 18px; font-size: 0.82rem; }
    .hstat-val { font-size: 1rem; }
    .hstat-lbl { font-size: 0.38rem; }
}


/* ─────────────────────────────────────────
   3. ARCHITECTURE (DATA FLOW) SECTION
───────────────────────────────────────── */
@media (max-width: 768px) {
    .eco-section {
        padding: 48px 16px 44px;
        overflow: hidden;
    }

    /* Intro text */
    .eco-intro {
        text-align: center;
        max-width: 100%;
        margin: 0 auto 28px !important; /* override inline style */
        padding: 0 0 24px;
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .eco-title {
        font-size: clamp(1.5rem, 5.5vw, 2rem);
        letter-spacing: -0.5px;
    }
    .eco-sub {
        font-size: 0.84rem;
        max-width: 100%;
        line-height: 1.65;
    }

    /* Scenario bar — kill inline styles */
    .scenario-bar {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto 28px !important;
        padding: 0;
    }
    .scenario-track {
        width: 100%;
        padding: 10px 16px;
        gap: 10px;
        justify-content: center;
        flex-wrap: nowrap;
    }
    .scenario-item { gap: 5px; }
    .sc-label { font-size: 0.6rem; white-space: nowrap; }
    .scenario-divider { font-size: 0.8rem; }
    .scenario-progress-bar { width: 100%; max-width: 200px; }

    /* DESKTOP canvas — hidden on mobile */
    .eco-desktop-only {
        display: none !important;
    }

    /* MOBILE DASHBOARD — shown on mobile */
    .eco-mobile-dashboard {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        gap: 0;
        padding: 0 4px;
    }
    .emd-row {
        display: flex;
        width: 100%;
        gap: 10px;
        justify-content: center;
    }
    .emd-card {
        flex: 1;
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 14px;
        padding: 14px 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
        backdrop-filter: blur(10px);
    }
    .emd-master {
        background: rgba(0,102,204,0.08);
        border-color: rgba(77,163,255,0.25);
        max-width: 240px;
        width: 100%;
        box-shadow: 0 8px 24px rgba(0,102,204,0.1);
    }
    .emd-icon {
        width: 36px; height: 36px;
        border-radius: 10px;
        display: flex; align-items: center; justify-content: center;
        background: rgba(255,255,255,0.05);
    }
    .emd-icon svg { width: 18px; height: 18px; }
    .emd-icon.amber { color: #f59e0b; background: rgba(245,158,11,0.12); border: 1px solid rgba(245,158,11,0.2); }
    .emd-icon.blue  { color: #4da3ff; background: rgba(77,163,255,0.12); border: 1px solid rgba(77,163,255,0.2); }
    .emd-icon.green { color: #34d399; background: rgba(52,211,153,0.12); border: 1px solid rgba(52,211,153,0.2); }
    .emd-icon.gray  { color: #e5e5ea; border: 1px solid rgba(255,255,255,0.1); }
    .emd-info h4 {
        font-size: 0.58rem; font-weight: 800;
        color: rgba(255,255,255,0.4);
        margin: 0 0 2px;
        text-transform: uppercase; letter-spacing: 0.5px;
    }
    .emd-info span {
        font-family: 'DM Mono', monospace;
        font-size: 0.78rem; color: #fff; font-weight: 700;
    }
    .emd-firmware {
        font-size: 0.54rem; color: #4da3ff;
        letter-spacing: 1px; text-transform: uppercase;
        margin-top: 2px; font-weight: 700;
    }
    .emd-connector {
        height: 30px;
        display: flex; align-items: center; justify-content: center;
        position: relative; width: 100%;
    }
    .emd-connector::after {
        content: '';
        width: 2px; height: 100%;
        background: linear-gradient(180deg, rgba(77,163,255,0.15), rgba(77,163,255,0.6));
    }
    .emd-connector span {
        position: absolute;
        background: #080e1f;
        font-size: 0.52rem; color: #4da3ff;
        font-weight: 700; padding: 3px 10px;
        border: 1px solid rgba(77,163,255,0.2);
        border-radius: 12px;
    }
}
@media (max-width: 430px) {
    .eco-section { padding: 36px 14px 36px; }
    .eco-title { font-size: 1.45rem; }
    .eco-sub { font-size: 0.8rem; }
    .emd-card { padding: 12px 8px; }
    .emd-info span { font-size: 0.72rem; }
    .emd-master { max-width: 220px; }
}


/* ─────────────────────────────────────────
   4. FULL-STACK SECTION (workshop visual)
   THE BIG ONE — 3D ISO cube is broken on mobile.
   We hide the 550px tall visual entirely and show
   clean stacked text + a simple layer diagram.
───────────────────────────────────────── */
@media (max-width: 768px) {
    .engineering-spotlight {
        padding: 48px 0 44px !important;
        overflow: hidden;
    }

    /* Force single column */
    .spotlight-container {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
        padding: 0 20px !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    /* Text block */
    .spotlight-text h2 {
        font-size: clamp(1.55rem, 5.5vw, 1.9rem);
        margin-top: 6px;
        letter-spacing: -0.5px;
        line-height: 1.1;
    }
    .spotlight-text p {
        font-size: 0.86rem;
        line-height: 1.68;
        margin-top: 10px;
    }
    .eng-features { margin: 20px 0; }
    .eng-features li {
        font-size: 0.82rem;
        gap: 12px;
        margin-bottom: 16px;
        line-height: 1.6;
    }
    .btn-primary { margin-top: 16px; padding: 12px 24px; font-size: 0.875rem; }

/* ════ 4. FULL-STACK SECTION (Mobile Micro-HUD) ════ */
    
    /* 1. Restore fixed height to contain the floating elements */
    .workshop-visual {
        width: 100% !important;
        height: 380px !important; 
        perspective: 1200px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: relative !important; /* Crucial for floating labels */
        padding: 0 !important;
    }

    /* 2. Keep the natively shrunken 3D cube */
    .iso-wrapper {
        display: block !important;
        width: 160px !important;
        height: 160px !important;
        margin: 0 auto !important;
        animation: floatIso 8s ease-in-out infinite alternate !important;
    }
    .plane-software { transform: translateZ(80px) !important; }
    .plane-firmware { transform: translateZ(0px) !important; }
    .plane-hardware { transform: translateZ(-80px) !important; }
    .iso-data-core  { height: 180px !important; }

    /* 3. The "Micro-HUD" Label Fix */
    .hud-label {
        position: absolute !important; /* Puts them back on the visual */
        min-width: 0 !important;       /* Kills the massive 200px desktop width */
        width: 130px !important;       /* Perfect size to tuck into phone corners */
        padding: 8px 10px !important;
        border-radius: 8px !important;
        border-left-width: 2px !important;
        background: rgba(5, 10, 15, 0.75) !important; /* Slightly transparent so cube shows through */
        z-index: 10 !important;
    }
    
    /* 4. Scale down the typography for the Micro-HUD */
    .hud-title { font-size: 0.5rem !important; letter-spacing: 0.5px !important; margin-bottom: 2px !important; }
    .hud-spec { font-size: 0.75rem !important; line-height: 1.1 !important; margin-bottom: 2px !important; }
    .hud-desc { font-size: 0.6rem !important; line-height: 1.2 !important; margin-top: 0 !important; }

    /* Hide the connecting lines on mobile (the tight layout looks cleaner without them) */
    .hud-line { display: none !important; }

/* ─────────────────────────────────────────
   5. OEM INTEGRATION STEPS
───────────────────────────────────────── */
@media (max-width: 768px) {
    .oem-integration-section { padding: 48px 20px; }
    .ois-inner .section-header { margin-bottom: 32px; }
    .ois-inner .section-header h2 { font-size: clamp(1.45rem, 5vw, 1.8rem); }
    .ois-inner .section-header p { font-size: 0.86rem; }
    .ois-steps { flex-direction: column; align-items: stretch; gap: 0; }
    .ois-step {
        flex-direction: row; text-align: left;
        align-items: flex-start; gap: 14px;
        padding: 18px 0;
        border-bottom: 1px solid var(--border);
    }
    .ois-step:last-child { border-bottom: none; }
    .ois-num { display: none; }
    .ois-icon { font-size: 1.6rem; flex-shrink: 0; margin-bottom: 0; }
    .ois-step h4 { font-size: 0.92rem; margin-bottom: 4px; }
    .ois-step p { font-size: 0.8rem; line-height: 1.6; }
    .ois-connector { display: none; }
}
@media (max-width: 430px) {
    .oem-integration-section { padding: 36px 16px; }
    .ois-step { padding: 14px 0; }
}


/* ─────────────────────────────────────────
   6. PRODUCTS SECTION
───────────────────────────────────────── */
@media (max-width: 768px) {
    .products-section { overflow: hidden; }
    .products-inner { padding: 48px 0 0; }
    .prod-header { padding: 0 20px 28px; margin-bottom: 0; }
    .prod-header .eyebrow { font-size: 0.6rem; }
    .prod-header h2 {
        font-size: clamp(1.7rem, 6vw, 2.1rem);
        letter-spacing: -0.5px;
    }
    .prod-header p { font-size: 0.84rem; line-height: 1.65; margin-top: 10px; }

    .prod-item {
        grid-template-columns: 1fr;
        min-height: unset;
    }
    .prod-item--dark .prod-item-img { order: -1; }
    .prod-item-img {
        padding: 28px 24px;
        min-height: 210px;
        overflow: hidden;
    }
    .prod-item-img img {
        width: 68%;
        max-width: 270px;
    }
    .prod-item-num { font-size: 5rem; }
    .prod-item-pills { bottom: 12px; left: 12px; gap: 5px; flex-wrap: wrap; max-width: calc(100% - 24px); }
    .pip { font-size: 0.55rem; padding: 3px 8px; }

    .prod-item-body { padding: 26px 20px 34px; }
    .prod-item--dark .prod-item-body { padding-left: 20px; padding-right: 20px; }
    .prod-item-tag { font-size: 0.58rem; padding: 3px 10px; margin-bottom: 12px; }
    .prod-item-body h3 {
        font-size: clamp(1.4rem, 5vw, 1.7rem);
        letter-spacing: -0.3px;
        margin-bottom: 12px;
    }
    .prod-item-body p { font-size: 0.84rem; line-height: 1.7; max-width: 100%; }
}
@media (max-width: 430px) {
    .products-inner { padding: 36px 0 0; }
    .prod-header { padding: 0 16px 22px; }
    .prod-header h2 { font-size: 1.6rem; }
    .prod-item-img { padding: 22px 16px; min-height: 185px; }
    .prod-item-img img { width: 64%; }
    .prod-item-body { padding: 20px 16px 28px; }
    .prod-item--dark .prod-item-body { padding-left: 16px; padding-right: 16px; }
    .prod-item-body h3 { font-size: 1.3rem; }
    .prod-item-body p { font-size: 0.8rem; }
}


/* ─────────────────────────────────────────
   7. SUPPLY CHAIN / OPERATIONS SECTION
   (heavy inline styles — must use high specificity)
───────────────────────────────────────── */
@media (max-width: 768px) {
    .supply-chain-section {
        padding: 48px 20px !important;
        overflow: hidden;
    }

    /* The section title + intro */
    .supply-chain-section > div { max-width: 100% !important; }

    .supply-chain-section h2 {
        font-size: clamp(1.8rem, 6.5vw, 2.4rem) !important;
        line-height: 1.1 !important;
    }
    .supply-chain-section > div > div:first-child p {
        font-size: 0.88rem !important;
    }

    /* Stats strip — force 2x2 grid */
    .supply-chain-section > div > div:nth-child(2) {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        margin-bottom: 40px !important;
    }
    .supply-chain-section > div > div:nth-child(2) > div {
        padding: 20px 12px !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    }
    .supply-chain-section > div > div:nth-child(2) > div:nth-child(odd) {
        border-right: 1px solid rgba(255,255,255,0.1) !important;
    }
    .supply-chain-section > div > div:nth-child(2) > div:nth-child(3),
    .supply-chain-section > div > div:nth-child(2) > div:nth-child(4) {
        border-bottom: none !important;
    }
    .supply-chain-section > div > div:nth-child(2) > div > div:first-child {
        font-size: 1.8rem !important;
    }
    .supply-chain-section > div > div:nth-child(2) > div > div:last-child {
        font-size: 0.65rem !important;
    }

    /* Feature grid — single column */
    .supply-chain-section > div > div:nth-child(3) {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
    .supply-chain-section > div > div:nth-child(3) > div h3 {
        font-size: 1.1rem !important;
        margin-bottom: 8px !important;
    }
    .supply-chain-section > div > div:nth-child(3) > div p {
        font-size: 0.84rem !important;
        line-height: 1.65 !important;
    }
    .supply-chain-section > div > div:nth-child(3) > div > div:first-child {
        width: 36px !important;
        height: 36px !important;
        margin-bottom: 12px !important;
    }
}
@media (max-width: 430px) {
    .supply-chain-section { padding: 36px 16px !important; }
    .supply-chain-section h2 { font-size: 1.55rem !important; }
    .supply-chain-section > div > div:nth-child(2) > div { padding: 16px 10px !important; }
    .supply-chain-section > div > div:nth-child(2) > div > div:first-child { font-size: 1.5rem !important; }
}


/* ─────────────────────────────────────────
   8. APP SHOWCASE
───────────────────────────────────────── */
@media (max-width: 768px) {
    .app-showcase { padding: 48px 16px 56px; overflow: hidden; }
    .section-header { margin-bottom: 24px; }
    .section-header h2 { font-size: clamp(1.4rem, 5.5vw, 1.75rem); letter-spacing: -0.4px; }
    .section-header p { font-size: 0.85rem; }

    /* Stack layout */
    .app-showcase-inner {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    /* Horizontal scroll tab bar */
    .app-tab-menu {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
        gap: 6px;
        padding: 2px 2px 10px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
    }
    .app-tab-menu::-webkit-scrollbar { display: none; }
    .atm-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 3px;
        min-width: 66px;
        max-width: 80px;
        padding: 9px 6px;
        border-radius: 12px;
        flex-shrink: 0;
    }
    .atm-text p { display: none; }
    .atm-text h4 { font-size: 0.6rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 64px; }
    .atm-arrow { display: none; }
    .atm-icon { width: 28px; height: 28px; border-radius: 9px; }
    .atm-icon svg { width: 15px; height: 15px; }

    /* Phone shell */
    .app-phone-wrap {
        position: static;
        flex: none;
        width: 268px !important;
        display: flex;
        justify-content: center;
    }
    .app-phone {
        width: 268px !important;
        height: 574px;
        border-radius: 40px;
    }
    .app-notch { width: 84px; height: 23px; top: 13px; }

    /* 4-col grid inside phone → 2-col */
    .as-grid-4 { grid-template-columns: repeat(2,1fr); gap: 6px; }
}
@media (max-width: 430px) {
    .app-showcase { padding: 36px 12px 44px; }
    .app-phone-wrap { width: 252px !important; }
    .app-phone { width: 252px !important; height: 538px; border-radius: 36px; }
    .app-notch { width: 78px; height: 21px; top: 12px; }
    .atm-item { min-width: 60px; padding: 7px 4px; }
    .atm-text h4 { font-size: 0.55rem; max-width: 56px; }
    .atm-icon { width: 24px; height: 24px; }
    .as-grid-4 { gap: 5px; }
}


/* ─────────────────────────────────────────
   9. TELEMETRY / TEST RESULTS SECTION
───────────────────────────────────────── */
@media (max-width: 768px) {
    .telemetry-section { padding: 48px 16px 56px; overflow: hidden; }
    .tdb-header { margin-bottom: 32px; }
    .tdb-header h2 { font-size: clamp(1.5rem, 5.5vw, 1.9rem); letter-spacing: -0.3px; }
    .tdb-header p { font-size: 0.85rem; }

    /* 4-col tabs → 2-col */
    .tdb-tabs {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-bottom: 20px;
    }
    .tdb-tab { padding: 12px 10px; }
    .tdb-tab-icon { font-size: 1.1rem; }
    .tdb-tab-label { font-size: 0.76rem; }
    .tdb-tab-sub { font-size: 0.58rem; }

    /* Body */
    .tdb-body { padding: 18px 14px; border-radius: 12px; }

    /* Protocol block */
    .tdb-protocol { margin-bottom: 20px; padding-left: 14px; }
    .tdb-proto-title { font-size: 0.9rem; }
    .tdb-proto-text { font-size: 0.78rem; }

/* Charts header */
    .tdb-charts-header { flex-direction: column; align-items: flex-start; gap: 6px; margin-bottom: 12px; }
    
    /* Change desktop hint to a mobile swipe indicator */
    .tdb-charts-hint { font-size: 0; }
    .tdb-charts-hint::after { 
        content: "⟷ Swipe charts to compare"; 
        font-size: 0.65rem; color: #4da3ff; font-weight: 700;
        background: rgba(77,163,255,0.1); padding: 4px 10px; border-radius: 12px;
    }

    /* SMART FIX: Turn stacked charts into a horizontal swipe carousel */
    .tdb-charts {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        margin-bottom: 20px;
        padding-bottom: 12px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .tdb-charts::-webkit-scrollbar { display: none; }
    
    .tdb-chart-col { 
        flex: 0 0 92%; /* Takes up 92% of screen, showing a peek of the next chart */
        scroll-snap-align: center;
        padding: 12px 10px 6px; 
    }
    
    /* Disable Plotly scroll-trap on mobile so the page scrolls smoothly */
    .tdb-chart-canvas { 
        min-height: 240px; 
        pointer-events: none; 
    }
    /* Metrics → 2-col */
    .tdb-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .tdb-metric { padding: 14px 12px 10px; }
    .tdb-metric-val { font-size: 1.4rem; }
    .tdb-metric-val span { font-size: 0.8rem; }
    .tdb-metric-lbl { font-size: 0.56rem; }
    .tdb-metric-sub { font-size: 0.62rem; }

    /* Summary */
    .tdb-summary { padding-top: 18px; }
    .tdb-summary-title { font-size: 0.9rem; }
    .tdb-summary-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .tdb-summary-list li { font-size: 0.8rem; padding-left: 12px; }
}
@media (max-width: 430px) {
    .telemetry-section { padding: 36px 14px 44px; }
    .tdb-tabs { gap: 6px; }
    .tdb-tab { padding: 10px 8px; }
    .tdb-tab-label { font-size: 0.7rem; }
    /* Metrics → 1-col on tiny phones */
    .tdb-metrics { grid-template-columns: 1fr; }
    .tdb-metric-val { font-size: 1.6rem; }
    .tdb-chart-canvas { min-height: 200px; }
}


/* ─────────────────────────────────────────
   10. SPECS TABLE SECTION
───────────────────────────────────────── */
@media (max-width: 768px) {
    .specs-table-section { padding: 48px 16px; }
    .sts-header { margin-bottom: 28px; }
    .sts-header h2 { font-size: clamp(1.5rem, 5.5vw, 1.9rem); }
    .sts-header p { font-size: 0.86rem; }
    .sts-tabs {
        gap: 6px;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        scrollbar-width: none;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
    }
    .sts-tabs::-webkit-scrollbar { display: none; }
    .sts-tab { font-size: 0.8rem; padding: 7px 14px; flex-shrink: 0; white-space: nowrap; }
    .sts-container { border-radius: 12px; }
/* Keep side-by-side with Grid */
    .sts-table, .sts-table tbody { display: block; width: 100%; }
    .sts-table tr { 
        display: grid; 
        grid-template-columns: 38% 1fr; 
        gap: 12px;
        align-items: baseline;
        padding: 14px 16px; 
        border-bottom: 1px solid rgba(0,0,0,0.07); 
    }
    .sts-table tr:last-child { border-bottom: none; }
    .sts-table td { display: block; width: auto; padding: 0; }
    .sts-lbl { padding-bottom: 0; border-bottom: none; font-size: 0.65rem; line-height: 1.4; }
    .sts-val { padding-top: 0; font-size: 0.85rem; }
}
@media (max-width: 430px) {
    .specs-table-section { padding: 36px 14px; }
    .sts-tab { font-size: 0.72rem; padding: 6px 12px; }
    .sts-table tr { padding: 12px 14px; gap: 8px; grid-template-columns: 42% 1fr; }
    .sts-val { font-size: 0.8rem; }
}


/* ─────────────────────────────────────────
   11. NUMBERS STRIP
───────────────────────────────────────── */
@media (max-width: 768px) {
    .numbers-section { overflow: hidden; }
    .numbers-inner {
        grid-template-columns: repeat(2, 1fr);
        padding: 0;
    }
    .num-item {
        padding: 24px 16px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .num-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07); }
    .num-item:last-child { border-bottom: none; }
    .num-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
    .num-val { font-size: 2rem; letter-spacing: -1px; }
    .num-unit { font-size: 1rem; }
    .num-lbl { font-size: 0.68rem; }
}
@media (max-width: 430px) {
    .num-item { padding: 18px 12px; }
    .num-val { font-size: 1.7rem; }
    .num-lbl { font-size: 0.62rem; }
}


/* ─────────────────────────────────────────
   12. WHITE-LABEL SECTION
───────────────────────────────────────── */
@media (max-width: 768px) {
    .wl-section { padding: 48px 20px; overflow: hidden; }
    .wl-inner { grid-template-columns: 1fr; gap: 32px; }
    .wl-text h2 { font-size: clamp(1.5rem, 5.5vw, 1.9rem); letter-spacing: -0.5px; }
    .wl-text p { font-size: 0.88rem; }
    .wl-list li { font-size: 0.84rem; gap: 10px; }
    .wl-visual {
        order: -1;
        width: 100%;
        overflow: hidden;
        display: flex;
        justify-content: center;
    }
    .wl-phone-pair {
        transform: scale(0.82);
        transform-origin: top center;
        width: 100%;
        display: flex;
        justify-content: center;
    }
}
@media (max-width: 430px) {
    .wl-section { padding: 36px 16px; }
    .wl-phone-pair { transform: scale(0.68); }
}


/* ─────────────────────────────────────────
   13. STUDIO CTA (hardware showcase)
───────────────────────────────────────── */
@media (max-width: 900px) {
    .studio-cta-section { padding: 64px 20px 0 !important; }
    
    /* OVERRIDE HTML INLINE STYLES */
    .scta-inner { 
        display: grid !important; 
        grid-template-columns: 1fr !important; 
        gap: 40px !important; 
        align-items: center; 
    }
    
    /* KILL INLINE MIN-WIDTHS CAUSING OVERFLOW */
    .scta-text, .scta-visual {
        min-width: 0 !important;
    }
    
    .scta-text {
        padding-bottom: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .scta-title { font-size: clamp(1.9rem, 6vw, 2.8rem); }
    .scta-desc { font-size: 1rem; max-width: 100%; }
    .scta-actions { justify-content: center; }
    .scta-image { width: 100%; max-width: 460px; }
}
@media (max-width: 430px) {
    .studio-cta-section { padding: 44px 16px 0 !important; }
    .scta-title { font-size: 1.75rem; }
    .scta-desc { font-size: 0.88rem; }
    .scta-btn-primary, .scta-btn-secondary { padding: 13px 22px; font-size: 0.9rem; }
    .scta-image { max-width: 320px; }
}


/* Fix Accelerate Evaluation Overlap */
    .YOUR-EVAL-WRAPPER-CLASS { 
        display: flex; 
        flex-direction: column; /* This forces them to stack top-to-bottom */
        gap: 32px; /* Adds healthy breathing room between the text and the box */
        align-items: center;
    }

    /* Ensure the child elements don't try to stay narrow */
    .YOUR-EVAL-TEXT-CLASS, 
    .YOUR-EVAL-BOX-CLASS {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }


/* ─────────────────────────────────────────
   15. SUPPORT (WhatsApp section)
───────────────────────────────────────── */
@media (max-width: 768px) {
    .support-section { padding: 48px 20px 56px; overflow: hidden; }
    .support-header { margin-bottom: 28px; }
    .support-header h2 { font-size: clamp(1.6rem, 5.5vw, 1.9rem); letter-spacing: -0.3px; }
    .support-header p { font-size: 0.85rem; }
    .support-layout { grid-template-columns: 1fr; gap: 20px; }
    .wa-chat-widget { max-height: none; border-radius: 16px; }
    .wa-chat-messages { min-height: 150px; max-height: 210px; }
    .wa-msg p { font-size: 0.78rem; }
    .wa-quick-replies { flex-wrap: wrap; gap: 6px; padding: 8px 10px; }
    .wa-qr { font-size: 0.68rem; padding: 6px 10px; }
    .support-info { gap: 12px; }
    .support-info-card { padding: 14px 16px; gap: 12px; border-radius: 14px; }
    .support-info-card strong { font-size: 0.84rem; }
    .support-info-card span { font-size: 0.73rem; }
    .support-open-wa { padding: 12px 20px; font-size: 0.88rem; border-radius: 12px; }
}
@media (max-width: 430px) {
    .support-section { padding: 36px 16px 44px; }
    .support-header h2 { font-size: 1.5rem; }
    .wa-qr { font-size: 0.63rem; padding: 5px 8px; }
    .support-info-card { padding: 12px 14px; }
}


/* ─────────────────────────────────────────
   16. OEM CONTACT SECTION (Mobile)
───────────────────────────────────────── */
@media (max-width: 900px) {
    .oem-contact-section { padding: 64px 20px; }
    .oc-inner { grid-template-columns: 1fr; gap: 56px; }
    .oc-text h2 { font-size: clamp(2rem, 6vw, 2.4rem); }
    .oc-form-box { padding: 40px 24px; }
}
@media (max-width: 430px) {
    .oem-contact-section { padding: 48px 16px; }
    .oc-card { gap: 16px; }
    .oc-icon { width: 42px; height: 42px; font-size: 1.1rem; }
    .oc-form-box { padding: 32px 16px; border-radius: 20px; }
    .oc-form-box h3 { font-size: 1.35rem; }
    .oc-input, .oc-select { padding: 14px; font-size: 0.9rem; }
    .oc-btn { padding: 16px; font-size: 1rem; }
}

/* ─────────────────────────────────────────
   17. FOOTER (precision footer)
───────────────────────────────────────── */
@media (max-width: 900px) {
    .pf-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 48px 20px 40px;
    }
    .pf-brand { grid-column: 1 / -1; padding-right: 0; }
    .pf-bottom { padding: 16px 20px 24px; }
}
@media (max-width: 600px) {
    .pf-inner { grid-template-columns: 1fr; gap: 32px; padding: 40px 16px 32px; }
    .pf-bottom { flex-direction: column; gap: 14px; text-align: center; padding: 14px 16px 22px; }
    .pf-bottom-links { flex-wrap: wrap; justify-content: center; gap: 8px 16px; }
}
@media (max-width: 430px) {
    .pf-logo { height: 30px; }
    .pf-desc { font-size: 0.78rem; }
    .pf-links a { font-size: 0.8rem; }
    .pf-col-title { font-size: 0.62rem; }
    .pf-badge { font-size: 0.56rem; }
}

/* Site footer (secondary dark footer) */
@media (max-width: 768px) {
    .site-footer { padding: 0; }
    .footer-inner { padding: 40px 20px 24px; }
    .footer-top { grid-template-columns: 1fr; gap: 28px; padding-bottom: 28px; }
    .footer-brand p { max-width: 100%; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; padding-top: 20px; }
    .footer-bottom-links { flex-wrap: wrap; gap: 6px 12px; }
}
@media (max-width: 430px) {
    .footer-inner { padding: 32px 16px 20px; }
    .footer-top { gap: 22px; }
    .footer-col a, .footer-address { font-size: 0.78rem; }
}

.main-nav {
        display: none; position: fixed;
        top: 56px; left: 0; right: 0; 
        width: 100% !important;
        transform: none !important;  /* Kills desktop centering */
        border-radius: 0 !important; /* Kills pill shape */
        background: rgba(4,12,26,0.98);
        backdrop-filter: blur(24px);
        flex-direction: column; gap: 0; padding: 8px 0 20px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        z-index: 999; box-shadow: 0 16px 40px rgba(0,0,0,0.5);
    }
}
/* ════ 20. MOBILE UX POLISH (HERO & SCROLLING) ════ */
@media (max-width: 768px) {
    /* --- 1. Push Hero Section Upwards --- */
    .hero-section {
        align-items: flex-start !important; /* Stops it from dead-centering vertically */
        padding-top: 14vh !important; /* Locks it cleanly to the upper portion of the screen */
    }
    
    /* --- 2. Make Horizontal Scrolling Obvious --- */
    /* Unhide the scrollbars and style them like premium app indicators */
    .app-tab-menu::-webkit-scrollbar,
    .sts-tabs::-webkit-scrollbar,
    .emf-track-inner::-webkit-scrollbar {
        display: block !important;
        height: 4px !important;
    }
    
    /* Light theme scrollbars (App Menu & Specs) */
    .app-tab-menu::-webkit-scrollbar-track,
    .sts-tabs::-webkit-scrollbar-track {
        background: rgba(0,0,0,0.04) !important;
        border-radius: 4px;
        margin: 0 20px; /* Keeps the track from touching the screen edges */
    }
    .app-tab-menu::-webkit-scrollbar-thumb,
    .sts-tabs::-webkit-scrollbar-thumb {
        background: rgba(0, 102, 204, 0.4) !important;
        border-radius: 4px;
    }
    
    /* Dark theme scrollbar (Architecture Flow) */
    .emf-track-inner::-webkit-scrollbar-track {
        background: rgba(255,255,255,0.05) !important;
        border-radius: 4px;
        margin: 0 20px;
    }
    .emf-track-inner::-webkit-scrollbar-thumb {
        background: rgba(77, 163, 255, 0.4) !important;
        border-radius: 4px;
    }
    
    /* Give the elements breathing room above the new scrollbars */
    .app-tab-menu { padding-bottom: 12px !important; }
    .sts-tabs { padding-bottom: 12px !important; margin-bottom: 20px !important; }
    .emf-track-inner { padding-bottom: 16px !important; }
}

@media (max-width: 430px) {
    /* Push up slightly higher on smaller phones */
    .hero-section { padding-top: 12vh !important; }
}
/* ════ 21. FINAL UX POLISH & LOGO SCALING ════ */

/* --- 1. BIGGER MAIN LOGO --- */
.nav-logo-massive { height: 56px !important; }

@media (max-width: 768px) {
    .nav-logo-massive { height: 42px !important; }
}
@media (max-width: 430px) {
    .nav-logo-massive { height: 36px !important; }
}

/* --- 2. MORE OBVIOUS APP MENU BUTTONS --- */
.atm-item {
    opacity: 1 !important; /* Removes the faded/transparent look */
    background: #ffffff !important;
    border: 1.5px solid rgba(0,0,0,0.06) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02) !important;
    transform: translateY(0);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.atm-item:hover {
    border-color: rgba(0,102,204,0.3) !important;
    box-shadow: 0 6px 16px rgba(0,102,204,0.08) !important;
    transform: translateY(-2px) !important;
}
.atm-item.active {
    border-color: #0066cc !important;
    box-shadow: 0 8px 24px rgba(0,102,204,0.15) !important;
    background: #f8fbff !important; /* Very subtle blue tint for the active one */
}
.atm-arrow { 
    opacity: 0.3 !important; /* Makes the arrow slightly visible even when inactive so users know it clicks */
}
.atm-item.active .atm-arrow { 
    opacity: 1 !important; 
}

/* --- 3. CLEARER SPECS SHEET TABS (iOS Segmented Style) --- */
.sts-tabs {
    gap: 4px !important;
    background: rgba(0,0,0,0.04) !important; /* Creates a solid background track */
    padding: 6px !important;
    border-radius: 40px !important;
    border: 1px solid rgba(0,0,0,0.04) !important;
    display: inline-flex !important; /* Shrinks the container to wrap the buttons tightly */
}
/* Re-center the newly shrunk container */
.sts-header { display: flex; flex-direction: column; align-items: center; }

.sts-tab {
    background: transparent !important;
    border: none !important;
    color: #64748b !important;
    font-weight: 700 !important;
    padding: 10px 24px !important;
    border-radius: 30px !important;
}
.sts-tab:hover {
    color: #1d1d1f !important;
}
.sts-tab.active {
    background: #fff !important; /* The active tab becomes a solid white button */
    color: #0066cc !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
}
/* ════ 22. FIX SPECS TABS SCROLLING ON MOBILE ════ */
@media (max-width: 768px) {
    .sts-tabs {
        display: flex !important;
        width: 100% !important; /* Forces the track to obey the screen width */
        max-width: 100vw !important;
        justify-content: flex-start !important; /* Forces the first tab to start at the left edge */
        overflow-x: auto !important; /* Restores the horizontal swipe */
        -webkit-overflow-scrolling: touch !important; /* Restores silky smooth iOS scrolling */
    }
    .sts-tab {
        white-space: nowrap !important; /* Guarantees tab text stays on one line */
        flex-shrink: 0 !important; /* Stops the tabs from squishing together */
    }
}
/* ══════════════════════════════════════════
   14. STUDIO HARDWARE SHOWCASE
══════════════════════════════════════════ */
.studio-cta-section {
    background: linear-gradient(180deg, #ffffff 0%, #f2f2f7 100%);
    padding: 120px 24px 0; /* ZERO bottom padding - image sits on the floor */
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0,0,0,0.03);
}

.scta-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Gives the image slightly more room */
    align-items: flex-end; /* Locks the image perfectly to the bottom edge */
    gap: 40px;
}

.scta-text {
    padding-bottom: 120px; /* Vertically centers text against the tall image */
}

.scta-eyebrow {
    font-family: var(--mono, monospace);
    color: #0066cc; 
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 20px;
    display: block;
}

.scta-title {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 800;
    color: #1d1d1f;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin: 0 0 24px 0;
    font-family: 'Poppins', sans-serif;
}

.scta-desc {
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 36px 0;
    max-width: 450px;
}

.scta-actions {
    display: flex;
}

.scta-btn-primary {
    background: #0066cc;
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.2);
    display: inline-block;
}
.scta-btn-primary:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 102, 204, 0.3);
}

.scta-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

/* Soft spotlight glowing from the floor behind the hardware */
.scta-visual::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 80%;
    background: radial-gradient(ellipse at bottom, rgba(0, 102, 204, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.scta-image {
    position: relative;
    z-index: 1;
    width: 110%; /* Oversized for impact */
    max-width: 750px;
    height: auto;
    display: block;
    margin-bottom: -2px; /* Ensures it is seamlessly grounded to the next section */
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.08)); /* Adds physical depth */
}

/* Mobile Styling */
@media (max-width: 900px) {
    .studio-cta-section { padding: 80px 24px 0; }
    .scta-inner { 
        grid-template-columns: 1fr; 
        gap: 50px; 
        align-items: center; 
    }
    .scta-text { padding-bottom: 0; text-align: center; display: flex; flex-direction: column; align-items: center; }
    .scta-actions { justify-content: center; width: 100%; max-width: 320px; }
    .scta-actions a { width: 100%; text-align: center; }
    .scta-image { width: 100%; max-width: 500px; }
}
@media (max-width: 430px) {
    .scta-title { font-size: 2.2rem; }
    .scta-desc { font-size: 1rem; }
}