:root {
  color-scheme: light;
  --bg: #f7f8ff;
  --surface: #ffffff;
  --ink: #16181d;
  --muted: #6d7280;
  --line: #e7e9f2;
  --blue: #406eff;
  --blue-2: #628cff;
  --violet: #9b5cff;
  --orange: #ffb464;
  --soft-blue: #eef2ff;
  --soft-purple: #f5efff;
  --shadow: 0 24px 80px rgba(64, 83, 190, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(64, 110, 255, 0.15), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(155, 92, 255, 0.13), transparent 26%),
    var(--bg);
  color: var(--ink);
  font-family: "SupremeLLTT-Regular", "SupremeLLTT", "Inter", "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  letter-spacing: 0;
}

body.zeeho-style {
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(231, 233, 242, 0.8);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  transition: transform 0.32s ease, background 0.24s ease, border-color 0.24s ease;
  will-change: transform;
}

.language-switch {
  --language-option-width: 46px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, var(--language-option-width));
  align-items: center;
  padding: 3px;
  border: 1px solid rgba(69, 75, 90, 0.22);
  border-radius: 18px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  white-space: nowrap;
  isolation: isolate;
}

.language-switch::before {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 3px;
  z-index: 0;
  width: var(--language-option-width);
  border-radius: 14px;
  content: "";
  background: rgba(64, 110, 255, 0.12);
  box-shadow: none;
  transform: translateX(0);
  transition: transform 0.32s cubic-bezier(0.22, 0.75, 0.25, 1);
}

.language-switch.is-zh::before {
  transform: translateX(var(--language-option-width));
}

.language-switch button {
  position: relative;
  z-index: 1;
  width: var(--language-option-width);
  min-width: 0;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: #454b5a;
  text-shadow: none;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
  transition: color 0.24s ease, transform 0.2s ease;
}

.language-switch button.is-active {
  color: var(--blue);
}

.language-switch button:active {
  transform: scale(0.94);
}

.zeeho-style .site-header:not(.nav-scrolled) .language-switch,
.price-detail-page .site-header:not(.nav-scrolled) .language-switch,
.about-header:not(.nav-scrolled) .language-switch {
  border-color: rgba(255, 255, 255, 0.42);
  background: transparent;
}

.zeeho-style .site-header:not(.nav-scrolled) .language-switch button,
.price-detail-page .site-header:not(.nav-scrolled) .language-switch button,
.about-header:not(.nav-scrolled) .language-switch button {
  color: rgba(255, 255, 255, 0.78);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.38);
}

.zeeho-style .site-header:not(.nav-scrolled) .language-switch button.is-active,
.price-detail-page .site-header:not(.nav-scrolled) .language-switch button.is-active,
.about-header:not(.nav-scrolled) .language-switch button.is-active {
  color: #fff;
}

.zeeho-style .site-header:not(.nav-scrolled) .language-switch::before,
.price-detail-page .site-header:not(.nav-scrolled) .language-switch::before,
.about-header:not(.nav-scrolled) .language-switch::before {
  background: rgba(255, 255, 255, 0.22);
}

body.is-language-entering > main,
body.is-language-entering > footer,
body.is-language-entering .site-header .nav-links {
  animation: languageContentIn 0.28s ease both;
}

html[data-language="zh"] body {
  font-family: "Noto Sans SC", "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

@keyframes languageContentIn {
  from {
    opacity: 0.62;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.zeeho-style .site-header {
  border-bottom-color: transparent;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.zeeho-style .site-header.nav-scrolled {
  border-bottom-color: rgba(16, 19, 24, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
}

.zeeho-style .site-header.nav-scrolled .brand,
.zeeho-style .site-header.nav-scrolled .nav-links {
  color: #454b5a;
}

.zeeho-style .site-header.nav-scrolled .nav-links a,
.zeeho-style .site-header.nav-scrolled .nav-drop-trigger {
  color: #454b5a;
}

.zeeho-style .site-header.nav-scrolled .nav-links a:hover,
.zeeho-style .site-header.nav-scrolled .nav-links a.is-active,
.zeeho-style .site-header.nav-scrolled .nav-drop-trigger:hover,
.zeeho-style .site-header.nav-scrolled .nav-drop-trigger.is-active {
  color: var(--blue);
}

.zeeho-style .site-header.nav-scrolled .nav-links a::after,
.zeeho-style .site-header.nav-scrolled .nav-drop-trigger::after {
  background: var(--blue);
}

.zeeho-style .site-header.nav-scrolled .brand-mark {
  border-color: rgba(64, 110, 255, 0.22);
}

.site-header.nav-hidden {
  transform: translateY(-110%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.zeeho-style .brand {
  color: #fff;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 7px;
  background: linear-gradient(135deg, var(--blue), var(--violet));
}

.brand-mark img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 3vw, 36px);
  color: #454b5a;
  font-size: 0.94rem;
  font-weight: 800;
}

.zeeho-style .nav-links {
  color: rgba(255, 255, 255, 0.62);
}

.nav-links a,
.nav-drop-trigger {
  position: relative;
  padding: 10px 0;
  transition: color 0.2s ease;
}

.nav-links a::after,
.nav-drop-trigger::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a.is-active,
.nav-drop-trigger:hover,
.nav-drop-trigger.is-active {
  color: var(--blue);
}

.zeeho-style .nav-links a,
.zeeho-style .nav-drop-trigger {
  color: rgba(255, 255, 255, 0.68);
}

.zeeho-style .nav-links a:hover,
.zeeho-style .nav-links a.is-active,
.zeeho-style .nav-drop-trigger:hover,
.zeeho-style .nav-drop-trigger.is-active {
  color: #fff;
}

.zeeho-style .nav-links a::after,
.zeeho-style .nav-drop-trigger::after {
  background: #fff;
}

.nav-links a:hover::after,
.nav-links a.is-active::after,
.nav-drop-trigger:hover::after,
.nav-drop-trigger.is-active::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown::after {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 128px;
  height: 18px;
  content: "";
  transform: translateX(-50%);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 40;
  display: grid;
  width: 120px;
  min-width: 0;
  padding: 8px;
  border: 1px solid rgba(16, 19, 24, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 50px rgba(20, 24, 36, 0.14);
  opacity: 0;
  transform: translate(-50%, 8px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.nav-dropdown-menu a {
  padding: 9px 10px;
  border-radius: 6px;
  color: #20242c;
  white-space: nowrap;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover {
  background: rgba(64, 110, 255, 0.1);
}

.nav-dropdown-menu a.is-active {
  color: var(--blue);
  font-weight: 900;
}

/* Dropdown links stay readable when the header sits over a photo. */
.zeeho-style .nav-dropdown-menu a,
.about-header .nav-dropdown-menu a {
  color: #20242c;
  text-shadow: none;
}

.zeeho-style .nav-dropdown-menu a.is-active,
.about-header .nav-dropdown-menu a.is-active {
  color: var(--blue);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 900;
}

.button.primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 14px 30px rgba(64, 110, 255, 0.24);
}

.button.secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.home-banner {
  position: relative;
  min-height: 100vh;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #11131d;
  box-shadow: none;
}

.zeeho-style .home-banner {
  position: relative;
  z-index: 0;
  height: 100vh;
  min-height: 100vh;
}

.zeeho-style main {
  position: relative;
  z-index: 1;
  background: #fff;
}

.banner-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.6s ease, transform 0.9s ease;
}

.banner-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.banner-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.1) saturate(1.05) contrast(1.02);
}

.banner-slide::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(12, 14, 25, 0.78), rgba(12, 14, 25, 0.22) 56%, rgba(12, 14, 25, 0.08)),
    linear-gradient(180deg, transparent 30%, rgba(12, 14, 25, 0.68));
}

.slide-three::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.42) 54%, rgba(255, 255, 255, 0.04)),
    linear-gradient(180deg, transparent 30%, rgba(255, 255, 255, 0.8));
}

.video-banner::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 9, 14, 0.44), rgba(7, 9, 14, 0.14) 56%, rgba(7, 9, 14, 0.04)),
    linear-gradient(180deg, rgba(7, 9, 14, 0.04), rgba(7, 9, 14, 0.36));
  pointer-events: none;
}

.banner-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: clamp(88px, 12vw, 160px) clamp(24px, 7vw, 92px) clamp(54px, 8vw, 100px);
  color: #fff;
}

.video-banner {
  display: grid;
  align-items: end;
}

.video-banner .banner-copy {
  max-width: 560px;
  padding: 0 clamp(24px, 7vw, 90px) clamp(42px, 7vw, 88px);
}

.banner-copy.dark {
  color: var(--ink);
}

.banner-copy span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #a9b9ff;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.video-banner .banner-copy span {
  color: #fff;
  font-size: clamp(1.55rem, 2.8vw, 3rem);
  line-height: 1;
}

.banner-copy.dark span {
  color: var(--blue);
}

.banner-copy h1 {
  max-width: 10ch;
  margin-bottom: 16px;
  font-size: clamp(4rem, 10vw, 10rem);
  line-height: 0.86;
  font-weight: 900;
  text-transform: uppercase;
}

.video-banner .banner-copy h1 {
  max-width: 12ch;
  margin-bottom: 12px;
  font-size: clamp(2.9rem, 5.6vw, 6rem);
  line-height: 0.9;
}

.banner-copy p {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.7;
}

.video-banner .banner-copy p {
  max-width: 420px;
  margin-top: 8px;
  font-size: clamp(0.9rem, 1.05vw, 1.05rem);
  line-height: 1.55;
}

.video-banner .banner-copy .button {
  min-height: 42px;
  margin-top: 14px;
  padding: 0 18px;
  border-radius: 10px;
}

.banner-copy.dark p {
  color: var(--muted);
}

.banner-dots {
  position: absolute;
  right: clamp(24px, 4vw, 54px);
  bottom: clamp(24px, 4vw, 46px);
  z-index: 2;
  display: flex;
  gap: 10px;
}

.scroll-card {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  padding: clamp(86px, 9vw, 128px) clamp(18px, 5vw, 72px);
  background: #fff;
}

.scroll-card:nth-of-type(odd) {
  background: var(--bg);
}

.scroll-card-inner {
  display: grid;
  grid-template-columns: minmax(360px, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  min-height: calc(100vh - 180px);
}

.immersive-copy {
  max-width: 680px;
}

.immersive-copy h2 {
  font-size: clamp(2.6rem, 5vw, 5.8rem);
}

.banner-dot {
  width: 42px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.banner-dot::before {
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.banner-dot.is-active {
  transform: translateY(-1px);
  background: rgba(64, 110, 255, 0.22);
}

.banner-dot.is-active::before {
  transform: scaleX(1);
}

.hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(320px, 0.78fr) minmax(260px, 0.62fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(52px, 7vw, 92px) clamp(18px, 5vw, 72px) clamp(44px, 6vw, 76px);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 6.6vw, 6.9rem);
  line-height: 0.98;
  font-weight: 900;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.3vw, 4.8rem);
  line-height: 1.04;
  font-weight: 900;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.hero-copy p,
.section-heading p,
.showcase-main p,
.feature-card p,
.dealer-section p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.builder-panel,
.preview-card,
.config-card,
.feature-card,
.dealer-form {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.builder-panel {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.panel-header p,
.chat-card p,
.prompt-box p {
  margin-bottom: 0;
}

.panel-header p {
  color: var(--muted);
  font-size: 0.86rem;
}

.ai-logo {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #fff;
  font-weight: 900;
}

.chat-card {
  padding: 16px;
  border-radius: 18px;
  background: var(--soft-blue);
}

.bubble-label {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
}

.prompt-box {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 116px;
  padding: 16px;
  border: 1px solid transparent;
  border-radius: 18px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, var(--blue), var(--violet), #ff5d5d, var(--orange)) border-box;
  box-shadow: 0 8px 28px rgba(64, 110, 255, 0.1);
}

.prompt-box button {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: var(--blue);
  color: #fff;
  font-size: 1.35rem;
  cursor: pointer;
}

.suggestion-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.suggestion-row span,
.trust-strip span {
  padding: 9px 12px;
  border-radius: 999px;
  background: #f1f3ff;
  color: #4c5570;
  font-size: 0.86rem;
  font-weight: 800;
}

.preview-card {
  overflow: hidden;
  background: #fff;
}

.preview-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  color: var(--muted);
  font-size: 0.86rem;
}

.preview-top strong {
  color: var(--ink);
}

.preview-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}

.metric-row span {
  display: grid;
  gap: 4px;
  padding: 16px;
  background: #fff;
  color: var(--muted);
  font-size: 0.84rem;
}

.metric-row strong {
  color: var(--blue);
  font-size: 1.28rem;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 24px clamp(18px, 5vw, 72px);
}

.section {
  padding: clamp(64px, 9vw, 124px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.product-section {
  background: #fff;
}

.model-showcase-section {
  display: grid;
  min-height: 76vh;
  padding: clamp(30px, 4vw, 56px) clamp(18px, 5vw, 72px) clamp(8px, 1.6vw, 22px);
  place-items: center;
  overflow: hidden;
  background: #f1f1f1;
}

.model-stage {
  position: relative;
  display: grid;
  width: min(100%, 1640px);
  min-height: calc(76vh - 72px);
  grid-template-rows: auto 1fr;
  align-items: stretch;
  isolation: isolate;
  --model-enter-x: 56px;
  --model-exit-x: -56px;
  --model-bike-height: clamp(400px, 43vw, 600px);
  --model-bike-y: 0px;
}

.model-series-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  width: min(100%, 1280px);
  margin: 0 auto;
  border-bottom: 1px solid rgba(16, 19, 24, 0.18);
}

.model-series-nav button {
  position: relative;
  min-height: 64px;
  padding: 0 clamp(10px, 3vw, 36px);
  border: 0;
  background: transparent;
  color: rgba(16, 19, 24, 0.62);
  font: inherit;
  font-size: clamp(1.15rem, 1.7vw, 1.85rem);
  font-weight: 900;
  text-align: center;
  cursor: pointer;
  transition: color 0.2s ease;
}

.model-series-nav button::after {
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: min(114px, calc(100% - 20px));
  height: 4px;
  content: "";
  background: #20242c;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.model-series-nav button.is-active {
  color: #20242c;
}

.model-series-nav button.is-active::after {
  transform: translateX(-50%) scaleX(1);
}

.model-title {
  display: none;
  margin: clamp(28px, 4vw, 54px) 0 0;
  color: #252932;
  font-size: clamp(2.2rem, 3.6vw, 4.5rem);
  line-height: 1;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.model-display {
  position: relative;
  display: grid;
  min-height: clamp(360px, 39vw, 510px);
  align-items: end;
  justify-items: center;
  overflow: hidden;
  cursor: pointer;
  padding-bottom: clamp(18px, 2.6vw, 34px);
}

.model-watermark {
  position: absolute;
  top: 42%;
  left: 50%;
  z-index: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(7rem, 20vw, 22rem);
  line-height: 0.78;
  font-weight: 900;
  letter-spacing: 0;
  font-family: Arial, "Noto Sans SC", sans-serif;
  text-transform: uppercase;
  transform: translate(-50%, -54%);
  transition: opacity 0.22s ease, transform 0.22s ease;
  white-space: nowrap;
  pointer-events: none;
  will-change: transform, opacity;
}

.model-bike {
  position: relative;
  z-index: 2;
  width: auto;
  height: var(--model-bike-height);
  max-width: min(82vw, 1080px);
  object-fit: contain;
  object-position: center bottom;
  filter: none;
  transform: translate3d(0, var(--model-bike-y), 0);
  transform-origin: center center;
  transition: opacity 0.28s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.model-stage.is-exiting .model-bike {
  opacity: 0;
  transform: translate3d(var(--model-exit-x, -52px), calc(var(--model-bike-y) + 10px), 0) scale(0.9);
}

.model-stage.is-entering .model-bike {
  animation: model-bike-enter 0.58s cubic-bezier(0.22, 1, 0.36, 1);
}

.model-stage.is-exiting .model-watermark {
  opacity: 0;
  transform: translate(-50%, -54%) scale(0.84);
}

.model-stage.is-entering .model-watermark {
  animation: model-watermark-enter 0.58s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes model-bike-enter {
  from {
    opacity: 0;
    transform: translate3d(var(--model-enter-x, 52px), calc(var(--model-bike-y) + 10px), 0) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translate3d(0, var(--model-bike-y), 0) scale(1);
  }
}

@keyframes model-watermark-enter {
  from {
    opacity: 0;
    transform: translate(-50%, -54%) scale(0.84);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -54%) scale(1);
  }
}

.model-arrow {
  position: absolute;
  top: 55%;
  z-index: 4;
  display: flex;
  width: 68px;
  height: 68px;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(16, 19, 24, 0.58);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #20242c;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.model-arrow span {
  position: relative;
  display: block;
  width: 28px;
  height: 2px;
  background: currentColor;
}

.model-arrow span::before,
.model-arrow span::after {
  position: absolute;
  top: 50%;
  width: 12px;
  height: 2px;
  content: "";
  background: currentColor;
}

.model-arrow-left span::before,
.model-arrow-left span::after {
  left: 0;
  transform-origin: left center;
}

.model-arrow-left span::before {
  transform: translateY(-50%) rotate(42deg);
}

.model-arrow-left span::after {
  transform: translateY(-50%) rotate(-42deg);
}

.model-arrow-right span::before,
.model-arrow-right span::after {
  right: 0;
  transform-origin: right center;
}

.model-arrow-right span::before {
  transform: translateY(-50%) rotate(42deg);
}

.model-arrow-right span::after {
  transform: translateY(-50%) rotate(-42deg);
}

.model-arrow:hover {
  border-color: #20242c;
  background: #fff;
  transform: translateY(-2px);
}

.model-arrow-left {
  left: clamp(4px, 1vw, 18px);
}

.model-arrow-right {
  right: clamp(4px, 1vw, 18px);
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(360px, 1.2fr) minmax(300px, 0.8fr);
  gap: 20px;
}

.showcase-main {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 28px;
  background: #10131d;
  color: #fff;
  box-shadow: var(--shadow);
}

.showcase-main img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  opacity: 0.82;
}

.showcase-main div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 110px 28px 28px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
}

.showcase-main span {
  color: #93a8ff;
  font-weight: 900;
}

.showcase-main p {
  color: rgba(255, 255, 255, 0.78);
}

.config-card {
  display: grid;
  gap: 20px;
  align-content: start;
  padding: 24px;
}

label {
  display: grid;
  gap: 8px;
  color: #4c5570;
  font-size: 0.92rem;
  font-weight: 900;
}

select,
input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

select,
input {
  height: 48px;
  padding: 0 14px;
}

textarea {
  min-height: 148px;
  resize: vertical;
  padding: 14px;
  line-height: 1.6;
}

input[type="range"] {
  padding: 0;
  accent-color: var(--blue);
}

.progress-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 18px;
  background: var(--soft-blue);
}

.progress-card strong {
  color: var(--blue);
  font-size: 2.3rem;
  line-height: 1;
}

.progress-card div {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(64, 110, 255, 0.14);
}

.progress-card i {
  display: block;
  width: 96%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--violet));
}

.features-section {
  min-height: auto;
  padding-top: clamp(42px, 5vw, 70px);
  background: var(--bg);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  overflow: hidden;
  border-radius: 12px;
}

.feature-card img {
  width: 100%;
  height: clamp(360px, 31vw, 460px);
  object-fit: cover;
}

.feature-frame-img {
  object-position: 42% center;
}

.feature-card span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin: 22px 22px 18px;
  place-items: center;
  border-radius: 12px;
  background: var(--soft-blue);
  color: var(--blue);
  font-weight: 900;
}

.feature-card h3,
.feature-card p {
  padding-inline: 22px;
}

.feature-card h3 {
  margin-top: 24px;
}

.feature-card p {
  padding-bottom: 22px;
}

.home-about-section {
  position: relative;
  display: grid;
  min-height: clamp(520px, 68vh, 760px);
  align-items: end;
  overflow: hidden;
  padding: clamp(40px, 5vw, 66px) clamp(18px, 5vw, 72px);
  background: #111722;
}

.home-about-section > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-about-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 10, 16, 0.74), rgba(7, 10, 16, 0.34), rgba(7, 10, 16, 0.12)),
    linear-gradient(180deg, rgba(7, 10, 16, 0.12), rgba(7, 10, 16, 0.76));
}

.home-about-copy {
  position: relative;
  z-index: 1;
  max-width: 520px;
  color: #fff;
}

.about-kicker {
  position: absolute;
  top: clamp(34px, 5vw, 66px);
  left: clamp(18px, 5vw, 72px);
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.35rem, 2.2vw, 2.5rem);
  font-weight: 900;
  line-height: 1;
}

.about-kicker::before {
  width: clamp(14px, 1.2vw, 20px);
  height: clamp(14px, 1.2vw, 20px);
  content: "";
  background: #fff;
}

.home-about-copy h2 {
  max-width: 13ch;
  margin-bottom: 12px;
  font-size: clamp(2.2rem, 4.4vw, 4.8rem);
  line-height: 0.94;
  text-transform: uppercase;
}

html[data-language="zh"] .home-about-copy {
  max-width: 580px;
}

html[data-language="zh"] .home-about-copy h2 {
  max-width: 7.5em;
  margin-bottom: 20px;
  font-size: clamp(2.65rem, 4.25vw, 4.5rem);
  line-height: 1.16;
  text-transform: none;
}

.home-about-copy p:not(.eyebrow) {
  max-width: 500px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(0.82rem, 1vw, 0.96rem);
  line-height: 1.62;
}

.about-arrow-link {
  display: inline-flex;
  min-width: 96px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.about-arrow-link:hover {
  border-color: #fff;
  background: #fff;
  color: #10151f;
  transform: translateX(4px);
}

.about-arrow-link:active {
  transform: translateX(4px) scale(0.96);
}

.gallery-section {
  min-height: auto;
  padding: clamp(62px, 7vw, 96px) clamp(24px, 4vw, 64px) clamp(58px, 7vw, 88px);
  background: #fff;
  color: #10141c;
}

.gallery-title {
  margin: 0 0 clamp(28px, 4vw, 48px);
  color: #10141c;
  font-size: clamp(2rem, 4.4vw, 5.2rem);
  line-height: 1;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: clamp(240px, 26vw, 430px);
  gap: clamp(10px, 1.1vw, 18px);
  max-width: 1760px;
  margin: 0 auto;
}

.gallery-card {
  position: relative;
  min-height: 240px;
  margin: 0;
  overflow: hidden;
  border-radius: clamp(14px, 1.6vw, 28px);
  background: #151515;
  isolation: isolate;
}

.gallery-card {
  grid-column: span 2;
}

.gallery-card-large,
.gallery-card-wide {
  grid-column: span 3;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 36%, rgba(0, 0, 0, 0.74) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.16), transparent 54%);
}

.gallery-card figcaption {
  position: absolute;
  right: clamp(16px, 2vw, 28px);
  bottom: clamp(16px, 2vw, 28px);
  left: clamp(16px, 2vw, 28px);
  z-index: 2;
  color: #fff;
  font-size: clamp(1.35rem, 2.2vw, 3rem);
  line-height: 0.98;
  font-weight: 900;
  text-transform: capitalize;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.46);
}

.gallery-card:hover img {
  transform: scale(1.045);
}

.gallery-section::after {
  display: none;
}

.dealer-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(54px, 12vw, 180px);
  align-items: start;
  min-height: clamp(460px, 58vh, 620px);
  padding: clamp(86px, 10vw, 142px) clamp(40px, 5vw, 96px);
  background: #302b31;
  color: #fff;
}

.dealer-brand-panel {
  display: grid;
  gap: 28px;
  justify-items: start;
  text-align: left;
  color: rgba(255, 255, 255, 0.78);
}

.dealer-wordmark {
  width: 154px;
  height: auto;
  margin-bottom: 4px;
  filter: brightness(0) invert(1);
  mix-blend-mode: screen;
  object-fit: contain;
}

.dealer-contact-group {
  display: grid;
  gap: 8px;
  justify-items: start;
}

.dealer-contact-group span,
.dealer-link-columns h3 {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
  font-weight: 700;
}

.dealer-contact-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dealer-contact-label::before {
  display: inline-block;
  width: 0.92rem;
  height: 0.92rem;
  content: "";
  background: currentColor;
  mask: center / contain no-repeat;
  -webkit-mask: center / contain no-repeat;
}

.dealer-contact-group:first-of-type .dealer-contact-label::before {
  mask-image: url("assets/icon-phone.webp");
  -webkit-mask-image: url("assets/icon-phone.webp");
}

.dealer-contact-group:last-of-type .dealer-contact-label::before {
  mask-image: url("assets/icon-email.webp");
  -webkit-mask-image: url("assets/icon-email.webp");
}

.dealer-contact-group a {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.02rem, 1.35vw, 1.35rem);
  font-weight: 700;
  line-height: 1.35;
}

.dealer-link-columns {
  position: relative;
  display: grid;
  grid-template-columns: minmax(150px, 0.8fr) minmax(260px, 1.2fr);
  gap: clamp(36px, 7vw, 110px);
  padding-top: 18px;
}

.dealer-link-columns::before {
  position: absolute;
  top: 56px;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.22);
}

.dealer-link-columns div {
  display: grid;
  gap: 18px;
  align-content: start;
}

.dealer-link-columns h3 {
  position: relative;
  margin: 0 0 28px;
  padding-bottom: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.25vw, 1.22rem);
}

.dealer-link-columns h3::after {
  display: none;
}

.dealer-link-columns a {
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(0.92rem, 1.1vw, 1.04rem);
  line-height: 1.25;
  transition: color 0.18s ease, transform 0.18s ease;
}

.dealer-link-columns a:hover,
.dealer-contact-group a:hover {
  color: #fff;
  transform: translateX(3px);
}

.dealer-copy,
.dealer-contact-list {
  display: none;
}

.feature-page-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  padding: clamp(54px, 8vw, 100px) clamp(18px, 5vw, 72px);
}

.feature-page-hero img {
  width: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.model-detail-hero img {
  object-fit: contain;
  background: #f1f1f1;
}

.features-detail {
  background: #fff;
}

.features-detail.alt {
  background: var(--bg);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.detail-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.detail-grid article img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.detail-grid article h3,
.detail-grid article p {
  padding-inline: 20px;
}

.detail-grid article h3 {
  margin-top: 18px;
}

.detail-grid article p {
  padding-bottom: 20px;
}

.services-manufacturing-page {
  background: #fff;
}

.services-manufacturing-hero {
  position: relative;
  min-height: min(860px, 88vh);
  overflow: hidden;
  background: #0b0f12;
}

.services-manufacturing-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.services-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 8, 10, 0.88) 0%, rgba(5, 8, 10, 0.5) 42%, rgba(5, 8, 10, 0.12) 72%),
    linear-gradient(180deg, rgba(5, 8, 10, 0.06), rgba(5, 8, 10, 0.72));
}

.services-hero-copy {
  position: absolute;
  bottom: clamp(58px, 8vw, 112px);
  left: clamp(18px, 5vw, 72px);
  z-index: 1;
  width: min(720px, calc(100% - 36px));
  color: #fff;
}

.services-kicker {
  margin: 0 0 22px;
  color: var(--blue);
  font-size: clamp(0.92rem, 1.2vw, 1.14rem);
  font-weight: 900;
  text-transform: uppercase;
}

.services-hero-copy h1 {
  max-width: 12ch;
  margin: 0 0 28px;
  font-size: clamp(3.2rem, 5.4vw, 6.4rem);
  line-height: 1.1;
}

.services-hero-copy h1 span,
.services-capability-intro h2 span,
.services-process-copy h2 span {
  display: block;
}

.services-hero-copy > p:last-child {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.78;
}

.services-capability-intro {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(300px, 0.7fr);
  gap: clamp(36px, 8vw, 130px);
  padding: clamp(82px, 10vw, 148px) clamp(18px, 5vw, 72px);
  background: #fff;
}

.services-capability-intro h2,
.services-process-copy h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4.5vw, 5.2rem);
  line-height: 1.12;
}

html[data-language="zh"] .services-hero-copy h1 {
  max-width: 9em;
  font-size: clamp(3.2rem, 5vw, 5.8rem);
  line-height: 1.18;
}

html[data-language="zh"] .services-capability-intro h2 {
  font-size: clamp(2.7rem, 4.2vw, 4.9rem);
  line-height: 1.18;
}

html[data-language="zh"] .services-process-copy h2 {
  font-size: clamp(2.6rem, 3.8vw, 4.4rem);
  line-height: 1.2;
}

.services-capability-intro > p {
  max-width: 600px;
  align-self: end;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.84;
}

.services-capability-list {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(22px, 4vw, 54px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.services-capability-list > div {
  min-height: 220px;
  padding: clamp(26px, 3vw, 42px);
  border-right: 1px solid var(--line);
}

.services-capability-list > div:last-child {
  border-right: 0;
}

.services-capability-list span {
  display: block;
  margin-bottom: 44px;
  color: var(--blue);
  font-size: 1.1rem;
  font-weight: 900;
}

.services-capability-list strong {
  display: block;
  margin-bottom: 14px;
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
}

.services-capability-list p,
.services-process-copy > p:not(.services-kicker) {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.services-process-section {
  background: #f4f5f7;
}

.services-process-row {
  display: grid;
  grid-template-columns: minmax(420px, 1.15fr) minmax(320px, 0.85fr);
  min-height: 720px;
}

.services-process-row + .services-process-row {
  border-top: 1px solid #dfe2e7;
}

.services-process-row figure {
  min-height: 640px;
  margin: 0;
  overflow: hidden;
}

.services-process-row figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-process-focus figure img {
  object-position: center 34%;
}

.services-process-team figure img {
  object-position: center;
}

.services-process-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(58px, 8vw, 124px) clamp(28px, 6vw, 96px);
  background: #fff;
}

.services-process-copy h2 {
  margin-bottom: clamp(38px, 4vw, 56px);
}

.services-process-copy > p:not(.services-kicker) {
  max-width: 680px;
  line-height: 1.9;
}

.services-process-copy dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: clamp(58px, 7vw, 92px) 0 0;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.services-process-copy dt {
  margin-bottom: 8px;
  font-weight: 900;
}

.services-process-copy dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 860px) {
  .services-manufacturing-hero {
    min-height: 760px;
  }

  .services-manufacturing-hero > img {
    object-position: 62% center;
  }

  .services-hero-shade {
    background:
      linear-gradient(180deg, rgba(5, 8, 10, 0.16), rgba(5, 8, 10, 0.9)),
      linear-gradient(90deg, rgba(5, 8, 10, 0.55), rgba(5, 8, 10, 0.08));
  }

  .services-hero-copy h1 {
    font-size: clamp(3rem, 14vw, 5.4rem);
    line-height: 1.1;
  }

  html[data-language="zh"] .services-hero-copy h1,
  html[data-language="zh"] .services-capability-intro h2,
  html[data-language="zh"] .services-process-copy h2 {
    font-size: clamp(2.65rem, 11vw, 4.5rem);
    line-height: 1.18;
  }

  .services-capability-intro,
  .services-process-row {
    grid-template-columns: 1fr;
  }

  .services-capability-list {
    grid-template-columns: 1fr;
  }

  .services-capability-list > div {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .services-capability-list > div:last-child {
    border-bottom: 0;
  }

  .services-capability-list span {
    margin-bottom: 24px;
  }

  .services-process-row figure {
    min-height: 520px;
  }

  .services-process-team .services-process-copy {
    order: 2;
  }

  .services-process-team figure {
    order: 1;
  }
}

@media (max-width: 560px) {
  .services-manufacturing-hero {
    min-height: 700px;
  }

  .services-hero-copy {
    bottom: 46px;
  }

  .services-process-row figure {
    min-height: 390px;
  }

  .services-process-copy dl {
    grid-template-columns: 1fr;
  }
}

.price-detail-page {
  overflow-x: hidden;
  background: #fff;
  color: #101318;
}

.price-detail-page .site-header {
  border-bottom-color: rgba(255, 255, 255, 0.16);
  background: transparent;
  color: #fff;
  backdrop-filter: none;
}

.price-detail-page .site-header.nav-scrolled {
  border-bottom-color: rgba(16, 19, 24, 0.08);
  background: rgba(255, 255, 255, 0.92);
  color: #101318;
  backdrop-filter: blur(20px);
}

.price-detail-page .site-header:not(.nav-scrolled) .nav-links,
.price-detail-page .site-header:not(.nav-scrolled) .nav-links a:hover,
.price-detail-page .site-header:not(.nav-scrolled) .nav-links a.is-active,
.price-detail-page .site-header:not(.nav-scrolled) .nav-drop-trigger.is-active {
  color: #fff;
}

.price-detail-page .site-header:not(.nav-scrolled) .nav-links a::after,
.price-detail-page .site-header:not(.nav-scrolled) .nav-drop-trigger::after {
  background: #fff;
}

.price-detail-page .site-header:not(.nav-scrolled) .nav-dropdown-menu a {
  color: #20242c;
}

.price-detail-page .site-header:not(.nav-scrolled) .nav-dropdown-menu a.is-active {
  color: var(--blue);
}

.site-header .nav-links .nav-dropdown-menu a:hover {
  color: #20242c;
  background: rgba(64, 110, 255, 0.1);
}

.site-header .nav-links .nav-dropdown-menu a.is-active,
.site-header .nav-links .nav-dropdown-menu a.is-active:hover {
  color: var(--blue);
}

.price-detail-page .site-header:not(.nav-scrolled) .brand-mark {
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.12);
}

.ev-product-page {
  background: #fff;
}

.ev-product-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  padding: 110px clamp(24px, 5vw, 76px) 42px;
  align-items: center;
  background: #497bee;
  color: #fff;
  isolation: isolate;
}

.ev-product-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(6, 40, 132, 0.22), transparent 34%),
    linear-gradient(0deg, rgba(0, 31, 107, 0.2), transparent 40%);
}

.ev-hero-heading {
  position: absolute;
  top: clamp(118px, 15vh, 168px);
  right: clamp(24px, 7vw, 110px);
  z-index: 2;
  text-align: right;
}

.ev-hero-heading p,
.ev-hero-heading span {
  margin: 0;
  font-size: clamp(0.72rem, 1vw, 0.94rem);
  font-weight: 700;
  letter-spacing: 0.16em;
}

.ev-hero-heading h1 {
  margin: 4px 0;
  font-size: clamp(5.5rem, 15vw, 13rem);
  line-height: 0.77;
  letter-spacing: 0;
}

.ev-hero-model {
  position: absolute;
  inset: 78px 0 0;
  display: grid;
  place-items: center;
}

.ev-hero-model > span {
  position: absolute;
  right: -1vw;
  color: rgba(255, 255, 255, 0.15);
  font-size: clamp(20rem, 47vw, 48rem);
  font-weight: 900;
  line-height: 0.78;
}

.ev-hero-model img {
  position: relative;
  z-index: 1;
  width: min(74vw, 1120px);
  max-height: 70vh;
  object-fit: contain;
  transform: translate(-7vw, 5vh);
  filter: drop-shadow(0 38px 28px rgba(10, 32, 92, 0.24));
  animation: evHeroEnter 1.15s cubic-bezier(0.18, 0.74, 0.25, 1) both;
}

[data-product-model="02max"] .ev-hero-model img {
  width: min(70vw, 1040px);
  transform: translate(-5vw, 4vh);
}

[data-product-model="ev03"] .ev-hero-model img {
  width: min(62vw, 900px);
  transform: translate(-7vw, 5vh);
}

[data-product-model="02max"] .ev-hero-heading h1 {
  font-size: clamp(4rem, 11vw, 10rem);
}

.ev-hero-stats {
  position: absolute;
  right: clamp(24px, 5vw, 76px);
  bottom: 42px;
  left: clamp(24px, 5vw, 76px);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.ev-hero-stats article {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
}

.ev-hero-stats strong {
  display: block;
  font-size: clamp(1.55rem, 2.8vw, 3rem);
  line-height: 1;
}

.ev-hero-stats small {
  font-size: 0.48em;
}

.ev-hero-stats p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(0.66rem, 0.9vw, 0.84rem);
  text-transform: uppercase;
}

.ev-scroll-cue {
  position: absolute;
  bottom: 41%;
  left: 24px;
  z-index: 3;
  display: grid;
  gap: 10px;
  justify-items: center;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  writing-mode: vertical-rl;
}

.ev-scroll-cue i {
  display: block;
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.55);
}

.ev-model-config {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(260px, 0.32fr) minmax(420px, 0.68fr);
  gap: 30px;
  overflow: hidden;
  align-items: center;
  padding: 100px clamp(24px, 7vw, 112px) 74px;
  background: #f3f3f1;
}

.ev-config-copy {
  position: relative;
  z-index: 3;
  align-self: start;
  padding-top: 5vh;
}

.ev-section-index {
  margin: 0 0 22px;
  color: #497bee;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.ev-config-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(3.8rem, 8vw, 8.5rem);
  line-height: 0.85;
}

.ev-config-copy > p:not(.ev-section-index) {
  max-width: 360px;
  margin: 0 0 30px;
  color: #70757e;
  line-height: 1.7;
}

.ev-pill-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 24px;
  padding: 0 18px;
  border-radius: 22px;
  background: #497bee;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

.ev-pill-link:hover {
  background: #285fdc;
  transform: translateY(-2px);
}

.ev-config-visual {
  position: relative;
  display: grid;
  min-height: 64vh;
  place-items: center;
}

.ev-config-watermark {
  position: absolute;
  color: #fff;
  font-size: clamp(12rem, 32vw, 33rem);
  font-weight: 900;
  line-height: 0.8;
  white-space: nowrap;
}

.ev-config-visual img {
  position: relative;
  z-index: 1;
  width: min(72vw, 1040px);
  max-height: 64vh;
  object-fit: contain;
  transition: opacity 0.3s ease, filter 0.3s ease, transform 0.35s ease;
  filter: drop-shadow(0 26px 18px rgba(23, 27, 34, 0.12));
}

[data-product-model="02max"] .ev-config-visual img {
  width: min(66vw, 960px);
}

[data-product-model="ev03"] .ev-config-visual img {
  width: min(58vw, 840px);
}

[data-product-model="02max"] .ev-config-watermark {
  font-size: clamp(8rem, 23vw, 23rem);
}

.ev-config-visual img[data-color-mode="pearl"] {
  filter: brightness(1.18) saturate(0.76) drop-shadow(0 26px 18px rgba(23, 27, 34, 0.12));
}

.ev-config-visual img[data-color-mode="graphite"] {
  filter: brightness(0.65) saturate(0.65) drop-shadow(0 26px 18px rgba(23, 27, 34, 0.16));
}

.ev-color-picker {
  position: absolute;
  right: clamp(24px, 7vw, 112px);
  bottom: 42px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ev-color-picker span {
  margin-right: 8px;
  color: #777c84;
  font-size: 0.78rem;
}

.ev-color-picker button {
  width: 28px;
  height: 28px;
  padding: 0;
  border: 5px solid #f3f3f1;
  border-radius: 50%;
  background: #aeb1b4;
  box-shadow: 0 0 0 1px transparent;
  cursor: pointer;
}

.ev-color-picker button[data-ev-color="pearl"] { background: #f9f9f6; }
.ev-color-picker button[data-ev-color="graphite"] { background: #282b31; }
.ev-color-picker button[data-ev-color="desert"] { background: #c9ad86; }

.ev-color-picker button.is-active {
  box-shadow: 0 0 0 1px #14171c;
}

.ev-design-story {
  display: grid;
  min-height: 92vh;
  grid-template-columns: minmax(300px, 0.42fr) minmax(420px, 0.58fr);
  background: #fff;
}

.ev-story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 10vw, 150px) clamp(24px, 7vw, 110px);
}

.ev-story-copy h2,
.ev-tech-heading h2,
.ev-detail-heading h2,
.ev-spec-heading h2,
.ev-related-heading h2 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 6.6rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.ev-story-copy > p:not(.ev-section-index) {
  max-width: 540px;
  margin: 30px 0;
  color: #6f747c;
  line-height: 1.75;
}

.ev-story-copy dl {
  display: grid;
  gap: 0;
  margin: 14px 0 0;
}

.ev-story-copy dl div {
  display: grid;
  grid-template-columns: 118px 1fr;
  padding: 15px 0;
  border-top: 1px solid #e4e5e8;
}

.ev-story-copy dt {
  font-weight: 900;
}

.ev-story-copy dd {
  margin: 0;
  color: #777b83;
}

.ev-story-image {
  min-height: 92vh;
  margin: 0;
  overflow: hidden;
}

.ev-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ev-tech-section {
  padding: clamp(80px, 10vw, 150px) clamp(24px, 7vw, 112px);
  background: #101318;
  color: #fff;
}

.ev-tech-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

.ev-tech-heading h2 {
  max-width: 900px;
}

.ev-tech-stage {
  display: grid;
  min-height: 590px;
  grid-template-columns: minmax(360px, 0.6fr) minmax(280px, 0.4fr);
  background: #181c23;
}

.ev-tech-media {
  overflow: hidden;
}

.ev-tech-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.25s ease, transform 0.45s ease;
}

.ev-tech-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 5vw, 76px);
}

.ev-tech-content > p:first-child {
  color: #7ea0ff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.ev-tech-content h3 {
  margin: 12px 0 22px;
  font-size: clamp(2rem, 4vw, 4.6rem);
  line-height: 0.98;
}

.ev-tech-content > p:not(:first-child) {
  color: #aeb4bf;
  line-height: 1.75;
}

.ev-tech-content ul {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.ev-tech-content li {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.9rem;
}

.ev-tech-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ev-tech-tabs button {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 18px;
  padding: 0 24px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  background: #20252d;
  color: #9399a3;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.ev-tech-tabs button.is-active,
.ev-tech-tabs button:hover {
  background: #497bee;
  color: #fff;
}

.ev-tech-tabs span {
  font-size: 0.7rem;
}

.ev-detail-section {
  padding: clamp(80px, 10vw, 150px) 0 clamp(70px, 8vw, 110px) clamp(24px, 7vw, 112px);
  overflow: hidden;
  background: #f3f3f1;
}

.ev-detail-heading {
  display: grid;
  width: min(100% - clamp(24px, 7vw, 112px), 1320px);
  grid-template-columns: 1fr minmax(260px, 400px);
  gap: 50px;
  align-items: end;
  margin-bottom: 52px;
}

.ev-detail-heading > p {
  margin: 0;
  color: #727780;
  line-height: 1.7;
}

.ev-detail-carousel {
  position: relative;
}

.ev-detail-track {
  display: flex;
  gap: 22px;
  transition: transform 0.48s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.ev-detail-track figure {
  width: min(62vw, 760px);
  min-width: min(62vw, 760px);
  margin: 0;
  opacity: 0.48;
  transition: opacity 0.3s ease;
}

.ev-detail-track figure.is-active {
  opacity: 1;
}

[data-ev-detail-track] figure:not(.is-active) img {
  cursor: pointer;
}

.ev-detail-track img {
  width: 100%;
  height: clamp(340px, 45vw, 620px);
  object-fit: cover;
}

.ev-detail-track figcaption {
  display: grid;
  grid-template-columns: 42px minmax(160px, 0.55fr) minmax(220px, 1fr);
  gap: 14px;
  padding-top: 20px;
}

.ev-detail-track figcaption span {
  color: #497bee;
  font-size: 0.72rem;
  font-weight: 800;
}

.ev-detail-track figcaption strong {
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
}

.ev-detail-track figcaption p {
  margin: 0;
  color: #747982;
  font-size: 0.88rem;
  line-height: 1.6;
}

.ev-carousel-controls {
  display: flex;
  width: min(100% - clamp(24px, 7vw, 112px), 760px);
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 34px;
}

.ev-carousel-controls p {
  margin: 0 auto 0 0;
  font-size: 0.82rem;
  font-weight: 800;
}

.ev-carousel-controls button {
  width: 48px;
  height: 48px;
  border: 1px solid #cbcdd1;
  border-radius: 50%;
  background: transparent;
  color: #101318;
  font-size: 1.25rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.ev-carousel-controls button:hover {
  background: #101318;
  color: #fff;
}

.ev01-carousel-controls {
  width: min(100% - clamp(24px, 7vw, 112px), 1320px);
  margin-top: 30px;
}

.ev01-carousel-controls p {
  color: #747982;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.ev01-carousel-controls p span {
  color: #101318;
  font-weight: 900;
}

.ev01-carousel-controls button {
  display: grid;
  place-items: center;
  font: inherit;
}

.ev-spec-section {
  padding: clamp(80px, 10vw, 150px) clamp(24px, 7vw, 112px);
  background: #fff;
}

.ev-spec-heading {
  margin-bottom: 50px;
}

.ev-spec-tabs {
  display: flex;
  gap: 34px;
  border-bottom: 1px solid #dbdde1;
}

.ev-spec-tabs button {
  position: relative;
  padding: 0 0 18px;
  border: 0;
  background: none;
  color: #969aa1;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.ev-spec-tabs button::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  content: "";
  background: #497bee;
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.ev-spec-tabs button.is-active {
  color: #101318;
}

.ev-spec-tabs button.is-active::after {
  transform: scaleX(1);
}

.ev-spec-panel {
  display: none;
}

.ev-spec-panel.is-active {
  display: block;
  animation: evPanelIn 0.42s ease both;
}

.ev-spec-panel dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
}

.ev-spec-panel dl div {
  min-height: 150px;
  padding: 32px 28px;
  border-right: 1px solid #e1e2e5;
  border-bottom: 1px solid #e1e2e5;
}

.ev-spec-panel dl div:nth-child(3n) {
  border-right: 0;
}

.ev-spec-panel dt {
  margin-bottom: 20px;
  color: #7d828b;
  font-size: 0.74rem;
  text-transform: uppercase;
}

.ev-spec-panel dd {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 800;
}

.ev-related-section {
  padding: clamp(70px, 9vw, 130px) clamp(24px, 7vw, 112px);
  background: #101318;
  color: #fff;
}

.ev-related-heading {
  margin-bottom: 45px;
}

.ev-related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.ev-related-grid a {
  position: relative;
  display: grid;
  min-height: 480px;
  overflow: hidden;
  padding: 30px;
  background: #181c23;
  transition: background 0.25s ease;
}

.ev-related-grid a:hover {
  background: #202631;
}

/* Keep the EV01 detail sections compact and clearly indexed. */
.price-detail-page .ev-model-config {
  min-height: 78svh;
  padding-top: 76px;
  padding-bottom: 58px;
}

.price-detail-page .ev-config-visual {
  min-height: 50vh;
}

.price-detail-page .ev-config-visual img {
  max-height: 52vh;
}

.price-detail-page .ev-section-index {
  margin-bottom: 24px;
  font-size: clamp(0.92rem, 1.25vw, 1.18rem);
  letter-spacing: 0.12em;
}

.price-detail-page .ev-story-copy h2 {
  max-width: 560px;
  line-height: 1.12;
}

.price-detail-page .ev-story-image img {
  object-position: 68% center;
}

html[data-language="zh"] .price-detail-page .ev-story-copy h2 {
  max-width: 6em;
  font-size: clamp(2.9rem, 5vw, 5.5rem);
  line-height: 1.2;
}

.price-detail-page .ev-detail-track figcaption span {
  color: #406eaa;
  font-size: 1.15rem;
  line-height: 1;
}

.ev01-spec-highlight {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 2px;
  background: #497bee;
  color: #fff;
}

.ev01-spec-highlight div {
  min-height: 150px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.ev01-spec-highlight div:last-child { border-right: 0; }
.ev01-spec-highlight strong { display: block; font-size: clamp(1.6rem, 3vw, 3.2rem); line-height: 1; }
.ev01-spec-highlight strong span { margin-left: 4px; font-size: 0.45em; }
.ev01-spec-highlight div > span { display: block; margin-top: 14px; color: #dce7ff; font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; }
.ev01-spec-table { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid #d6dce7; }
.ev01-spec-table div { display: flex; min-height: 86px; align-items: center; justify-content: space-between; gap: 24px; padding: 20px 26px; border-right: 1px solid #d6dce7; border-bottom: 1px solid #d6dce7; }
.ev01-spec-table div:nth-child(2n) { border-right: 0; }
.ev01-spec-table div:last-child:nth-child(odd) { border-right: 1px solid #d6dce7; }
.ev01-spec-table span { color: #6f7787; font-size: 0.76rem; letter-spacing: 0.05em; text-transform: uppercase; }
.ev01-spec-table strong { font-size: clamp(0.95rem, 1.45vw, 1.35rem); text-align: right; }

.price-detail-page .ev-detail-track figcaption {
  align-items: center;
}

.price-detail-page .ev-tech-content h3 {
  margin-top: 0;
  line-height: 1.12;
}

.price-detail-page .ev-tech-content li {
  font-size: 1rem;
  line-height: 1.55;
}

html[data-language="zh"] .price-detail-page .ev-tech-content h3 {
  max-width: 8em;
  font-size: clamp(2.5rem, 3.7vw, 4.1rem);
  line-height: 1.14;
  margin-bottom: 26px;
}

@media (min-width: 1101px) {
  html[data-language="zh"] .price-detail-page .ev-tech-stage {
    grid-template-columns: minmax(360px, 0.58fr) minmax(340px, 0.42fr);
  }
}

@media (max-width: 900px) {
  .price-detail-page .ev-model-config {
    min-height: 690px;
    padding-top: 88px;
    padding-bottom: 70px;
  }

  .price-detail-page .ev-config-visual {
    min-height: 290px;
  }

  .price-detail-page .ev-config-visual img {
    max-height: 330px;
  }

  .price-detail-page .ev-story-copy h2 {
    max-width: 100%;
    line-height: 1.16;
  }

  html[data-language="zh"] .price-detail-page .ev-story-copy h2 {
    max-width: 7em;
    font-size: clamp(2.7rem, 10vw, 4.6rem);
    line-height: 1.2;
  }
}

/* EV03 city sport page */
.ev03-city-page {
  --ev03-blue: #2848b9;
  --ev03-cyan: #6eb9f4;
  --ev03-ink: #111522;
  --ev03-paper: #f5f7fb;
  background: var(--ev03-ink);
}

.ev03-city-page .site-header {
  background: rgba(8, 13, 28, 0.34);
  border-bottom-color: rgba(255, 255, 255, 0.16);
  color: #fff;
  backdrop-filter: blur(18px);
}

.ev03-city-page .site-header.nav-scrolled {
  background: rgba(245, 247, 251, 0.94);
  color: var(--ev03-ink);
}

.ev03-city-main { overflow: hidden; background: var(--ev03-ink); }

.ev03-city-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #15254d;
  color: #fff;
}

.ev03-hero-image,
.ev03-hero-shade {
  position: absolute;
  inset: 0;
}

.ev03-hero-image {
  z-index: -3;
  background: url("assets/ev03/hero-studio.webp") 58% center / cover;
  filter: saturate(0.92) contrast(1.06);
}

.ev03-hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 8, 16, 0.9), rgba(7, 12, 24, 0.5) 45%, rgba(5, 8, 16, 0.14) 78%),
    linear-gradient(0deg, rgba(5, 8, 16, 0.86), transparent 48%, rgba(5, 8, 16, 0.24));
}

.ev03-hero-copy {
  position: absolute;
  top: clamp(150px, 23vh, 250px);
  left: clamp(24px, 8vw, 130px);
  z-index: 2;
  width: min(480px, 42vw);
}

.ev03-eyebrow,
.ev03-kicker {
  margin: 0 0 20px;
  color: var(--ev03-cyan);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ev03-hero-copy h1 {
  margin: 0;
  font-size: clamp(7rem, 18vw, 17rem);
  font-weight: 900;
  line-height: 0.72;
  letter-spacing: 0;
}

.ev03-hero-copy h1 span { color: #497bee; }

.ev03-hero-lede {
  max-width: 380px;
  margin: 36px 0 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.6;
}

.ev03-hero-link {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding-bottom: 10px;
  border-bottom: 1px solid currentColor;
  color: #fff;
  font-weight: 800;
}

.ev03-overview {
  display: grid;
  min-height: 82vh;
  grid-template-columns: minmax(300px, 0.4fr) minmax(420px, 0.6fr);
  background: var(--ev03-paper);
  color: var(--ev03-ink);
}

.ev03-overview-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(70px, 10vw, 150px) clamp(24px, 7vw, 112px); }
.ev03-overview-copy .ev03-kicker, .ev03-section-head .ev03-kicker, .ev03-spec-heading .ev03-kicker { color: #497bee; }
.ev03-kicker { margin-bottom: 24px; font-size: clamp(0.92rem, 1.25vw, 1.18rem); font-weight: 800; letter-spacing: 0.12em; }
.ev03-overview-copy h2 { max-width: 7em; margin: 0; font-size: clamp(3rem, 4.8vw, 5.6rem); line-height: 1.04; }
.ev03-overview-copy h2 span, .ev03-overview-copy h2 em { display: block; }
.ev03-overview-copy h2 em { margin-top: 0.08em; color: var(--ev03-blue); font-style: normal; }
html[data-language="zh"] .ev03-overview-copy h2 { max-width: 5.5em; font-size: clamp(2.8rem, 4.2vw, 4.4rem); line-height: 1.16; }
.ev03-overview-copy > p:not(.ev03-kicker) { max-width: 540px; margin: 30px 0 0; color: #5b6477; line-height: 1.8; }
.ev03-overview-points { display: grid; gap: 0; margin-top: 44px; }
.ev03-overview-points span { padding: 15px 0; border-top: 1px solid #cbd2df; color: #31405c; font-size: 1rem; font-weight: 900; letter-spacing: 0; }
.ev03-overview-image { min-height: 82vh; overflow: hidden; }
.ev03-overview-image img { width: 100%; height: 100%; object-fit: cover; }

.ev03-detail-section { padding: clamp(80px, 10vw, 150px) clamp(24px, 7vw, 112px); background: #090d18; color: #f6f8fc; }
.ev03-section-head { max-width: 920px; margin-bottom: 52px; }
.ev03-section-head h2, .ev03-spec-heading h2 { max-width: 900px; margin: 0; font-size: clamp(3rem, 6vw, 7rem); line-height: 0.92; }
.ev03-section-head > p:not(.ev03-kicker), .ev03-spec-heading > p:not(.ev03-kicker) { max-width: 560px; margin: 30px 0 0; color: #98a4b8; line-height: 1.75; }
.ev03-detail-track { display: flex; gap: 22px; transition: transform 0.48s cubic-bezier(0.2, 0.7, 0.2, 1); }
.ev03-detail-track figure { width: min(42vw, 560px); min-width: min(42vw, 560px); margin: 0; opacity: 0.44; transition: opacity 0.3s ease; }
.ev03-detail-track figure.is-active { opacity: 1; }
.ev03-detail-track img { display: block; width: 100%; height: clamp(430px, 54vw, 720px); object-fit: cover; }
.ev03-detail-track figcaption { display: grid; grid-template-columns: 42px minmax(180px, 0.65fr) minmax(220px, 1fr); gap: 14px; padding-top: 20px; align-items: center; }
.ev03-detail-track figcaption span { color: #79baff; font-size: 1.15rem; font-weight: 900; }
.ev03-detail-track figcaption strong { font-size: clamp(1.1rem, 1.7vw, 1.5rem); }
.ev03-detail-track figcaption p { margin: 0; color: #98a4b8; font-size: 0.88rem; line-height: 1.6; }
.ev03-carousel-controls { display: flex; align-items: center; gap: 10px; margin-top: 30px; }
.ev03-carousel-controls p { margin: 0 auto 0 0; color: #98a4b8; font-size: 0.8rem; letter-spacing: 0.08em; }
.ev03-carousel-controls p span { color: #fff; font-weight: 900; }
.ev03-carousel-controls button { display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid #43506b; border-radius: 50%; background: transparent; color: #fff; font: inherit; cursor: pointer; }
.ev03-carousel-controls button:hover { border-color: #79baff; color: #79baff; }

.ev03-tech-section { padding: clamp(80px, 10vw, 150px) clamp(24px, 7vw, 112px); background: #e7edf8; color: var(--ev03-ink); }
.ev03-tech-stage { display: grid; min-height: 590px; grid-template-columns: minmax(360px, 0.6fr) minmax(280px, 0.4fr); background: #10172a; color: #fff; }
.ev03-tech-media { min-height: 590px; overflow: hidden; }
.ev03-tech-media img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.22s ease, transform 0.22s ease; }
.ev03-tech-content { display: flex; flex-direction: column; justify-content: center; padding: clamp(36px, 5vw, 76px); }
.ev03-tech-content > p:first-child { color: #79baff; font-size: 0.7rem; font-weight: 900; letter-spacing: 0.14em; }
.ev03-tech-content h3 { margin: 12px 0 22px; font-size: clamp(2rem, 4vw, 4.6rem); line-height: 0.98; }
.ev03-tech-content > p:not(:first-child) { color: #b7c1d2; line-height: 1.75; }
.ev03-tech-content ul { display: grid; gap: 12px; margin: 30px 0 0; padding: 0; list-style: none; }
.ev03-tech-content li { padding-top: 12px; border-top: 1px solid rgba(255, 255, 255, 0.16); font-size: 0.9rem; }
.ev03-tech-tabs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ev03-tech-tabs button { display: flex; min-height: 82px; align-items: center; gap: 18px; padding: 0 24px; border: 0; border-right: 1px solid #c5cede; background: #d5deed; color: #64718b; font: inherit; font-weight: 800; cursor: pointer; }
.ev03-tech-tabs button.is-active, .ev03-tech-tabs button:hover { background: var(--ev03-blue); color: #fff; }
.ev03-tech-tabs span { font-size: 0.7rem; }

.ev03-spec-section { padding: clamp(80px, 10vw, 150px) clamp(24px, 7vw, 112px); background: #f7f9fc; color: var(--ev03-ink); }
.ev03-spec-heading { margin-bottom: 56px; }
.ev03-spec-highlight { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-bottom: 2px; background: var(--ev03-blue); color: #fff; }
.ev03-spec-highlight div { display: flex; min-width: 0; min-height: 150px; flex-direction: column; justify-content: center; padding: 28px; border-right: 1px solid rgba(255, 255, 255, 0.24); }
.ev03-spec-highlight div:last-child { border-right: 0; }
.ev03-spec-highlight strong { display: inline-flex; min-height: 1.1em; align-items: baseline; font-size: clamp(1.7rem, 2.8vw, 3rem); font-variant-numeric: tabular-nums; line-height: 1.1; white-space: nowrap; }
.ev03-spec-highlight strong > span { display: inline; margin: 0 0 0 6px; color: inherit; font-size: 0.42em; letter-spacing: 0; line-height: 1; text-transform: none; }
.ev03-spec-highlight div > span { display: block; min-height: 1.4em; margin-top: 14px; color: #c8d9ff; font-size: 0.76rem; letter-spacing: 0.08em; line-height: 1.4; text-transform: uppercase; }
.ev03-spec-table { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid #cbd4e2; }
.ev03-spec-table div { display: flex; min-height: 86px; align-items: center; justify-content: space-between; gap: 24px; padding: 20px 26px; border-right: 1px solid #cbd4e2; border-bottom: 1px solid #cbd4e2; }
.ev03-spec-table div:nth-child(2n) { border-right: 0; }
.ev03-spec-table span { color: #64718b; font-size: 0.76rem; letter-spacing: 0.05em; text-transform: uppercase; }
.ev03-spec-table strong { font-size: clamp(0.95rem, 1.45vw, 1.35rem); text-align: right; }
.ev03-color-value { display: inline-flex; align-items: center; gap: 8px; }
.ev03-color-value i { display: inline-block; width: 14px; height: 14px; border-radius: 50%; background: #2944a7; }

.ev03-related { padding: clamp(80px, 10vw, 150px) clamp(24px, 7vw, 112px); background: #090d18; color: #f6f8fc; }
.ev03-related .ev03-section-head { margin-bottom: 44px; }

@media (max-width: 900px) {
  .ev01-spec-highlight { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ev01-spec-highlight div:nth-child(2) { border-right: 0; }
  .ev01-spec-highlight div:nth-child(-n + 2) { border-bottom: 1px solid rgba(255, 255, 255, 0.24); }
  .ev03-hero-copy { width: min(540px, 72vw); }
  .ev03-overview { grid-template-columns: 1fr; }
  .ev03-overview-image { min-height: 56vh; }
  .ev03-detail-track figure { width: 72vw; min-width: 72vw; }
  .ev03-detail-track img { height: 560px; }
  .ev03-tech-stage { grid-template-columns: 1fr; }
  .ev03-tech-media { min-height: 520px; }
  .ev03-spec-highlight { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ev03-spec-highlight div:nth-child(2) { border-right: 0; }
  .ev03-spec-highlight div:nth-child(-n + 2) { border-bottom: 1px solid rgba(255, 255, 255, 0.24); }
}

@media (max-width: 600px) {
  .ev01-spec-table { grid-template-columns: 1fr; }
  .ev01-spec-table div,
  .ev01-spec-table div:nth-child(2n),
  .ev01-spec-table div:last-child:nth-child(odd) { min-height: 74px; border-right: 0; }
  .ev01-spec-highlight div { min-height: 122px; padding: 20px 16px; }
  .ev01-spec-highlight strong { font-size: 1.45rem; }
  .ev01-spec-highlight div > span { font-size: 0.62rem; }
  .ev03-hero-copy { top: 130px; left: 18px; width: calc(100% - 36px); }
  .ev03-hero-copy h1 { font-size: clamp(6rem, 31vw, 10rem); }
  .ev03-hero-lede { max-width: 260px; margin-top: 28px; }
  .ev03-detail-section, .ev03-tech-section, .ev03-spec-section, .ev03-related { padding-right: 18px; padding-left: 18px; }
  .ev03-detail-track figure { width: 86vw; min-width: 86vw; }
  .ev03-detail-track img { height: 460px; }
  .ev03-detail-track figcaption { grid-template-columns: 34px 1fr; }
  .ev03-detail-track figcaption p { grid-column: 2; }
  .ev03-tech-media { min-height: 430px; }
  .ev03-tech-content { padding: 32px 22px 42px; }
  .ev03-tech-tabs button { min-height: 66px; justify-content: center; padding: 0 8px; font-size: 0.76rem; }
  .ev03-tech-tabs span { display: none; }
  .ev03-spec-table { grid-template-columns: 1fr; }
  .ev03-spec-table div, .ev03-spec-table div:nth-child(2n) { min-height: 74px; border-right: 0; }
  .ev03-spec-highlight div { min-height: 122px; padding: 20px 16px; }
  .ev03-spec-highlight strong { font-size: 1.45rem; }
  .ev03-spec-highlight div > span { font-size: 0.62rem; }
}

@media (max-width: 560px) {
  .price-detail-page .ev-model-config {
    min-height: 620px;
    padding-top: 76px;
    padding-bottom: 58px;
  }

  .price-detail-page .ev-config-visual {
    min-height: 230px;
  }

  .price-detail-page .ev-config-visual img {
    max-height: 260px;
  }
}

/* 02MAX adventure page */
.max-adventure-page {
  --max-ink: #f5f1e8;
  --max-muted: rgba(245, 241, 232, 0.7);
  --max-blue: #5c9de8;
  background: #252827;
}

.max-adventure-page .site-header {
  background: rgba(40, 45, 44, 0.28);
  border-bottom-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
}

.max-adventure-page .site-header.nav-scrolled {
  background: rgba(246, 244, 238, 0.94);
}

.max-adventure-page-main {
  overflow: hidden;
  background: #252827;
}

.max-adventure-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  color: var(--max-ink);
  background: #68706d;
}

.max-hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(22, 28, 27, 0.82), rgba(35, 39, 37, 0.16) 62%, rgba(35, 39, 37, 0.08)), url("assets/02max/hero-sunset-web.webp") center / cover;
  filter: saturate(0.82) contrast(0.98);
}

.max-adventure-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(0deg, rgba(19, 22, 21, 0.74), transparent 46%, rgba(28, 34, 33, 0.18));
}

.max-hero-copy {
  position: absolute;
  top: clamp(150px, 22vh, 250px);
  left: clamp(24px, 8vw, 130px);
  z-index: 2;
  width: min(480px, 40vw);
}

.max-eyebrow,
.max-section-kicker {
  margin: 0 0 20px;
  color: var(--max-blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.max-section-kicker {
  margin-bottom: 24px;
  color: #497bee;
  font-size: clamp(0.92rem, 1.25vw, 1.18rem);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.max-hero-copy h1 {
  margin: 0;
  font-size: clamp(5.8rem, 15vw, 14rem);
  line-height: 0.76;
  letter-spacing: 0;
}

.max-hero-lede {
  max-width: 390px;
  margin: 32px 0 28px;
  color: var(--max-muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.65;
}

.max-hero-link {
  display: inline-flex;
  gap: 24px;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(245, 241, 232, 0.65);
  color: var(--max-ink);
  font-weight: 800;
}

.max-hero-metrics {
  position: absolute;
  right: clamp(24px, 7vw, 110px);
  bottom: 50px;
  left: clamp(24px, 7vw, 110px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.max-hero-metrics article {
  padding-top: 14px;
  border-top: 1px solid rgba(245, 241, 232, 0.48);
}

.max-hero-metrics strong {
  display: block;
  font-size: clamp(1.55rem, 2.8vw, 3rem);
  line-height: 1;
}

.max-hero-metrics small {
  font-size: 0.48em;
}

.max-hero-metrics p {
  margin: 8px 0 0;
  color: var(--max-muted);
  font-size: clamp(0.66rem, 0.9vw, 0.84rem);
  text-transform: uppercase;
}

.max-story {
  display: grid;
  min-height: 82vh;
  grid-template-columns: minmax(340px, 0.46fr) minmax(420px, 0.54fr);
  background: #e2e0d9;
  color: #252827;
}

.max-story-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 9vw, 140px) clamp(24px, 6vw, 92px);
}

.max-story-intro .max-section-kicker,
.max-section-heading .max-section-kicker {
  color: #497bee;
}

.max-story-intro h2,
.max-section-heading h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3rem, 6vw, 7rem);
  line-height: 0.94;
}

.max-story-intro h2 {
  max-width: 8em;
  font-size: clamp(2.8rem, 4.8vw, 5.6rem);
  line-height: 1.04;
  text-wrap: balance;
}

html[data-language="zh"] .max-story-intro h2 {
  max-width: 100%;
  font-size: clamp(2.8rem, 4.2vw, 4.4rem);
  line-height: 1.18;
}

.max-story-intro > p:not(.max-section-kicker),
.max-section-heading > p:not(.max-section-kicker) {
  max-width: 560px;
  margin: 30px 0 0;
  color: #626762;
  line-height: 1.75;
}

.max-story-image {
  min-height: 82vh;
  margin: 0;
  overflow: hidden;
}

.max-story-image img,
.max-photo img,
.max-tech-image img,
.max-detail-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.max-photo-grid {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  grid-template-rows: minmax(340px, 48vw) minmax(320px, 36vw);
  gap: 2px;
  background: #252827;
}

.max-photo {
  position: relative;
  min-height: 340px;
  margin: 0;
  overflow: hidden;
  background: #171a19;
}

.max-photo-wide {
  grid-row: span 2;
}

.max-photo-wide img {
  object-position: 72% center;
}

.max-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(12, 15, 14, 0.88), transparent 54%);
}

.max-photo figcaption {
  position: absolute;
  right: clamp(20px, 4vw, 60px);
  bottom: clamp(20px, 4vw, 54px);
  left: clamp(20px, 4vw, 60px);
  z-index: 1;
  color: #fff;
}

.max-photo figcaption span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.max-photo figcaption strong {
  display: block;
  font-size: clamp(1.5rem, 3vw, 3.8rem);
  line-height: 0.95;
}

.max-photo figcaption p {
  max-width: 360px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.max-technology {
  padding: clamp(80px, 10vw, 150px) clamp(24px, 7vw, 112px);
  background: #252827;
  color: var(--max-ink);
}

.max-section-heading {
  margin-bottom: 52px;
}

.max-section-heading h2 {
  max-width: 900px;
}

.max-technology .max-section-heading > p:not(.max-section-kicker) {
  color: var(--max-muted);
}

.max-tech-stage {
  display: grid;
  min-height: 590px;
  grid-template-columns: minmax(360px, 0.6fr) minmax(280px, 0.4fr);
  background: #171a19;
}

.max-tech-image { overflow: hidden; }

.max-tech-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 5vw, 76px);
}

.max-tech-content > p:first-child {
  color: #86b7ed;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.max-tech-content h3 {
  margin: 12px 0 22px;
  font-size: clamp(2rem, 4vw, 4.6rem);
  line-height: 0.98;
}

.max-tech-content > p:not(:first-child) { color: var(--max-muted); line-height: 1.75; }

.max-tech-content ul { display: grid; gap: 12px; margin: 30px 0 0; padding: 0; list-style: none; }
.max-tech-content li { padding-top: 12px; border-top: 1px solid rgba(245, 241, 232, 0.16); font-size: 0.9rem; }

.max-tech-tabs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.max-tech-tabs button { display: flex; min-height: 82px; align-items: center; gap: 18px; padding: 0 24px; border: 0; border-right: 1px solid rgba(245, 241, 232, 0.12); background: #303635; color: #aeb4b0; font: inherit; font-weight: 800; cursor: pointer; }
.max-tech-tabs button.is-active,
.max-tech-tabs button:hover { background: #5c9de8; color: #fff; }
.max-tech-tabs span { font-size: 0.7rem; }

.max-detail-section,
.max-specifications { padding: clamp(80px, 10vw, 150px) clamp(24px, 7vw, 112px); background: #e2e0d9; color: #252827; }

.max-detail-track { display: flex; gap: 22px; transition: transform 0.48s cubic-bezier(0.2, 0.7, 0.2, 1); }
.max-detail-track figure { width: min(65vw, 800px); min-width: min(65vw, 800px); margin: 0; opacity: 0.48; transition: opacity 0.3s ease; }
.max-detail-track figure.is-active { opacity: 1; }
.max-detail-track img { height: clamp(340px, 46vw, 620px); }
.max-detail-track figcaption { display: grid; grid-template-columns: 42px minmax(180px, 0.55fr) minmax(220px, 1fr); gap: 14px; padding-top: 20px; align-items: center; }
.max-detail-track figcaption span { color: #406eaa; font-size: 1.15rem; font-weight: 900; }
.max-detail-track figcaption strong { font-size: clamp(1.15rem, 1.7vw, 1.55rem); }
.max-detail-track figcaption p { margin: 0; color: #626762; font-size: 0.88rem; line-height: 1.6; }

.max-specifications { background: #f4f1e8; }
.max-spec-table { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid #c9c8c0; }
.max-spec-table div { display: flex; min-height: 92px; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 26px; border-right: 1px solid #c9c8c0; border-bottom: 1px solid #c9c8c0; }
.max-spec-table div:nth-child(2n) { border-right: 0; }
.max-spec-table span { color: #6e736d; font-size: 0.78rem; text-transform: uppercase; }
.max-spec-table strong { font-size: clamp(1rem, 1.6vw, 1.6rem); text-align: right; }

.max-related { padding: clamp(80px, 10vw, 150px) clamp(24px, 7vw, 112px); background: #252827; color: var(--max-ink); }
.max-related .max-section-heading > p:not(.max-section-kicker) { color: var(--max-muted); }

@media (max-width: 900px) {
  .max-hero-copy { width: min(540px, 70vw); }
  .max-hero-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .max-story { grid-template-columns: 1fr; }
  .max-story-image { min-height: 58vh; }
  .max-tech-stage { grid-template-columns: 1fr; }
  .max-tech-image { height: 54vw; min-height: 330px; }
  .max-detail-track figure { width: 78vw; min-width: 78vw; }
}

@media (max-width: 560px) {
  .max-hero-copy { top: 130px; left: 18px; width: calc(100% - 36px); }
  .max-hero-copy h1 { font-size: clamp(5rem, 25vw, 8rem); }
  .max-hero-metrics { right: 18px; bottom: 28px; left: 18px; gap: 14px; }
  .max-hero-metrics strong { font-size: 1.55rem; }
  .max-hero-metrics p { font-size: 0.62rem; }
  .max-photo-grid { display: block; }
  .max-photo, .max-photo-wide { min-height: 76vw; }
  .max-photo-wide { height: 96vw; }
  .max-tech-tabs button { min-height: 66px; justify-content: center; padding: 0 8px; font-size: 0.76rem; }
  .max-tech-tabs span { display: none; }
  .max-detail-track figure { width: 86vw; min-width: 86vw; }
  .max-detail-track figcaption { grid-template-columns: 34px 1fr; }
  .max-detail-track figcaption p { grid-column: 2; }
  .max-spec-table { grid-template-columns: 1fr; }
  .max-spec-table div:nth-child(2n) { border-right: 1px solid #c9c8c0; }
  .max-spec-table div { min-height: 78px; padding: 18px; }
}

.ev-related-grid span {
  color: rgba(255, 255, 255, 0.08);
  font-size: clamp(5rem, 12vw, 12rem);
  font-weight: 900;
  line-height: 0.8;
}

.ev-related-grid img {
  position: absolute;
  inset: 14% 6% 12%;
  width: 88%;
  height: 74%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.ev-related-grid a:hover img {
  transform: scale(1.04) translateX(8px);
}

.ev-related-grid strong {
  align-self: end;
  font-size: 0.88rem;
}

.ev-reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.18, 0.7, 0.25, 1);
}

.ev-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes evHeroEnter {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes evPanelIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .ev-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .ev-hero-model img {
    animation: none;
  }

  .ev-detail-track,
  .ev-tech-media img,
  .ev-config-visual img {
    transition-duration: 0.01ms;
  }

  .language-switch::before,
  body.is-language-entering > main,
  body.is-language-entering > footer,
  body.is-language-entering .site-header .nav-links {
    transition-duration: 0.01ms;
    animation-duration: 0.01ms;
  }
}

.dealer-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 30px);
}

.dealer-form .button {
  width: 100%;
}

.contact-hero {
  position: relative;
  display: grid;
  min-height: 78vh;
  align-items: end;
  overflow: hidden;
  background: #0c1017;
}

.contact-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.74;
}

.contact-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 9, 13, 0.84), rgba(7, 9, 13, 0.42), rgba(7, 9, 13, 0.2)),
    linear-gradient(180deg, rgba(7, 9, 13, 0.12), rgba(7, 9, 13, 0.82));
}

.contact-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 920px;
  padding: clamp(116px, 16vw, 190px) clamp(18px, 5vw, 72px) clamp(56px, 8vw, 96px);
  color: #fff;
}

.contact-hero-copy h1 {
  max-width: 12ch;
  margin-bottom: clamp(28px, 3vw, 42px);
  font-size: clamp(3.2rem, 6.8vw, 7.2rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.contact-hero-copy p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.72;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(340px, 1.08fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: start;
  padding: clamp(72px, 9vw, 124px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(180deg, #fff 0%, #f7f8ff 100%);
}

.contact-details {
  max-width: 680px;
}

.contact-details h2 {
  max-width: 620px;
  font-size: clamp(2.3rem, 4.5vw, 5.2rem);
}

.contact-details > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.76;
}

.contact-section-simple {
  display: block;
  padding-top: clamp(82px, 10vw, 140px);
  padding-bottom: clamp(82px, 10vw, 140px);
}

.contact-section-simple .contact-details {
  max-width: 1400px;
  margin: 0 auto;
}

.contact-intro {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(300px, 0.7fr);
  gap: clamp(36px, 8vw, 130px);
  align-items: end;
}

.contact-intro h2 {
  margin-bottom: 0;
}

.contact-intro > p {
  max-width: 560px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.8;
}

.contact-section-simple .contact-card-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 26px);
  margin-top: clamp(44px, 6vw, 78px);
}

.contact-section-simple .contact-info-card {
  display: grid;
  grid-template-rows: 32px minmax(76px, auto);
  align-content: center;
  justify-items: center;
  min-height: 190px;
  padding: clamp(26px, 3vw, 40px);
  box-shadow: 0 18px 55px rgba(31, 45, 82, 0.08);
  text-align: center;
}

.contact-section-simple .contact-info-card span {
  align-self: start;
  margin: 0;
  font-size: clamp(0.95rem, 1.15vw, 1.15rem);
}

.contact-section-simple .contact-info-card strong {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 36ch;
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.4;
  text-align: center;
  text-wrap: balance;
}

.contact-card-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-info-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.contact-info-card {
  padding: 22px;
}

.contact-info-card span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-info-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.contact-info-card p {
  margin-bottom: 6px;
  color: var(--muted);
  line-height: 1.65;
}

.contact-info-card a,
.contact-footer a {
  transition: color 0.2s ease;
}

.contact-info-card a:hover,
.contact-footer a:hover {
  color: var(--blue);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(64, 110, 255, 0.16);
  border-radius: 999px;
  background: rgba(64, 110, 255, 0.08);
  color: #243259;
  font-size: 0.84rem;
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 38px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form .button {
  width: 100%;
}

.contact-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(180px, 0.55fr) minmax(240px, 0.8fr);
  gap: clamp(24px, 6vw, 74px);
  padding: clamp(46px, 7vw, 78px) clamp(18px, 5vw, 72px);
  background: #080b10;
  color: rgba(255, 255, 255, 0.82);
}

.contact-footer .brand {
  min-height: 44px;
  align-items: flex-start;
  color: #fff;
}

.contact-footer p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.72;
}

.contact-footer h3 {
  min-height: 44px;
  margin: 0;
  color: #fff;
  line-height: 1.4;
}

.contact-footer > div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.contact-footer > div:nth-child(2) > a,
.contact-footer > div:nth-child(3) > p {
  display: flex;
  min-height: 36px;
  align-items: flex-start;
  line-height: 1.72;
}

.about-overview-page {
  background: #fff;
}

.about-header {
  border-bottom-color: rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0));
}

.about-header .brand,
.about-header .nav-links {
  color: rgba(255, 255, 255, 0.9);
}

.about-header:not(.nav-scrolled) .nav-links > a,
.about-header:not(.nav-scrolled) .nav-dropdown > .nav-drop-trigger {
  color: rgba(255, 255, 255, 0.68);
}

.about-header:not(.nav-scrolled) .nav-links > a:hover,
.about-header:not(.nav-scrolled) .nav-links > a.is-active,
.about-header:not(.nav-scrolled) .nav-dropdown > .nav-drop-trigger:hover,
.about-header:not(.nav-scrolled) .nav-dropdown > .nav-drop-trigger.is-active {
  color: #fff;
}

.about-header:not(.nav-scrolled) .nav-links > a::after,
.about-header:not(.nav-scrolled) .nav-dropdown > .nav-drop-trigger::after {
  background: #fff;
}

.about-header.nav-scrolled {
  border-bottom-color: rgba(16, 19, 24, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
}

.about-header.nav-scrolled .brand,
.about-header.nav-scrolled .nav-links,
.about-header.nav-scrolled .nav-links > a,
.about-header.nav-scrolled .nav-dropdown > .nav-drop-trigger {
  color: #454b5a;
}

.about-header.nav-scrolled .nav-links > a:hover,
.about-header.nav-scrolled .nav-links > a.is-active,
.about-header.nav-scrolled .nav-dropdown > .nav-drop-trigger:hover,
.about-header.nav-scrolled .nav-dropdown > .nav-drop-trigger.is-active {
  color: var(--blue);
}

.about-header.nav-scrolled .nav-links > a::after,
.about-header.nav-scrolled .nav-dropdown > .nav-drop-trigger::after {
  background: var(--blue);
}

.about-cover {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #0b0e12;
}

.about-cover > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-cover-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 8, 11, 0.78), rgba(7, 8, 11, 0.18) 48%, rgba(7, 8, 11, 0.72)),
    linear-gradient(180deg, rgba(7, 8, 11, 0.12), rgba(7, 8, 11, 0.62));
}

.about-cover-copy {
  position: absolute;
  z-index: 2;
  color: #fff;
}

.about-cover-copy.left {
  top: clamp(140px, 18vh, 210px);
  left: clamp(28px, 6vw, 96px);
  width: min(500px, 42vw);
}

.about-cover-copy.right {
  top: auto;
  right: clamp(28px, 6vw, 96px);
  bottom: clamp(70px, 10vh, 120px);
  width: min(430px, 35vw);
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.48);
}

.about-cover-copy h2 {
  max-width: 9em;
  margin: 12px 0 20px;
  font-size: clamp(2.7rem, 4.2vw, 5rem);
  line-height: 1.08;
}

.about-cover-copy .eyebrow {
  font-size: clamp(1rem, 1.35vw, 1.25rem);
}

.about-cover-copy span {
  display: inline-flex;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 900;
}

.about-cover-copy p:not(.eyebrow) {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.92rem, 1.1vw, 1.08rem);
  line-height: 1.86;
}

.about-tabs-section {
  padding: 0 clamp(18px, 5vw, 72px);
  background: #fff;
}

.about-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.about-tabs button {
  display: grid;
  min-height: 86px;
  place-items: center;
  padding: 0 18px;
  border-right: 1px solid var(--line);
  border-top: 0;
  border-bottom: 0;
  border-left: 0;
  background: #fff;
  color: #2d3340;
  font: inherit;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.about-tabs button:last-child {
  border-right: 0;
}

.about-tabs button:hover,
.about-tabs button.is-active {
  background: #f4f7ff;
  color: var(--blue);
}

.about-overview-switcher {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.about-overview-panel {
  display: grid;
  grid-template-columns: minmax(310px, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
  padding: clamp(72px, 9vw, 122px) clamp(18px, 5vw, 72px);
  background: #fff;
  animation: aboutPanelIn 0.55s ease both;
}

.about-partnership-list .about-overview-panel {
  border-top: 1px solid var(--line);
}

.services-solution-list .about-overview-panel {
  min-height: min(760px, 82vh);
}

.services-solution-list .about-split-copy h2 {
  max-width: 11ch;
  margin: 0 0 clamp(36px, 4vw, 54px);
  font-size: clamp(2.35rem, 4vw, 4.8rem);
  line-height: 1.14;
}

.services-solution-list .about-split-copy .eyebrow {
  margin-bottom: clamp(34px, 4vw, 52px);
}

.services-solution-list .about-split-copy p:not(.eyebrow) {
  max-width: 540px;
  margin: 0;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.9;
}

html[data-language="zh"] .services-solution-list .about-split-copy h2 {
  max-width: 10em;
  font-size: clamp(2.5rem, 3.8vw, 4.5rem);
  line-height: 1.22;
}

.about-overview-panel.reverse {
  grid-template-columns: minmax(360px, 1.2fr) minmax(310px, 0.8fr);
  background: #f6f7fb;
}

@keyframes aboutPanelIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-split-copy {
  max-width: 620px;
}

.about-split-copy .eyebrow {
  margin-bottom: 20px;
  font-size: clamp(1rem, 1.3vw, 1.22rem);
}

.about-split-copy h2 {
  font-size: clamp(2.2rem, 4.5vw, 5.2rem);
}

.about-split-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.76;
}

.about-overview-panel img {
  width: 100%;
  height: clamp(420px, 40vw, 620px);
  min-height: 420px;
  object-fit: cover;
}

.about-overview-panel img.about-product-render {
  padding: clamp(24px, 4vw, 64px);
  background: #eef1f5;
  object-fit: contain;
}

.about-presence-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: center;
  padding: clamp(72px, 9vw, 122px) clamp(18px, 5vw, 72px);
  background: #0b0e12;
  color: #fff;
}

.about-presence-section h2 {
  max-width: 720px;
  font-size: clamp(2.4rem, 5vw, 5.8rem);
}

.about-presence-section p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.76;
}

.about-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.about-stat-grid article {
  display: grid;
  min-height: 178px;
  align-content: center;
  gap: 8px;
  padding: 26px;
  background: #11161e;
}

.about-stat-grid strong {
  font-size: clamp(2.8rem, 6vw, 6rem);
  line-height: 0.9;
}

.about-stat-grid span {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 900;
  text-transform: uppercase;
}

.about-gallery-section {
  padding: clamp(72px, 9vw, 122px) clamp(18px, 5vw, 72px);
  background: #fff;
}

.about-gallery-carousel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.about-gallery-main {
  width: 100%;
  height: 576px;
  object-fit: cover;
}

.about-gallery-thumbs {
  display: grid;
  gap: 16px;
}

.about-gallery-thumbs button {
  position: relative;
  min-height: 176px;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: #10141c;
  color: #fff;
  cursor: pointer;
}

.about-gallery-thumbs img {
  width: 100%;
  height: 100%;
  min-height: 176px;
  object-fit: cover;
  opacity: 0.62;
  transition: opacity 0.2s ease, transform 0.35s ease;
}

.about-gallery-thumbs span {
  position: absolute;
  right: 18px;
  bottom: 14px;
  z-index: 1;
  font-size: 0.9rem;
  font-weight: 900;
}

.about-gallery-thumbs button.is-active img,
.about-gallery-thumbs button:hover img {
  opacity: 1;
  transform: scale(1.04);
}

.about-gallery-thumbs button.is-active::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 3px solid var(--blue);
  pointer-events: none;
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr 1fr;
  }

  .hero-copy {
    grid-column: 1 / -1;
  }

  .nav-links {
    gap: 18px;
    font-size: 0.84rem;
  }
}

@media (max-width: 860px) {
  .hero,
  .product-showcase,
  .feature-grid,
  .dealer-section,
  .contact-section,
  .contact-footer,
  .about-overview-panel,
  .about-overview-panel.reverse,
  .about-presence-section,
  .about-gallery-carousel,
  .feature-page-hero,
  .scroll-card-inner,
  .gallery-grid,
  .about-stat-grid {
    grid-template-columns: 1fr;
  }

  .showcase-main,
  .showcase-main img {
    min-height: 420px;
  }

  .contact-footer .brand,
  .contact-footer h3,
  .contact-footer > div:nth-child(2) > a,
  .contact-footer > div:nth-child(3) > p {
    min-height: 0;
  }

  .contact-footer > div {
    gap: 10px;
  }

  .gallery-grid img:first-child {
    grid-row: span 1;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(240px, 44vw, 360px);
  }

  .gallery-card,
  .gallery-card-large,
  .gallery-card-wide {
    grid-column: span 1;
  }

  .contact-intro,
  .contact-section-simple .contact-card-list {
    grid-template-columns: 1fr;
  }

  .contact-intro {
    gap: 24px;
  }

  .contact-intro > p {
    max-width: 680px;
  }

  .contact-section-simple .contact-info-card {
    min-height: 0;
  }

  .detail-grid,
  .detail-grid.three {
    grid-template-columns: 1fr;
  }

  .ev-hero-heading {
    top: 108px;
  }

  .ev-hero-model img {
    width: min(92vw, 880px);
    transform: translate(-3vw, 2vh);
  }

  [data-product-model="02max"] .ev-hero-model img,
  [data-product-model="ev03"] .ev-hero-model img {
    width: min(88vw, 820px);
    transform: translate(-2vw, 2vh);
  }

  .ev-hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ev-scroll-cue {
    display: none;
  }

  .ev-model-config,
  .ev-design-story,
  .ev-tech-stage {
    grid-template-columns: 1fr;
  }

  .ev-model-config {
    padding-top: 118px;
  }

  .ev-config-copy {
    align-self: auto;
    padding-top: 0;
  }

  .ev-config-visual {
    min-height: 46vh;
  }

  .ev-config-visual img {
    width: min(94vw, 820px);
  }

  [data-product-model="02max"] .ev-config-visual img,
  [data-product-model="ev03"] .ev-config-visual img {
    width: min(88vw, 760px);
  }

  .ev-story-image {
    min-height: 62vh;
  }

  .ev-tech-heading,
  .ev-detail-heading {
    display: block;
  }

  .ev-detail-heading > p {
    max-width: 500px;
    margin-top: 24px;
  }

  .ev-detail-track figure {
    width: min(78vw, 680px);
    min-width: min(78vw, 680px);
  }

  .ev-spec-panel dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ev-spec-panel dl div:nth-child(3n) {
    border-right: 1px solid #e1e2e5;
  }

  .ev-spec-panel dl div:nth-child(2n) {
    border-right: 0;
  }

  .home-banner {
    min-height: 100vh;
  }

  .banner-copy h1 {
    max-width: 12ch;
  }

  .contact-hero {
    min-height: 68vh;
  }

  .contact-hero-copy h1 {
    max-width: 12ch;
  }

  .about-cover-copy.left,
  .about-cover-copy.right {
    width: min(420px, 44vw);
  }

  .about-tabs {
    grid-template-columns: 1fr;
  }

  .about-tabs button {
    min-height: 64px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-tabs button:last-child {
    border-bottom: 0;
  }

  .services-solution-list .about-overview-panel {
    min-height: 0;
  }

  .services-solution-list .about-split-copy h2,
  html[data-language="zh"] .services-solution-list .about-split-copy h2 {
    max-width: 12em;
    font-size: clamp(2.25rem, 8vw, 3.7rem);
  }

  .about-gallery-main {
    height: 420px;
  }

  .dealer-link-columns {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding-top: 0;
  }

  .model-showcase-section {
    min-height: 74vh;
    padding-top: 48px;
    padding-bottom: 14px;
  }

  .model-stage {
    min-height: calc(74vh - 72px);
  }

  .model-series-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .model-title {
    margin-top: 28px;
  }

  .model-bike {
    width: auto;
    height: clamp(350px, 50vw, 520px);
    max-width: 88vw;
  }

  .model-arrow {
    width: 54px;
    height: 54px;
    font-size: 1.65rem;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 10px;
    min-height: 66px;
    padding: 12px 16px;
  }

  .brand span:last-child {
    display: none;
  }

  .nav-links {
    gap: 12px;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 4px;
    white-space: nowrap;
  }

  .language-switch {
    --language-option-width: 38px;
    padding: 2px;
  }

  .language-switch button {
    height: 26px;
    font-size: 0.66rem;
  }

  .language-switch::before {
    top: 2px;
    bottom: 2px;
    left: 2px;
  }

  .contact-section-simple {
    padding: 64px 16px;
  }

  .contact-intro h2 {
    font-size: clamp(2.25rem, 12vw, 3.8rem);
  }

  .contact-section-simple .contact-card-list {
    margin-top: 36px;
  }

  .contact-section-simple .contact-info-card {
    padding: 24px 20px;
  }

  .contact-section-simple .contact-info-card strong,
  .contact-section-simple .contact-info-card a {
    overflow-wrap: anywhere;
  }

  .nav-dropdown {
    position: static;
  }

  .nav-dropdown-menu {
    top: 58px;
    left: 50%;
    transform: translate(-50%, 8px);
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    transform: translate(-50%, 0);
  }

  .home-banner {
    min-height: 100vh;
    margin: 0;
    border-radius: 0;
  }

  .banner-copy {
    padding: 110px 22px 70px;
  }

  .video-banner .banner-copy {
    max-width: 360px;
    padding: 0 18px 44px;
  }

  .banner-copy h1 {
    font-size: clamp(3rem, 16vw, 5.6rem);
  }

  .video-banner .banner-copy h1 {
    font-size: clamp(2.35rem, 11vw, 4rem);
  }

  .video-banner .banner-copy p {
    max-width: 320px;
    font-size: 0.9rem;
  }

  .banner-dots {
    right: 26px;
    bottom: 22px;
  }

  .banner-dot {
    width: 30px;
  }

  .scroll-card {
    min-height: 100vh;
    padding: 72px 16px;
  }

  .scroll-card-inner {
    min-height: auto;
  }

  .hero {
    padding: 42px 16px;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 4.4rem);
  }

  .section,
  .dealer-section,
  .contact-section,
  .contact-footer,
  .about-overview-panel,
  .about-presence-section,
  .about-gallery-section {
    padding: 54px 16px;
  }

  .dealer-section {
    min-height: auto;
  }

  .dealer-brand-panel {
    gap: 22px;
  }

  .dealer-wordmark {
    width: 132px;
  }

  .dealer-link-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .dealer-link-columns::before {
    display: none;
  }

  .dealer-link-columns div {
    gap: 14px;
  }

  .dealer-link-columns h3 {
    margin-bottom: 8px;
    padding-bottom: 12px;
  }

  .dealer-link-columns h3::after {
    display: block;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .preview-card img,
  .feature-card img {
    height: 340px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .gallery-title {
    font-size: clamp(1.8rem, 9vw, 3.2rem);
  }

  .gallery-card figcaption {
    font-size: clamp(1.35rem, 8vw, 2.2rem);
  }

  .feature-page-hero img {
    min-height: 300px;
  }

  .contact-hero {
    min-height: 76vh;
  }

  .contact-hero-copy {
    padding: 104px 16px 52px;
  }

  .contact-hero-copy h1 {
    margin-bottom: 28px;
    font-size: clamp(2.8rem, 12vw, 4.8rem);
  }

  .contact-section {
    gap: 28px;
  }

  .ev-product-hero {
    min-height: 800px;
    padding-top: 94px;
  }

  .price-detail-page .site-header {
    background: rgba(73, 123, 238, 0.82);
    backdrop-filter: blur(16px);
  }

  .ev-hero-heading {
    top: 102px;
    right: 18px;
  }

  .ev-hero-heading h1 {
    font-size: clamp(5rem, 28vw, 8rem);
  }

  .ev-hero-heading p,
  .ev-hero-heading span {
    font-size: 0.58rem;
  }

  .ev-hero-model {
    inset: 130px 0 0;
  }

  .ev-hero-model > span {
    font-size: 90vw;
  }

  .ev-hero-model img {
    width: 118vw;
    max-width: none;
    transform: translate(-8vw, 0);
  }

  [data-product-model="02max"] .ev-hero-model img,
  [data-product-model="ev03"] .ev-hero-model img {
    width: 108vw;
    transform: translate(-5vw, 0);
  }

  [data-product-model="02max"] .ev-hero-heading h1 {
    font-size: clamp(3.4rem, 19vw, 5.5rem);
  }

  .ev-hero-stats {
    right: 18px;
    bottom: 28px;
    left: 18px;
    gap: 16px;
  }

  .ev-hero-stats strong {
    font-size: 1.55rem;
  }

  .ev-model-config {
    min-height: 780px;
    padding: 104px 18px 82px;
  }

  .ev-config-copy h2 {
    font-size: 4.2rem;
  }

  .ev-config-visual {
    min-height: 330px;
  }

  .ev-config-visual img {
    width: 112vw;
    max-width: none;
  }

  [data-product-model="02max"] .ev-config-visual img,
  [data-product-model="ev03"] .ev-config-visual img {
    width: 100vw;
  }

  .ev-config-watermark {
    font-size: 42vw;
  }

  .ev-color-picker {
    right: 18px;
    bottom: 30px;
  }

  .ev-story-copy,
  .ev-tech-section,
  .ev-spec-section,
  .ev-related-section {
    padding: 72px 18px;
  }

  .ev-story-image {
    min-height: 440px;
  }

  .ev-tech-stage {
    min-height: auto;
  }

  .ev-tech-media {
    height: 380px;
  }

  .ev-tech-content {
    padding: 32px 22px 42px;
  }

  .ev-tech-tabs button {
    min-height: 66px;
    justify-content: center;
    padding: 0 8px;
    font-size: 0.76rem;
  }

  .ev-tech-tabs span {
    display: none;
  }

  .ev-detail-section {
    padding: 72px 0 66px 18px;
  }

  .ev-detail-heading {
    width: calc(100% - 18px);
    margin-bottom: 36px;
  }

  .ev-detail-track figure {
    width: 86vw;
    min-width: 86vw;
  }

  .ev-detail-track img {
    height: 380px;
  }

  .ev-detail-track figcaption {
    grid-template-columns: 34px 1fr;
  }

  .ev-detail-track figcaption p {
    grid-column: 2;
  }

  .ev-carousel-controls {
    width: calc(100% - 18px);
  }

  .ev-spec-tabs {
    gap: 18px;
    overflow-x: auto;
  }

  .ev-spec-tabs button {
    flex: none;
    font-size: 0.76rem;
    white-space: nowrap;
  }

  .ev-spec-panel dl {
    grid-template-columns: 1fr;
  }

  .ev-spec-panel dl div,
  .ev-spec-panel dl div:nth-child(3n) {
    min-height: 116px;
    border-right: 0;
  }

  .ev-related-grid {
    grid-template-columns: 1fr;
  }

  .ev-related-grid a {
    min-height: 360px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 18px;
  }

  .about-cover {
    min-height: 100vh;
  }

  .about-cover-shade {
    background:
      linear-gradient(180deg, rgba(7, 8, 11, 0.42), rgba(7, 8, 11, 0.9)),
      linear-gradient(90deg, rgba(7, 8, 11, 0.72), rgba(7, 8, 11, 0.24));
  }

  .about-cover-copy.left {
    top: 112px;
    left: 16px;
    width: calc(100% - 32px);
  }

  .about-cover-copy.right {
    top: auto;
    right: auto;
    bottom: 42px;
    left: 16px;
    width: calc(100% - 32px);
    padding-top: 16px;
  }

  .about-cover-copy h2 {
    font-size: clamp(2.2rem, 11vw, 4rem);
  }

  .about-overview-panel img {
    height: 280px;
    min-height: 280px;
  }

  .about-gallery-main {
    height: 300px;
  }

  .about-gallery-thumbs button,
  .about-gallery-thumbs img {
    min-height: 128px;
  }

  .model-showcase-section {
    min-height: 68vh;
    padding: 44px 16px 18px;
  }

  .model-stage {
    min-height: calc(68vh - 64px);
  }

  .model-series-nav {
    overflow-x: auto;
    width: 100%;
  }

  .model-series-nav button {
    min-width: 96px;
    min-height: 52px;
    padding: 0 12px;
    font-size: 1rem;
  }

  .model-series-nav button::after {
    left: 50%;
    width: 56px;
    height: 3px;
  }

  .model-title {
    margin-top: 28px;
    font-size: clamp(1.65rem, 9vw, 2.8rem);
  }

  .model-display {
    min-height: 360px;
  }

  .model-watermark {
    font-size: clamp(7rem, 44vw, 13rem);
  }

  .model-bike {
    width: auto;
    height: clamp(290px, 76vw, 410px);
    max-width: 110vw;
  }

  .model-arrow {
    top: 56%;
    width: 46px;
    height: 46px;
    border-width: 1px;
    font-size: 1.4rem;
  }

  .model-arrow-left {
    left: -4px;
  }

  .model-arrow-right {
    right: -4px;
  }

  .price-detail-page.ev03-city-page .site-header {
    background: rgba(8, 13, 28, 0.72);
  }

  .price-detail-page.ev03-city-page .site-header.nav-scrolled {
    background: rgba(245, 247, 251, 0.94);
  }
}

/* Keep every primary page header consistent with the transparent home header. */
.price-detail-page .site-header:not(.nav-scrolled),
.services-manufacturing-page .site-header:not(.nav-scrolled),
.about-header:not(.nav-scrolled) {
  border-bottom-color: transparent;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.price-detail-page .site-header.nav-scrolled,
.services-manufacturing-page .site-header.nav-scrolled,
.about-header.nav-scrolled {
  border-bottom-color: rgba(16, 19, 24, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
}
