@font-face {
  font-family: "Russo One";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("assets/fonts/russo-one-latin-ext-400-normal.woff2") format("woff2");
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

@font-face {
  font-family: "Russo One";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("assets/fonts/russo-one-latin-400-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

:root {
  --navy: #020e19;
  --navy-2: #031522;
  --panel: #061b2a;
  --panel-2: #082437;
  --cyan: #08b8ef;
  --cyan-2: #088dbd;
  --green: #20d45b;
  --white: #f1f4f5;
  --text: #cbd4d9;
  --muted: #748490;
  --line: rgba(80, 166, 206, .24);
  --line-soft: rgba(143, 197, 222, .13);
  --warning: #ffae3e;
  --danger: #ff674d;
  --shell: min(1328px, calc(100vw - 64px));
  --condensed: "Bahnschrift Condensed", "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  --sans: "Bahnschrift", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 112px; }
body { margin: 0; background: var(--navy); color: var(--white); font-family: var(--sans); overflow-x: hidden; }
body.menu-open, body.lightbox-open { overflow: hidden; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
fieldset { min-width: 0; padding: 0; border: 0; margin: 0; }
::selection { color: var(--navy); background: var(--cyan); }

.skip-link { position: fixed; z-index: 1000; left: 12px; top: 12px; padding: 10px 14px; color: var(--navy); background: var(--cyan); transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }

.production-bar { height: 30px; position: relative; z-index: 102; display: grid; place-items: center; overflow: hidden; background: linear-gradient(90deg, #0589b9, #0cbae8 50%, #067baa); box-shadow: 0 1px 14px rgba(0,184,239,.25); color: #f7fcff; font-family: var(--condensed); font-size: 13px; font-weight: 600; letter-spacing: 5px; text-align: center; white-space: nowrap; }

.site-header { height: 104px; position: sticky; top: 0; z-index: 100; background: rgba(2,14,25,.94); border-bottom: 1px solid rgba(5,93,130,.14); backdrop-filter: blur(18px); transition: height .25s, box-shadow .25s; }
.site-header.is-scrolled { height: 82px; box-shadow: 0 12px 28px rgba(0,0,0,.28); }
.header-inner { width: var(--shell); height: 100%; margin: 0 auto; display: grid; grid-template-columns: 320px 1fr 112px; align-items: center; gap: 30px; }
.brand { display: flex; align-items: center; min-width: 0; }
.brand-logo-frame { width: 100%; max-width: 310px; aspect-ratio: 310 / 68; position: relative; display: block; overflow: hidden; flex: 0 1 310px; background: transparent; }
.brand img.brand-logo-image { z-index: 0; width: 105.806%; max-width: none; height: auto; position: absolute; left: -2.258%; top: -144.118%; filter: invert(1) hue-rotate(180deg) saturate(1.12); mix-blend-mode: screen; }
.brand img.brand-logo-mountains-original { z-index: 1; width: 35.7%; max-width: none; height: auto; position: absolute; left: 3.35%; top: 56.9%; filter: brightness(1.12) drop-shadow(0 0 2px rgba(0,239,147,.55)); pointer-events: none; }
.brand-logo-caption { z-index: 2; position: absolute; left: 41.5%; right: 0; bottom: 0; min-height: 35%; display: grid; align-content: center; gap: 2px; padding: 3px 2px 2px 5px; border-top: 2px solid #00d779; background: rgba(2,14,25,.98); color: #fff; font-family: "Bahnschrift", "Arial Narrow", Arial, sans-serif; white-space: nowrap; }
.brand-logo-caption strong { font-size: clamp(7px, .42vw, 10px); line-height: 1; letter-spacing: clamp(.8px, .08vw, 1.5px); }
.brand-logo-caption small { color: #c9d2d8; font-size: clamp(5.5px, .29vw, 7px); line-height: 1; letter-spacing: clamp(.55px, .055vw, 1px); }

.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(28px, 4vw, 64px); }
.desktop-nav a { position: relative; padding: 21px 0; color: #c7cdd1; font-family: var(--condensed); font-size: 15px; letter-spacing: .7px; transition: color .2s; white-space: nowrap; }
.desktop-nav a:hover, .desktop-nav a:focus-visible, .desktop-nav a.is-active { color: var(--cyan); }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 8px; height: 2px; background: var(--cyan); transform: scaleX(0); transition: transform .2s; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after, .desktop-nav a.is-active::after { transform: scaleX(1); }

.header-tools { display: flex; align-items: center; justify-content: flex-end; }
.language-switch { display: flex; align-items: center; gap: 7px; color: #6e7e88; font-family: var(--condensed); font-size: 14px; }
.language-switch button { padding: 5px 1px; color: #8e9ba3; border: 0; background: transparent; font-weight: 700; cursor: pointer; }
.language-switch button.is-active { color: var(--cyan); }
.menu-toggle { display: none; width: 42px; height: 42px; margin-left: 15px; padding: 9px; border: 1px solid var(--line); background: transparent; cursor: pointer; }
.menu-toggle span { display: block; height: 1px; margin: 5px 0; background: var(--cyan); }
.mobile-menu { position: fixed; inset: 112px 0 0; z-index: 99; padding: 35px 24px; background: rgba(2,14,25,.985); }
.mobile-menu:not([hidden]) { display: grid; align-content: start; }
.mobile-menu a { padding: 18px 0; border-bottom: 1px solid var(--line-soft); font-family: var(--condensed); font-size: 27px; letter-spacing: 1px; }

.hero { height: calc(100svh - 134px); min-height: 0; position: relative; isolation: isolate; display: grid; grid-template-rows: minmax(0, 1fr) 136px; background: #020f1c; overflow: hidden; }
.technical-grid, .section-grid, .reservation-grid { position: absolute; inset: 0; z-index: -4; }
.technical-grid { background: radial-gradient(ellipse at 72% 42%, rgba(0,118,172,.2), transparent 60%); }
.technical-grid::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, #020f1c 0%, rgba(2,15,28,.91) 31%, rgba(2,15,28,.12) 68%, rgba(2,15,28,.48) 100%); }
.section-grid, .reservation-grid { background: radial-gradient(ellipse at 50% 45%, rgba(0,113,166,.08), transparent 72%); }
.scanline { position: absolute; inset: 0; z-index: 6; pointer-events: none; opacity: .05; background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(255,255,255,.15) 4px); }

.hero-reference { position: absolute; z-index: -1; top: 72px; right: 0; width: min(68%, 900px); aspect-ratio: 830 / 600; overflow: hidden; pointer-events: none; }
.hero-reference::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(2,15,28,0) 0%, rgba(2,15,28,0) 86%, rgba(2,15,28,.38) 100%); }
.hero-reference img { width: 173.494%; max-width: none; height: auto; position: absolute; left: -73.494%; top: -20%; filter: brightness(1.22) contrast(1.06) saturate(1.08); }

.hero-main { width: var(--shell); height: 100%; min-height: 0; margin: 0 auto; position: relative; z-index: 3; display: flex; align-items: center; padding: 24px 0 20px; }
.hero-copy { width: 570px; max-width: 48%; }
.model-label { --model-label-gap: 8px; margin: 0 0 18px; display: grid; justify-items: start; color: var(--green); font-family: var(--condensed); }
.model-label span { font-size: 16px; font-weight: 700; line-height: 1; letter-spacing: 1.6px; }
.model-label strong { margin-top: var(--model-label-gap); font-size: 48px; font-weight: 800; line-height: .82; letter-spacing: 1px; }
.model-label .model-tagline { margin-top: var(--model-label-gap); color: var(--cyan); line-height: 1.15; white-space: nowrap; }
.hero h1 { width: 116.3%; margin: 0; color: #eef1f3; font-family: "Russo One", "Bahnschrift", "Arial Narrow", sans-serif; font-size: clamp(54px, 5vw, 72px); font-weight: 400; line-height: .9; letter-spacing: .8px; white-space: nowrap; transform: scaleX(.86); transform-origin: left center; -webkit-text-stroke: .6px rgba(255,255,255,.5); text-shadow: 0 1px 0 #fff, 0 3px 0 #747c84, 0 7px 14px rgba(0,0,0,.45); }
@supports (-webkit-background-clip: text) {
  .hero h1 { background: linear-gradient(180deg, #ffffff 0%, #d8dce0 46%, #f9fafb 49%, #b7bdc3 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
}
.hero-lead { margin: 23px 0 0; color: var(--cyan); font-family: var(--condensed); font-size: 20px; line-height: 1.35; letter-spacing: .2px; }
.hero-lead-intro { display: inline-block; white-space: nowrap; }
.hero-actions { display: flex; align-items: center; gap: 27px; margin-top: 23px; }
.primary-cta { min-height: 54px; display: inline-flex; align-items: center; justify-content: space-between; gap: 34px; padding: 0 26px; border: 1px solid #13c9fc; border-radius: 5px; background: linear-gradient(135deg, #0795c9, #09b9eb); color: #fff; box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 10px 28px rgba(0,174,229,.12); font-family: var(--condensed); font-size: 17px; font-weight: 800; letter-spacing: .4px; cursor: pointer; transition: .2s ease; }
.primary-cta:hover, .primary-cta:focus-visible { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,184,239,.24); }
.primary-cta > span:last-child { font-size: 30px; font-weight: 300; line-height: 1; }
.line-cta { min-height: 44px; display: flex; align-items: center; gap: 25px; padding: 0 4px; border-bottom: 2px solid var(--cyan); color: var(--cyan); font-family: var(--condensed); font-size: 15px; font-weight: 700; letter-spacing: .8px; }
.line-cta span:last-child { font-size: 22px; }

.quick-config { width: 520px; max-width: 100%; margin-top: 22px; }
.config-group { position: relative; margin-top: 10px; padding: 14px 8px 9px 31px; border: 1px solid rgba(70,135,167,.25); border-radius: 4px; background: rgba(2,17,29,.64); box-shadow: inset 0 0 18px rgba(0,0,0,.12); }
.config-group legend { margin-left: -3px; padding: 0 8px; color: var(--cyan); font-family: var(--condensed); font-size: 10px; font-weight: 600; letter-spacing: 2.4px; }
.config-icon { position: absolute; left: -31px; top: 19px; display: grid; place-items: center; color: var(--cyan); }
.config-icon.bolt { font-family: Arial; font-size: 40px; font-weight: 700; transform: skew(-10deg); }
.config-icon.battery { width: 19px; height: 34px; top: 17px; left: -27px; border: 2px solid var(--cyan); border-radius: 2px; }
.config-icon.battery::before { content: ""; position: absolute; top: -6px; left: 4px; right: 4px; height: 4px; border: 2px solid var(--cyan); border-bottom: 0; }
.config-icon.battery::after { content: ""; position: absolute; inset: 5px 4px; background: repeating-linear-gradient(0deg, var(--cyan) 0 2px, transparent 2px 5px); }
.choice-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.choice { min-width: 0; min-height: 44px; display: flex; align-items: center; justify-content: center; gap: 6px; padding: 7px 10px; border: 1px solid rgba(122,170,193,.42); border-radius: 6px; background: linear-gradient(180deg, rgba(10,31,46,.92), rgba(5,20,32,.92)); color: #dde4e7; box-shadow: inset 0 0 16px rgba(0,0,0,.18); font-family: var(--condensed); font-size: 13px; cursor: pointer; transition: .18s; white-space: nowrap; }
.choice strong { font-size: 16px; }
.choice:hover { border-color: var(--cyan); }
.choice.is-selected { border-color: var(--cyan); background: linear-gradient(180deg, rgba(8,54,77,.96), rgba(4,35,53,.96)); box-shadow: inset 0 0 18px rgba(0,166,221,.14), 0 0 12px rgba(0,184,239,.08); }
.choice-centered strong { font-weight: 600; }
.compatibility { width: 347px; min-height: 44px; margin: 12px 0 0 25px; padding: 7px 15px; display: grid; grid-template-columns: 40px 1fr; align-items: center; column-gap: 12px; border: 2px solid var(--green); border-radius: 6px; background: rgba(2,23,29,.84); color: var(--green); }
.compatibility .warning-triangle { grid-row: 1 / 3; }
.compatibility strong { font-family: var(--condensed); font-size: 13px; letter-spacing: 2.1px; }
.compatibility small { display: none; color: #9ca9af; font-family: var(--condensed); font-size: 9px; letter-spacing: .4px; }
.compatibility.has-detail small { display: block; }
.compatibility.info-panel { width: calc(100% - 25px); min-height: 98px; border: 3px solid #ff7a00; background: rgba(3,25,39,.94); color: #dceaf0; box-shadow: 0 0 14px rgba(255,122,0,.28), inset 0 0 16px rgba(255,122,0,.06); }
.compatibility.info-panel .info-symbol { width: 34px; height: 34px; grid-row: 1 / 4; display: grid; place-items: center; border: 2px solid #ff7a00; border-radius: 50%; color: #ff8a1f; font-family: Georgia, serif; font-size: 22px; font-weight: 700; font-style: italic; line-height: 1; }
.compatibility.info-panel strong { color: #ff8a1f; font-size: 16px; line-height: 1.25; letter-spacing: .6px; }
.compatibility.info-panel small { color: #91ff91; font-size: 16px; line-height: 1.25; letter-spacing: .6px; }
.compatibility.info-panel em { grid-column: 2; color: #ff4d4d; font-family: var(--condensed); font-size: 16px; line-height: 1.25; font-style: normal; font-weight: 800; letter-spacing: .8px; }
.compatibility.is-warning { width: 100%; margin-left: 0; border-color: var(--warning); color: var(--warning); }
.compatibility.is-danger { width: 100%; margin-left: 0; border-color: var(--danger); color: var(--danger); }
.warning-triangle { width: 32px; height: 29px; position: relative; display: grid; place-items: center; color: #04120a; font-weight: 900; z-index: 1; }
.warning-triangle::before { content: ""; position: absolute; inset: 0; z-index: -1; background: currentColor; clip-path: polygon(50% 0,100% 100%,0 100%); }
.compatibility .warning-triangle { color: var(--green); }
.compatibility.is-warning .warning-triangle { color: var(--warning); }
.compatibility.is-danger .warning-triangle { color: var(--danger); }
.warning-triangle::after { content: "!"; color: #04120a; font-size: 18px; line-height: 1; transform: translateY(4px); }
.warning-triangle { font-size: 0; }

.hero-stats { height: 100%; position: relative; z-index: 5; border-top: 1px solid rgba(115,164,186,.28); background: linear-gradient(180deg, rgba(3,18,30,.98), rgba(2,13,23,.99)); }
.stats-inner { width: var(--shell); height: 100%; margin: 0 auto; display: grid; grid-template-columns: 1.45fr .85fr .85fr .85fr 1.35fr; }
.origin-card, .stat-card { min-width: 0; border-right: 1px solid rgba(111,161,184,.27); }
.origin-card { display: grid; grid-template-columns: minmax(120px, 52%) minmax(0, 1fr); align-items: center; gap: 16px; padding: 8px 24px 8px 0; }
.origin-photo { width: 100%; height: 118px; justify-self: center; padding: 0; overflow: hidden; border: 0; border-radius: 7px; background: #061b2a; cursor: zoom-in; }
.origin-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease, filter .25s ease; }
.origin-photo:hover img { transform: scale(1.035); filter: brightness(1.08); }
.origin-photo:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }
.origin-card > div { min-width: 0; display: grid; align-content: center; gap: 9px; }
.origin-card strong { font-family: var(--condensed); font-size: 13px; line-height: 1.5; letter-spacing: 1px; }
.mountain-icon { width: 52px; height: 31px; display: block; }
.mountain-icon img { width: 100%; height: 100%; display: block; object-fit: contain; filter: drop-shadow(0 0 3px rgba(32,212,91,.28)); }
.image-lightbox[hidden] { display: none; }
.image-lightbox { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: clamp(16px, 4vw, 52px); background: rgba(0,8,15,.94); backdrop-filter: blur(10px); animation: lightbox-fade .18s ease-out; }
.image-lightbox-dismiss { width: 100%; height: 100%; position: relative; display: grid; place-items: center; padding: 0; border: 0; background: transparent; cursor: zoom-out; }
.image-lightbox-dismiss:focus-visible { outline: 2px solid var(--cyan); outline-offset: 5px; }
.image-lightbox-dismiss img { width: auto; max-width: min(92vw, 1262px); height: auto; max-height: calc(100svh - 72px); border: 1px solid rgba(8,184,239,.45); border-radius: 8px; box-shadow: 0 24px 70px rgba(0,0,0,.68), 0 0 28px rgba(8,184,239,.12); animation: lightbox-zoom .22s ease-out; pointer-events: none; }
.image-lightbox-close { width: 42px; height: 42px; position: absolute; top: 0; right: 0; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; background: rgba(2,14,25,.88); color: #fff; font-size: 32px; font-weight: 300; line-height: 1; pointer-events: none; }
@keyframes lightbox-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes lightbox-zoom { from { opacity: 0; transform: scale(.94); } to { opacity: 1; transform: scale(1); } }
.stat-card { display: flex; align-items: center; justify-content: center; gap: 22px; padding: 0 20px; }
.stat-card > div { display: grid; gap: 10px; }
.stat-card strong { font-family: var(--condensed); font-size: 40px; font-weight: 500; line-height: 1; letter-spacing: 2px; white-space: nowrap; }
.stat-card strong small { font-size: 18px; }
.stat-card > div > span { color: #81909b; font-family: var(--condensed); font-size: 12px; letter-spacing: 3.2px; white-space: nowrap; }
.stat-icon { width: 36px; height: 36px; position: relative; flex: 0 0 auto; color: var(--cyan); }
.stat-icon.weight svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.stat-icon.rider::before { content: ""; position: absolute; left: 12px; top: 0; width: 10px; height: 10px; border: 2px solid currentColor; border-radius: 50%; }
.stat-icon.rider::after { content: ""; position: absolute; left: 4px; bottom: 0; width: 26px; height: 20px; border: 2px solid currentColor; border-radius: 15px 15px 2px 2px; box-shadow: inset 0 -7px 0 -5px currentColor; }
.stat-icon.system-battery { border: 3px solid currentColor; border-radius: 2px; }
.stat-icon.system-battery::before { content: ""; position: absolute; left: 8px; right: 8px; top: -8px; height: 5px; border: 3px solid currentColor; border-bottom: 0; }
.stat-icon.system-battery::after { content: ""; position: absolute; inset: 7px 5px; background: repeating-linear-gradient(0deg,currentColor 0 2px,transparent 2px 6px); }
.stat-icon.calendar { border: 3px solid currentColor; border-radius: 3px; }
.stat-icon.calendar::before { content: ""; position: absolute; left: -3px; right: -3px; top: 7px; border-top: 3px solid currentColor; box-shadow: 0 9px 0 -1px currentColor, 0 18px 0 -1px currentColor; }
.stat-icon.calendar::after { content: ""; position: absolute; top: -8px; left: 6px; width: 3px; height: 10px; background: currentColor; box-shadow: 15px 0 0 currentColor; }
.reservation-stat { width: 100%; height: 100%; min-width: 0; gap: 14px; padding: 0 14px; overflow: hidden; border-right: 0; }
.reservation-stat > div { min-width: 0; }
.reservation-stat strong { max-width: 100%; font-size: clamp(21px, 2vw, 29px); line-height: 1.05; letter-spacing: .8px; white-space: normal; }
.reservation-stat > div > span { white-space: normal; line-height: 1.3; }
.reservation-stat:hover { background: rgba(0,184,239,.05); }

.section { position: relative; padding: 118px 0; }
.section-inner, .footer-inner, .footer-bottom { width: var(--shell); margin: 0 auto; }
.section-header { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 100px; margin-bottom: 65px; }
.section-header > * { min-width: 0; }
.section-code { display: block; margin-bottom: 19px; color: var(--cyan); font-family: var(--condensed); font-size: 11px; letter-spacing: 3px; }
.section-header h2, .reservation-copy h2 { margin: 0; color: var(--green); font-family: var(--condensed); font-size: 48px; font-weight: 900; line-height: .86; letter-spacing: 1px; }
.section-header h2 em, .reservation-copy h2 em { color: var(--cyan); font-style: normal; font-weight: 500; }
.section-header > p { max-width: 560px; margin: 0; color: #748894; font-size: 15px; line-height: 1.75; }
.section-header-light > p { color: #8799a3; }

.model-section { padding-top: 62px; padding-bottom: 82px; color: #eaf0f2; background: linear-gradient(180deg,#051623,#071c2a 45%,#04131f); }
.model-intro { margin-bottom: 48px; }
.model-intro > .section-code { margin-bottom: 24px; }
.model-intro-grid { display: grid; grid-template-columns: minmax(390px,.88fr) minmax(0,1.12fr); align-items: start; gap: clamp(56px,6vw,112px); }
.model-intro-grid > * { min-width: 0; }
.model-intro-primary { position: relative; }
.model-page-label { margin: 0; display: grid; justify-items: start; color: var(--green); font-family: var(--condensed); }
.model-page-label span { font-size: 16px; font-weight: 700; line-height: 1; letter-spacing: 1.6px; }
.model-page-label strong { margin-top: 10px; font-size: 48px; font-weight: 800; line-height: .82; letter-spacing: 1px; }
.model-page-tagline { margin: 17px 0 0; color: var(--cyan); font-family: var(--condensed); font-size: 22px; font-weight: 700; line-height: 1; letter-spacing: 2px; }
.model-page-lead { max-width: 610px; margin: 34px 0 0; color: var(--cyan); font-family: var(--condensed); font-size: 23px; line-height: 1.55; }
.model-page-lead strong { font-weight: 600; }
.model-overview-copy { margin-top: 2px; padding: 5px 0 5px 34px; display: grid; gap: 17px; border-left: 2px solid rgba(8,184,239,.36); }
.model-overview-copy p { margin: 0; color: #9aabb4; font-size: 15px; line-height: 1.85; }

.model-explorer-block { margin-bottom: 18px; }
.model-explorer-header { margin-bottom: 28px; display: grid; grid-template-columns: minmax(330px,440px) minmax(0,560px); justify-content: start; align-items: end; gap: clamp(36px,4.2vw,64px); }
.model-explorer-header > * { min-width: 0; }
.model-explorer-header h2 { margin: 0; display: grid; justify-items: start; color: var(--green); font-family: var(--condensed); }
.model-explorer-header h2 span, .model-explorer-copy > strong { color: var(--green); font-family: var(--condensed); font-size: 16px; font-weight: 700; line-height: 1; letter-spacing: 1.6px; }
.model-explorer-header h2 strong { margin-top: 10px; font-size: 48px; font-weight: 800; line-height: .82; letter-spacing: 1px; }
.model-explorer-copy { max-width: 560px; display: grid; align-self: end; gap: 12px; }
.model-explorer-copy > p { margin: 0; color: #7e929d; font-size: 14px; line-height: 1.75; }
.model-explorer { display: grid; grid-template-columns: minmax(0, 1.72fr) minmax(360px, .68fr); align-items: stretch; border: 1px solid var(--line); background: #020f19; }
.model-viewport { min-width: 0; min-height: 560px; position: relative; isolation: isolate; aspect-ratio: 16 / 10; overflow: hidden; border-right: 1px solid var(--line); background: #fff; }
.model-viewport::before { content: ""; position: absolute; z-index: 0; inset: 0; pointer-events: none; background: #fff; }
.model-3d-viewer { width: 108%; height: 100%; position: relative; z-index: 1; display: block; background: #fff; touch-action: pan-y; transform: translateX(-7.4%); transform-origin: center center; --poster-color: #fff; --progress-bar-color: var(--cyan); --progress-mask: transparent; }
.model-3d-viewer::part(default-progress-bar) { display: none; }
.model-3d-viewer::part(default-poster) { transform: scaleX(-1); }
.model-3d-viewer:focus-visible { outline: 2px solid var(--cyan); outline-offset: -2px; }
.model-rotation-controls { position: absolute; z-index: 7; top: 16px; left: 18px; min-height: 42px; display: flex; align-items: stretch; gap: 2px; padding: 4px; border: 1px solid rgba(8,184,239,.42); background: rgba(2,17,28,.92); box-shadow: 0 10px 30px rgba(0,0,0,.2); backdrop-filter: blur(10px); }
.model-rotation-title { display: flex; align-items: center; padding: 0 9px; color: #6f8792; font-family: monospace; font-size: 7px; letter-spacing: 1.1px; white-space: nowrap; }
.model-rotation-controls button { min-width: 0; min-height: 32px; display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 0 8px; border: 0; border-left: 1px solid rgba(143,197,222,.13); background: transparent; color: #91a5ae; cursor: pointer; transition: color .2s ease,background .2s ease,box-shadow .2s ease; }
.model-rotation-controls button span { min-width: 14px; color: var(--cyan); font-size: 13px; line-height: 1; text-align: center; }
.model-rotation-controls button b { font-family: var(--condensed); font-size: 7px; font-weight: 700; letter-spacing: .65px; white-space: nowrap; }
.model-rotation-controls button:hover, .model-rotation-controls button:focus-visible, .model-rotation-controls button.is-active { color: #f2fbfe; background: rgba(8,184,239,.14); box-shadow: inset 0 -2px 0 var(--cyan); outline: 0; }
.model-rotation-controls button:disabled { opacity: .42; cursor: wait; background: transparent; box-shadow: none; }
.model-default-view { min-height: 42px; position: absolute; z-index: 7; top: 16px; right: 18px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 4px 12px; border: 1px solid rgba(8,184,239,.42); background: rgba(2,17,28,.92); color: #91a5ae; box-shadow: 0 10px 30px rgba(0,0,0,.2); backdrop-filter: blur(10px); cursor: pointer; transition: color .2s ease,background .2s ease,border-color .2s ease,box-shadow .2s ease; }
.model-default-view-icon { width: 18px; height: 13px; position: relative; flex: 0 0 auto; display: block; border: 1px solid var(--cyan); }
.model-default-view-icon::before { content: ""; width: 10px; position: absolute; left: 3px; top: 5px; border-top: 1px solid var(--cyan); }
.model-default-view-icon::after { content: ""; width: 3px; height: 3px; position: absolute; left: 6px; top: 3px; border: 1px solid var(--green); border-radius: 50%; background: #061b2a; }
.model-default-view b { font-family: var(--condensed); font-size: 8px; font-weight: 700; letter-spacing: .7px; white-space: nowrap; }
.model-default-view:hover, .model-default-view:focus-visible { border-color: var(--cyan); background: rgba(8,184,239,.14); color: #f2fbfe; box-shadow: inset 0 -2px 0 var(--cyan),0 10px 30px rgba(0,0,0,.2); outline: 0; }
.model-default-view:disabled { opacity: .42; cursor: wait; background: rgba(2,17,28,.92); box-shadow: none; }
.model-3d-loading { position: absolute; z-index: 8; left: 50%; bottom: 46px; width: min(260px,calc(100% - 40px)); display: grid; gap: 7px; color: #596b74; font-family: monospace; font-size: 8px; letter-spacing: 1.2px; transform: translateX(-50%); pointer-events: none; transition: opacity .25s ease,visibility .25s ease; }
.model-3d-loading[hidden] { display: none; }
.model-3d-loading > span { display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.model-3d-loading b { color: var(--cyan); font-weight: 600; }
.model-3d-loading em { color: #243d48; font-style: normal; }
.model-3d-loading > i { height: 2px; display: block; overflow: hidden; background: rgba(3,43,59,.14); }
.model-3d-loading > i > b { width: 100%; height: 100%; display: block; background: linear-gradient(90deg,var(--cyan),var(--green)); transform: scaleX(0); transform-origin: left center; transition: transform .18s ease; }
.model-3d-fallback { position: absolute; z-index: 9; inset: 0; display: grid; place-items: end start; overflow: hidden; background: #031521; }
.model-3d-fallback[hidden] { display: none; }
.model-3d-fallback img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; filter: saturate(.75) contrast(1.08) brightness(.62); transform: scaleX(-1); }
.model-3d-fallback::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,rgba(2,15,25,.04),rgba(2,15,25,.72)); }
.model-3d-fallback p { max-width: 420px; position: relative; z-index: 2; margin: 0 18px 48px; padding-left: 14px; border-left: 2px solid var(--cyan); }
.model-3d-fallback strong, .model-3d-fallback span { display: block; }
.model-3d-fallback strong { margin-bottom: 5px; color: #e9f6fa; font-family: var(--condensed); font-size: 14px; letter-spacing: 1px; }
.model-3d-fallback span { color: #9eb1b9; font-size: 10px; }
.model-fallback-help { display: inline-flex; align-items: center; min-height: 32px; margin-top: 12px; padding: 0 12px; border: 1px solid rgba(0,183,229,.68); color: #dff9ff; background: rgba(0,157,204,.14); font-family: var(--condensed); font-size: 10px; letter-spacing: 1.1px; text-decoration: none; transition: border-color .2s ease, background .2s ease, color .2s ease; }
.model-fallback-help:hover, .model-fallback-help:focus-visible { border-color: var(--cyan); color: #fff; background: rgba(0,183,229,.26); outline: none; }
.model-viewer-meta { position: absolute; z-index: 7; left: 18px; right: 18px; bottom: 14px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: #53666f; font-family: monospace; font-size: 8px; letter-spacing: 1px; pointer-events: none; }
.model-viewer-meta > span:first-child { display: flex; align-items: center; gap: 10px; color: var(--cyan); }
.model-viewer-meta .live-dot { display: inline-block; flex: 0 0 auto; }

.model-3d-hotspot { --line-size: 48px; width: 28px; height: 28px; position: relative; padding: 0; border: 0; background: transparent; color: #b8c6cc; cursor: pointer; opacity: 1; transition: color .2s ease,opacity .16s ease; }
.model-3d-hotspot:not([data-visible]) { opacity: 0; pointer-events: none; }
.model-3d-hotspot::before { content: ""; position: absolute; top: 50%; width: var(--line-size); height: 1px; background: linear-gradient(90deg,currentColor,rgba(184,198,204,.22)); transform: translateY(-50%); transition: .2s ease; }
.model-3d-hotspot.to-left::before { right: 50%; background: linear-gradient(90deg,rgba(184,198,204,.22),currentColor); }
.model-3d-hotspot.to-right::before { left: 50%; }
.hotspot-node { width: 28px; height: 28px; position: absolute; z-index: 2; inset: 0; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; background: rgba(2,17,28,.88); box-shadow: 0 0 0 5px rgba(8,184,239,.08); font-family: monospace; font-size: 7px; transition: .2s ease; }
.hotspot-node::before, .hotspot-node::after { content: ""; position: absolute; background: currentColor; opacity: .55; }
.hotspot-node::before { width: 36px; height: 1px; left: -5px; top: 13px; }
.hotspot-node::after { width: 1px; height: 36px; left: 13px; top: -5px; }
.hotspot-callout { min-width: max-content; position: absolute; top: 50%; padding: 6px 8px; border: 1px solid rgba(150,184,199,.28); background: rgba(2,16,27,.82); color: inherit; font-family: var(--condensed); font-size: 9px; font-weight: 700; line-height: 1; letter-spacing: 1.2px; transform: translateY(-50%); pointer-events: none; }
.model-3d-hotspot.to-left .hotspot-callout { right: calc(50% + var(--line-size) + 7px); }
.model-3d-hotspot.to-right .hotspot-callout { left: calc(50% + var(--line-size) + 7px); }
.model-3d-hotspot:hover, .model-3d-hotspot:focus-visible, .model-3d-hotspot.is-active { color: var(--cyan); }
.model-3d-viewer.is-detail-focused .model-3d-hotspot:not(.is-active) { opacity: 0; pointer-events: none; }
.model-3d-viewer.is-detail-focused .model-3d-hotspot.is-active { opacity: 1; pointer-events: auto; }
.model-3d-hotspot:focus-visible { outline: 0; }
.model-3d-hotspot:hover .hotspot-node, .model-3d-hotspot:focus-visible .hotspot-node, .model-3d-hotspot.is-active .hotspot-node { background: #06334a; box-shadow: 0 0 0 7px rgba(8,184,239,.13),0 0 22px rgba(8,184,239,.36); }
.model-3d-hotspot.is-active .hotspot-callout { border-color: var(--cyan); background: rgba(4,45,64,.94); color: #dff7ff; }

.model-parts-panel { min-width: 0; min-height: 100%; display: grid; grid-template-rows: auto auto minmax(0,1fr); overflow: hidden; background: linear-gradient(145deg,rgba(5,34,50,.99),rgba(2,17,28,.99)); }
.model-parts-toolbar { min-height: 76px; padding: 15px 18px; display: flex; align-items: center; justify-content: space-between; gap: 16px; border-bottom: 1px solid var(--line-soft); background: rgba(4,28,43,.96); }
.model-parts-toolbar > div { min-width: 0; display: grid; gap: 5px; }
.model-parts-toolbar > div > span { color: #dce7eb; font-family: var(--condensed); font-size: 14px; font-weight: 700; letter-spacing: 1.2px; }
.model-parts-toolbar small { color: #617681; font-family: monospace; font-size: 7px; letter-spacing: 1px; white-space: nowrap; }
.model-view-reset { min-height: 38px; flex: 0 0 auto; display: inline-flex; align-items: center; gap: 7px; padding: 0 10px; border: 1px solid rgba(8,184,239,.42); background: rgba(8,184,239,.06); color: #8ea5af; cursor: pointer; transition: color .2s ease,border-color .2s ease,background .2s ease; }
.model-view-reset span { color: var(--cyan); font-size: 17px; line-height: 1; }
.model-view-reset b { font-family: var(--condensed); font-size: 8px; letter-spacing: .8px; white-space: nowrap; }
.model-view-reset:hover, .model-view-reset:focus-visible, .model-view-reset.is-active { border-color: var(--cyan); background: rgba(8,184,239,.14); color: #e7f8fd; outline: 0; }

.model-part-detail { min-width: 0; min-height: 0; position: relative; padding: 28px 30px 27px; display: flex; flex-direction: column; overflow: hidden; background: linear-gradient(145deg,rgba(5,34,50,.98),rgba(2,17,28,.98)); }
.model-part-status { display: flex; align-items: center; gap: 10px; color: var(--cyan); font-family: monospace; font-size: 8px; letter-spacing: 1.3px; }
.model-part-status i { width: 5px; height: 5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(32,212,91,.09); }
.model-part-status b { color: #6f828c; font-weight: 500; }
.model-part-detail h3 { max-width: 100%; margin: 24px 0 13px; font-family: var(--condensed); font-size: clamp(25px, 1.85vw, 32px); line-height: .94; letter-spacing: .3px; overflow-wrap: normal; }
.model-part-detail > p { margin: 0 0 18px; color: #8ca0aa; font-size: 11px; line-height: 1.65; }
.model-part-detail dl { position: relative; z-index: 2; margin: 0; padding-top: 15px; border-top: 1px solid var(--line-soft); }
.model-part-detail dt { margin-bottom: 8px; color: #60737e; font-family: monospace; font-size: 8px; letter-spacing: 1.4px; }
.model-part-detail dd { margin: 0; color: var(--cyan); font-family: var(--condensed); font-size: 14px; line-height: 1.35; letter-spacing: .7px; }
.model-part-watermark { position: absolute; right: -12px; bottom: -28px; color: rgba(8,184,239,.055); font-family: var(--condensed); font-size: 155px; font-weight: 900; line-height: 1; pointer-events: none; }

.model-part-tabs { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); grid-auto-rows: 52px; border-bottom: 1px solid var(--line); background: #03131f; }
.model-part-tabs button { min-width: 0; min-height: 52px; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 9px; padding: 9px 12px; border: 0; border-right: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: transparent; color: #72858f; cursor: pointer; transition: .2s ease; }
.model-part-tabs button:nth-child(2n) { border-right: 0; }
.model-part-tabs button:nth-last-child(-n+2) { border-bottom: 0; }
.model-part-tabs button span { color: #405661; font-family: monospace; font-size: 7px; }
.model-part-tabs button b { overflow: hidden; font-family: var(--condensed); font-size: 10px; font-weight: 700; letter-spacing: .9px; text-align: left; text-overflow: ellipsis; }
.model-part-tabs button:hover, .model-part-tabs button:focus-visible, .model-part-tabs button.is-active { background: rgba(8,184,239,.07); color: var(--cyan); }
.model-part-tabs button:focus-visible { outline: 1px solid var(--cyan); outline-offset: -2px; }

.model-short-summary { min-width: 0; margin-top: 14px; padding: 22px 36px; position: relative; display: grid; grid-template-columns: minmax(330px,.75fr) minmax(0,1.25fr); align-items: center; gap: 46px; overflow: hidden; border: 1px solid var(--line); background: radial-gradient(circle at 14% 20%,rgba(32,212,91,.08),transparent 34%),linear-gradient(135deg,rgba(4,31,45,.98),rgba(2,17,28,.96)); }
.model-short-summary > * { min-width: 0; }
.model-short-summary::before { content: ""; width: 3px; position: absolute; top: 0; bottom: 0; left: 0; background: linear-gradient(180deg,var(--green),var(--cyan)); }
.model-short-summary .section-code { margin-bottom: 9px; color: var(--green); }
.model-short-summary h3 { margin: 0; font-family: var(--condensed); font-size: clamp(31px,2.7vw,42px); line-height: .93; letter-spacing: .6px; }
.model-short-summary h3 em { color: var(--cyan); font-style: normal; font-weight: 500; }
.model-short-summary > p { margin: 0; color: #93a5ae; font-size: 13px; line-height: 1.78; }

.model-features, .model-benefits { margin-top: 52px; }
.model-content-heading { margin-bottom: 20px; display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 100px; }
.model-content-heading > * { min-width: 0; }
.model-content-heading h2 { margin: 0; font-family: var(--condensed); font-size: 48px; font-weight: 900; line-height: .88; letter-spacing: 1px; }
.model-content-heading h2 em { color: var(--cyan); font-style: normal; font-weight: 500; }
.model-features .model-content-heading h2,
.model-benefits .model-content-heading h2,
.model-power-panel h3,
.model-energy-panel h3,
.configurator-section .section-header h2,
.configurator-guide h3,
.technology-section .section-header h2,
.gallery-section .section-header h2,
.safety-section .section-header h2,
.reservation-copy h2 {
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
}
.model-content-heading > p { max-width: 560px; margin: 0; color: #788c96; font-size: 13px; line-height: 1.75; }

.model-feature-list { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); list-style: none; border-top: 1px solid var(--line); border-left: 1px solid var(--line); background: rgba(3,19,31,.72); }
.model-feature-list li { min-width: 0; min-height: 66px; padding: 11px 20px; display: grid; grid-template-columns: 34px minmax(0,1fr); align-items: center; gap: 16px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: #a9b8bf; }
.model-feature-list li > span { color: var(--cyan); font-family: monospace; font-size: 8px; letter-spacing: 1px; }
.model-feature-list li > strong { font-family: var(--condensed); font-size: 15px; font-weight: 600; line-height: 1.35; letter-spacing: .75px; }
.model-feature-list li.is-metric { min-height: 82px; background: linear-gradient(135deg,rgba(8,184,239,.09),rgba(3,19,31,.35)); }
.model-feature-list li.is-metric > div { min-width: 0; display: grid; gap: 8px; }
.model-feature-list li.is-metric small { color: #728690; font-family: monospace; font-size: 8px; letter-spacing: 1.4px; }
.model-feature-list li.is-metric strong { color: #edf5f7; font-family: var(--condensed); font-size: 27px; font-weight: 500; line-height: 1; letter-spacing: .6px; white-space: nowrap; }

.model-benefit-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.model-benefit-grid article { min-width: 0; min-height: 172px; padding: 22px 26px; position: relative; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(145deg,rgba(4,28,42,.9),rgba(2,17,28,.92)); overflow: hidden; }
.model-benefit-grid article::after { content: ""; width: 120px; height: 120px; position: absolute; right: -60px; bottom: -60px; border: 1px solid rgba(8,184,239,.11); border-radius: 50%; box-shadow: 0 0 0 22px rgba(8,184,239,.025); }
.model-benefit-grid article.is-wide { grid-column: span 2; background: radial-gradient(circle at 82% 20%,rgba(32,212,91,.09),transparent 38%),linear-gradient(145deg,rgba(4,31,44,.95),rgba(2,17,28,.92)); }
.model-benefit-grid article > span { margin-bottom: auto; color: var(--cyan); font-family: monospace; font-size: 9px; letter-spacing: 1.2px; }
.model-benefit-grid h3 { max-width: 92%; margin: 22px 0 9px; font-family: var(--condensed); font-size: 25px; line-height: 1; letter-spacing: .7px; }
.model-benefit-grid p { max-width: 92%; margin: 0; color: #7e929c; font-size: 11px; line-height: 1.7; }
.model-benefit-grid article.is-wide p { max-width: 680px; }

.model-story-grid, .model-spec-grid { margin-top: 14px; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.model-story-card, .model-spec-panel { min-width: 0; position: relative; padding: 34px; border: 1px solid var(--line); background: rgba(3,19,31,.76); overflow: hidden; }
.model-story-card h3, .model-spec-panel h3 { margin: 0 0 16px; font-family: var(--condensed); font-size: clamp(37px, 3.5vw, 52px); line-height: .92; letter-spacing: .5px; }
.model-story-card h3 em, .model-spec-panel h3 em { color: var(--cyan); font-style: normal; font-weight: 500; }
.model-story-card > p, .model-spec-panel > p { margin: 0; color: #82959f; font-size: 13px; line-height: 1.75; }
.model-riding-modes ol { margin: 22px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line-soft); }
.model-riding-modes li { min-height: 76px; display: grid; grid-template-columns: 42px 1fr; align-items: center; gap: 20px; padding: 11px 0; border-bottom: 1px solid var(--line-soft); }
.model-riding-modes li > span { color: var(--cyan); font-family: monospace; font-size: 9px; }
.model-riding-modes li strong { display: block; margin-bottom: 7px; font-family: var(--condensed); font-size: 18px; letter-spacing: .6px; }
.model-riding-modes li p { margin: 0; color: #6f838e; font-size: 11px; line-height: 1.55; }
.model-offroad-story { display: flex; flex-direction: column; background: radial-gradient(circle at 75% 20%,rgba(8,184,239,.09),transparent 45%),rgba(3,19,31,.76); }
.model-offroad-story .terrain-symbol { width: 180px; height: 90px; position: relative; margin: 24px 0 auto; opacity: .8; }
.terrain-symbol span { position: absolute; bottom: 0; border-left: 2px solid var(--cyan); border-top: 2px solid var(--cyan); transform: rotate(45deg) skew(-8deg,-8deg); }
.terrain-symbol span:nth-child(1) { left: 16px; width: 64px; height: 64px; }
.terrain-symbol span:nth-child(2) { left: 72px; width: 48px; height: 48px; opacity: .65; }
.terrain-symbol span:nth-child(3) { left: 116px; width: 35px; height: 35px; opacity: .38; }
.model-offroad-story > p + p { margin-top: 18px; color: #b3c1c7; font-family: var(--condensed); font-size: 18px; line-height: 1.5; }

.model-spec-panel { background: linear-gradient(145deg,rgba(4,29,44,.92),rgba(2,17,28,.9)); }
.model-section .model-parts-toolbar > div > span,
.model-section .model-part-detail h3,
.model-section .model-short-summary h3,
.model-section .model-content-heading h2,
.model-section .model-benefit-grid h3,
.model-section .model-spec-panel h3 { color: var(--green); }
.model-option-list { margin: 20px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line-soft); }
.model-option-list li { min-height: 76px; display: grid; grid-template-columns: 165px 1fr; align-items: center; gap: 20px; padding: 10px 12px; border-bottom: 1px solid var(--line-soft); }
.model-option-list li.is-featured { margin: 0 -12px; padding-right: 24px; padding-left: 24px; border: 1px solid rgba(8,184,239,.52); background: rgba(8,184,239,.07); }
.model-option-list li > strong { color: #e4ecef; font-family: var(--condensed); font-size: 35px; font-weight: 500; white-space: nowrap; }
.model-option-list li > strong small { color: var(--cyan); font-size: 15px; }
.model-option-list li > span { color: #80939e; font-size: 12px; line-height: 1.55; }
.battery-option-list li > span { display: grid; gap: 6px; }
.battery-option-list li b { color: #c5d2d7; font-family: var(--condensed); font-size: 13px; font-weight: 500; letter-spacing: 1px; }
.battery-option-list li em { color: #7f949e; font-size: 11px; font-style: normal; }
.model-energy-panel .range-note { margin-top: 16px; color: #5f747f; font-size: 10px; line-height: 1.7; }
.model-cta-panel { min-height: 96px; margin-top: 14px; padding: 18px 24px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; border: 1px solid var(--line); background: #03121e; }
.model-cta-panel > p { max-width: 690px; margin: 0; color: #657984; font-size: 10px; line-height: 1.65; }
.model-cta-panel > div { display: flex; align-items: center; gap: 26px; }
.selected-build { min-height: 118px; margin-top: 18px; padding: 22px 25px; display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 40px; border: 1px solid var(--line); background: #03121e; }
.selected-copy { display: grid; grid-template-columns: auto 1fr; align-items: center; column-gap: 10px; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(32,212,91,.1); }
.selected-copy small { color: var(--muted); font-family: var(--condensed); font-size: 9px; letter-spacing: 2px; }
.selected-copy strong { grid-column: 1 / 3; margin-top: 8px; font-family: var(--condensed); font-size: 28px; letter-spacing: 1px; }
.selected-copy strong b { font-weight: 500; }
.selected-copy > span:last-child { grid-column: 1 / 3; margin-top: 4px; color: var(--cyan); font-family: monospace; font-size: 9px; }
.selected-metrics { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.selected-metrics div { display: grid; gap: 5px; padding-left: 20px; border-left: 1px solid var(--line); }
.selected-metrics small { color: var(--muted); font-family: var(--condensed); font-size: 8px; letter-spacing: 1.4px; }
.selected-metrics strong { font-family: var(--condensed); font-size: 22px; font-weight: 500; }

.configurator-section { color: #eaf0f2; background: linear-gradient(145deg,#03131f,#061d2c 55%,#041522); }
.configurator-stage { display: grid; grid-template-columns: 1.08fr .92fr; gap: 18px; }
.configurator-panel, .configurator-guide { min-width: 0; border: 1px solid var(--line); background: rgba(2,15,25,.76); }
.configurator-panel { padding: 38px 46px 38px 62px; }
.config-page-controls { width: 100%; margin: 0; }
.configurator-guide { padding: 42px; background: linear-gradient(145deg,rgba(6,35,52,.94),rgba(2,17,28,.94)); }
.configurator-guide h3 { margin: 0 0 18px; font-family: var(--condensed); font-size: 38px; line-height: .95; letter-spacing: .8px; }
.configurator-guide > p { max-width: 610px; margin: 0; color: #81939d; font-size: 13px; line-height: 1.7; }
.configurator-steps { margin-top: 30px; border-top: 1px solid var(--line-soft); }
.configurator-steps article { min-height: 86px; display: grid; grid-template-columns: 42px 1fr; align-items: center; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--line-soft); }
.configurator-steps article > span { color: var(--cyan); font-family: monospace; font-size: 10px; }
.configurator-steps article div { min-width: 0; }
.configurator-steps strong { display: block; margin-bottom: 6px; font-family: var(--condensed); font-size: 17px; letter-spacing: 1px; }
.configurator-steps p { margin: 0; color: #677b86; font-size: 11px; line-height: 1.55; }
.configurator-section .selected-build { margin-top: 18px; }

.technology-section { background: #020e19; }
.technology-layout { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 600px; border: 1px solid var(--line); }
.technology-photo { min-width: 0; position: relative; overflow: hidden; border-right: 1px solid var(--line); }
.technology-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,rgba(2,14,25,0),rgba(2,14,25,.68)), linear-gradient(90deg,transparent 70%,rgba(2,14,25,.35)); }
.technology-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.76) contrast(1.08) brightness(.76); }
.photo-data { position: absolute; z-index: 2; left: 23px; right: 23px; bottom: 20px; display: flex; justify-content: space-between; color: var(--cyan); font-family: monospace; font-size: 8px; }
.target { position: absolute; z-index: 3; width: 25px; height: 25px; border: 1px solid var(--cyan); border-radius: 50%; box-shadow: 0 0 0 5px rgba(0,184,239,.12); }
.target::before, .target::after { content: ""; position: absolute; background: var(--cyan); }
.target::before { width: 35px; height: 1px; left: -6px; top: 11px; }
.target::after { width: 1px; height: 35px; top: -6px; left: 11px; }
.target-a { left: 43%; top: 44%; }.target-b { left: 74%; top: 38%; }.target-c { left: 28%; top: 69%; }
.technology-list { display: grid; }
.technology-list article { min-height: 150px; display: grid; grid-template-columns: 55px 1fr auto; align-items: center; gap: 22px; padding: 25px 29px; border-bottom: 1px solid var(--line-soft); }
.technology-list article:last-child { border: 0; }
.tech-no { color: var(--cyan); font-family: monospace; font-size: 9px; }
.technology-list h3 { margin: 0 0 8px; font-family: var(--condensed); font-size: 20px; letter-spacing: .5px; }
.technology-list p { margin: 0; color: #6e818c; font-size: 11px; line-height: 1.55; }
.technology-list article > strong { color: #a6b5bc; font-family: var(--condensed); font-size: 15px; font-weight: 500; white-space: nowrap; }

.gallery-section { color: #0a1720; background: #dfe5e5; }
.gallery-section .section-header h2 { color: #008b45; }
.gallery-section .section-code, .gallery-section .section-header h2 em { color: #008fc4; }
.gallery-section .section-header > p { color: #53656f; }
.gallery-grid { display: grid; grid-template-columns: 1.7fr .7fr; grid-template-rows: repeat(2, 290px); gap: 10px; }
.gallery-grid figure { position: relative; margin: 0; overflow: hidden; background: #0b1c26; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-grid figure:hover img { transform: scale(1.03); }
.gallery-main { grid-row: 1 / 3; }
.gallery-detail.detail-frame img { object-position: 57% 52%; transform: scale(1.85); }
.gallery-detail.detail-frame:hover img { transform: scale(1.92); }
.gallery-detail.detail-drive img { object-position: 22% 72%; transform: scale(2.1); }
.gallery-detail.detail-drive:hover img { transform: scale(2.17); }
.gallery-grid figcaption { position: absolute; left: 0; right: 0; bottom: 0; display: flex; gap: 15px; padding: 28px 22px 17px; color: #fff; background: linear-gradient(transparent,rgba(2,14,25,.82)); font-family: var(--condensed); font-size: 11px; letter-spacing: 1px; }
.gallery-grid figcaption p { margin: 0; }
.gallery-grid figcaption span { color: var(--cyan); }

.safety-section { background: #071824; }
.safety-grid { display: grid; grid-template-columns: 1.4fr repeat(3,1fr); border: 1px solid var(--line); }
.safety-grid > article { min-height: 280px; padding: 30px; border-right: 1px solid var(--line); }
.safety-grid > article:last-child { border: 0; }
.safety-grid article > span:not(.warning-triangle) { color: var(--cyan); font-family: monospace; font-size: 10px; }
.safety-grid h3 { margin: 58px 0 13px; font-family: var(--condensed); font-size: 21px; line-height: 1.15; }
.safety-grid p { margin: 0; color: #71838d; font-size: 11px; line-height: 1.6; }
.safety-primary { display: grid; grid-template-columns: 65px 1fr; gap: 20px; background: rgba(32,212,91,.045); }
.warning-triangle.large { width: 50px; height: 46px; color: var(--green); }
.safety-primary small { color: var(--green); font-family: var(--condensed); font-size: 10px; letter-spacing: 2px; }
.safety-primary h3 { margin: 22px 0 13px; color: var(--green); font-size: 25px; }

.reservation-section { background: #020c15; }
.reservation-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 105px; }
.reservation-copy { min-width: 0; }
.reservation-copy > p { max-width: 520px; margin: 30px 0 35px; color: #7a8d97; font-size: 14px; line-height: 1.75; }
.build-summary { max-width: 520px; padding: 23px; display: grid; gap: 8px; border: 1px solid var(--line); background: rgba(4,26,40,.7); }
.build-summary small { color: var(--muted); font-family: var(--condensed); font-size: 9px; letter-spacing: 2px; }
.build-summary strong { display: flex; align-items: center; gap: 13px; font-family: var(--condensed); font-size: 30px; font-weight: 500; }
.build-summary strong b { font-weight: 500; }
.build-summary strong span { color: var(--cyan); }
.build-summary code { color: var(--cyan); font-size: 10px; }
.contact-links { margin-top: 28px; display: flex; gap: 45px; }
.contact-links a { display: grid; gap: 6px; }
.contact-links small { color: var(--muted); font-family: var(--condensed); font-size: 8px; letter-spacing: 1.5px; }
.contact-links strong { font-size: 13px; }
.inquiry-form { padding: 38px; border: 1px solid var(--line); background: rgba(4,24,37,.76); }
.form-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.inquiry-form label { display: grid; gap: 8px; margin-bottom: 18px; }
.inquiry-form label > span { color: #758690; font-family: var(--condensed); font-size: 10px; letter-spacing: 1.6px; }
.inquiry-form input, .inquiry-form textarea { width: 100%; padding: 13px 0; border: 0; border-bottom: 1px solid rgba(128,178,201,.25); border-radius: 0; outline: 0; background: transparent; color: #edf3f5; resize: vertical; }
.inquiry-form input:focus, .inquiry-form textarea:focus { border-color: var(--cyan); }
.inquiry-form input::placeholder, .inquiry-form textarea::placeholder { color: #506570; }
.inquiry-form input[readonly] { color: var(--cyan); }
.inquiry-form .consent { grid-template-columns: 18px 1fr; align-items: start; gap: 10px; color: #73858f; font-size: 10px; line-height: 1.5; }
.consent input { width: 16px; height: 16px; margin: 0; accent-color: var(--cyan); }
.submit-cta { width: 100%; border: 0; }
.form-note { margin: 13px 0 0; color: #526671; font-size: 9px; line-height: 1.5; text-align: center; }

.site-footer { padding: 45px 0 20px; border-top: 1px solid var(--line); background: #010910; }
.footer-inner { display: grid; grid-template-columns: 300px 1fr auto; align-items: center; gap: 40px; padding-bottom: 35px; }
.brand-footer .brand-logo-frame { max-width: 270px; }
.brand-footer .brand-logo-caption { background: rgba(1,9,16,.99); }
.footer-inner > p { margin: 0; color: #687b85; font-family: var(--condensed); font-size: 12px; letter-spacing: 1px; }
.social-links { display: flex; gap: 22px; }
.social-links a { color: #82929a; font-family: var(--condensed); font-size: 10px; letter-spacing: 1px; }
.social-links a:hover { color: var(--cyan); }
.footer-bottom { padding-top: 18px; display: flex; justify-content: space-between; border-top: 1px solid var(--line-soft); color: #435660; font-family: var(--condensed); font-size: 8px; letter-spacing: 1.2px; }
.toast { position: fixed; z-index: 300; right: 22px; bottom: 22px; max-width: 370px; padding: 15px 18px; border: 1px solid var(--cyan); background: #051b29; color: #dce8ec; box-shadow: 0 18px 42px rgba(0,0,0,.35); font-family: var(--condensed); font-size: 13px; transform: translateY(150%); opacity: 0; transition: .25s; }
.toast.is-visible { transform: translateY(0); opacity: 1; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (min-width: 1920px) and (min-height: 1100px) {
  :root { --shell: min(1760px, calc(100vw - 120px)); }
  .site-header { height: 116px; }
  .site-header.is-scrolled { height: 92px; }
  .header-inner { grid-template-columns: 400px 1fr 130px; gap: 42px; }
  .brand-logo-frame { max-width: 380px; }
  .desktop-nav a { font-size: 17px; }
  .hero { height: calc(100svh - 146px); grid-template-rows: minmax(0, 1fr) 170px; }
  .hero-main { height: 100%; min-height: 0; }
  .hero-copy { width: 700px; max-width: 42%; }
  .hero h1 { font-size: 84px; }
  .hero-reference { top: 20px; width: min(63%, 1500px); max-width: 1500px; }
  .stat-card strong { font-size: 44px; }
  .reservation-stat strong { font-size: 34px; }
}

/* QHD/4K desktop layout: keeps the interface proportional on large monitors. */
@media (min-width: 2560px) and (min-height: 1400px) {
  :root { --shell: min(3200px, calc(100vw - 240px)); }
  html { scroll-padding-top: 170px; }

  .production-bar { height: 42px; font-size: 17px; letter-spacing: 8px; }
  .site-header { height: 150px; }
  .site-header.is-scrolled { height: 120px; }
  .header-inner { grid-template-columns: 590px 1fr 180px; gap: 70px; }
  .brand-logo-frame { max-width: 560px; flex-basis: 560px; }
  .brand-logo-caption { gap: 4px; padding: 5px 4px 4px 9px; border-top-width: 3px; }
  .brand-logo-caption strong { font-size: 15px; letter-spacing: 2px; }
  .brand-logo-caption small { font-size: 10px; letter-spacing: 1.4px; }
  .desktop-nav { gap: clamp(62px, 3.2vw, 112px); }
  .desktop-nav a { padding: 30px 0; font-size: 22px; letter-spacing: 1.1px; }
  .desktop-nav a::after { bottom: 12px; height: 3px; }
  .language-switch { gap: 11px; font-size: 20px; }
  .language-switch button { padding: 8px 2px; }

  .hero { height: calc(100svh - 192px); grid-template-rows: minmax(0, 1fr) clamp(200px, 11vh, 240px); }
  .hero-main { padding: 40px 0 34px; }
  .hero-copy { width: clamp(850px, 28vw, 1080px); max-width: 43%; }
  .hero-reference { top: 30px; width: min(65%, 2550px); max-width: 2550px; }
  .model-label { --model-label-gap: 13px; margin-bottom: 27px; }
  .model-label span { font-size: clamp(21px, .68vw, 26px); letter-spacing: 2.5px; }
  .model-label strong { font-size: clamp(66px, 2.15vw, 84px); letter-spacing: 1.6px; }
  .hero h1 { font-size: clamp(96px, 3.45vw, 132px); letter-spacing: 1.3px; -webkit-text-stroke-width: 1px; }
  .hero-lead { margin-top: 31px; font-size: clamp(24px, .84vw, 32px); line-height: 1.42; }
  .hero-actions { gap: 42px; margin-top: 32px; }
  .primary-cta { min-height: 74px; gap: 48px; padding: 0 38px; border-radius: 7px; font-size: 24px; }
  .primary-cta > span:last-child { font-size: 40px; }
  .line-cta { min-height: 60px; gap: 34px; border-bottom-width: 3px; font-size: 21px; }
  .line-cta span:last-child { font-size: 31px; }

  .quick-config { width: clamp(720px, 22vw, 850px); margin-top: 32px; }
  .config-group { margin-top: 15px; padding: 20px 12px 14px 50px; border-radius: 7px; }
  .config-group legend { padding: 0 12px; font-size: 14px; letter-spacing: 3.4px; }
  .config-icon { left: -46px; top: 28px; }
  .config-icon.bolt { font-size: 55px; }
  .config-icon.battery { width: 27px; height: 47px; top: 25px; left: -40px; border-width: 3px; }
  .choice-row { gap: 11px; }
  .choice { min-height: 62px; gap: 9px; padding: 10px 15px; border-radius: 8px; font-size: 18px; }
  .choice strong { font-size: 22px; }
  .compatibility.info-panel { min-height: 126px; margin-top: 16px; padding: 12px 22px; grid-template-columns: 58px 1fr; column-gap: 18px; border-width: 4px; border-radius: 8px; }
  .compatibility.info-panel .info-symbol { width: 47px; height: 47px; border-width: 3px; font-size: 30px; }
  .compatibility.info-panel strong,
  .compatibility.info-panel small,
  .compatibility.info-panel em { font-size: 21px; }

  .origin-card { grid-template-columns: minmax(210px, 56%) minmax(0, 1fr); gap: 24px; padding-right: 34px; }
  .origin-photo { height: clamp(165px, 9vh, 205px); border-radius: 10px; }
  .origin-card > div { gap: 14px; }
  .origin-card strong { font-size: 19px; line-height: 1.5; letter-spacing: 1.5px; }
  .mountain-icon { width: 72px; height: 43px; }
  .stat-card { gap: 32px; padding: 0 30px; }
  .stat-icon { width: 52px; height: 52px; }
  .stat-card strong { font-size: 58px; letter-spacing: 3px; }
  .stat-card strong small { font-size: 25px; }
  .stat-card > div > span { font-size: 17px; letter-spacing: 4.4px; }
  .reservation-stat { gap: 22px; padding: 0 24px; }
  .reservation-stat strong { font-size: 43px; }

  .section { padding: 180px 0; }
  .model-section { padding-top: 92px; padding-bottom: 120px; }
  .section-header { gap: 165px; margin-bottom: 95px; }
  .section-code { margin-bottom: 28px; font-size: 16px; letter-spacing: 4.5px; }
  .section-header h2, .reservation-copy h2 { font-size: clamp(66px, 2.15vw, 84px); letter-spacing: 1.6px; }
  .section-header > p { max-width: 820px; font-size: 22px; line-height: 1.8; }

  .model-intro { margin-bottom: 70px; }
  .model-intro > .section-code { margin-bottom: 34px; }
  .model-intro-grid { grid-template-columns: minmax(820px,.88fr) minmax(0,1.12fr); gap: 150px; }
  .model-page-label span { font-size: clamp(21px, .68vw, 26px); letter-spacing: 2.5px; }
  .model-page-label strong { margin-top: 15px; font-size: clamp(66px, 2.15vw, 84px); letter-spacing: 1.6px; }
  .model-page-tagline { margin-top: 25px; font-size: 32px; letter-spacing: 3px; }
  .model-page-lead { max-width: 1030px; margin-top: 46px; font-size: 34px; line-height: 1.6; }
  .model-overview-copy { padding: 9px 0 9px 56px; gap: 26px; border-left-width: 3px; }
  .model-overview-copy p { font-size: 23px; line-height: 1.9; }
  .model-explorer-block { margin-bottom: 28px; }
  .model-explorer-header { grid-template-columns: minmax(0,760px) minmax(0,900px); margin-bottom: 40px; gap: 72px; }
  .model-explorer-header h2 span, .model-explorer-copy > strong { font-size: clamp(21px, .68vw, 26px); letter-spacing: 2.5px; }
  .model-explorer-header h2 strong { margin-top: 15px; font-size: clamp(66px, 2.15vw, 84px); letter-spacing: 1.6px; }
  .model-explorer-copy { max-width: 900px; gap: 18px; }
  .model-explorer-copy > p { font-size: 22px; line-height: 1.8; }
  .model-explorer { grid-template-columns: minmax(0,1.72fr) minmax(680px,.68fr); }
  .model-viewer-meta { left: 28px; right: 28px; bottom: 22px; font-size: 13px; letter-spacing: 1.5px; }
  .model-rotation-controls { top: 26px; left: 28px; min-height: 63px; gap: 3px; padding: 6px; border-width: 2px; }
  .model-rotation-title { padding: 0 14px; font-size: 11px; letter-spacing: 1.7px; }
  .model-rotation-controls button { min-height: 48px; gap: 9px; padding: 0 13px; border-left-width: 2px; }
  .model-rotation-controls button span { min-width: 21px; font-size: 20px; }
  .model-rotation-controls button b { font-size: 11px; letter-spacing: 1px; }
  .model-default-view { min-height: 63px; top: 26px; right: 28px; gap: 12px; padding: 6px 18px; border-width: 2px; }
  .model-default-view-icon { width: 27px; height: 20px; border-width: 2px; }
  .model-default-view-icon::before { width: 15px; left: 4px; top: 8px; border-top-width: 2px; }
  .model-default-view-icon::after { width: 5px; height: 5px; left: 8px; top: 5px; border-width: 2px; }
  .model-default-view b { font-size: 12px; letter-spacing: 1.1px; }
  .model-3d-loading { bottom: 72px; width: min(390px,calc(100% - 60px)); gap: 10px; font-size: 12px; letter-spacing: 1.8px; }
  .model-3d-hotspot { width: 38px; height: 38px; }
  .hotspot-node { width: 38px; height: 38px; font-size: 11px; }
  .hotspot-node::before { width: 48px; left: -5px; top: 18px; }
  .hotspot-node::after { height: 48px; left: 18px; top: -5px; }
  .hotspot-callout { padding: 9px 12px; font-size: 14px; letter-spacing: 1.7px; }
  .model-parts-toolbar { min-height: 116px; padding: 23px 29px; gap: 24px; }
  .model-parts-toolbar > div { gap: 8px; }
  .model-parts-toolbar > div > span { font-size: 21px; letter-spacing: 1.8px; }
  .model-parts-toolbar small { font-size: 11px; letter-spacing: 1.5px; }
  .model-view-reset { min-height: 57px; gap: 11px; padding: 0 16px; border-width: 2px; }
  .model-view-reset span { font-size: 26px; }
  .model-view-reset b { font-size: 12px; letter-spacing: 1.2px; }
  .model-part-detail { padding: 50px 52px 45px; }
  .model-part-status { gap: 15px; font-size: 13px; letter-spacing: 2px; }
  .model-part-detail h3 { max-width: 560px; margin: 40px 0 23px; font-size: clamp(46px, 1.55vw, 60px); }
  .model-part-detail > p { margin-bottom: 45px; font-size: 18px; line-height: 1.8; }
  .model-part-detail dl { padding-top: 30px; }
  .model-part-detail dt { margin-bottom: 12px; font-size: 12px; letter-spacing: 2px; }
  .model-part-detail dd { font-size: 23px; }
  .model-part-watermark { right: -20px; bottom: -52px; font-size: 285px; }
  .model-part-tabs { grid-auto-rows: 98px; }
  .model-part-tabs button { min-height: 98px; gap: 15px; padding: 15px 20px; }
  .model-part-tabs button span { font-size: 11px; }
  .model-part-tabs button b { font-size: 15px; letter-spacing: 1.3px; }
  .model-short-summary { margin-top: 22px; padding: 34px 48px; grid-template-columns: minmax(520px,.75fr) minmax(0,1.25fr); gap: 70px; }
  .model-short-summary::before { width: 5px; }
  .model-short-summary .section-code { margin-bottom: 15px; }
  .model-short-summary h3 { font-size: clamp(50px,1.65vw,63px); letter-spacing: 1px; }
  .model-short-summary > p { font-size: 20px; line-height: 1.82; }
  .model-features, .model-benefits { margin-top: 76px; }
  .model-content-heading { margin-bottom: 30px; gap: 165px; }
  .model-content-heading h2 { font-size: clamp(66px,2.15vw,84px); letter-spacing: 1.6px; }
  .model-content-heading > p { max-width: 820px; font-size: 20px; line-height: 1.8; }
  .model-feature-list li { min-height: 96px; padding: 18px 28px; grid-template-columns: 51px minmax(0,1fr); gap: 24px; }
  .model-feature-list li > span { font-size: 12px; }
  .model-feature-list li > strong { font-size: 23px; letter-spacing: 1.1px; }
  .model-feature-list li.is-metric { min-height: 118px; }
  .model-feature-list li.is-metric > div { gap: 12px; }
  .model-feature-list li.is-metric small { font-size: 12px; letter-spacing: 2px; }
  .model-feature-list li.is-metric strong { font-size: 40px; letter-spacing: 1px; }
  .model-benefit-grid article { min-height: 250px; padding: 34px; }
  .model-benefit-grid article::after { width: 180px; height: 180px; right: -90px; bottom: -90px; box-shadow: 0 0 0 33px rgba(8,184,239,.025); }
  .model-benefit-grid article > span { font-size: 14px; }
  .model-benefit-grid h3 { margin: 34px 0 14px; font-size: 37px; letter-spacing: 1px; }
  .model-benefit-grid p { font-size: 17px; line-height: 1.75; }
  .model-story-grid, .model-spec-grid { margin-top: 22px; gap: 22px; }
  .model-story-card, .model-spec-panel { padding: 50px; }
  .model-story-card h3, .model-spec-panel h3 { margin-bottom: 24px; font-size: clamp(60px, 2.1vw, 80px); }
  .model-story-card > p, .model-spec-panel > p { font-size: 20px; line-height: 1.8; }
  .model-riding-modes ol { margin-top: 34px; }
  .model-riding-modes li { min-height: 108px; grid-template-columns: 62px 1fr; gap: 30px; padding: 17px 0; }
  .model-riding-modes li > span { font-size: 14px; }
  .model-riding-modes li strong { margin-bottom: 10px; font-size: 27px; }
  .model-riding-modes li p { font-size: 17px; line-height: 1.6; }
  .model-offroad-story .terrain-symbol { width: 270px; height: 135px; margin-top: 36px; }
  .model-offroad-story > p + p { margin-top: 27px; font-size: 27px; }
  .model-option-list { margin-top: 30px; }
  .model-option-list li { min-height: 110px; grid-template-columns: 245px 1fr; gap: 32px; padding: 16px 20px; }
  .model-option-list li.is-featured { margin: 0 -20px; padding-right: 40px; padding-left: 40px; }
  .model-option-list li > strong { font-size: 52px; }
  .model-option-list li > strong small { font-size: 23px; }
  .model-option-list li > span { font-size: 18px; line-height: 1.6; }
  .battery-option-list li b { font-size: 20px; }
  .battery-option-list li em { font-size: 17px; }
  .model-energy-panel .range-note { margin-top: 26px; font-size: 15px; }
  .model-cta-panel { min-height: 132px; margin-top: 22px; padding: 26px 34px; gap: 52px; }
  .model-cta-panel > p { max-width: 1050px; font-size: 15px; line-height: 1.7; }
  .model-cta-panel > div { gap: 40px; }
  .selected-build { min-height: 172px; margin-top: 28px; padding: 32px 38px; gap: 60px; }
  .selected-copy small { font-size: 13px; letter-spacing: 3px; }
  .selected-copy strong { margin-top: 12px; font-size: 41px; }
  .selected-copy > span:last-child { font-size: 13px; }
  .selected-metrics { gap: 32px; }
  .selected-metrics div { gap: 8px; padding-left: 30px; }
  .selected-metrics small { font-size: 12px; letter-spacing: 2px; }
  .selected-metrics strong { font-size: 33px; }

  .configurator-stage { gap: 28px; }
  .configurator-panel { padding: 58px 72px 58px 90px; }
  .configurator-guide { padding: 62px; }
  .configurator-guide h3 { margin-bottom: 27px; font-size: 56px; }
  .configurator-guide > p { max-width: 860px; font-size: 19px; line-height: 1.75; }
  .configurator-steps { margin-top: 44px; }
  .configurator-steps article { min-height: 126px; grid-template-columns: 62px 1fr; gap: 27px; padding: 24px 0; }
  .configurator-steps article > span { font-size: 15px; }
  .configurator-steps strong { margin-bottom: 9px; font-size: 25px; letter-spacing: 1.5px; }
  .configurator-steps p { font-size: 16px; line-height: 1.65; }
  .configurator-section .selected-build { margin-top: 28px; }

  .technology-layout { min-height: 920px; }
  .technology-list article { min-height: 230px; grid-template-columns: 82px 1fr auto; gap: 34px; padding: 38px 45px; }
  .tech-no { font-size: 14px; }
  .technology-list h3 { margin-bottom: 12px; font-size: 30px; }
  .technology-list p { font-size: 17px; line-height: 1.7; }
  .technology-list article > strong { font-size: 22px; }
  .photo-data { left: 36px; right: 36px; bottom: 30px; font-size: 13px; }
  .target { width: 38px; height: 38px; }

  .gallery-grid { grid-template-rows: repeat(2, 455px); gap: 16px; }
  .gallery-grid figcaption { gap: 22px; padding: 42px 34px 26px; font-size: 17px; }

  .safety-grid > article { min-height: 420px; padding: 46px; }
  .safety-grid article > span:not(.warning-triangle) { font-size: 15px; }
  .safety-grid h3 { margin: 85px 0 20px; font-size: 31px; }
  .safety-grid p { font-size: 17px; line-height: 1.72; }
  .safety-primary { grid-template-columns: 90px 1fr; gap: 30px; }
  .warning-triangle.large { width: 70px; height: 64px; }
  .safety-primary small { font-size: 15px; letter-spacing: 3px; }
  .safety-primary h3 { margin-top: 32px; font-size: 37px; }

  .reservation-layout { gap: 175px; }
  .reservation-copy > p { max-width: 760px; margin: 44px 0 50px; font-size: 22px; }
  .build-summary { max-width: 760px; padding: 34px; gap: 12px; }
  .build-summary small { font-size: 13px; letter-spacing: 3px; }
  .build-summary strong { font-size: 44px; }
  .build-summary code { font-size: 14px; }
  .contact-links { margin-top: 40px; gap: 65px; }
  .contact-links small { font-size: 12px; }
  .contact-links strong { font-size: 19px; }
  .inquiry-form { padding: 56px; }
  .form-row { gap: 30px; }
  .inquiry-form label { gap: 12px; margin-bottom: 27px; }
  .inquiry-form label > span { font-size: 15px; letter-spacing: 2.2px; }
  .inquiry-form input, .inquiry-form textarea { padding: 19px 0; font-size: 18px; }
  .inquiry-form .consent { grid-template-columns: 25px 1fr; gap: 15px; font-size: 15px; }
  .consent input { width: 22px; height: 22px; }
  .form-note { margin-top: 19px; font-size: 13px; }

  .site-footer { padding: 66px 0 30px; }
  .footer-inner { grid-template-columns: 500px 1fr auto; gap: 65px; padding-bottom: 50px; }
  .brand-footer .brand-logo-frame { max-width: 460px; }
  .footer-inner > p { font-size: 18px; }
  .social-links { gap: 34px; }
  .social-links a { font-size: 15px; }
  .footer-bottom { padding-top: 27px; font-size: 12px; letter-spacing: 1.8px; }
}

@media (min-width: 901px) and (max-height: 950px) {
  .site-header { height: 88px; }
  .site-header.is-scrolled { height: 76px; }
  .brand-logo-frame { max-width: 285px; }
  .hero { height: calc(100svh - 118px); grid-template-rows: minmax(0, 1fr) 120px; }
  .hero-main { padding: 12px 0 10px; }
  .model-label { --model-label-gap: 5px; margin-bottom: 10px; }
  .model-label span { font-size: 13px; }
  .model-label strong { font-size: 40px; }
  .model-page-label span { font-size: 13px; }
  .model-page-label strong { font-size: 40px; }
  .model-content-heading h2 { font-size: 40px; }
  .section-header h2, .reservation-copy h2 { font-size: 40px; }
  .model-explorer-header h2 span, .model-explorer-copy > strong { font-size: 13px; }
  .model-explorer-header h2 strong { font-size: 40px; }
  .hero h1 { font-size: 56px; }
  .hero-lead { margin-top: 12px; font-size: 18px; }
  .hero-actions { margin-top: 12px; }
  .primary-cta { min-height: 48px; }
  .quick-config { margin-top: 10px; }
  .config-group { margin-top: 7px; padding-top: 10px; padding-bottom: 7px; }
  .choice { min-height: 38px; padding-top: 5px; padding-bottom: 5px; }
  .compatibility.info-panel { min-height: 76px; margin-top: 8px; padding-top: 4px; padding-bottom: 4px; }
  .origin-photo { height: 104px; }
  .stat-card strong { font-size: 34px; }
  .reservation-stat strong { font-size: 24px; }
}

@media (max-width: 1180px) {
  :root { --shell: min(100% - 44px, 1060px); }
  .header-inner { grid-template-columns: 275px 1fr 96px; gap: 18px; }
  .brand-logo-frame { max-width: 270px; }
  .desktop-nav { gap: 25px; }
  .desktop-nav a { font-size: 13px; }
  .hero-reference { width: min(68%, 900px); }
  .hero-copy { max-width: 54%; }
  .hero h1 { font-size: 61px; }
  .stats-inner { grid-template-columns: 1.25fr .8fr .8fr .8fr 1.35fr; }
  .stat-card { gap: 13px; padding: 0 10px; }
  .stat-card strong { font-size: 31px; }
  .stat-card > div > span { font-size: 9px; letter-spacing: 2px; }
  .origin-card { padding-right: 15px; }
  .origin-photo { height: 96px; }
  .reservation-stat { gap: 9px; padding: 0 8px; }
  .reservation-stat strong { font-size: 22px; }
  .selected-build { grid-template-columns: 1fr 1fr; }
  .selected-build > .primary-cta { grid-column: 1 / 3; justify-self: end; margin-top: -72px; }
  .reservation-layout { gap: 60px; }
}

@media (max-width: 900px) {
  :root { --shell: min(100% - 34px, 760px); }
  html { scroll-padding-top: 82px; }
  .production-bar { height: 27px; padding: 0 12px; font-size: 9px; letter-spacing: 3px; }
  .site-header, .site-header.is-scrolled { height: 74px; }
  .header-inner { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .header-tools { grid-column: 2; }
  .menu-toggle { display: block; }
  .mobile-menu { inset: 101px 0 0; }
  .brand-logo-frame { max-width: 285px; }
  .hero { height: auto; min-height: auto; display: block; }
  .hero-main { min-height: 0; padding: 65px 0 610px; }
  .hero-copy { width: 100%; max-width: 100%; }
  .hero-reference { width: 100%; max-width: none; top: auto; height: auto; bottom: 145px; aspect-ratio: 830 / 600; }
  .hero-reference::after { background: linear-gradient(180deg,rgba(2,15,28,0),rgba(2,15,28,0) 88%,rgba(2,15,28,.38) 100%); }
  .hero .quick-config { width: 570px; }
  .hero-stats { height: auto; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .origin-card { min-height: 135px; grid-column: 1 / 3; padding: 13px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .origin-photo { height: 118px; }
  .stat-card { min-height: 120px; border-bottom: 1px solid var(--line); }
  .stat-card:nth-child(3), .stat-card:nth-child(5) { border-right: 0; }
  .reservation-stat { border-bottom: 0; }
  .section { padding: 90px 0; }
  .model-section { padding-top: 46px; padding-bottom: 64px; }
  .section-header { grid-template-columns: 1fr; gap: 25px; }
  .model-intro { margin-bottom: 42px; }
  .model-intro > .section-code { margin-bottom: 19px; }
  .model-intro-grid { grid-template-columns: 1fr; gap: 30px; }
  .model-page-lead { margin-top: 28px; }
  .model-overview-copy { padding-left: 25px; }
  .model-explorer-header { grid-template-columns: 1fr; gap: 18px; }
  .model-explorer-copy { max-width: 640px; gap: 10px; }
  .model-explorer { grid-template-columns: 1fr; }
  .model-viewport { min-height: 0; aspect-ratio: 16 / 10; border-right: 0; border-bottom: 1px solid var(--line); }
  .model-3d-viewer { width: 100%; transform: none; }
  .model-parts-panel { min-height: 0; }
  .model-part-detail { min-height: 330px; }
  .model-part-tabs { grid-template-columns: repeat(4,1fr); grid-auto-rows: 52px; }
  .model-part-tabs button { border-bottom: 1px solid var(--line-soft); }
  .model-part-tabs button:nth-child(2n) { border-right: 1px solid var(--line-soft); }
  .model-part-tabs button:nth-child(4n) { border-right: 0; }
  .model-part-tabs button:nth-last-child(-n+4) { border-bottom: 0; }
  .model-short-summary { grid-template-columns: 1fr; gap: 18px; padding: 24px 28px; }
  .model-content-heading { grid-template-columns: 1fr; gap: 22px; }
  .model-feature-list { grid-template-columns: 1fr; }
  .model-benefit-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .model-benefit-grid article.is-wide { grid-column: span 2; }
  .model-story-grid, .model-spec-grid { grid-template-columns: 1fr; }
  .model-offroad-story .terrain-symbol { margin-bottom: 55px; }
  .model-cta-panel { grid-template-columns: 1fr; gap: 20px; }
  .model-cta-panel > div { flex-wrap: wrap; }
  .configurator-stage { grid-template-columns: 1fr; }
  .configurator-panel { padding: 34px 42px 34px 56px; }
  .configurator-guide { padding: 36px; }
  .selected-build { grid-template-columns: 1fr; }
  .selected-build > .primary-cta { grid-column: auto; justify-self: stretch; margin: 0; }
  .technology-layout { grid-template-columns: 1fr; }
  .technology-photo { height: 480px; border-right: 0; border-bottom: 1px solid var(--line); }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 430px 240px; }
  .gallery-main { grid-column: 1 / 3; grid-row: auto; }
  .safety-grid { grid-template-columns: repeat(2,1fr); }
  .safety-grid > article { border-bottom: 1px solid var(--line); }
  .safety-grid > article:nth-child(2) { border-right: 0; }
  .reservation-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 24px); }
  .production-bar { font-size: 8px; letter-spacing: 1.7px; }
  html[lang="de"] .production-bar { font-size: 6.5px; letter-spacing: .7px; }
  .brand-logo-frame { max-width: 245px; }
  .language-switch { font-size: 12px; }
  .hero-main { padding-top: 48px; padding-bottom: 445px; }
  .model-label span { font-size: 16px; }
  .model-label strong { font-size: 48px; }
  .hero h1 { font-size: 46px; letter-spacing: 0; }
  .hero-lead { font-size: 17px; }
  .hero-lead-intro { white-space: normal; }
  .model-section { padding-top: 30px; padding-bottom: 48px; }
  .model-intro { margin-bottom: 34px; }
  .model-intro > .section-code { margin-bottom: 15px; }
  .model-intro-grid { gap: 23px; }
  .model-page-label span { font-size: 16px; letter-spacing: 1.6px; }
  .model-page-label strong { max-width: none; margin-top: 8px; font-size: 48px; letter-spacing: 1px; white-space: nowrap; transform: scaleX(.93); transform-origin: left center; }
  .model-page-tagline { margin-top: 13px; font-size: 15px; line-height: 1.2; letter-spacing: 1.3px; }
  .model-page-lead { margin-top: 23px; font-size: 18px; line-height: 1.5; }
  .model-overview-copy { margin-top: 0; padding: 3px 0 3px 16px; gap: 13px; border-left-width: 2px; }
  .model-overview-copy p { font-size: 13px; line-height: 1.75; }
  .model-explorer-header { margin-bottom: 20px; gap: 14px; }
  .model-explorer-header h2 span, .model-explorer-copy > strong { font-size: 16px; letter-spacing: 1.6px; }
  .model-explorer-header h2 strong { margin-top: 8px; font-size: 48px; letter-spacing: 1px; white-space: nowrap; transform: scaleX(.93); transform-origin: left center; }
  .model-explorer-copy { gap: 8px; }
  .model-explorer-copy > p { font-size: 12px; }
  .model-viewport { aspect-ratio: 4 / 3; }
  .model-rotation-controls { top: 8px; left: 8px; min-height: 38px; gap: 1px; padding: 3px; }
  .model-rotation-title { display: none; }
  .model-rotation-controls button { min-height: 30px; gap: 4px; padding: 0 6px; }
  .model-rotation-controls button span { min-width: 12px; font-size: 12px; }
  .model-rotation-controls button b { font-size: 6px; letter-spacing: .45px; }
  .model-default-view { min-width: 38px; min-height: 38px; top: 8px; right: 8px; gap: 0; padding: 3px 7px; }
  .model-default-view b { display: none; }
  .model-default-view-icon { width: 20px; height: 15px; }
  .model-default-view-icon::before { width: 12px; left: 3px; top: 6px; }
  .model-default-view-icon::after { left: 7px; top: 4px; }
  .model-parts-toolbar { min-height: 70px; padding: 12px 13px; gap: 10px; }
  .model-parts-toolbar > div > span { font-size: 12px; letter-spacing: .9px; }
  .model-parts-toolbar small { font-size: 6px; letter-spacing: .65px; }
  .model-view-reset { min-height: 36px; gap: 5px; padding: 0 8px; }
  .model-view-reset span { font-size: 15px; }
  .model-view-reset b { font-size: 7px; letter-spacing: .55px; }
  .model-viewer-meta { left: 10px; right: 10px; bottom: 8px; font-size: 6px; }
  .model-viewer-meta > span:last-child { display: none; }
  .model-3d-loading { bottom: 30px; width: calc(100% - 40px); font-size: 7px; }
  .model-3d-hotspot { width: 22px; height: 22px; }
  .model-3d-hotspot::before, .hotspot-callout { display: none; }
  .hotspot-node { width: 22px; height: 22px; font-size: 6px; box-shadow: 0 0 0 3px rgba(8,184,239,.1); }
  .hotspot-node::before { width: 28px; left: -3px; top: 10px; }
  .hotspot-node::after { height: 28px; left: 10px; top: -3px; }
  .model-part-detail { min-height: 300px; padding: 30px 24px 26px; }
  .model-part-detail h3 { margin-bottom: 15px; font-size: clamp(29px, 8.7vw, 34px); }
  .model-part-detail > p { margin-bottom: 22px; font-size: 11px; }
  .model-part-detail dd { font-size: 13px; }
  .model-part-watermark { font-size: 145px; }
  .model-part-tabs { grid-template-columns: repeat(2,1fr); grid-auto-rows: 58px; }
  .model-part-tabs button { min-height: 58px; }
  .model-part-tabs button:nth-child(4n) { border-right: 1px solid var(--line-soft); }
  .model-part-tabs button:nth-child(2n) { border-right: 0; }
  .model-part-tabs button:nth-last-child(-n+4) { border-bottom: 1px solid var(--line-soft); }
  .model-part-tabs button:nth-last-child(-n+2) { border-bottom: 0; }
  .model-short-summary { margin-top: 10px; padding: 15px 18px; gap: 12px; }
  .model-short-summary .section-code { margin-bottom: 7px; }
  .model-short-summary h3 { font-size: clamp(29px,8.8vw,36px); line-height: .96; }
  .model-short-summary > p { font-size: 11px; line-height: 1.72; }
  .model-features, .model-benefits { margin-top: 36px; }
  .model-content-heading { margin-bottom: 16px; gap: 12px; }
  .model-content-heading h2 { font-size: 48px; letter-spacing: 1px; }
  .model-content-heading > p { font-size: 11px; line-height: 1.7; }
  .model-feature-list { grid-template-columns: 1fr; }
  .model-feature-list li { min-height: 58px; padding: 10px 13px; grid-template-columns: 28px minmax(0,1fr); gap: 11px; }
  .model-feature-list li > strong { font-size: 13px; letter-spacing: .55px; }
  .model-feature-list li.is-metric { min-height: 74px; }
  .model-feature-list li.is-metric small { font-size: 7px; letter-spacing: 1.1px; }
  .model-feature-list li.is-metric strong { font-size: clamp(17px,5.6vw,22px); letter-spacing: .2px; white-space: nowrap; }
  .model-benefit-grid { grid-template-columns: 1fr; }
  .model-benefit-grid article, .model-benefit-grid article.is-wide { min-height: 150px; grid-column: auto; padding: 18px 17px; }
  .model-benefit-grid h3 { margin: 20px 0 8px; font-size: 22px; }
  .model-benefit-grid p, .model-benefit-grid article.is-wide p { max-width: 96%; font-size: 10.5px; }
  .model-story-grid, .model-spec-grid { gap: 10px; margin-top: 10px; }
  .model-story-card, .model-spec-panel { padding: 20px 18px; }
  .model-story-card h3, .model-spec-panel h3 { margin-bottom: 13px; font-size: 36px; }
  .model-story-card > p, .model-spec-panel > p { font-size: 12px; }
  .model-riding-modes ol { margin-top: 18px; }
  .model-riding-modes li { grid-template-columns: 32px 1fr; gap: 12px; }
  .model-riding-modes li strong { font-size: 16px; }
  .model-offroad-story .terrain-symbol { margin-bottom: 45px; transform: scale(.8); transform-origin: left center; }
  .model-offroad-story > p + p { font-size: 16px; }
  .model-option-list { margin-top: 18px; }
  .model-option-list li { min-height: 70px; grid-template-columns: 110px 1fr; gap: 10px; padding: 9px 4px; }
  .model-option-list li.is-featured { margin: 0 -4px; padding-right: 8px; padding-left: 8px; }
  .model-option-list li > strong { font-size: 27px; }
  .model-option-list li > strong small { font-size: 12px; }
  .model-option-list li > span { font-size: 10px; }
  .battery-option-list li b { font-size: 11px; }
  .battery-option-list li em { font-size: 9px; }
  .model-energy-panel .range-note { font-size: 9px; }
  .model-cta-panel { min-height: 0; margin-top: 10px; padding: 16px 15px; }
  .model-cta-panel > div { align-items: stretch; flex-direction: column; gap: 10px; }
  .model-cta-panel .line-cta { align-self: flex-start; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 9px; }
  .line-cta { align-self: flex-start; }
  .primary-cta { min-height: 50px; }
  .config-group { padding-left: 25px; }
  .config-icon.bolt { left: -28px; }
  .config-icon.battery { left: -24px; }
  .choice-row { gap: 5px; }
  .choice { min-height: 48px; flex-direction: column; gap: 1px; padding: 5px 3px; font-size: 10px; }
  .choice strong { font-size: 13px; }
  .compatibility.info-panel strong,
  .compatibility.info-panel small,
  .compatibility.info-panel em { font-size: 13px; }
  .compatibility, .compatibility.is-warning, .compatibility.is-danger { width: calc(100% - 25px); margin-left: 25px; }
  .configurator-panel { padding: 24px 18px 24px 42px; }
  .configurator-guide { padding: 28px 22px; }
  .configurator-guide h3 { font-size: 31px; }
  .configurator-steps article { grid-template-columns: 34px 1fr; gap: 12px; }
  .hero-reference { height: auto; bottom: 360px; }
  .stats-inner { grid-template-columns: 1fr; }
  .origin-card { grid-column: auto; grid-template-columns: minmax(90px, 36%) minmax(0, 1fr); }
  .stat-card { min-height: 95px; justify-content: flex-start; padding-left: 35px; border-right: 0; }
  .stat-card strong { font-size: 31px; }
  .section-header h2, .reservation-copy h2 { font-size: 48px; letter-spacing: 0; }
  .selected-metrics { grid-template-columns: 1fr; }
  .technology-photo { height: 330px; }
  .technology-list article { grid-template-columns: 42px 1fr; padding: 22px 18px; }
  .technology-list article > strong { grid-column: 2; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: 320px 220px 220px; }
  .gallery-main { grid-column: auto; }
  .safety-grid { grid-template-columns: 1fr; }
  .safety-grid > article { min-width: 0; min-height: 230px; border-right: 0; }
  .safety-primary { grid-template-columns: 50px 1fr; }
  .safety-primary > div { min-width: 0; }
  .safety-primary h3 { overflow-wrap: anywhere; }
  .inquiry-form { padding: 28px 18px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-links { flex-direction: column; gap: 18px; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}

@media (max-width: 700px) {
  .model-features .model-content-heading h2 {
    font-size: clamp(22px,6.8vw,48px);
    letter-spacing: .5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
