:root {
  --bg: #05060a;
  --bg-2: #08090f;
  --surface: #0c0e16;
  --surface-2: #12151f;
  --line: #1c2030;
  --line-2: #262b3d;
  --text: #eef2fb;
  --muted: #7c869c;
  --volt: #c8ff00;
  --volt-dim: #6f8f00;
  --ember: #ff5c1a;
  --cyan: #26d9ff;
  --gold: #ffd166;
  --ok: #3dff88;
  --radius: 16px;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-display: "Segoe UI", system-ui, sans-serif;
  --shadow: 0 24px 70px rgba(0,0,0,.6);
  --glow-volt: 0 0 22px rgba(200,255,0,.28);
  --glow-ember: 0 0 22px rgba(255,92,26,.28);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
section[id] { scroll-margin-top: 84px; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--volt); color: #05060a; }

/* ---------- fixed animated aurora background ---------- */
#bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(1000px 600px at 15% 5%, rgba(200,255,0,.06), transparent 60%),
    radial-gradient(900px 600px at 85% 20%, rgba(38,217,255,.05), transparent 60%),
    radial-gradient(1000px 700px at 50% 100%, rgba(255,92,26,.05), transparent 60%),
    var(--bg);
}
#bg canvas { width: 100%; height: 100%; display: block; }

/* scroll progress bar */
#progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 100;
  background: linear-gradient(90deg, var(--volt), var(--cyan));
  transform-origin: 0 50%; transform: scaleX(0); box-shadow: var(--glow-volt);
}

/* keep page content above the fixed background */
header, .ticker, .hero, .page-hero, .section, .brands-bar, .cta-band, footer { position: relative; z-index: 1; }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 12px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--volt); font-weight: 700; margin-bottom: 14px;
}
.kicker::before { content: ""; width: 26px; height: 2px; background: var(--volt); box-shadow: var(--glow-volt); }
.section-head { max-width: 760px; margin-bottom: 46px; }
.section-head.row { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.section-head.row > div { flex: 1; min-width: 0; }
.section-head.row .btn { flex-shrink: 0; margin-bottom: 6px; }
.section-head h2 {
  font-family: var(--font-display); font-size: clamp(34px, 5vw, 56px); font-weight: 900;
  letter-spacing: -.03em; line-height: .98; text-transform: uppercase;
}
.section-head h2 em { font-style: italic; color: var(--volt); }
.section-head p { color: var(--muted); margin-top: 14px; font-size: 16px; }
.grid { display: grid; gap: 22px; }

/* ---------- speed lines backdrop ---------- */
.speed-bg {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 90px, rgba(200,255,0,.045) 90px 91px),
    repeating-linear-gradient(180deg, transparent 0 46px, rgba(255,255,255,.02) 46px 47px);
  -webkit-mask-image: radial-gradient(120% 120% at 50% 0%, #000 40%, transparent 80%);
          mask-image: radial-gradient(120% 120% at 50% 0%, #000 40%, transparent 80%);
}
.speed-bg::after {
  content: ""; position: absolute; left: -40%; top: 0; height: 100%; width: 30%;
  background: linear-gradient(90deg, transparent, rgba(200,255,0,.05), transparent);
  animation: sweep 9s linear infinite;
}
@keyframes sweep { from { left: -40%; } to { left: 110%; } }

/* ---------- header ---------- */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(5,6,10,.78); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
header::after {
  content: ""; position: absolute; bottom: -1px; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--volt-dim), transparent);
  opacity: .5;
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.logo {
  font-family: var(--font-display); font-weight: 900; font-size: 17px; letter-spacing: .02em;
  display: flex; align-items: baseline; gap: 7px; text-transform: uppercase; white-space: nowrap;
  direction: ltr; unicode-bidi: isolate;
}
.logo .dot { width: 8px; height: 8px; background: var(--volt); box-shadow: var(--glow-volt); align-self: center; }
.logo span { color: var(--volt); font-style: italic; }
nav ul { display: flex; gap: 30px; list-style: none; }
nav ul a { color: var(--muted); font-size: 14px; font-weight: 600; letter-spacing: .02em; transition: color .2s; position: relative; }
nav ul a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px;
  background: var(--volt); transition: right .25s;
}
nav ul a:hover { color: var(--text); }
nav ul a:hover::after { right: 0; }
nav ul a.active { color: var(--text); }
nav ul a.active::after { right: 0; }
.nav-cta {
  background: var(--volt); color: #05060a; font-weight: 800; font-size: 13px; letter-spacing: .04em; text-transform: uppercase;
  padding: 11px 20px; clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transition: filter .2s, transform .15s; white-space: nowrap;
}
.nav-cta:hover { filter: brightness(1.1); transform: translateY(-1px); }

/* language toggle */
.lang-btn {
  background: transparent; color: var(--volt); font-weight: 800; font-size: 14px;
  border: 1.5px solid var(--line-2); border-radius: 999px; padding: 8px 16px; cursor: pointer;
  font-family: inherit; transition: all .18s; line-height: 1;
}
.lang-btn:hover { border-color: var(--volt); box-shadow: var(--glow-volt); }

.has-drop { position: relative; }
.with-arrow { display: inline-flex; align-items: center; gap: 7px; }
.caret { width: 7px; height: 7px; border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted); transform: rotate(45deg) translateY(-1px); transition: transform .18s, border-color .18s; }
.has-drop:hover .caret { transform: rotate(225deg); border-color: var(--volt); }
.drop {
  position: absolute; top: calc(100% + 16px); left: 50%; transform: translate(-50%, 8px);
  background: var(--surface); border: 1px solid var(--line-2); border-radius: 10px; min-width: 210px;
  padding: 8px; opacity: 0; visibility: hidden; transition: .18s; box-shadow: var(--shadow); z-index: 60;
}
.drop::before { content: ""; position: absolute; top: -11px; left: 0; right: 0; height: 11px; }
.has-drop:hover .drop, .drop:hover { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.drop a { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 8px; color: var(--muted); font-size: 14px; font-weight: 600; }
.drop a::before { content: ""; width: 5px; height: 5px; background: var(--volt); }
.drop a:hover { background: var(--surface-2); color: var(--text); }

/* ---------- mobile menu button ---------- */
.menu-btn {
  display: none; position: relative; width: 46px; height: 46px; flex-shrink: 0;
  background: transparent; border: 1.5px solid var(--line-2); border-radius: 12px;
  cursor: pointer; padding: 0; transition: border-color .18s, box-shadow .18s;
}
.menu-btn:hover { border-color: var(--volt); box-shadow: var(--glow-volt); }
.menu-btn .bars { position: absolute; left: 50%; top: 50%; width: 20px; height: 2px; background: var(--volt); transform: translate(-50%, -50%); transition: background .2s; }
.menu-btn .bars::before, .menu-btn .bars::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--volt); transition: transform .25s, top .25s; }
.menu-btn .bars::before { top: -7px; }
.menu-btn .bars::after { top: 7px; }
body.nav-open .menu-btn .bars { background: transparent; }
body.nav-open .menu-btn .bars::before { top: 0; transform: rotate(45deg); }
body.nav-open .menu-btn .bars::after { top: 0; transform: rotate(-45deg); }

.menu-cta { display: none; }

/* ---------- hero ---------- */
.hero {
  min-height: 92vh; display: flex; align-items: center; position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 560px at 78% 8%, rgba(200,255,0,.10), transparent 60%),
    radial-gradient(900px 520px at 8% 92%, rgba(255,92,26,.08), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(255,255,255,.012) 3px 4px);
}
.hero::after { content: ""; position: absolute; inset: auto 0 0 0; height: 180px; background: linear-gradient(transparent, var(--bg)); z-index: 3; }
.hero-bg-img {
  position: absolute; inset: 0; z-index: 0; opacity: .28;
  background-size: cover; background-position: center 60%;
  filter: saturate(.7) contrast(1.1);
}
.hero-bg-img::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,6,10,.5), rgba(5,6,10,.86)); }
.hero-inner { position: relative; z-index: 4; max-width: 680px; padding: 90px 0 130px; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 12px; font-size: 12px; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase; color: var(--volt); margin-bottom: 22px;
}
.hero-kicker::before { content: ""; width: 40px; height: 2px; background: var(--volt); box-shadow: var(--glow-volt); }
.hero h1 {
  font-family: var(--font-display); font-size: clamp(46px, 8.5vw, 104px); font-weight: 900;
  letter-spacing: -.035em; line-height: .94; text-transform: uppercase; text-shadow: 0 4px 40px rgba(0,0,0,.5);
}
.hero h1 .outline { color: transparent; -webkit-text-stroke: 2px var(--volt); text-shadow: none; }
.hero h1 .glow { color: var(--volt); text-shadow: 0 0 40px rgba(200,255,0,.4); }
.hero p { margin: 26px 0 36px; color: var(--muted); font-size: 18px; max-width: 500px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* hero speed dash line */
.hero-track {
  position: absolute; left: 0; right: 0; bottom: 10%; height: 3px; z-index: 2; overflow: hidden;
  background: linear-gradient(90deg, transparent, var(--line) 30% 70%, transparent);
}
.hero-track::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, var(--volt), transparent);
  animation: dash 2.6s linear infinite;
}
@keyframes dash { from { transform: translateX(-100%); } to { transform: translateX(100%); } }

/* floating glow orbs */
.orb {
  position: absolute; z-index: 1; border-radius: 50%; pointer-events: none;
  filter: blur(70px); mix-blend-mode: screen; will-change: transform;
  transition: transform .4s cubic-bezier(.2,.7,.3,1);
}
.orb-1 { width: 420px; height: 420px; left: -80px; top: 12%; background: rgba(200,255,0,.20); animation: float1 14s ease-in-out infinite; }
.orb-2 { width: 520px; height: 520px; right: -120px; top: 34%; background: rgba(38,217,255,.14); animation: float2 17s ease-in-out infinite; }
.orb-3 { width: 360px; height: 360px; left: 38%; bottom: -90px; background: rgba(255,92,26,.13); animation: float3 20s ease-in-out infinite; }
@keyframes float1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(70px,-50px) scale(1.15); } }
@keyframes float2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-90px,60px) scale(1.2); } }
@keyframes float3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(50px,70px) scale(1.12); } }

/* hero entrance text reveal */
.hero-inner > * { opacity: 0; transform: translateY(34px); animation: rise .9s cubic-bezier(.16,.8,.3,1) forwards; }
.hero-kicker { animation-delay: .05s; }
.hero h1 { animation-delay: .15s; }
.hero p { animation-delay: .3s; }
.hero-btns { animation-delay: .42s; }
.hero-stats { animation-delay: .56s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* mouse-parallax transform comes in from JS via inline --px/--py */

/* canvas streaks */
#streaks { position: absolute; inset: 0; z-index: 1; opacity: .8; }
#streaks canvas { width: 100%; height: 100%; display: block; }

.hero-stats { display: flex; gap: 0; margin-top: 70px; border-top: 1px solid var(--line); padding-top: 30px; }
.hero-stats > div { flex: 1; padding: 0 24px; border-left: 1px solid var(--line); }
.hero-stats > div:first-child { padding-left: 0; border-left: 0; }
.hero-stats b { display: block; font-family: var(--font-display); font-size: 40px; font-weight: 900; color: var(--volt); line-height: 1; }
.hero-stats span { color: var(--muted); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }

/* ---------- ticker marquee ---------- */
.ticker {
  border-block: 1px solid var(--line); background: var(--bg-2); overflow: hidden; position: relative;
  padding: 18px 0;
}
.ticker-track { display: flex; gap: 64px; width: max-content; animation: ticker 26s linear infinite; }
.ticker-track span {
  font-family: var(--font-display); font-size: 30px; font-weight: 900; text-transform: uppercase;
  letter-spacing: .02em; color: var(--volt); white-space: nowrap;
}
.ticker-track span em { font-style: italic; color: var(--muted); margin-inline-start: 32px; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- interior page hero ---------- */
.page-hero {
  position: relative; overflow: hidden; padding: 120px 0 84px;
  background:
    radial-gradient(800px 380px at 85% 0%, rgba(200,255,0,.12), transparent 60%),
    radial-gradient(700px 340px at 5% 100%, rgba(255,92,26,.09), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.page-hero .crumbs { font-size: 13px; color: var(--muted); margin-bottom: 16px; letter-spacing: .02em; }
.page-hero .crumbs a { color: var(--muted); }
.page-hero .crumbs a:hover { color: var(--volt); }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(40px, 6.5vw, 76px); font-weight: 900; letter-spacing: -.03em; line-height: .98; text-transform: uppercase; }
.page-hero h1 .outline { color: transparent; -webkit-text-stroke: 1.5px var(--volt); }
.page-hero h1 em { font-style: italic; color: var(--volt); }
.page-hero p { color: var(--muted); margin-top: 18px; max-width: 580px; font-size: 17px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; font-weight: 800; font-size: 14px; letter-spacing: .04em; text-transform: uppercase;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  transition: transform .15s, filter .15s, box-shadow .15s;
  border: 0; cursor: pointer; font-family: inherit;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--volt); color: #05060a; box-shadow: var(--glow-volt); }
.btn-primary:hover { filter: brightness(1.08); box-shadow: 0 0 34px rgba(200,255,0,.4); }
.btn-ghost { background: transparent; color: var(--text); box-shadow: inset 0 0 0 1.5px var(--line-2); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--volt); color: var(--volt); }
.btn-dealer { background: var(--cyan); color: #05060a; box-shadow: 0 0 22px rgba(38,217,255,.28); }
.btn-dealer:hover { filter: brightness(1.08); }
.btn-ember { background: var(--ember); color: #05060a; }

/* ---------- brands bar / chips ---------- */
.brands-bar { border-bottom: 1px solid var(--line); background: var(--bg-2); }
.brands-inner { display: flex; align-items: center; gap: 34px; overflow-x: auto; padding-top: 22px; padding-bottom: 22px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.brands-inner::-webkit-scrollbar { display: none; }
.brands-inner::after { content: ""; flex: 0 0 auto; width: 8px; height: 1px; }
.brand-chip {
  display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0;
  padding: 0; line-height: 1;
  color: var(--muted); font-weight: 800; font-size: 16px; letter-spacing: .06em; text-transform: uppercase;
  opacity: .65; transition: opacity .2s, color .2s; background: none; border: 0; cursor: pointer; font-family: inherit;
}
.brand-chip:hover { opacity: 1; color: var(--text); }
.brand-chip.active { opacity: 1; color: var(--volt); }
.brand-chip .dot { width: 28px; height: 28px; flex: 0 0 auto; border-radius: 50%; box-shadow: 0 0 0 4px rgba(200,255,0,.08); }

/* ---------- filters ---------- */
.filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.pill {
  background: var(--surface); border: 1px solid var(--line-2); color: var(--muted);
  padding: 10px 20px; font-size: 13px; font-weight: 700; letter-spacing: .03em; cursor: pointer;
  transition: all .18s; font-family: inherit; clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}
.pill:hover { color: var(--text); border-color: var(--muted); }
.pill.active { background: var(--volt); border-color: var(--volt); color: #05060a; }
.catalog-grid { grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); }

/* ---------- model cards ---------- */
.model-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; cursor: pointer; transition: transform .22s, border-color .22s, box-shadow .22s;
  display: flex; flex-direction: column; position: relative;
}
.model-card::before {
  content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: linear-gradient(120deg, transparent 30%, rgba(200,255,0,.06) 50%, transparent 70%);
  transform: translateX(-100%); transition: transform .6s;
}
.model-card:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: var(--shadow); }
.model-card:hover::before { transform: translateX(100%); }
.model-thumb { aspect-ratio: 4/3; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.model-thumb .ph { position: absolute; inset: 0; background: linear-gradient(145deg, var(--g1, #151a26), var(--g2, #0a0d14)); }
.model-thumb .ph::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0 4px, rgba(255,255,255,.03) 4px 5px);
}
.model-thumb .ph::after {
  content: attr(data-label); position: absolute; inset: 0; display: flex; align-items: flex-end; justify-content: center;
  font-family: var(--font-display); font-size: 44px; font-weight: 900; letter-spacing: .03em;
  color: rgba(255,255,255,.14); padding-bottom: 16px; text-transform: uppercase;
}
.model-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.model-thumb::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 44%;
  background: linear-gradient(transparent, rgba(0,0,0,.66)); z-index: 2; pointer-events: none;
}
.model-thumb .badge { z-index: 4; }
.model-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.model-brand { font-size: 11px; color: var(--volt); letter-spacing: .16em; text-transform: uppercase; font-weight: 700; }
.model-name { font-size: 21px; font-weight: 800; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .01em; }
.model-meta { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }
.model-meta .cc { color: var(--volt); font-weight: 800; }
.model-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 16px; border-top: 1px dashed var(--line); margin-top: 14px; }
.price { font-weight: 900; font-size: 18px; font-family: var(--font-display); }
.price small { color: var(--muted); font-weight: 500; font-size: 12px; text-transform: uppercase; }
.learn { font-size: 12px; font-weight: 800; color: var(--volt); letter-spacing: .08em; text-transform: uppercase; }
.learn::after { content: " →"; }
.empty { text-align: center; color: var(--muted); padding: 70px 0; display: none; }
.badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 12px; clip-path: polygon(5px 0, 100% 0, calc(100% - 5px) 100%, 0 100%);
}
.badge.soon { background: rgba(255,209,102,.14); color: var(--gold); border: 1px solid rgba(255,209,102,.4); }
.badge.active { background: rgba(61,255,136,.12); color: var(--ok); border: 1px solid rgba(61,255,136,.4); }
.badge.legacy { background: rgba(124,134,156,.12); color: var(--muted); border: 1px solid var(--line); }

/* ---------- detail page ---------- */
.detail-hero {
  position: relative; overflow: hidden; text-align: center; padding: 40px 24px 52px;
  border: 1px solid var(--line); border-radius: 20px; background:
    radial-gradient(120% 140% at 50% -20%, rgba(200,255,0,.06), transparent 60%),
    var(--surface); box-shadow: var(--shadow);
}
.detail-hero-glow { position: absolute; inset: -30% -30% auto; height: 70%; pointer-events: none;
  background: radial-gradient(60% 80% at 50% 0%, color-mix(in oklab, var(--hc1, #c8ff00) 22%, transparent), transparent 70%);
  -webkit-mask: linear-gradient(#000, transparent); mask: linear-gradient(#000, transparent);
}
.detail-hero h1 { font-family: var(--font-display); font-size: 56px; font-weight: 900; letter-spacing: -.02em; text-transform: uppercase; line-height: 1; margin: 12px 0 14px; }
.detail-hero .price { font-size: 30px; color: var(--volt); margin-top: 18px; }
.detail-hero .d-lede { max-width: 560px; margin: 14px auto 0; color: var(--muted); }
.detail-hero .d-badges { justify-content: center; }
.detail-hero .detail-actions { justify-content: center; }
.detail-hero .detail-actions .btn { flex: 0 1 220px; }

.detail-offer { display: grid; grid-template-columns: 1.2fr 1fr; gap: 0; background: var(--surface); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); }
.detail-gallery { position: relative; background: var(--surface-2); }
.detail-gallery .ph { aspect-ratio: 4/3; position: relative; overflow: hidden; }
.detail-gallery .ph::before { content: ""; position: absolute; inset: 0; background: linear-gradient(140deg, var(--g1, #151a26), var(--g2, #0a0d14)); }
.thumb-strip { display: flex; gap: 10px; padding: 12px 20px; overflow-x: auto; background: var(--surface); border-bottom: 1px solid var(--line); }
.thumb { width: 76px; height: 52px; flex: 0 0 auto; border-radius: 8px; overflow: hidden; cursor: pointer; padding: 0; border: 2px solid var(--line-2); background: var(--surface-2); transition: border-color .15s, transform .15s; }
.thumb:hover { transform: translateY(-2px); }
.thumb.active { border-color: var(--volt); box-shadow: var(--glow-volt); }
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.thumb-video { display: flex; align-items: center; justify-content: center; background: radial-gradient(circle at 50% 30%, var(--surface-2), var(--bg)); border-color: var(--line-2); }
.thumb-video .play-ico { width: 0; height: 0; border-left: 16px solid var(--volt); border-top: 9px solid transparent; border-bottom: 9px solid transparent; margin-left: 3px; filter: drop-shadow(0 0 6px rgba(200,255,0,.5)); }
.thumb-video.active .play-ico { border-left-color: #05060a; }
.detail-gallery .ph.is-video { padding: 0; }
.video-emb { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 2; }
.cover { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.quick-specs { padding: 34px 38px; align-self: center; }
.quick-specs .qs-title { font-family: var(--font-display); font-size: 22px; font-weight: 800; text-transform: uppercase; letter-spacing: -.01em; margin-bottom: 14px; }
.quick-specs .role { color: var(--muted); font-size: 13px; margin-bottom: 20px; }
.quick-specs .row, .spec-group .row { display: flex; justify-content: space-between; padding: 10px 16px; font-size: 13px; border-bottom: 1px solid var(--line); }
.quick-specs .row:last-child, .spec-group .row:last-child { border-bottom: 0; }
.quick-specs .row:nth-child(odd), .spec-group .row:nth-child(odd) { background: var(--surface-2); }
.quick-specs .row .k, .spec-group .row .k { color: var(--muted); letter-spacing: .04em; }
.quick-specs .row .v, .spec-group .row .v { font-weight: 700; }

.sec-detail { margin-top: 42px; }
.sec-detail .sec-head { margin-bottom: 22px; }
.spec-groups { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.spec-group { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: var(--surface); }
.spec-group h3 { padding: 14px 18px; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--volt); font-weight: 800; background: var(--surface-2); border-bottom: 1px solid var(--line); }
.spec-group .row { border-bottom: 1px solid var(--line); }
.spec-group .row:last-child { border-bottom: 0; }
.spec-group .row .k, .quick-specs .row .k { text-align: start; }
.spec-group .row .v, .quick-specs .row .v { text-align: end; }

.d-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.d-badges .chip { font-size: 12px; padding: 5px 12px; font-weight: 700; clip-path: polygon(4px 0, 100% 0, calc(100% - 4px) 100%, 0 100%); background: var(--surface-2); border: 1px solid var(--line-2); color: var(--muted); }
.detail-actions { display: flex; gap: 12px; margin-top: 6px; flex-wrap: wrap; }
.detail-actions .btn { flex: 1; min-width: 200px; }
.pager { display: flex; justify-content: space-between; gap: 16px; margin-top: 44px; border-top: 1px solid var(--line); padding-top: 26px; }

/* ---------- home: featured / highlights ---------- */
.feat-scroll { display: flex; gap: 26px; overflow-x: auto; padding-bottom: 20px; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: var(--line-2) transparent; }
.feat-media {
  position: relative; flex: 0 0 calc(58% - 13px); min-width: 390px; max-width: 640px; scroll-snap-align: start;
  border: 1px solid var(--line); border-radius: calc(var(--radius) + 6px); overflow: hidden; cursor: pointer; padding: 0;
  background: var(--surface); text-align: start; font-family: inherit;
  transition: transform .22s, border-color .22s, box-shadow .22s; display: block;
}
.feat-media::before {
  content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: linear-gradient(120deg, transparent 30%, rgba(200,255,0,.06) 50%, transparent 70%);
  transform: translateX(-100%); transition: transform .6s;
}
.feat-media:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: var(--shadow); }
.feat-media:hover::before { transform: translateX(100%); }
.feat-media:hover .fm-thumb img { transform: scale(1.05); }
.fm-thumb { position: relative; aspect-ratio: 16/10; overflow: hidden; display: block; background: var(--surface-2); }
.fm-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s cubic-bezier(.16,.8,.3,1); }
.fm-thumb::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 52%, rgba(5,6,10,.72)),
    linear-gradient(180deg, rgba(5,6,10,.28), transparent 32%);
  pointer-events: none;
}
.fm-brand {
  position: absolute; left: 20px; bottom: 18px; z-index: 2;
  font-size: 18px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  color: #fff;
  padding: 9px 18px; border-radius: 12px;
  background: radial-gradient(120% 160% at 50% 0%, color-mix(in oklab, var(--c, var(--volt)) 55%, transparent), rgba(5,6,10,.72));
  border: 1px solid color-mix(in oklab, var(--c, var(--volt)) 45%, transparent);
  backdrop-filter: blur(4px);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.cat-grid { grid-template-columns: repeat(3, 1fr); }
.cat-card {
  position: relative; overflow: hidden; border-radius: var(--radius); padding: 36px 28px 28px;
  border: 1px solid var(--line); background: var(--surface); transition: transform .2s, border-color .2s;
  display: block;
}
.cat-card:hover { transform: translateY(-5px); border-color: var(--c, var(--volt)); }
.cat-card::before {
  content: ""; position: absolute; inset: -30% -30% auto auto; width: 60%; aspect-ratio: 1;
  border-radius: 50%; background: radial-gradient(circle, var(--c, var(--volt)), transparent 70%); opacity: .16;
}
.cat-card .cc { font-size: 46px; font-weight: 900; font-family: var(--font-display); color: var(--c, var(--volt)); line-height: 1; }
.cat-card b { display: block; font-size: 18px; margin-top: 10px; text-transform: uppercase; letter-spacing: .02em; }
.cat-card span { color: var(--muted); font-size: 13px; }
.hl-grid { grid-template-columns: repeat(3, 1fr); }
.hl-card {
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface);
  padding: 32px 28px; transition: transform .2s, border-color .2s; position: relative; overflow: hidden;
}
.hl-card::after {
  content: ""; position: absolute; right: -30px; top: -30px; width: 90px; height: 90px;
  background: radial-gradient(circle, rgba(200,255,0,.1), transparent 70%);
}
.hl-card:hover { transform: translateY(-5px); border-color: var(--line-2); }
.hl-card .num { font-family: var(--font-display); font-size: 34px; font-weight: 900; color: var(--volt); text-shadow: 0 0 24px rgba(200,255,0,.4); }
#garage .hl-card .num { font-size: 34px; white-space: normal; line-height: .95; word-break: break-word; margin: 0 0 12px; }
.hl-card b { font-size: 18px; display: block; margin: 12px 0 6px; text-transform: uppercase; letter-spacing: .02em; }
.hl-card p { color: var(--muted); font-size: 14px; }
.brand-cards { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.brand-card {
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface);
  padding: 34px 30px; display: flex; flex-direction: column; gap: 8px; transition: transform .2s, border-color .2s;
  position: relative; overflow: hidden;
}
.brand-card:hover { transform: translateY(-5px); border-color: var(--line-2); }
.brand-card::after {
  content: ""; position: absolute; inset: -40% -40% auto auto; width: 70%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, var(--c, var(--volt)), transparent 70%); opacity: .13;
}
.brand-card .mark { width: 40px; height: 40px; border-radius: 50%; margin-bottom: 8px; box-shadow: 0 0 24px rgba(200,255,0,.2); }
.brand-card b { font-size: 22px; letter-spacing: .06em; font-family: var(--font-display); }
.brand-card .meta { color: var(--volt); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; }
.brand-card p { color: var(--muted); font-size: 14px; }

/* ---------- gallery page ---------- */
.gallery-stats { display: flex; gap: 44px; justify-content: center; margin: 6px 0 36px; }
.media-tabs { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.media-tabs .pill em { font-style: normal; opacity: .7; margin-inline-start: 4px; font-weight: 800; }
.gallery-block { margin-bottom: 48px; }
.gallery-block:last-of-type { margin-bottom: 0; }
.gallery-block-head { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.gallery-block-head h3 { font-family: var(--font-display); font-size: 18px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; display: flex; align-items: baseline; gap: 10px; white-space: nowrap; }
.gallery-block-head h3 em { font-style: normal; color: var(--volt); font-size: 14px; letter-spacing: .08em; }
.gallery-block-line { flex: 1; height: 1px; background: linear-gradient(90deg, var(--line-2), transparent); }
.gallery-block[hidden] { display: none !important; }
.gallery-sentinel { height: 1px; }
.load-more {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  margin: 18px auto 0; padding: 12px 22px; font-size: 13px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  color: var(--text); background: var(--surface); border: 1.5px solid var(--line-2); border-radius: 999px; cursor: pointer;
  transition: border-color .18s, color .18s, transform .15s; font-family: inherit;
}
.load-more:hover { border-color: var(--volt); color: var(--volt); transform: translateY(-1px); }
.load-more em { font-style: normal; opacity: .7; }
.load-more[hidden], .load-more[style*="display: none"] { display: none !important; }
.g-item.lazy-loading { background: linear-gradient(110deg, var(--surface) 8%, var(--surface-2) 18%, var(--surface) 33%); background-size: 200% 100%; animation: shimmer 1.2s linear infinite; }
.g-item.lazy-loading img, .g-item.lazy-loading video { opacity: 0; }
@keyframes shimmer { to { background-position-x: -200%; } }
.gs { text-align: center; }
.gs b { display: block; font-family: var(--font-display); font-size: 40px; font-weight: 900; color: var(--volt); line-height: 1; }
.gs span { color: var(--muted); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr)); }
.g-item {
  position: relative; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: var(--surface); aspect-ratio: 4/3; box-shadow: var(--shadow);
}
.g-item .ph { position: absolute; inset: 0; background: linear-gradient(145deg, #151a26, #0a0d14); }
.g-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s cubic-bezier(.16,.8,.3,1); }
.g-photo:hover img { transform: scale(1.05); }
.g-video video { width: 100%; height: 100%; border: 0; display: block; object-fit: cover; background: #000; }
.g-item { cursor: pointer; }
.g-item:hover { border-color: rgba(200,255,0,.5); }
.g-video video { pointer-events: none; }
.g-expand {
  position: absolute; z-index: 1; bottom: 12px; inset-inline-end: 12px; pointer-events: none;
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  border: 1.5px solid var(--line-2); background: rgba(8,9,15,.6); color: var(--muted); backdrop-filter: blur(4px);
  opacity: 0; transform: translateY(8px) scale(.92);
  transition: opacity .22s ease, transform .22s cubic-bezier(.16,.8,.3,1), color .2s, border-color .2s, box-shadow .2s;
}
.g-expand svg { width: 18px; height: 18px; }
.g-item:hover .g-expand { opacity: 1; transform: none; }
.g-item:hover .g-expand:hover { border-color: var(--volt); color: var(--volt); box-shadow: var(--glow-volt); }
@media (hover: none) {
  .g-photo:hover img { transform: none; }
  .g-item:hover { border-color: var(--line); }
  .g-expand { opacity: 1; transform: none; }
}
.g-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 1; pointer-events: none;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  border: 2px solid rgba(200,255,0,.55); background: rgba(5,6,10,.45); backdrop-filter: blur(3px);
}
.g-play i { width: 0; height: 0; border-left: 18px solid var(--volt); border-top: 10px solid transparent; border-bottom: 10px solid transparent; margin-left: 3px; }
.gallery-cta { text-align: center; margin-top: 56px; }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 2000; display: none;
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(200,255,0,.06), transparent 60%),
    radial-gradient(900px 500px at 110% 120%, rgba(46,163,255,.07), transparent 60%),
    rgba(4,6,10,.96);
}
.lightbox.open { display: flex; }

.lx-side {
  position: relative; z-index: 4; width: 150px; flex: 0 0 auto;
  display: flex; flex-direction: column; gap: 10px;
  padding: 20px 10px;
  border-inline-end: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(12,14,22,.55), rgba(8,9,15,.35));
  backdrop-filter: blur(6px);
}
.lx-scroll {
  display: grid; place-items: center; width: 100%; height: 34px; flex: 0 0 auto;
  padding: 0; line-height: 1;
  border: 1px solid var(--line-2); border-radius: 10px; background: rgba(8,9,15,.6);
  color: var(--muted); cursor: pointer;
  transition: border-color .2s, color .2s, background .2s, box-shadow .2s;
}
.lx-scroll svg { display: block; width: 18px; height: 18px; }
.lx-scroll:hover { border-color: var(--volt); color: var(--volt); background: rgba(8,9,15,.9); box-shadow: var(--glow-volt); }
.lx-thumbs { flex: 1; min-height: 0; overflow-y: auto; display: flex; flex-direction: column; gap: 10px; padding: 2px 0; scrollbar-width: none; }
.lx-thumbs::-webkit-scrollbar { display: none; }
.lx-thumb {
  position: relative; flex: 0 0 auto; width: 100%; height: 82px; padding: 0;
  border: 2px solid rgba(255,255,255,.08); border-radius: 12px; overflow: hidden;
  background: rgba(255,255,255,.03); cursor: pointer; display: block;
  transition: transform .18s cubic-bezier(.16,.8,.3,1), border-color .18s, box-shadow .18s, opacity .18s;
  opacity: .62;
}
.lx-thumb:hover { transform: translateY(-2px); opacity: 1; }
.lx-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s cubic-bezier(.16,.8,.3,1); }
.lx-thumb:hover img, .lx-thumb:hover video { transform: scale(1.08); }
.lx-thumb.active { opacity: 1; border-color: var(--volt); box-shadow: 0 0 0 2px rgba(200,255,0,.22), 0 12px 30px rgba(0,0,0,.55); }
.lx-thumb.ph { display: grid; place-items: center; color: var(--volt); font-size: 20px; }
.lx-thumb.ph img, .lx-thumb.ph video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lx-thumb.ph .tl-play {
  position: relative; display: grid; place-items: center; width: 38px; height: 38px;
  border-radius: 50%; color: var(--volt);
  border: 2px solid rgba(200,255,0,.55); background: rgba(5,6,10,.55); backdrop-filter: blur(2px);
}
.lx-thumb.ph .tl-play svg { width: 16px; height: 16px; }

.lx-main { position: relative; flex: 1; min-width: 0; }
.lx-stage { position: absolute; inset: 0; touch-action: none; }
.lx-media { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; touch-action: none; padding: 64px 20px 88px; }
.lx-media.lx-anim { animation: lxStageIn .34s cubic-bezier(.16,.8,.3,1); }
.lx-frame {
  position: relative; flex: 0 1 auto; width: fit-content; height: fit-content;
  max-width: 100%; max-height: 100%;
  display: grid; place-items: center;
  transform-origin: center; will-change: transform; cursor: grab;
}
.lx-media img, .lx-media video { display: block; max-width: 78vw; max-height: 78vh; animation: lxMediaIn .45s ease both; }
.lx-media video { width: auto; background: #000; box-shadow: 0 30px 80px rgba(0,0,0,.55); }
.lx-frame.dragging { cursor: grabbing; }
@keyframes lxStageIn { from { opacity: 0; transform: translateX(14px) scale(.995); } to { opacity: 1; transform: none; } }
@keyframes lxMediaIn { from { opacity: 0; filter: blur(10px) saturate(.7); } to { opacity: 1; filter: none; } }

.lx-count { position: absolute; top: 20px; left: 50%; transform: translateX(-50%); z-index: 3; display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; font-variant-numeric: tabular-nums; background: rgba(8,9,15,.7); padding: 7px 16px; border-radius: 999px; border: 1px solid var(--line-2); backdrop-filter: blur(8px); }
.lx-count b { color: var(--volt); font-weight: 800; }
.lx-close, .lx-nav {
  position: absolute; z-index: 3; display: grid; place-items: center;
  width: 46px; height: 46px; border-radius: 50%; padding: 0;
  border: 1.5px solid var(--line-2); background: rgba(8,9,15,.6); color: var(--muted);
  cursor: pointer; transition: border-color .2s, color .2s, transform .2s, box-shadow .2s, background .2s, opacity .3s ease;
}
.lx-close svg, .lx-nav svg { width: 22px; height: 22px; }
.lx-nav svg { width: 24px; height: 24px; }
.lx-close:hover, .lx-nav:hover { border-color: var(--volt); color: var(--volt); box-shadow: var(--glow-volt); }
.lx-close { top: 18px; inset-inline-end: 18px; }
.lx-close:hover { transform: rotate(90deg); }
.lx-nav { top: 50%; transform: translateY(-50%); }
.lx-nav:hover { transform: translateY(-50%) scale(1.07); }
.lx-prev { inset-inline-start: 18px; }
.lx-next { inset-inline-end: 18px; }
.lx-controls {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; align-items: center; gap: 2px; padding: 6px;
  border-radius: 999px; background: rgba(8,9,15,.72); border: 1px solid var(--line-2);
  backdrop-filter: blur(10px); box-shadow: var(--shadow);
}
.lx-ctrl {
  display: grid; place-items: center; width: 44px; height: 40px; padding: 0;
  border: none; background: transparent; color: var(--muted); cursor: pointer; border-radius: 999px;
  transition: color .2s, background .2s;
}
.lx-ctrl svg { width: 20px; height: 20px; }
.lx-ctrl:hover { color: var(--volt); background: rgba(200,255,0,.08); }
.lx-ctrl.pct {
  min-width: 62px; padding: 0 12px; height: 36px; margin: 0 2px;
  font-size: 13px; font-weight: 800; letter-spacing: .04em; font-variant-numeric: tabular-nums;
  color: var(--text); border: 1px solid var(--line);
}
.lx-ctrl.pct:hover { border-color: var(--volt); color: var(--volt); background: transparent; }
@media (max-width: 640px) {
  .lightbox { flex-direction: column; }
  .lx-main { order: 1; }
  .lx-side {
    order: 2; position: static; width: auto; height: 96px; flex: 0 0 auto;
    flex-direction: row; align-items: stretch; gap: 8px; padding: 8px 10px;
    border-inline-end: 0; border-top: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(12,14,22,.9), rgba(8,9,15,.65));
  }
  .lx-thumbs { flex: 1; min-width: 0; height: 100%; flex-direction: row; overflow-y: hidden; overflow-x: auto; gap: 8px; padding: 2px 0; }
  .lx-thumb { width: 118px; flex: 0 0 auto; height: 100%; border-radius: 8px; }
  .lx-scroll { width: 34px; height: 100%; flex: 0 0 auto; }
  .lx-scroll:first-child svg { transform: rotate(-90deg); }
  .lx-scroll:last-child svg { transform: rotate(-90deg); }
  .lx-close, .lx-nav { width: 42px; height: 42px; }
  .lx-prev { inset-inline-start: 8px; }
  .lx-next { inset-inline-end: 8px; }
  .lx-controls { bottom: 16px; }
  .lx-media { padding: 0 0 16px; }
  .lx-media img, .lx-media video { max-width: 100%; max-height: 90vh; }
  .lx-nav { transition: border-color .2s, color .2s, transform .2s, box-shadow .2s, background .2s, opacity .3s ease; }
  .lightbox:not(.nav-on) .lx-nav { opacity: 0; pointer-events: none; }
}
.cta-band {
  border-radius: 20px; padding: 70px 40px; text-align: center; position: relative; overflow: hidden;
  background:
    linear-gradient(120deg, rgba(200,255,0,.08), rgba(255,92,26,.06)),
    var(--bg-2);
  border: 1px solid var(--line-2);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background: repeating-linear-gradient(0deg, transparent 0 4px, rgba(255,255,255,.02) 4px 5px);
}
.cta-band h2 { font-family: var(--font-display); font-size: clamp(32px, 5vw, 52px); font-weight: 900; letter-spacing: -.02em; text-transform: uppercase; position: relative; }
.cta-band p { color: var(--muted); max-width: 540px; margin: 14px auto 34px; position: relative; }
.cta-band .hero-btns { justify-content: center; position: relative; }

/* ---------- story / about ---------- */
.story-grid { grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.story-visual {
  position: sticky; top: 96px; align-self: start;
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/5; background: var(--surface-2); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  min-height: 360px;
}
.story-visual::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0 5px, rgba(255,255,255,.02) 5px 6px);
}
.story-visual span { font-family: var(--font-display); font-size: clamp(44px, 6vw, 72px); font-weight: 900; letter-spacing: .05em; color: var(--volt); text-shadow: 0 0 40px rgba(200,255,0,.35); position: relative; text-align: center; line-height: .9; padding: 0 16px; word-break: keep-all; }
.story-visual::after {
  content: ""; position: absolute; left: 20px; right: 20px; bottom: 20px; height: 2px;
  background: linear-gradient(90deg, var(--volt), transparent);
}
.counters { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.counter { background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 28px 20px; position: relative; overflow: hidden; color: var(--volt); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 8px; }
.counter::after { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--volt); }
.counter b { font-family: var(--font-display); font-size: clamp(28px, 3.2vw, 38px); font-weight: 900; color: var(--volt); display: inline; line-height: 1; vertical-align: baseline; font-variant-numeric: tabular-nums; letter-spacing: -.02em; white-space: nowrap; }
.counter .cnt-plus { font-family: var(--font-display); font-size: clamp(28px, 3.2vw, 38px); font-weight: 900; color: var(--volt); display: inline; line-height: 1; vertical-align: baseline; margin-inline-start: 2px; }
.counter .cnt-row { display: inline-flex; align-items: baseline; justify-content: center; gap: 2px; line-height: 1; }
.counter span[data-i18n] { color: var(--muted); font-size: 11px; letter-spacing: .12em; line-height: 1.4; text-transform: uppercase; display: block; text-align: center; }
.counter span:not(.cnt-plus):not(.cnt-row):not([data-i18n]) { color: var(--muted); font-size: 11px; letter-spacing: .12em; line-height: 1.4; text-transform: uppercase; display: block; text-align: center; }
/* 5-digit counter needs smaller size to fit "+" without clipping (see screenshot) */
.counter:has(b[data-count="10000"]) b,
.counter:has(b[data-count="10000"]) .cnt-plus,
.counter--wide b,
.counter--wide .cnt-plus { font-size: clamp(24px, 2.6vw, 32px); letter-spacing: -.03em; }
.timeline { margin-top: 38px; border-left: 2px solid var(--line-2); padding-left: 30px; display: grid; gap: 26px; }
.tl-item { position: relative; }
.tl-item::before { content: ""; position: absolute; left: -37px; top: 8px; width: 12px; height: 12px; transform: rotate(45deg); background: var(--volt); box-shadow: var(--glow-volt); }
.tl-item b { display: block; color: var(--volt); font-family: var(--font-display); letter-spacing: .08em; }
.tl-item p { color: var(--muted); font-size: 14px; margin-top: 3px; }

/* ---------- dealers ---------- */
.dealer-grid { grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.dealer-list { display: grid; gap: 12px; }
.dealer {
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 18px 20px;
  display: flex; align-items: center; gap: 16px; transition: border-color .2s;
}
.dealer:hover { border-color: var(--line-2); }
.dealer .ico { width: 42px; height: 42px; border-radius: 10px; background: var(--surface-2); border: 1px solid var(--line-2); flex-shrink: 0; position: relative; }
.dealer .ico::after { content: ""; position: absolute; inset: 12px; background: var(--volt); clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%); }
.dealer .meta { flex: 1; }
.dealer b { display: block; font-size: 15px; text-transform: uppercase; letter-spacing: .03em; }
.dealer .sub { color: var(--muted); font-size: 13px; }
.dealer a { color: var(--volt); font-size: 13px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.dealer a::after { content: " →"; }

/* ---------- footer ---------- */
footer { border-top: 1px solid var(--line); background: var(--bg-2); padding: 0 0 44px; position: relative; }
footer::before { content: ""; position: absolute; top: -1px; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--volt-dim), transparent); }
.contactbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; padding: 30px 0; border-bottom: 1px solid var(--line); margin-bottom: 48px; }
.contactbar .socials { display: flex; gap: 10px; }
.contactbar .socials a {
  width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-2); border-radius: 8px; color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .02em;
  transition: all .18s; clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}
.contactbar .socials a svg { display: block; }
.contactbar .socials a[aria-label="Facebook"] { color: #1877f2; }
.contactbar .socials a[aria-label="Instagram"] { color: #e4405f; }
.contactbar .socials a[aria-label="TikTok"] { color: #25f4ee; }
.contactbar .socials a[aria-label="WhatsApp"] { color: #25d366; }
.contactbar .socials a[aria-label="Phone"] { color: #3ddc84; }
.contactbar .socials a:hover { background: rgba(255,255,255,.07); border-color: currentColor; transform: translateY(-2px); }
.contactbar .contact-row { display: flex; flex-wrap: wrap; gap: 24px; }
.contactbar .item { color: var(--muted); font-size: 14px; display: flex; align-items: center; gap: 8px; }
.contactbar .item b { color: var(--text); font-weight: 700; }
.contactbar .item a { color: var(--muted); transition: color .18s; }
.contactbar .item a:hover { color: var(--volt); }
.chat-btn {
  background: var(--volt); color: #05060a; font-weight: 800; padding: 13px 24px; font-size: 13px; letter-spacing: .04em; text-transform: uppercase;
  transition: filter .18s, transform .15s; clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.chat-btn:hover { filter: brightness(1.08); transform: translateY(-2px); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 52px; }
footer h4 { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--volt); margin-bottom: 18px; }
footer ul { list-style: none; display: grid; gap: 10px; }
footer ul a { color: var(--muted); font-size: 14px; transition: color .2s; }
footer ul a:hover { color: var(--text); }

/* ---------- contact form ---------- */
.contact-form { display: flex; flex-direction: column; gap: 16px; background: var(--surface); border: 1px solid var(--line-2); border-radius: 16px; padding: 30px; }
.contact-form label { display: flex; flex-direction: column; gap: 8px; font-size: 13px; color: var(--muted); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.contact-form input, .contact-form textarea {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 8px;
  padding: 13px 15px; color: var(--text); font-family: inherit; font-size: 14px; resize: vertical;
  transition: border-color .18s, box-shadow .18s; letter-spacing: 0; text-transform: none;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--volt); box-shadow: 0 0 0 3px rgba(200,255,0,.1); }
.contact-form .btn { align-self: flex-start; }
.contact-form .btn:disabled { opacity: .55; filter: grayscale(.4); cursor: wait; }
.contact-form .hidden { display: none; }

/* ---------- success / error modal ---------- */
.modal { position: fixed; inset: 0; z-index: 120; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity .22s ease, visibility .22s ease; }
.modal.open { opacity: 1; visibility: visible; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(5,6,10,.72); backdrop-filter: blur(10px); }
.modal-card {
  position: relative; width: min(420px, 100%); background: var(--surface); border: 1px solid var(--line-2);
  border-radius: 18px; padding: 38px 34px; text-align: center; box-shadow: 0 30px 80px rgba(0,0,0,.55), var(--glow-volt);
  transform: translateY(14px) scale(.96); transition: transform .3s cubic-bezier(.16,.8,.3,1);
}
.modal.open .modal-card { transform: none; }
.modal-icon {
  display: grid; place-items: center; width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%;
  background: linear-gradient(135deg, var(--volt), var(--cyan)); color: #05060a; box-shadow: var(--glow-volt);
}
.modal-card h3 { font-family: var(--font-display); font-size: 26px; font-weight: 900; text-transform: uppercase; letter-spacing: -.01em; margin: 0 0 8px; }
.modal-card p { color: var(--muted); font-size: 14px; line-height: 1.6; margin: 0 0 24px; }
.modal-card .btn { margin: 0 auto; min-width: 120px; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.16,.8,.3,1), transform .8s cubic-bezier(.16,.8,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-dir="left"] { transform: translateX(-36px); }
.reveal[data-dir="right"] { transform: translateX(36px); }
.reveal[data-dir="left"].in, .reveal[data-dir="right"].in { transform: none; }

@media (max-width: 900px) {
  .menu-btn { display: block; }
  .nav > .nav-cta { display: none; }

  nav {
    position: fixed; top: 72px; left: 0; right: 0; z-index: 55;
    background: rgba(5,6,10,.97); backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line-2);
    box-shadow: 0 34px 60px rgba(0,0,0,.55);
    transform: translateY(-108%); opacity: 0; visibility: hidden;
    transition: transform .28s cubic-bezier(.16,.8,.3,1), opacity .28s, visibility .28s;
  }
  body.nav-open nav { transform: translateY(0); opacity: 1; visibility: visible; }

  nav ul { display: flex; flex-direction: column; gap: 0; padding: 10px 24px 26px; }
  nav ul li { border-bottom: 1px solid var(--line); }
  nav ul li:last-child, nav ul li.menu-cta { border-bottom: 0; }
  nav ul a { display: block; padding: 16px 4px; font-size: 16px; font-weight: 700; color: var(--text); }
  nav ul a.active { color: var(--volt); }
  nav ul a::after { display: none; }
  nav ul a:hover { color: var(--volt); }

  .has-drop .with-arrow .caret { margin-inline-start: auto; }
  .has-drop .drop {
    position: static; transform: none; opacity: 1; visibility: visible;
    min-width: 0; padding: 0 0 14px; margin: 0; border: 0; border-radius: 0;
    background: transparent; box-shadow: none;
  }
  .has-drop .drop::before { display: none; }
  .has-drop:hover .drop, .drop:hover { transform: none; }
  .drop a { padding: 12px 4px 12px 22px; font-size: 14px; }

  .menu-cta { display: block; margin-top: 18px; }
  .menu-cta .nav-cta { display: inline-flex; align-items: center; justify-content: center; }

  .hero-stats { margin-top: 40px; justify-content: center; text-align: center; }
  .hero-stats > div { padding: 0 14px; flex: 0 1 auto; }
  .story-grid, .dealer-grid, .detail-grid, .cat-grid, .hl-grid, .brand-grid, .brand-cards { grid-template-columns: 1fr; }
  .story-visual { position: relative; top: auto; aspect-ratio: 16/9; min-height: 260px; }
  .detail-offer { grid-template-columns: 1fr; }
  .spec-groups { grid-template-columns: 1fr; }
  .detail-hero h1 { font-size: 40px; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid > div:first-child { grid-column: 1 / -1; margin-bottom: 8px; }
  .footer-grid > div:not(:first-child) { padding: 20px 18px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.02); }
  .counters { grid-template-columns: 1fr; }
  .feat-media { flex: 0 0 88%; min-width: 0; }
  .section { padding: 70px 0; }
}

@media (max-width: 560px) {
  .wrap { padding: 0 16px; }
  .brands-inner { padding-top: 16px; padding-bottom: 16px; gap: 22px; }
  .logo { font-size: 15px; }
  .page-hero { padding: 84px 0 60px; }
  .hero-inner { padding: 60px 0 90px; }
  .hero h1 { font-size: clamp(38px, 14vw, 46px); }
  .hero h1 .outline { -webkit-text-stroke-width: 0; color: var(--volt); -webkit-text-fill-color: var(--volt); }
  .hero p { font-size: 16px; margin: 20px 0 28px; }
  .hero-btns .btn, .cta-band .hero-btns .btn, .detail-actions .btn, .contact-form .btn, .pager .btn { width: 100%; }
  .hero-stats b { font-size: 32px; color: var(--volt); }
  .section-head { margin-bottom: 34px; }
  .section-head h2 { font-size: clamp(28px, 8vw, 34px); }
  .section-head.row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .ticker-track span { font-size: 22px; }
  .cta-band { padding: 46px 22px; }
  .detail-hero { padding: 32px 18px 40px; }
  .detail-hero h1 { font-size: 30px; }
  .quick-specs { padding: 26px 20px; }
  .model-thumb .ph::after { font-size: 32px; }
  .hl-card, .brand-card { padding: 26px 22px; }
  .gallery-stats { gap: 28px; }
  .gallery-grid { gap: 14px; }
  .g-item { -webkit-tap-highlight-color: transparent; }
  .g-expand { opacity: 1; transform: none; }
  .contact-form { padding: 22px 18px; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; margin: 0; }
  .footer-grid > div:not(:first-child) { padding: 14px 12px; }
  .contactbar { flex-direction: column; align-items: stretch; }
  .contactbar .socials { justify-content: center; }
  .contactbar .chat-btn { text-align: center; }
  .pager { flex-direction: column; }
  nav ul { padding: 8px 16px 22px; }
}

/* ---------- Arabic (RTL) ---------- */
html[dir="rtl"] body { letter-spacing: 0; }
html[dir="rtl"] .logo, html[dir="rtl"] .kicker, html[dir="rtl"] .hero-kicker,
html[dir="rtl"] .model-brand,
html[dir="rtl"] .hero-stats span, html[dir="rtl"] .contactbar .item b {
  letter-spacing: 0;
}
html[dir="rtl"] .kicker::before, html[dir="rtl"] .hero-kicker::before {
  margin-inline-end: 0; margin-inline-start: 12px;
}
html[dir="rtl"] .learn::after, html[dir="rtl"] .dealer a::after { content: " ←"; }
html[dir="rtl"] .pager { flex-direction: row-reverse; }
html[dir="rtl"] .nav-cta, html[dir="rtl"] .btn { letter-spacing: 0; }
html[dir="rtl"] .hero-track::after { animation-direction: reverse; }
html[dir="rtl"] .ticker-track { animation-direction: reverse; }
html[dir="rtl"] .ticker-track span { letter-spacing: 0; }

/* RTL + mobile overrides (must come after the base RTL rules) */
@media (max-width: 900px) {
  html[dir="rtl"] .drop a { padding: 12px 22px 12px 4px; }
}
@media (max-width: 640px) {
  html[dir="rtl"] .lx-scroll:first-child svg { transform: rotate(90deg); }
  html[dir="rtl"] .lx-scroll:last-child svg { transform: rotate(90deg); }
}
@media (max-width: 560px) {
  html[dir="rtl"] .pager { flex-direction: column; }
}
