/* ============================================================
   SRI SPS E-BIKES — "APEX" v5
   A from-zero rebuild. Nothing here reuses the previous rounds'
   layout, hero composition, card design, color system, animation
   style, section structure or visual hierarchy — see js/cinematic.js
   for the interaction layer this pairs with.

   DIRECTION: premium / futuristic / technical / editorial. Deep
   near-black + soft paper white + metallic steel greys, with the
   brand's signature green used ONLY as a technical accent (CTAs,
   live/active states, data readouts) — never as a wash of color.
   Two type voices: a big geometric display face for statements,
   and a tracked-out monospace for technical labels/readouts/specs,
   playing against each other instead of one uppercase-everything
   voice. Layout is asymmetric and editorial rather than centered
   cards-in-a-grid. Depth comes from layered transforms + cursor
   parallax (see cinematic.js), not glassmorphism or drop shadows.
   ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { min-height: 100vh; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul { list-style: none; }
input, textarea, select { font: inherit; color: inherit; background: none; border: none; }
::selection { background: var(--accent); color: var(--text); }

/* ---------- Design tokens ---------- */
:root {
    /* ink scale — warm cream/tan palette */
    --ink: #F9F8F6;
    --ink-2: #EFE9E3;
    --surface: #FFFFFF;
    --surface-2: #D9CFC7;
    --line: rgba(43,36,29,0.12);
    --line-strong: rgba(43,36,29,0.22);

    /* paper scale (bright card chrome: toast, compare handle) */
    --paper: #FFFFFF;

    /* text on light */
    --text: #2B2420;
    --text-dim: #6B6058;
    --text-faint: #A69C90;

    /* signature accent — the brand tan/camel, used sparingly as a technical/CTA
       accent only (never a background wash) */
    --accent: #C9B59C;
    --accent-dim: #AB9A85;
    --accent-deep: #8D7F6D;
    --accent-wash: rgba(201,181,156,0.16);

    --danger: #E5484D;

    /* type */
    --f-display: 'Space Grotesk', 'Arial Narrow', sans-serif;
    --f-body: 'Inter', -apple-system, sans-serif;
    --f-mono: 'JetBrains Mono', 'SFMono-Regular', Consolas, monospace;

    /* radius — sharp/technical, not pill-happy */
    --r-lg: 18px;
    --r-md: 10px;
    --r-sm: 4px;

    /* motion */
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --t-fast: 0.2s;
    --t-med: 0.45s;

    --container: 1360px;
}

body {
    background: var(--ink);
    color: var(--text);
    font-family: var(--f-body);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px); }
.container-wide { max-width: 1600px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px); }

h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 600; line-height: 1.05; letter-spacing: -0.01em; }

/* Technical label voice — tracked-out uppercase mono, used for eyebrows,
   readouts, spec labels: the counterpoint to the display headlines. */
.mono-tag {
    font-family: var(--f-mono); font-size: 11.5px; font-weight: 500; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--text-dim); display: inline-flex; align-items: center; gap: 10px;
}
.mono-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); flex-shrink: 0; }
.mono-tag.no-dot::before { display: none; }

.eyebrow { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); }

/* ---------- Reveal-on-scroll (used everywhere) ---------- */
.rv { opacity: 0; transform: translateY(36px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.rv.is-visible { opacity: 1; transform: translateY(0); }
.rv-fade { opacity: 0; transition: opacity 1s var(--ease); }
.rv-fade.is-visible { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .rv, .rv-fade { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ---------- Buttons ---------- */
.btn {
    position: relative;
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 16px 30px; font-family: var(--f-body); font-weight: 600; font-size: 14.5px;
    border-radius: var(--r-sm); border: 1px solid transparent; white-space: nowrap;
    transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}
/* .btn-magnetic-zone (set on a wrapper by cinematic.js) lets the inner .btn
   translate slightly toward the cursor; kept off by default / touch */
.btn-primary { background: var(--accent); color: var(--text); }
.btn-primary:hover { background: #D6C7B5; }
.btn-outline { background: transparent; color: var(--text); border-color: var(--line-strong); }
.btn-outline:hover { border-color: var(--text); }
.btn-ghost { background: transparent; color: var(--text-dim); }
.btn-ghost:hover { color: var(--text); }
.btn-block { width: 100%; }
.btn-sm { padding: 11px 20px; font-size: 13px; }
.btn i { font-size: 0.9em; }
.btn-disabled { background: var(--surface-2); color: var(--text-faint); cursor: not-allowed; }
.btn-disabled:hover { background: var(--surface-2); }

/* Arrow that nudges right on hover — used across CTAs instead of a generic icon-bounce */
.btn .arrow { display: inline-block; transition: transform var(--t-fast); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Floating micro CTAs (WhatsApp / Call) ---------- */
.float-stack { position: fixed; right: 22px; bottom: 22px; z-index: 850; display: flex; flex-direction: column; gap: 12px; }
.float-btn {
    width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: var(--ink); background: var(--text); border: 1px solid var(--line-strong);
    transition: transform var(--t-fast);
}
.float-btn.whatsapp { background: #22C55E; color: #04160B; }
.float-btn:hover { transform: scale(1.08); }
@media (max-width: 767px) { .float-stack { display: none; } }

/* ---------- Mobile dock nav ---------- */
.dock-nav {
    position: fixed; left: 10px; right: 10px; bottom: 10px; z-index: 840; display: none;
    align-items: center; justify-content: space-between; gap: 4px; padding: 8px;
    margin-bottom: env(safe-area-inset-bottom, 0px);
    background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--r-md);
}
.dock-link { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 8px 2px; border-radius: var(--r-sm); color: var(--text-dim); font-size: 10px; font-weight: 600; }
.dock-link i { font-size: 15px; }
.dock-link:active { color: var(--text); }
.dock-cta { flex: 1.3; display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 8px 2px; border-radius: var(--r-sm); font-size: 10px; }
@media (max-width: 767px) { .dock-nav { display: flex; } body { padding-bottom: 78px; } }

/* ---------- Nav ---------- */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 900;
    padding: 22px 0; transition: padding var(--t-med), background var(--t-med), border-color var(--t-med);
    border-bottom: 1px solid transparent;
}
.nav.is-scrolled { padding: 14px 0; background: rgba(249,248,246,0.86); backdrop-filter: blur(16px); border-bottom-color: var(--line); }
.nav-row { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.nav-brand { display: flex; align-items: center; gap: 10px; min-width: 0; flex: 1 1 auto; overflow: hidden; }
.nav-brand img { flex-shrink: 0; height: auto; max-height: 56px; max-width: 200px; width: auto; object-fit: contain; transition: max-height var(--t-med); }
.nav.is-scrolled .nav-brand img { max-height: 40px; }
.nav-brand span { font-family: var(--f-display); font-weight: 600; font-size: 17px; letter-spacing: -0.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.nav-actions { flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: 13.5px; font-weight: 500; color: var(--text-dim); position: relative; padding: 4px 0; transition: color var(--t-fast); }
.nav-links a:hover { color: var(--text); }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px; background: var(--accent); transition: width var(--t-med); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-admin { font-size: 12.5px; color: var(--text-faint); display: flex; align-items: center; gap: 6px; }
.nav-admin:hover { color: var(--text-dim); }
.nav-burger { display: none; flex-direction: column; gap: 5px; width: 40px; height: 40px; align-items: center; justify-content: center; }
.nav-burger span { width: 20px; height: 1.5px; background: var(--text); }

/* Scroll progress hairline under the nav, filled by JS as the page scrolls */
.scroll-progress { position: fixed; top: 0; left: 0; height: 2px; background: var(--accent); z-index: 950; width: 0%; transition: width 0.1s linear; }

.mobile-nav-overlay { position: fixed; inset: 0; background: rgba(4,5,5,0.7); z-index: 990; display: none; opacity: 0; transition: opacity var(--t-med); }
.mobile-nav-overlay.active { display: block; opacity: 1; }
.mobile-nav {
    position: fixed; top: 0; right: -100%; width: min(320px, 86vw); height: 100vh; z-index: 991;
    background: var(--ink-2); border-left: 1px solid var(--line); padding: 26px 24px;
    transition: right var(--t-med) var(--ease); overflow-y: auto;
}
.mobile-nav.active { right: 0; }
.mobile-nav-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.mobile-nav-head span { font-family: var(--f-display); font-size: 17px; }
.mobile-nav-close { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; font-size: 18px; border: 1px solid var(--line); border-radius: 50%; }
.mobile-nav ul li { border-bottom: 1px solid var(--line); }
.mobile-nav ul a { display: flex; align-items: center; min-height: 52px; font-size: 15px; font-weight: 500; }
.mobile-nav-cta { margin-top: 22px; }

@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-burger { display: flex; }
    .nav-actions .btn { display: none; }
}
@media (max-width: 480px) {
    .nav-brand img { max-height: 36px; }
    .nav-brand span { font-size: 14px; }
    .nav-admin span { display: none; }
}

/* ============================================================
   HERO — asymmetric composition: eyebrow + huge mixed-case
   statement pinned lower-left, a technical readout column upper
   right, an abstract "energy core" centerpiece (or the admin's
   real product cutout once uploaded) sitting large behind/right
   of the type. Depth via a perspective grid + cursor-follow glow
   (see cinematic.js) instead of a centered glow blob.
   ============================================================ */
.hero { position: relative; min-height: 100vh; overflow: hidden; background: var(--ink); display: flex; flex-direction: column; }
.hero-grid {
    position: absolute; inset: -10%; z-index: 0; pointer-events: none;
    background-image:
        linear-gradient(var(--line) 1px, transparent 1px),
        linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(circle at 70% 40%, rgba(0,0,0,0.9) 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle at 70% 40%, rgba(0,0,0,0.9) 0%, transparent 70%);
    opacity: 0.6;
    will-change: transform;
}
.hero-glow {
    position: absolute; width: 620px; height: 620px; border-radius: 50%; z-index: 0; pointer-events: none;
    background: radial-gradient(circle, rgba(201,181,156,0.16) 0%, transparent 70%);
    top: 10%; right: 8%; filter: blur(10px);
    transition: transform 0.3s ease-out;
    will-change: transform;
}
.hero-vignette { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(180deg, transparent 55%, var(--ink) 100%); }

/* No `visibility` toggle here on purpose: visibility changes apply instantly
   (they aren't smoothly transitionable the way opacity is), so pairing it with
   the opacity fade used to snap the outgoing slide to invisible the instant
   `.active` was removed — killing the crossfade and leaving only the incoming
   slide's fade-in, i.e. an abrupt flash/pop on every slide change instead of a
   smooth dissolve. Dropping it lets both slides cross-fade together over the
   full 0.9s; `pointer-events: none` below still keeps inactive slides fully
   inert. */
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.9s var(--ease); }
.hero-slide.active { position: relative; opacity: 1; }
.hero-slide:not(.active) { pointer-events: none; }

.hero-slide-bg { position: absolute; inset: 0; z-index: 0; opacity: 0.35; }
.hero-slide-bg img, .hero-slide-bg { background-size: cover; background-position: center; }

.hero-inner {
    position: relative; z-index: 2; flex: 1; display: flex; flex-direction: column; justify-content: flex-end;
    max-width: var(--container); width: 100%; margin: 0 auto;
    padding: 150px clamp(20px, 5vw, 56px) 120px;
}
.hero-topline { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; margin-bottom: auto; padding-top: 20px; }
.hero-readout { display: none; }
@media (min-width: 1025px) {
    .hero-readout { display: flex; flex-direction: column; gap: 14px; text-align: right; padding-top: 6px; }
    .hero-readout .r-line { font-family: var(--f-mono); font-size: 11.5px; color: var(--text-faint); letter-spacing: 0.1em; }
    .hero-readout .r-line b { color: var(--text-dim); font-weight: 500; }
}

.hero-main { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: end; }
.hero-copy .eyebrow { margin-bottom: 22px; display: block; }
.hero-copy h1 {
    font-size: clamp(46px, 7.4vw, 108px); font-weight: 600; letter-spacing: -0.02em; text-transform: none;
    color: var(--text); max-width: 14ch;
}
.hero-copy h1 em { font-style: normal; color: transparent; -webkit-text-stroke: 1.5px var(--text); }
.hero-copy h1 .accent { color: var(--accent); }
.hero-copy p { margin-top: 24px; max-width: 42ch; color: var(--text-dim); font-size: 16px; line-height: 1.7; }
.hero-actions { margin-top: 38px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero-actions .btn-ghost { font-family: var(--f-mono); font-size: 12.5px; letter-spacing: 0.06em; }

/* ----- The abstract "energy core" — original geometry (concentric rings +
   a bright core + slow-rotating orbit ticks), standing in for a literal bike
   photo until one is uploaded in Admin, at which point .hero-cutout replaces
   it with the real product cutout, grounded with the same glow/floor. ----- */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 360px; }
.core {
    position: relative; width: min(74vw, 420px); aspect-ratio: 1/1;
}
.core-ring { position: absolute; inset: 0; border: 1px solid var(--line-strong); border-radius: 50%; }
.core-ring.r2 { inset: 11%; border-color: var(--line); }
.core-ring.r3 { inset: 22%; border-style: dashed; opacity: 0.5; }
.core-orbit { position: absolute; inset: 0; border-radius: 50%; animation: coreSpin 40s linear infinite; }
.core-orbit::before { content: ''; position: absolute; top: -3px; left: 50%; width: 6px; height: 6px; margin-left: -3px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent); }
.core-orbit.o2 { inset: 11%; animation-duration: 26s; animation-direction: reverse; }
.core-orbit.o2::before { background: var(--text-dim); box-shadow: none; width: 4px; height: 4px; }
@keyframes coreSpin { to { transform: rotate(360deg); } }
.core-center {
    position: absolute; inset: 30%; border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, rgba(201,181,156,0.5), rgba(201,181,156,0.05) 60%, transparent 75%);
    filter: blur(2px);
}
.core-center::after { content: ''; position: absolute; inset: 38%; border-radius: 50%; background: var(--accent); box-shadow: 0 0 60px 10px rgba(201,181,156,0.55); }
.core-label { position: absolute; bottom: -30px; left: 50%; transform: translateX(-50%); font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.16em; color: var(--text-faint); white-space: nowrap; }
@media (prefers-reduced-motion: reduce) { .core-orbit { animation: none; } }

.hero-cutout { position: relative; width: 100%; display: flex; align-items: center; justify-content: center; }
.hero-cutout-glow { position: absolute; width: 90%; aspect-ratio: 1/1; border-radius: 50%; background: radial-gradient(circle, rgba(201,181,156,0.24) 0%, transparent 70%); filter: blur(6px); }
.hero-cutout-floor { position: absolute; bottom: 6%; width: 60%; height: 22px; border-radius: 50%; background: radial-gradient(ellipse, rgba(0,0,0,0.55) 0%, transparent 75%); filter: blur(3px); }
.hero-cutout img { position: relative; z-index: 1; max-width: 100%; max-height: 420px; object-fit: contain; filter: drop-shadow(0 20px 26px rgba(0,0,0,0.5)); }

.hero-foot { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; max-width: var(--container); width: 100%; margin: 46px auto 0; padding: 26px clamp(20px, 5vw, 56px) 0; border-top: 1px solid var(--line); }
.hero-progress-dots { display: flex; gap: 8px; }
.hero-progress-dots button { width: 26px; height: 2px; background: var(--line-strong); transition: background var(--t-fast), width var(--t-fast); }
.hero-progress-dots button.active { background: var(--accent); width: 40px; }
.hero-arrows { display: flex; gap: 10px; }
.hero-arrows button { width: 38px; height: 38px; border: 1px solid var(--line-strong); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; transition: border-color var(--t-fast), background var(--t-fast); }
.hero-arrows button:hover { border-color: var(--accent); }
.scroll-hint { display: flex; align-items: center; gap: 10px; font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.14em; color: var(--text-faint); }
.scroll-hint .bar { width: 1px; height: 20px; background: var(--line-strong); position: relative; overflow: hidden; }
.scroll-hint .bar::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 40%; background: var(--accent); animation: scrollBar 2s ease-in-out infinite; }
@keyframes scrollBar { 0% { transform: translateY(-100%); } 100% { transform: translateY(250%); } }
@media (prefers-reduced-motion: reduce) { .scroll-hint .bar::after { animation: none; } }

@media (max-width: 1024px) {
    .hero-main { grid-template-columns: 1fr; }
    .hero-visual { min-height: 280px; order: -1; margin-bottom: 20px; }
    .hero-inner { padding: 130px 0 90px; }
    .hero-foot { flex-wrap: wrap; gap: 16px; }
}
@media (max-width: 640px) {
    .hero-copy h1 { max-width: none; }
    .core { width: 62vw; }
}

/* ============================================================
   MARQUEE — infinite technical ticker, built from real feature/
   product titles by JS. Pure CSS animation, paused on hover,
   respects reduced-motion (falls back to a static wrapped row).
   ============================================================ */
.marquee-section { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--ink-2); overflow: hidden; padding: 20px 0; }
.marquee-track { display: flex; white-space: nowrap; animation: marqueeScroll 32s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item { font-family: var(--f-mono); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dim); padding: 0 34px; display: flex; align-items: center; gap: 34px; flex-shrink: 0; }
.marquee-item::after { content: '//'; color: var(--accent); }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; flex-wrap: wrap; } }

/* ============================================================
   PRODUCT INTRO — asymmetric editorial statement with a giant
   ghost numeral behind it, off-center rather than a centered
   section-header block.
   ============================================================ */
.intro-section { padding: 140px 0; position: relative; }
.intro-grid { display: grid; grid-template-columns: 0.4fr 1fr; gap: 40px; align-items: start; position: relative; }
.intro-ghost { position: absolute; top: -70px; left: -20px; font-family: var(--f-display); font-size: clamp(120px, 22vw, 320px); font-weight: 600; color: transparent; -webkit-text-stroke: 1px var(--line-strong); line-height: 1; z-index: 0; pointer-events: none; user-select: none; }
.intro-eyebrow { position: relative; z-index: 1; padding-top: 14px; }
.intro-statement { position: relative; z-index: 1; font-size: clamp(28px, 4.2vw, 56px); font-weight: 600; letter-spacing: -0.015em; line-height: 1.18; max-width: 20ch; }
.intro-statement .dim { color: var(--text-faint); }
.intro-statement .accent { color: var(--accent); }
@media (max-width: 900px) {
    .intro-grid { grid-template-columns: 1fr; gap: 26px; }
    .intro-ghost { display: none; }
}

/* ============================================================
   INTERACTIVE SHOWCASE — sticky visual on one side, the real
   sps_features list scrolling past on the other; the active item
   lights a coordinate ring on the visual (no leader-lines/chips).
   ============================================================ */
.showcase-section { padding: 0 0 60px; position: relative; }
.showcase-head { padding: 0 0 60px; max-width: 640px; }
.showcase-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 0 60px; align-items: start; }
.showcase-visual-wrap { position: sticky; top: 110px; height: calc(100vh - 200px); max-height: 640px; display: flex; align-items: center; justify-content: center; }
.showcase-visual {
    position: relative; width: 100%; height: 100%; border: 1px solid var(--line); border-radius: var(--r-lg);
    background: radial-gradient(circle at 50% 40%, rgba(201,181,156,0.07), transparent 65%), var(--ink-2);
    display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.showcase-visual img { max-width: 78%; max-height: 78%; object-fit: contain; position: relative; z-index: 1; }
.showcase-visual .scooter-fallback { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.14em; color: var(--text-faint); text-transform: uppercase; }
.showcase-ring {
    position: absolute; width: 64px; height: 64px; border: 1.5px solid var(--accent); border-radius: 50%;
    top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.6); opacity: 0;
    transition: top 0.5s var(--ease), left 0.5s var(--ease), opacity 0.4s var(--ease), transform 0.4s var(--ease);
    box-shadow: 0 0 0 4px rgba(201,181,156,0.12);
}
.showcase-ring.is-active { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.showcase-ring::after { content: ''; position: absolute; inset: -6px; border: 1px solid rgba(201,181,156,0.35); border-radius: 50%; animation: ringPulse 2.4s ease-out infinite; }
@keyframes ringPulse { 0% { transform: scale(0.85); opacity: 0.8; } 100% { transform: scale(1.5); opacity: 0; } }
.showcase-coords { position: absolute; bottom: 18px; left: 18px; font-family: var(--f-mono); font-size: 10.5px; color: var(--text-faint); letter-spacing: 0.08em; }

.showcase-list { display: flex; flex-direction: column; }
.showcase-item { padding: 44px 0; border-top: 1px solid var(--line); cursor: default; transition: opacity var(--t-med); opacity: 0.42; }
.showcase-item:last-child { border-bottom: 1px solid var(--line); }
.showcase-item.is-active { opacity: 1; }
.showcase-item-idx { font-family: var(--f-mono); font-size: 12px; color: var(--text-faint); letter-spacing: 0.1em; }
.showcase-item.is-active .showcase-item-idx { color: var(--accent); }
.showcase-item h3 { font-size: clamp(22px, 2.6vw, 32px); margin: 10px 0 12px; font-weight: 600; }
.showcase-item p { color: var(--text-dim); max-width: 46ch; font-size: 15px; line-height: 1.7; }
.showcase-item-icon { width: 34px; height: 34px; margin-top: 16px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--accent); font-size: 13px; }

@media (max-width: 900px) {
    .showcase-grid { grid-template-columns: 1fr; }
    .showcase-visual-wrap { position: relative; top: auto; height: 320px; margin-bottom: 8px; }
}

/* ============================================================
   PERFORMANCE METRICS STRIP — oversized real numbers, mono
   labels, thin vertical dividers. No cards, no icons.
   ============================================================ */
.metrics-section { padding: 90px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.metric-item { position: relative; padding: 0 30px; text-align: left; }
.metric-item + .metric-item { border-left: 1px solid var(--line); }
.metric-value-row { display: flex; align-items: baseline; gap: 4px; }
.metric-value { font-family: var(--f-display); font-size: clamp(38px, 5vw, 64px); font-weight: 600; letter-spacing: -0.02em; color: var(--text); }
.metric-unit { font-family: var(--f-mono); font-size: 15px; color: var(--accent); letter-spacing: 0.02em; }
.metric-label { margin-top: 10px; font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-faint); }
@media (max-width: 900px) {
    .metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 34px 0; }
    .metric-item:nth-child(3) { border-left: none; }
    .metric-item:nth-child(odd) { border-left: none; }
    .metric-item:nth-child(even) { border-left: 1px solid var(--line); }
}
@media (max-width: 520px) { .metric-item { padding: 0 16px; } }

/* ============================================================
   CHOOSE YOUR RIDE — bike/battery cards, entirely new chrome:
   flat surface panels, mono spec readouts (not icon rows), a
   thin accent-underline hover state instead of card lift+shadow.
   ============================================================ */
.rides-section { padding: 150px 0; }
.rides-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: 50px; flex-wrap: wrap; }
.rides-filter { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-chip {
    font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
    padding: 10px 18px; border: 1px solid var(--line-strong); border-radius: var(--r-sm); background: transparent;
    color: var(--text-dim); cursor: pointer; transition: all var(--t-fast);
}
.filter-chip:hover { border-color: var(--text-dim); color: var(--text); }
.filter-chip.is-active { background: var(--accent); border-color: var(--accent); color: var(--text); }

.rides-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.ride-card { background: var(--surface); padding: 0; display: flex; flex-direction: column; position: relative; transition: background var(--t-med); }
.ride-card:hover { background: var(--surface-2); }
.ride-card-media { position: relative; aspect-ratio: 4/3; background: radial-gradient(circle at 50% 30%, rgba(201,181,156,0.06), transparent 60%); display: flex; align-items: center; justify-content: center; overflow: hidden; border-bottom: 1px solid var(--line); cursor: pointer; }
.ride-card-media img { width: 82%; height: 82%; object-fit: contain; transition: transform var(--t-med) var(--ease); }
.ride-card:hover .ride-card-media img { transform: scale(1.05) translateY(-4px); }
.ride-card-media .no-image-fallback { font-family: var(--f-mono); font-size: 11px; color: var(--text-faint); letter-spacing: 0.1em; text-transform: uppercase; }
.ride-card-badge { position: absolute; top: 14px; left: 14px; font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 10px; background: var(--accent); color: var(--text); border-radius: var(--r-sm); z-index: 2; }
.ride-card-badge.sold-out { background: var(--text-faint); color: var(--text); }
.ride-card-body { padding: 26px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.ride-card-cat { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 8px; }
.ride-card-name { font-size: 21px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.01em; }
.ride-card-desc { font-size: 14px; color: var(--text-dim); line-height: 1.6; margin-bottom: 18px; }
.ride-specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; padding: 14px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 18px; }
.spec-cell { text-align: left; }
.spec-cell-val { font-family: var(--f-mono); font-size: 14px; color: var(--text); }
.spec-cell-label { font-family: var(--f-mono); font-size: 9.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-faint); margin-top: 3px; }
.ride-swatches { display: flex; gap: 8px; margin-bottom: 18px; }
.swatch-dot { width: 20px; height: 20px; border-radius: 50%; border: 1px solid var(--line-strong); cursor: pointer; position: relative; transition: transform var(--t-fast); }
.swatch-dot:hover { transform: scale(1.15); }
.swatch-dot.is-selected { box-shadow: 0 0 0 2px var(--ink), 0 0 0 3px var(--accent); }
.swatch-dot.is-unavailable { opacity: 0.3; cursor: not-allowed; }
.swatch-dot.is-unavailable::after { content: ''; position: absolute; left: 50%; top: 50%; width: 130%; height: 1px; background: var(--text-faint); transform: translate(-50%,-50%) rotate(45deg); }
.ride-card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; gap: 12px; }
.ride-price { font-family: var(--f-display); font-size: 22px; font-weight: 600; }
.ride-price-label { font-family: var(--f-mono); font-size: 10px; color: var(--text-faint); letter-spacing: 0.08em; display: block; margin-bottom: 2px; }
@media (max-width: 1024px) { .rides-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .rides-grid { grid-template-columns: 1fr; } .ride-specs { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Ride switcher — "Choose Your Ride" model picker ----------
   Picking a model from the list crossfades the whole stage's colour wash
   and photo to that model, rather than showing a static grid of cards. */
.ride-switcher { display: flex; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--surface); min-height: 520px; }
.ride-switcher-tabs { flex: 0 0 280px; display: flex; flex-direction: column; gap: 2px; padding: 10px; border-right: 1px solid var(--line); overflow-y: auto; max-height: 620px; }
.ride-tab { position: relative; display: flex; align-items: center; gap: 12px; width: 100%; padding: 15px 16px; border-radius: var(--r-sm); text-align: left; transition: background var(--t-fast); }
.ride-tab:hover { background: var(--surface-2); }
.ride-tab.is-active { background: var(--surface-2); }
.ride-tab.is-active::before { content: ''; position: absolute; left: 0; top: 18%; bottom: 18%; width: 3px; border-radius: 2px; background: var(--tab-glow); }
.ride-tab-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--text-faint); flex-shrink: 0; transition: background var(--t-fast), box-shadow var(--t-fast); }
.ride-tab.is-active .ride-tab-dot { background: var(--tab-glow); box-shadow: 0 0 10px var(--tab-glow); }
.ride-tab-text { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.ride-tab-name { font-size: 14.5px; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ride-tab-price { font-family: var(--f-mono); font-size: 11px; color: var(--text-faint); }

.ride-switcher-stage { position: relative; flex: 1; min-width: 0; overflow: hidden; }
.ride-stage-bg { position: absolute; inset: 0; opacity: 0; transition: opacity 650ms ease; z-index: 0; }
.ride-stage-bg.is-visible { opacity: 1; }
.stage-content { position: relative; z-index: 1; height: 100%; display: grid; grid-template-columns: 1fr 1.1fr; gap: 36px; align-items: center; padding: 48px; transition: opacity 200ms ease, transform 200ms ease; }
.stage-content.is-fading { opacity: 0; transform: translateY(10px); }
.stage-visual { position: relative; aspect-ratio: 1/1; max-height: 360px; display: flex; align-items: center; justify-content: center; }
.stage-visual img { width: 92%; height: 92%; object-fit: contain; filter: drop-shadow(0 24px 40px rgba(0,0,0,0.45)); }
.stage-photo-placeholder { display: flex; flex-direction: column; align-items: center; gap: 14px; color: var(--text-dim); opacity: 0.55; }
.stage-photo-placeholder i { font-size: 60px; }
.stage-photo-placeholder span { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; }
.stage-name { font-size: clamp(26px, 3vw, 38px); font-weight: 600; letter-spacing: -0.01em; margin: 14px 0 10px; }
.stage-desc { color: var(--text-dim); font-size: 15px; line-height: 1.7; margin-bottom: 20px; max-width: 46ch; }
.stage-specs { margin-bottom: 20px; }
.stage-swatches { margin-bottom: 22px; }
.stage-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; }
.stage-price { margin-right: auto; }
.stage-info { display: flex; flex-direction: column; }
@media (max-width: 900px) {
    .ride-switcher { flex-direction: column; min-height: 0; }
    .ride-switcher-tabs { flex-direction: row; flex: none; max-height: none; border-right: none; border-bottom: 1px solid var(--line); overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
    .ride-switcher-tabs::-webkit-scrollbar { display: none; }
    .ride-tab { flex: 0 0 auto; width: auto; white-space: nowrap; }
    .ride-tab.is-active::before { left: 12%; right: 12%; top: auto; bottom: 0; height: 3px; width: auto; }
    .ride-tab-name { white-space: nowrap; }
    .stage-content { grid-template-columns: 1fr; padding: 22px 20px 26px; gap: 4px; }
    .stage-visual { max-height: 200px; }
    /* Mobile: show name + price + Enquire/Full Details right under the photo
       without needing to scroll — description/specs/colours follow after,
       reachable with a scroll for shoppers who want the extra detail. */
    .stage-info .mono-tag.no-dot { order: 1; margin-bottom: 2px; }
    .stage-name { order: 2; font-size: clamp(21px, 6vw, 28px); margin: 2px 0 10px; }
    .stage-actions { order: 3; margin-bottom: 18px; }
    .stage-desc { order: 4; }
    .stage-specs { order: 5; }
    .stage-swatches { order: 6; }
}

/* Product modal (bike/battery detail) */
.pmodal-overlay { position: fixed; inset: 0; background: rgba(4,5,5,0.82); backdrop-filter: blur(6px); z-index: 900; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; visibility: hidden; transition: opacity var(--t-med); }
.pmodal-overlay.is-open { opacity: 1; visibility: visible; }
.pmodal { background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--r-lg); max-width: 920px; width: 100%; max-height: 88vh; overflow-y: auto; display: grid; grid-template-columns: 1fr 1fr; position: relative; transform: translateY(16px) scale(0.98); transition: transform var(--t-med) var(--ease); }
.pmodal-overlay.is-open .pmodal { transform: translateY(0) scale(1); }
.pmodal-close { position: absolute; top: 18px; right: 18px; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line-strong); background: var(--surface-2); color: var(--text); display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 5; font-size: 15px; }
.pmodal-media { background: radial-gradient(circle at 50% 35%, rgba(201,181,156,0.08), transparent 60%); display: flex; align-items: center; justify-content: center; padding: 40px; }
.pmodal-media img { width: 100%; max-height: 320px; object-fit: contain; }
.pmodal-body { padding: 46px 38px 38px; display: flex; flex-direction: column; }
.pmodal-cat { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.pmodal-body h3 { font-size: 28px; font-weight: 600; margin-bottom: 12px; }
.pmodal-body p.pmodal-desc { color: var(--text-dim); font-size: 14.5px; line-height: 1.7; margin-bottom: 22px; }
.pmodal-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 20px; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 22px; }
.pmodal-swatches { display: flex; gap: 10px; margin-bottom: 22px; }
.pmodal-price { font-family: var(--f-display); font-size: 30px; font-weight: 600; margin-bottom: 20px; }
@media (max-width: 720px) { .pmodal { grid-template-columns: 1fr; } .pmodal-media { padding: 30px; } .pmodal-body { padding: 30px 24px; } }

/* ============================================================
   PETROL VS ELECTRIC — drag-to-compare slider (before/after
   style), replacing v4's scroll weight-shift cards entirely.
   ============================================================ */
.compare-section { padding: 150px 0; }
.compare-head { max-width: 640px; margin-bottom: 50px; }
.compare-stage { position: relative; width: 100%; aspect-ratio: 16/8; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line-strong); cursor: ew-resize; user-select: none; background: #0F1112; }
.compare-panel { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; padding: 0 60px; }
.compare-panel.petrol { background: linear-gradient(135deg, #1c1613, #100d0c); align-items: flex-start; text-align: left; }
.compare-panel.electric { background: linear-gradient(135deg, #0d1f18, #0F1112); clip-path: inset(0 0 0 50%); align-items: flex-end; text-align: right; }
.compare-panel-eyebrow { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 14px; }
.compare-panel.petrol .compare-panel-eyebrow { color: #E5A84D; }
.compare-panel.electric .compare-panel-eyebrow { color: var(--accent); }
/* This panel is a deliberately fixed dark "device screen" mockup, independent
   of the site's light theme tokens — its text stays light-on-dark regardless
   of how --text/--ink are set. */
.compare-panel-figure { font-family: var(--f-display); font-size: clamp(34px, 5vw, 58px); font-weight: 600; letter-spacing: -0.02em; margin-bottom: 6px; color: #F3F1EC; }
.compare-panel-sub { font-family: var(--f-mono); font-size: 13px; color: #9A9D9F; }
.compare-divider { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: #F3F1EC; transform: translateX(-1px); z-index: 3; pointer-events: none; }
.compare-handle {
    position: absolute; top: 50%; left: 50%; width: 52px; height: 52px; border-radius: 50%;
    background: var(--paper); color: var(--text); display: flex; align-items: center; justify-content: center;
    transform: translate(-50%, -50%); z-index: 4; font-size: 14px; letter-spacing: 0.05em; gap: 6px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4); pointer-events: none;
}
.compare-fact-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
.compare-fact { padding: 20px 22px; border: 1px solid var(--line); border-radius: var(--r-md); }
.compare-fact-label { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 8px; }
.compare-fact-val { font-size: 16px; color: var(--text); font-weight: 500; }
@media (max-width: 900px) {
    .compare-stage { aspect-ratio: 4/5; }
    .compare-panel { padding: 0 28px; }
    .compare-fact-list { grid-template-columns: 1fr; }
}

/* ============================================================
   SAVINGS CONSOLE — terminal-style readout card rather than
   plain three-column pricing cards.
   ============================================================ */
.savings-section { padding: 150px 0; }
.savings-head { max-width: 640px; margin-bottom: 50px; }
.savings-console { border: 1px solid var(--line-strong); border-radius: var(--r-lg); background: var(--surface); overflow: hidden; }
.savings-console-bar { display: flex; align-items: center; gap: 8px; padding: 14px 20px; border-bottom: 1px solid var(--line); font-family: var(--f-mono); font-size: 11px; color: var(--text-faint); letter-spacing: 0.08em; }
.savings-console-bar span.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--line-strong); display: inline-block; }
.savings-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.savings-card { padding: 34px 30px; border-right: 1px solid var(--line); position: relative; }
.savings-card:last-child { border-right: none; }
.savings-card-title { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 16px; }
.savings-card-amount { font-family: var(--f-display); font-size: clamp(28px, 3.4vw, 40px); font-weight: 600; color: var(--accent); margin-bottom: 10px; letter-spacing: -0.01em; }
.savings-card-desc { font-size: 13.5px; color: var(--text-dim); line-height: 1.6; }
.savings-note { padding: 16px 30px; border-top: 1px solid var(--line); font-family: var(--f-mono); font-size: 11px; color: var(--text-faint); letter-spacing: 0.03em; }
@media (max-width: 900px) {
    .savings-grid { grid-template-columns: 1fr; }
    .savings-card { border-right: none; border-bottom: 1px solid var(--line); }
    .savings-card:last-child { border-bottom: none; }
}

/* ============================================================
   OUR STORY — asymmetric image + copy, mono stat readouts
   instead of icon-stat cards.
   ============================================================ */
.story-section { padding: 150px 0; }
.story-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 70px; align-items: center; }
.story-media { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/5; }
.story-media img { width: 100%; height: 100%; object-fit: cover; }
.story-copy .intro-eyebrow { margin-bottom: 20px; }
.story-copy h2 { font-size: clamp(30px, 4vw, 46px); font-weight: 600; letter-spacing: -0.015em; margin-bottom: 22px; }
.story-copy p { color: var(--text-dim); font-size: 15.5px; line-height: 1.75; max-width: 52ch; margin-bottom: 40px; }
.story-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); padding-top: 26px; }
.story-stat { border-left: 1px solid var(--line); padding-left: 18px; }
.story-stat:first-child { border-left: none; padding-left: 0; }
.story-stat-val { font-family: var(--f-display); font-size: clamp(24px, 2.8vw, 34px); font-weight: 600; color: var(--text); }
.story-stat-label { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); margin-top: 6px; }
@media (max-width: 900px) {
    .story-grid { grid-template-columns: 1fr; gap: 34px; }
    .story-media { aspect-ratio: 16/10; }
}

/* ============================================================
   LOCATIONS — single-card carousel with mono coordinate index,
   not a grid of branch cards.
   ============================================================ */
.locations-section { padding: 150px 0; border-top: 1px solid var(--line); }
.locations-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 46px; flex-wrap: wrap; }
.locations-nav { display: flex; gap: 10px; }
.loc-nav-btn { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-strong); background: transparent; color: var(--text); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all var(--t-fast); }
.loc-nav-btn:hover { border-color: var(--accent); color: var(--accent); }
.locations-track-wrap { overflow: hidden; }
.locations-track { display: flex; transition: transform var(--t-med) var(--ease); }
.location-card { flex: 0 0 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.location-card-media { aspect-ratio: 4/3; background: var(--ink-2); position: relative; overflow: hidden; }
.location-card-media img { width: 100%; height: 100%; object-fit: cover; }
.location-card-media .loc-idx { position: absolute; top: 16px; left: 16px; font-family: var(--f-mono); font-size: 11px; color: var(--paper); background: rgba(0,0,0,0.5); padding: 4px 10px; border-radius: var(--r-sm); letter-spacing: 0.08em; }
.location-card-body { padding: 40px 38px; display: flex; flex-direction: column; justify-content: center; }
.location-card-body h3 { font-size: 24px; font-weight: 600; margin-bottom: 14px; }
.location-card-body p.loc-desc { color: var(--text-dim); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.loc-meta-row { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--text-dim); margin-bottom: 10px; }
.loc-meta-row i { color: var(--accent); margin-top: 3px; width: 14px; }
.locations-dots { display: flex; gap: 8px; margin-top: 24px; justify-content: center; }
.locations-dots .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--line-strong); cursor: pointer; transition: all var(--t-fast); }
.locations-dots .dot.is-active { background: var(--accent); width: 20px; border-radius: 3px; }
@media (max-width: 900px) { .location-card { grid-template-columns: 1fr; } .location-card-body { padding: 30px 26px; } }

/* ============================================================
   TESTIMONIALS — single large quote carousel, editorial serif-
   scale quotation mark, no card-grid of avatars.
   ============================================================ */
.testimonials-section { padding: 150px 0; }
.testimonials-head { max-width: 640px; margin: 0 auto 50px; text-align: center; }
.testimonials-head .eyebrow, .testimonials-head .mono-tag { justify-content: center; }
.testimonial-carousel { max-width: 780px; margin: 0 auto; position: relative; text-align: center; }
.testimonial-slide { display: none; }
.testimonial-slide.is-active { display: block; }
.testimonial-mark { font-family: var(--f-display); font-size: 64px; color: var(--accent); opacity: 0.5; line-height: 1; margin-bottom: 10px; }
.testimonial-text { font-size: clamp(20px, 2.6vw, 28px); font-weight: 500; line-height: 1.5; letter-spacing: -0.01em; margin-bottom: 28px; }
.testimonial-rating { color: var(--accent); font-size: 14px; margin-bottom: 18px; letter-spacing: 3px; }
.testimonial-author-row { display: flex; align-items: center; justify-content: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line-strong); }
.testimonial-avatar-fallback { width: 44px; height: 44px; border-radius: 50%; background: var(--surface-2); border: 1px solid var(--line-strong); display: flex; align-items: center; justify-content: center; font-family: var(--f-mono); font-size: 14px; color: var(--text-dim); }
.testimonial-author-name { font-weight: 600; font-size: 14.5px; }
.testimonial-author-role { font-family: var(--f-mono); font-size: 11px; color: var(--text-faint); letter-spacing: 0.04em; }
.testimonial-dots { display: flex; gap: 8px; justify-content: center; margin-top: 34px; }
.testimonial-dots .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--line-strong); cursor: pointer; transition: all var(--t-fast); }
.testimonial-dots .dot.is-active { background: var(--accent); width: 20px; border-radius: 3px; }

/* ============================================================
   GALLERY — masonry-ish mosaic grid + lightbox
   ============================================================ */
.gallery-section { padding: 150px 0; }
.gallery-head { max-width: 640px; margin-bottom: 46px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: 10px; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--r-md); cursor: pointer; border: 1px solid var(--line); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-med) var(--ease); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.35), transparent 45%); opacity: 0; transition: opacity var(--t-fast); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; } .gallery-item.wide { grid-column: span 2; } }
.lightbox-overlay { position: fixed; inset: 0; background: rgba(4,5,5,0.92); z-index: 950; display: flex; align-items: center; justify-content: center; padding: 30px; opacity: 0; visibility: hidden; transition: opacity var(--t-med); }
.lightbox-overlay.is-open { opacity: 1; visibility: visible; }
.lightbox-overlay img { max-width: 90vw; max-height: 86vh; object-fit: contain; border-radius: var(--r-md); }
.lightbox-close { position: absolute; top: 26px; right: 30px; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-strong); background: var(--surface); color: var(--text); display: flex; align-items: center; justify-content: center; cursor: pointer; }

/* ============================================================
   FINAL CTA — full-bleed dark panel, glow, oversized type
   ============================================================ */
.final-cta-section { padding: 40px 0 150px; }
.final-cta-panel { position: relative; border-radius: var(--r-lg); border: 1px solid var(--line-strong); overflow: hidden; padding: 110px 40px; text-align: center; background: radial-gradient(circle at 50% 0%, rgba(201,181,156,0.10), transparent 60%), var(--surface); }
.final-cta-panel .eyebrow, .final-cta-panel .mono-tag { justify-content: center; margin-bottom: 22px; }
.final-cta-panel h2 { font-size: clamp(34px, 6vw, 72px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.05; max-width: 16ch; margin: 0 auto 22px; }
.final-cta-panel p { color: var(--text-dim); font-size: 16px; max-width: 46ch; margin: 0 auto 40px; }
.final-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 640px) { .final-cta-panel { padding: 70px 24px; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { border-top: 1px solid var(--line); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr; gap: 40px; padding-bottom: 60px; }
.footer-brand-logo { height: auto; max-height: 46px; max-width: 200px; width: auto; object-fit: contain; margin-bottom: 20px; }
.footer-brand-name { display: block; font-family: var(--f-display); font-weight: 600; font-size: 22px; letter-spacing: -0.01em; color: var(--text); margin-bottom: 20px; }
.footer-brand p { color: var(--text-dim); font-size: 14px; line-height: 1.7; max-width: 34ch; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line-strong); display: flex; align-items: center; justify-content: center; color: var(--text-dim); transition: all var(--t-fast); }
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }
.footer-col h4 { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: var(--text-dim); font-size: 14px; transition: color var(--t-fast); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--line); padding: 26px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-family: var(--f-mono); font-size: 11.5px; color: var(--text-faint); letter-spacing: 0.02em; }
.footer-admin-link { font-family: var(--f-mono); font-size: 11px; color: var(--text-faint); letter-spacing: 0.04em; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; align-items: flex-start; } }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section { padding: 150px 0; border-top: 1px solid var(--line); }
.contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; }
.contact-info-list { display: flex; flex-direction: column; gap: 22px; margin-top: 30px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.contact-info-item i { color: var(--accent); font-size: 15px; margin-top: 3px; width: 18px; }
.contact-info-item a, .contact-info-item span { color: var(--text-dim); font-size: 14.5px; line-height: 1.6; }
.contact-info-item a:hover { color: var(--accent); }
.contact-info-label { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); display: block; margin-bottom: 4px; }
.contact-form-panel { border: 1px solid var(--line); border-radius: var(--r-lg); padding: 40px; background: var(--surface); }
.form-field { margin-bottom: 20px; }
.form-label { display: block; font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 8px; }
.form-input, .form-textarea {
    width: 100%; background: var(--ink-2); border: 1px solid var(--line-strong); border-radius: var(--r-sm);
    padding: 13px 16px; color: var(--text); font-family: var(--f-body); font-size: 14.5px; transition: border-color var(--t-fast);
}
.form-input:focus, .form-textarea:focus { outline: none; border-color: var(--accent); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } .form-row-2 { grid-template-columns: 1fr; } }

/* ============================================================
   TOAST
   ============================================================ */
.toast {
    position: fixed; bottom: 28px; left: 50%; transform: translate(-50%, 20px); z-index: 1200;
    background: var(--paper); color: var(--text); padding: 14px 24px; border-radius: var(--r-sm);
    font-size: 14px; font-weight: 500; opacity: 0; visibility: hidden; transition: all var(--t-med) var(--ease);
    display: flex; align-items: center; gap: 10px; box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}
.toast.is-visible { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.toast i { color: var(--accent-deep); }

/* ============================================================
   LEAD GATE POPUP — reuses .form-field/.form-input, new chrome
   ============================================================ */
.lead-gate-overlay { position: fixed; inset: 0; background: rgba(4,5,5,0.82); backdrop-filter: blur(6px); z-index: 1100; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity var(--t-med); }
.lead-gate-overlay.is-open { opacity: 1; visibility: visible; }
.lead-gate-modal { width: 100%; max-width: 420px; background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--r-lg); padding: 40px 34px; position: relative; transform: translateY(14px) scale(0.98); transition: transform var(--t-med) var(--ease); }
.lead-gate-overlay.is-open .lead-gate-modal { transform: translateY(0) scale(1); }
.lead-gate-close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--line-strong); background: var(--surface-2); color: var(--text-dim); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 13px; }
.lead-gate-modal .mono-tag { margin-bottom: 16px; }
.lead-gate-modal h3 { font-size: 22px; font-weight: 600; margin-bottom: 8px; }
.lead-gate-modal p.lead-gate-sub { color: var(--text-dim); font-size: 13.5px; margin-bottom: 24px; line-height: 1.6; }

/* ============================================================
   SHARED SECTION HEADER + MISC UTILITIES
   ============================================================ */
.section-head { max-width: 640px; margin-bottom: 50px; }
.section-head h2 { font-size: clamp(30px, 4vw, 46px); font-weight: 600; letter-spacing: -0.015em; line-height: 1.1; margin-top: 16px; }
.section-head p { color: var(--text-dim); font-size: 15.5px; line-height: 1.7; margin-top: 16px; max-width: 52ch; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.scroll-top-btn {
    position: fixed; bottom: 96px; right: 24px; width: 46px; height: 46px; border-radius: 50%;
    background: var(--surface-2); border: 1px solid var(--line-strong); color: var(--text); display: flex;
    align-items: center; justify-content: center; cursor: pointer; z-index: 60; opacity: 0; visibility: hidden;
    transform: translateY(10px); transition: all var(--t-fast);
}
.scroll-top-btn.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
@media (max-width: 767px) { .scroll-top-btn { bottom: 86px; } }

/* prefers-reduced-motion global guard for the remaining transform-driven components */
@media (prefers-reduced-motion: reduce) {
    .ride-card-media img, .gallery-item img, .story-media img { transition: none !important; }
    .showcase-ring, .compare-panel { transition: none !important; }
}

/* ============================================================
   SAVINGS CALCULATOR PANEL — interactive console beneath the
   static .savings-console cards above.
   ============================================================ */
.calc-panel { margin-top: 26px; border: 1px solid var(--line-strong); border-radius: var(--r-lg); background: var(--surface); display: grid; grid-template-columns: 1.1fr 0.9fr; overflow: hidden; }
.calc-panel-inputs { padding: 40px; border-right: 1px solid var(--line); }
.calc-panel-inputs h3 { font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.calc-panel-inputs > p { color: var(--text-dim); font-size: 13.5px; margin-bottom: 28px; }
.calc-field { margin-bottom: 26px; }
.calc-field-label { display: flex; justify-content: space-between; align-items: baseline; font-family: var(--f-mono); font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 12px; }
.calc-field-label b { font-family: var(--f-display); font-size: 15px; color: var(--accent); font-weight: 600; letter-spacing: 0; text-transform: none; }
input[type="range"].calc-slider { -webkit-appearance: none; width: 100%; height: 2px; background: var(--line-strong); border-radius: 2px; outline: none; }
input[type="range"].calc-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%; background: var(--accent); cursor: pointer; box-shadow: 0 0 0 4px rgba(201,181,156,0.18); }
input[type="range"].calc-slider::-moz-range-thumb { width: 18px; height: 18px; border-radius: 50%; background: var(--accent); border: none; cursor: pointer; box-shadow: 0 0 0 4px rgba(201,181,156,0.18); }
.calc-num-input { width: 100%; background: var(--ink-2); border: 1px solid var(--line-strong); border-radius: var(--r-sm); padding: 12px 16px; font-family: var(--f-mono); font-size: 15px; color: var(--text); }
.calc-num-input:focus { outline: none; border-color: var(--accent); }
.calc-note { font-family: var(--f-mono); font-size: 11px; color: var(--text-faint); line-height: 1.7; letter-spacing: 0.01em; margin-top: 4px; }
.calc-panel-result { padding: 40px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; background: radial-gradient(circle at 30% 20%, rgba(201,181,156,0.08), transparent 60%); }
.calc-result-label { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 14px; }
.calc-result-figure { font-family: var(--f-display); font-size: clamp(38px, 5vw, 56px); font-weight: 600; color: var(--accent); letter-spacing: -0.02em; line-height: 1; }
.calc-result-sub { font-family: var(--f-mono); font-size: 13px; color: var(--text-dim); margin-top: 10px; }
@media (max-width: 900px) {
    .calc-panel { grid-template-columns: 1fr; }
    .calc-panel-inputs { border-right: none; border-bottom: 1px solid var(--line); padding: 30px 26px; }
    .calc-panel-result { padding: 30px 26px; align-items: flex-start; }
}

/* ============================================================
   PAGE LOADER — full-screen intro that plays once on every fresh load:
   two angled "headlight" blades sweep in from a point out of the dark
   like an EV's DRL switching on, sparkle accents twinkle beside them,
   a WELCOME line fades up beneath — then the whole loader fades away to
   reveal the page. body.is-loading (set in the HTML tag itself, so it
   applies before any CSS/JS even runs) keeps the page from scrolling or
   flashing behind it; script.js removes that class and adds
   .loader-hidden once the sequence finishes.
   ============================================================ */
body.is-loading { overflow: hidden; height: 100vh; }
.page-loader {
    position: fixed; inset: 0; z-index: 9999;
    background: #030303;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}
.page-loader.loader-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-stage { position: relative; display: flex; flex-direction: column; align-items: center; gap: clamp(22px, 4vw, 38px); }
.loader-lights { position: relative; display: flex; align-items: center; gap: clamp(46px, 10vw, 150px); }

/* Each blade is drawn as a THICK, tapered, glowing lens shape that grows
   out of its inner tip (the point nearest the centre) — mirroring the
   right side via scaleX(-1) on the wrapper keeps both blades symmetric
   from one shared shape/animation. A blurred .loader-blade-glow sits
   behind the sharp .loader-blade-core to fake a real headlight's soft
   photographic bloom around a hot-white centre, the way a phone camera
   actually captures an LED strip in the dark. */
.loader-blade-wrap { width: clamp(96px, 15vw, 180px); height: 64px; position: relative; }
.loader-blade-wrap--right { transform: scaleX(-1); }
.loader-blade-glow,
.loader-blade-core {
    position: absolute; left: 0; top: 50%; width: 100%; height: 46%;
    margin-top: -23%;
    clip-path: polygon(0% 8%, 55% 0%, 80% 20%, 100% 50%, 80% 80%, 55% 100%, 0% 92%);
    transform: rotate(20deg) scaleX(0);
    transform-origin: 100% 50%;
    animation: bladeIn 0.85s cubic-bezier(.16,1,.3,1) forwards,
               bladeTwinkle 0.9s ease-in-out 0.85s 2 both;
}
.loader-blade-glow {
    background: var(--accent, #C9B59C);
    filter: blur(14px) drop-shadow(0 0 50px var(--accent, #C9B59C));
}
.loader-blade-core {
    background: linear-gradient(90deg, #fff 0%, #fff 50%, rgba(255,255,255,0.85) 75%, rgba(255,255,255,0.25) 94%, rgba(255,255,255,0) 100%);
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.95)) drop-shadow(0 0 22px #fff);
}
@keyframes bladeIn { to { transform: rotate(20deg) scaleX(1); } }
@keyframes bladeTwinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}
.loader-sparkles {
    position: absolute; right: clamp(-34px, -6vw, -14px); bottom: -20px;
    display: flex; align-items: flex-end; gap: 8px;
    opacity: 0; animation: sparkleFadeIn 0.5s ease forwards 0.75s;
}
.loader-sparkle {
    font-size: 13px; line-height: 1; color: #fff;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.85));
    animation: sparkleTwinkle 1.6s ease-in-out infinite;
}
.loader-sparkle:first-child { font-size: 20px; animation-delay: 0s; }
.loader-sparkle:last-child { font-size: 12px; animation-delay: 0.55s; margin-bottom: 5px; }
@keyframes sparkleFadeIn { to { opacity: 1; } }
@keyframes sparkleTwinkle {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(0.55); opacity: 0.35; }
}
.loader-welcome { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.loader-welcome-text {
    display: inline-block;
    font-family: var(--f-display); font-weight: 300;
    font-size: clamp(15px, 2.4vw, 23px); text-transform: uppercase;
    color: #F3EAD9; text-shadow: 0 0 26px rgba(201,181,156,0.55);
    opacity: 0; letter-spacing: -0.05em; filter: blur(3px);
    animation: welcomeIn 1.1s cubic-bezier(.19,1,.22,1) forwards 1.05s;
}
@keyframes welcomeIn { to { opacity: 1; letter-spacing: 0.55em; filter: blur(0); } }
.loader-welcome-line {
    width: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent, #C9B59C), transparent);
    animation: welcomeLineIn 0.6s ease forwards 1.85s;
}
@keyframes welcomeLineIn { to { width: 64px; } }
@media (prefers-reduced-motion: reduce) {
    .loader-blade-glow, .loader-blade-core { animation: bladeIn 0.4s ease forwards; }
    .loader-welcome-text { animation: welcomeIn 0.4s ease forwards 0.2s; }
    .loader-sparkles { animation: sparkleFadeIn 0.4s ease forwards 0.2s; }
    .loader-sparkle { animation: none; }
}
