:root {
  --brand: #d4e392;
  --text: rgba(0, 0, 0, 0.85);
  --text-soft: rgba(0, 0, 0, 0.6);
  --text-faint: rgba(0, 0, 0, 0.35);
  --surface: #f9f9f9;
  --surface-blue: #ecf1fe;
  --dark: #050505;
  --line: rgba(0, 0, 0, 0.07);
  --card: rgba(255, 255, 255, 0.78);
  --font: "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--surface);
  color: var(--text);
  font-family: var(--font);
  overflow-x: hidden;
}

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

button,
input {
  font: inherit;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  height: 104px;
  display: flex;
  align-items: center;
  pointer-events: none;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    backdrop-filter 180ms ease;
}

.site-nav.is-light {
  color: #333333;
  border-bottom: 1px solid rgba(24, 33, 58, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.42));
  box-shadow: 0 14px 34px rgba(24, 33, 58, 0.06);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
}

.site-nav.is-first-panel {
  border-bottom-color: transparent;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.nav-inner {
  position: relative;
  width: min(1360px, calc(100% - 64px));
  min-height: 68px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 0;
  pointer-events: auto;
}

.site-nav.is-light .nav-inner {
  height: 100%;
}

.brand-link,
.footer-brand {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
}

.site-nav .brand-link {
  color: #ffffff;
}

.site-nav.is-light .brand-link {
  color: #333333;
}

.nav-logo {
  width: 110px;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.96;
  transition: opacity 180ms ease;
}

.site-nav.nav-logo-invert .nav-logo {
  filter: brightness(0) invert(1);
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--brand);
  box-shadow: 0 10px 22px rgba(212, 227, 146, 0.34);
}

.brand-mark img {
  width: 18px;
  height: 18px;
}

.nav-links {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 0;
  padding: 0;
}

.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 20px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav.is-light .nav-links {
  background: transparent;
  box-shadow: none;
}

.site-nav.is-light .nav-links a {
  color: #333333;
}

.site-nav.is-light .nav-logo {
  filter: none;
}

.site-nav.is-light .nav-links a:hover,
.site-nav.is-light .nav-links a.is-active {
  color: #333333;
  background: rgba(212, 227, 146, 0.92);
}

.nav-links a:hover,
.nav-links a.is-active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.nav-cta {
  position: relative;
  z-index: 3;
  justify-self: end;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border-radius: 999px;
  background: var(--brand);
  color: rgba(0, 0, 0, 0.9);
  font-size: 15px;
  line-height: 20px;
  font-weight: 700;
  box-shadow: 0 18px 38px rgba(212, 227, 146, 0.26);
}

.page-hero {
  position: relative;
  min-height: 760px;
  padding: 188px 0 108px;
  overflow: hidden;
  color: #fff;
  background: #0b0d10;
}

.smart-hero {
  min-height: 100vh;
  min-height: 100dvh;
}

.page-hero > .container {
  position: relative;
  z-index: 2;
}

.page-hero--light {
  color: var(--text);
  background: var(--surface-blue);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.28) 52%, rgba(0, 0, 0, 0.08) 100%);
}

.page-hero--light .hero-scrim {
  background: linear-gradient(90deg, rgba(236, 241, 254, 0.94) 0%, rgba(236, 241, 254, 0.72) 46%, rgba(236, 241, 254, 0.34) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(640px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  opacity: 0.92;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--brand);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  line-height: 21px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.6);
  letter-spacing: 0.52px;
}

.kicker::before {
  content: "";
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background: var(--brand);
}

.hero-title {
  margin-top: 28px;
  font-size: clamp(46px, 6vw, 84px);
  line-height: 1.04;
  font-weight: 650;
  letter-spacing: 0;
}

.hero-copy {
  width: min(600px, 100%);
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  line-height: 34px;
  font-weight: 500;
}

.page-hero--light .hero-copy {
  color: var(--text-soft);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 30px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--brand);
  color: rgba(0, 0, 0, 0.9);
  box-shadow: 0 18px 38px rgba(212, 227, 146, 0.24);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.btn-light {
  color: var(--text);
  background: #fff;
  box-shadow: 0 18px 42px rgba(40, 54, 80, 0.08);
}

.section {
  position: relative;
  padding: 112px 0;
  overflow: hidden;
}

.section-blue {
  background: var(--surface-blue);
}

.section-dark {
  color: #fff;
  background: var(--dark);
}

.section-title {
  width: min(760px, 100%);
  margin-bottom: 46px;
}

.section-title.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-title h2 {
  margin-top: 14px;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.1;
  font-weight: 650;
}

.title-46 {
  font-size: 46px;
  line-height: 54px;
}

.life-title-nowrap,
.community-title-nowrap {
  white-space: nowrap;
}

.section-title p {
  margin-top: 18px;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 31px;
}

.section-dark .section-title p {
  color: rgba(255, 255, 255, 0.62);
}

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

.feature-card,
.spec-card,
.story-card {
  min-height: 220px;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 24px 60px rgba(74, 88, 124, 0.08);
}

.section-dark .feature-card,
.section-dark .story-card {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.feature-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #111;
  font-weight: 800;
}

img.feature-icon {
  background: transparent;
  object-fit: contain;
}

.feature-card h3,
.spec-card h3,
.story-card h3 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 650;
}

.feature-card p,
.spec-card p,
.story-card p {
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 26px;
}

.section-dark .feature-card p,
.section-dark .story-card p {
  color: rgba(255, 255, 255, 0.58);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.app-sync-section {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.app-sync-section .split {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 560px) minmax(0, 650px);
  gap: 48px;
}

.app-sync-section .section-title {
  width: min(650px, 100%);
}

.app-sync-section .section-title h2 {
  white-space: nowrap;
}

.app-sync-section .icon-item img {
  filter: brightness(1.03);
}

.smart-ip-corner {
  position: absolute;
  right: clamp(40px, 6.5vw, 128px);
  bottom: clamp(40px, 5.2vw, 92px);
  z-index: 0;
  width: clamp(230px, 20vw, 360px);
  height: auto;
  pointer-events: none;
  user-select: none;
}

.media-panel {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(70, 86, 130, 0.08);
}

.media-panel.is-blue {
  background: var(--surface-blue);
}

.media-panel.is-plain {
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.media-panel.is-dark {
  background: #080808;
}

.media-panel.is-plain img {
  width: min(620px, 100%);
  height: auto;
  object-fit: contain;
}

.media-panel img,
.media-panel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-stage-mini {
  position: relative;
  width: 100%;
  height: 620px;
  background: var(--product-bg, #ecf1fe);
}

.product-stage-mini svg {
  position: absolute;
  left: 0;
  top: 20px;
  width: 760px;
  height: 620px;
  opacity: 0.8;
}

.product-stage-mini .product-bg-shape {
  fill: var(--product-shape, #dce3f0);
}

.product-stage-mini .product-bike {
  position: absolute;
  left: 10%;
  top: 200px;
  width: 68%;
  max-width: none;
}

.model-panel {
  width: min(520px, 100%);
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 24px 60px rgba(86, 106, 160, 0.12);
  backdrop-filter: blur(24px);
}

.model-panel h2 {
  font-size: 18px;
  line-height: 26px;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.model-option {
  min-height: 152px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.5);
}

.model-option.is-selected {
  border-color: var(--brand);
  background: rgba(255, 255, 255, 0.84);
}

.model-option strong {
  display: block;
  font-size: 16px;
  line-height: 24px;
}

.model-option span {
  display: block;
  margin-top: 4px;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 19px;
}

.color-dots {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.42);
}

.color-dot {
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--dot);
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.color-dot.is-selected {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05), 0 0 0 4px #fff, 0 0 0 6px var(--brand);
}

.product-page {
  background: #fff;
}

.vehicle-list-page {
  min-height: 100vh;
  padding-top: 126px;
  background: #fff;
}

.vehicle-list-page.vehicle-list-page--with-hero {
  padding-top: 0;
}

.vehicle-list-page--with-hero .vehicle-list-section {
  padding-top: 52px;
}

.vehicle-list-section {
  background: #fff;
}

.vehicle-series-tabs,
.accessory-series-tabs {
  width: min(430px, calc(100% - 64px));
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 0 auto 34px;
}

.vehicle-series-tab,
.accessory-series-tab {
  min-width: 88px;
  min-height: 42px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #333333;
  font-size: 15px;
  line-height: 20px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.vehicle-series-tab:hover,
.vehicle-series-tab:focus-visible,
.accessory-series-tab:hover,
.accessory-series-tab:focus-visible {
  background: rgba(212, 227, 146, 0.46);
}

.vehicle-series-tab.is-selected,
.accessory-series-tab.is-selected {
  background: rgba(212, 227, 146, 0.94);
  color: #333333;
  box-shadow: 0 14px 30px rgba(212, 227, 146, 0.18);
}

.vehicle-list {
  --vehicle-card-width: clamp(340px, 19.2vw, 430px);
  display: grid;
  grid-template-columns: repeat(2, var(--vehicle-card-width));
  column-gap: 180px;
  justify-content: center;
  background: #fff;
}

.vehicle-item {
  min-height: 460px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  width: var(--vehicle-card-width);
  padding: 42px 0 0;
  color: var(--text);
  text-align: center;
  background: #fff;
}

.vehicle-kicker {
  display: block;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
}

.vehicle-item h1,
.vehicle-item h2 {
  margin-top: 6px;
  font-size: 28px;
  line-height: 36px;
  font-weight: 650;
  letter-spacing: 0;
}

.vehicle-more {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  color: #333333;
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
  text-decoration: none;
}

.vehicle-more::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: calc(100% - 14px);
  height: 1px;
  background: currentColor;
  opacity: 0;
  transition: opacity 160ms ease;
}

.vehicle-more:hover::after,
.vehicle-item:focus-visible .vehicle-more::after {
  opacity: 1;
}

.vehicle-more span {
  font-size: 20px;
  line-height: 1;
  transform: translateY(-1px);
}

.vehicle-image {
  width: 100%;
  height: 260px;
  max-width: none;
  margin-top: 44px;
  object-fit: contain;
  filter: drop-shadow(0 28px 24px rgba(0, 0, 0, 0.12));
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.vehicle-item:hover .vehicle-image {
  transform: translateY(-10px) scale(1.018);
}

.vehicle-image--pro {
  transform: scaleX(-1);
}

.vehicle-item:hover .vehicle-image--pro {
  transform: scaleX(-1) translateY(-10px) scale(1.018);
}

.vehicle-image--lite {
  width: clamp(340px, 42%, 430px);
  margin-top: 44px;
}

.vehicle-image--plus {
  width: clamp(340px, 42%, 430px);
  margin-top: 44px;
  transform: scaleX(-1);
}

.vehicle-item:hover .vehicle-image--plus {
  transform: scaleX(-1) translateY(-10px) scale(1.018);
}

.vehicle-image--air {
  width: clamp(340px, 42%, 430px);
  margin-top: 44px;
}

.vehicle-image--urban {
  width: clamp(340px, 42%, 430px);
  margin-top: 44px;
}

.detail-placeholder-page {
  min-height: 100vh;
  padding: 156px 0 96px;
  background: #f7f7f7;
}

.detail-placeholder {
  min-height: calc(100vh - 252px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 64px;
}

.detail-placeholder-copy {
  max-width: 560px;
}

.detail-placeholder-copy h1 {
  margin-top: 24px;
  font-size: clamp(46px, 5vw, 76px);
  line-height: 1.04;
  font-weight: 650;
  letter-spacing: 0;
}

.detail-placeholder-copy p:not(.eyebrow) {
  margin-top: 24px;
  color: var(--text-soft);
  font-size: 19px;
  line-height: 32px;
  font-weight: 500;
}

.detail-placeholder-visual {
  display: grid;
  place-items: center;
}

.detail-placeholder-visual img {
  width: min(760px, 108%);
  max-width: none;
  filter: drop-shadow(0 28px 24px rgba(0, 0, 0, 0.12));
}

.product-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 136px 0 0;
  overflow: hidden;
  background: linear-gradient(180deg, #f9fbff 0%, #edf3ff 76%, #fff 100%);
}

.product-hero-copy {
  position: relative;
  z-index: 3;
  width: min(760px, calc(100% - 64px));
  margin: 0 auto;
  text-align: center;
}

.product-hero-copy .eyebrow,
.product-hero-copy .hero-actions {
  justify-content: center;
}

.product-hero-copy h1 {
  margin-top: 18px;
  font-size: clamp(56px, 6.2vw, 92px);
  line-height: 0.98;
  font-weight: 650;
  letter-spacing: 0;
}

.product-hero-copy p:not(.eyebrow) {
  width: min(680px, 100%);
  margin: 26px auto 0;
  color: var(--text-soft);
  font-size: 19px;
  line-height: 32px;
}

.product-hero-stage,
.product-config-stage {
  --product-bg: #ecf1fe;
  --product-shape: #dce3f0;
  position: relative;
  isolation: isolate;
  background: var(--product-bg);
}

.product-hero-stage {
  width: min(1380px, calc(100% - 48px));
  min-height: 520px;
  margin: 28px auto 0;
}

.product-wordmark {
  position: absolute;
  z-index: 1;
  left: 7%;
  top: 44px;
  color: #fff;
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 3px;
}

.product-geometry {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: -10px;
  width: min(1120px, 88vw);
  height: 620px;
  transform: translateX(-50%);
  opacity: 0.8;
}

.product-bg-shape {
  fill: var(--product-shape);
}

.product-hero-bike {
  position: relative;
  z-index: 2;
  width: min(1030px, 82vw);
  max-width: none;
  margin: 104px auto -26px;
  filter: drop-shadow(0 34px 32px rgba(28, 37, 56, 0.18));
}

.product-spec-strip {
  position: relative;
  z-index: 4;
  width: min(980px, calc(100% - 64px));
  margin: -24px auto 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 64px rgba(60, 75, 110, 0.12);
  backdrop-filter: blur(22px);
}

.product-spec-strip div {
  padding: 22px 28px;
  text-align: center;
}

.product-spec-strip div + div {
  border-left: 1px solid rgba(0, 0, 0, 0.06);
}

.product-spec-strip span,
.spec-table span {
  display: block;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 20px;
  font-weight: 600;
}

.product-spec-strip strong {
  display: block;
  margin-top: 4px;
  font-size: 22px;
  line-height: 28px;
}

.product-config-section {
  padding: 116px 0;
  background: #ecf1fe;
}

.product-config-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(390px, 0.75fr);
  gap: 54px;
  align-items: center;
}

.product-config-stage {
  min-height: 620px;
  overflow: hidden;
}

.product-config-bike {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 210px;
  width: min(820px, 92%);
  max-width: none;
  transform: translateX(-50%);
  filter: drop-shadow(0 30px 28px rgba(28, 37, 56, 0.18));
}

.product-control-panel {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 28px 80px rgba(70, 92, 142, 0.16);
  backdrop-filter: blur(24px);
}

.product-control-panel h2 {
  margin-top: 12px;
  font-size: 34px;
  line-height: 40px;
  font-weight: 650;
}

.panel-copy {
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 25px;
}

.product-model-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.product-control-panel .model-option {
  text-align: left;
  cursor: pointer;
}

.product-control-panel .model-option:hover {
  border-color: rgba(212, 227, 146, 0.8);
}

.product-color-picker {
  margin-top: 24px;
  padding: 18px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.5);
}

.product-color-picker > span {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 22px;
  font-weight: 700;
}

.product-color-picker .color-dots {
  margin-top: 0;
  padding: 0;
  background: transparent;
}

.range-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.range-option {
  min-height: 58px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.range-option span {
  color: var(--text-soft);
  font-size: 13px;
}

.range-option .check {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  color: transparent;
}

.range-option.is-selected {
  border-color: var(--brand);
  background: #fff;
}

.range-option.is-selected .check {
  background: var(--brand);
  color: rgba(0, 0, 0, 0.86);
}

.product-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, #f2f6ff 0%, #fff 100%);
  box-shadow: 0 24px 70px rgba(70, 86, 130, 0.09);
}

.product-card img {
  width: 128%;
  max-width: none;
  margin: 26px 0 0 -18%;
  filter: drop-shadow(0 22px 20px rgba(28, 37, 56, 0.16));
}

.product-card p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 22px;
  font-weight: 700;
}

.product-card h3 {
  margin-top: 4px;
  font-size: 28px;
  line-height: 36px;
}

.product-card span {
  display: block;
  margin-top: 10px;
  color: var(--text-soft);
  font-size: 15px;
}

.product-detail-section {
  color: #fff;
  background: #060606;
}

.product-detail-section .section-title p {
  color: rgba(255, 255, 255, 0.62);
}

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

.product-detail-card {
  min-height: 300px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
}

.product-detail-card span {
  color: var(--brand);
  font-size: 13px;
  line-height: 20px;
  font-weight: 800;
}

.product-detail-card h3 {
  margin-top: 92px;
  font-size: 30px;
  line-height: 38px;
}

.product-detail-card p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 28px;
}

.product-spec-section {
  background: #fff;
}

.spec-table {
  width: min(980px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
}

.spec-table div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 24px 30px;
}

.spec-table div + div {
  border-top: 1px solid var(--line);
}

.spec-table strong {
  font-size: 18px;
  line-height: 28px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.stat {
  padding: 24px;
  border-radius: 22px;
  background: #fff;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 32px;
  line-height: 38px;
}

.stat span {
  display: block;
  margin-top: 6px;
  color: var(--text-soft);
  font-size: 14px;
}

.phone-cut {
  width: min(620px, 100%);
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.icon-list {
  display: grid;
  gap: 8px;
  margin-top: 26px;
}

.icon-item {
  width: min(515px, 100%);
  min-height: 91px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 22px;
}

.icon-item img {
  flex: 0 0 74px;
  width: 74px;
  height: 74px;
  margin: -14px;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.icon-item h3 {
  color: var(--text);
  font-size: 17px;
  line-height: 27px;
  font-weight: 600;
}

.icon-item p {
  margin-top: 4px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 14.5px;
  line-height: 22px;
}

.marquee {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-row {
  margin: 38px calc((100vw - 100%) / -2) 0;
  overflow: hidden;
}

.marquee-card {
  display: block;
  width: 430px;
  height: 300px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
  color: inherit;
  text-decoration: none;
}

.marquee-card:focus-visible {
  outline: 3px solid rgba(212, 227, 146, 0.72);
  outline-offset: 4px;
}

.marquee-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.life-gallery-marquee {
  display: grid;
  gap: 18px;
  margin: 48px calc((100vw - 100%) / -2) 0;
  overflow: hidden;
}

.life-gallery-row {
  overflow: hidden;
}

.life-gallery-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: life-gallery-scroll 34s linear infinite;
}

.life-gallery-track--reverse {
  animation-name: life-gallery-scroll-reverse;
  animation-duration: 38s;
}

.life-gallery-marquee .marquee-card {
  width: min(430px, 31vw);
  height: 260px;
}

.life-gallery-marquee .marquee-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.accessory-list-section {
  background: #fff;
  padding: 52px 0 76px;
}

.accessory-series-tabs {
  margin-bottom: 10px;
}

.accessory-category-tabs {
  width: min(720px, calc(100% - 64px));
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 0 auto 48px;
}

.accessory-category-tab {
  min-height: 38px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #333333;
  font-size: 15px;
  line-height: 20px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.accessory-category-tab:hover,
.accessory-category-tab:focus-visible {
  background: rgba(212, 227, 146, 0.35);
}

.accessory-category-tab.is-selected {
  background: rgba(212, 227, 146, 0.94);
  color: #333333;
  box-shadow: 0 14px 30px rgba(212, 227, 146, 0.18);
}

.accessory-list {
  --accessory-card-width: clamp(230px, 16.2vw, 300px);
  --accessory-column-count: 4;
  display: grid;
  grid-template-columns: repeat(var(--accessory-column-count), var(--accessory-card-width));
  column-gap: 34px;
  row-gap: 76px;
  justify-content: center;
}

.accessory-item {
  width: var(--accessory-card-width);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  color: var(--text);
  text-align: center;
}

.accessory-item h2 {
  font-size: 28px;
  line-height: 36px;
  font-weight: 650;
  letter-spacing: 0;
}

.accessory-more {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  color: #d4e392;
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
}

.accessory-more::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: calc(100% - 14px);
  height: 1px;
  background: currentColor;
  opacity: 0;
  transition: opacity 160ms ease;
}

.accessory-more:hover::after,
.accessory-item:focus-visible .accessory-more::after {
  opacity: 1;
}

.accessory-more span {
  font-size: 20px;
  line-height: 1;
  transform: translateY(-1px);
}

.accessory-image {
  width: 100%;
  height: 230px;
  margin-top: 36px;
  border-radius: 24px;
  object-fit: cover;
  object-position: center;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.accessory-item:hover .accessory-image {
  transform: translateY(-10px) scale(1.018);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes life-gallery-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-50% - 9px), 0, 0); }
}

@keyframes life-gallery-scroll-reverse {
  from { transform: translate3d(calc(-50% - 9px), 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}

.join-form {
  display: flex;
  gap: 14px;
  margin-top: 32px;
}

.join-form input {
  min-height: 56px;
  min-width: 0;
  flex: 1;
  padding: 0 22px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
}

.join-form button[disabled] {
  opacity: 0.72;
  cursor: default;
  transform: none;
}

.community-page-lead {
  min-height: 760px;
  padding: 150px 0 80px;
  background: #f9f9f9;
}

.community-page-lead .community-card {
  position: relative;
  width: min(1144px, calc(100% - 64px));
  height: 537px;
  margin: 0 auto;
  border-radius: 28px;
}

.community-page-lead .community-visual {
  position: absolute;
  left: 0;
  top: 0;
  width: 532px;
  height: 537px;
  display: grid;
  place-items: center;
}

.community-page-lead .community-ip {
  width: 385px;
  height: auto;
  display: block;
}

.community-page-lead .community-copy {
  position: absolute;
  left: 548px;
  top: 64px;
  width: 532px;
}

.community-page-lead .community-copy h1,
.community-page-lead .community-copy h2 {
  margin-top: 0;
  color: var(--text);
  font-size: 40px;
  line-height: 46px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.community-page-lead .community-copy > p:not(.kicker) {
  width: 480px;
  margin-top: 18px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 17px;
  line-height: 29px;
}

.signup {
  display: flex;
  gap: 11px;
  margin-top: 30px;
}

.signup input {
  width: 314px;
  height: 53px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  padding: 0 23px;
  color: var(--text);
  font-size: 14px;
  line-height: 21px;
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.signup .btn {
  min-height: 53px;
  padding: 14px 30px;
  font-size: 14px;
  line-height: 19px;
}

.signup-note {
  margin-top: 13px;
  color: rgba(0, 0, 0, 0.25);
  font-size: 13px;
  line-height: 21px;
}

body[data-page="life"] .section-title.center h2 {
  font-size: 46px;
  line-height: 54px;
}

.community-problems {
  background: var(--surface-blue);
}

.community-problems .section-title h2 {
  font-size: 46px;
  line-height: 54px;
}

.page-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 108px 0 76px;
  background: #fff;
}

.page-cta::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 66px;
  width: 560px;
  height: 172px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(212, 227, 146, 0.5) 0%, rgba(212, 227, 146, 0.28) 38%, rgba(212, 227, 146, 0) 72%);
  filter: blur(42px);
  transform: translateX(-50%);
  pointer-events: none;
}

.page-cta > * {
  position: relative;
  z-index: 1;
}

.page-cta h2 {
  font-size: 46px;
  line-height: 54px;
  font-weight: 650;
}

.page-cta p {
  margin-top: 18px;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 30px;
}

.cta-actions {
  justify-content: center;
}

.site-footer.xita-footer {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 210px 0 50px;
  background: #ecf1fe;
  color: #18213a;
}

.site-footer.xita-footer::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -118px;
  width: 138vw;
  height: 300px;
  transform: translateX(-50%);
  border-radius: 0 0 50% 50%;
  background: #fff;
  pointer-events: none;
}

.xita-footer-lottie {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 64px;
  width: 210px;
  height: 210px;
  transform: translateX(-50%);
  overflow: hidden;
  clip-path: inset(0 0 42% 0);
  pointer-events: none;
}

.xita-footer-lottie svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.xita-footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 430px) minmax(520px, 1fr);
  gap: 90px;
  align-items: center;
  transform: translateY(32px);
}

.xita-footer-copy h2 {
  color: #18213a;
  font-size: 28px;
  line-height: 38px;
  font-weight: 700;
  letter-spacing: 0;
}

.xita-footer-code-list {
  display: grid;
  gap: 24px;
  margin-top: 72px;
}

.xita-footer-code-item {
  display: flex;
  align-items: center;
  gap: 22px;
}

.xita-footer-code {
  position: relative;
  width: 128px;
  height: 128px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(24, 33, 58, 0.12);
}

.xita-footer-code::after {
  display: none;
}

.xita-footer-code img {
  position: static;
  z-index: 1;
  width: 112px;
  height: 112px;
  object-fit: contain;
  transform: none;
}

.xita-footer-code--mini {
  background: #fff;
}

.xita-footer-code-text strong {
  display: block;
  color: #18213a;
  font-size: 15px;
  line-height: 24px;
  font-weight: 700;
}

.xita-footer-code-text span {
  display: block;
  margin-top: 8px;
  color: rgba(24, 33, 58, 0.72);
  font-size: 13px;
  line-height: 21px;
}

.xita-footer-stage {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 360px;
}

.xita-footer-phone-row {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 16px;
  width: min(680px, 100%);
}

.xita-footer-phone {
  width: auto;
  height: clamp(285px, 26.6vw, 399px);
  max-height: 399px;
  min-width: 0;
  filter: drop-shadow(0 24px 34px rgba(30, 45, 80, 0.14));
}

.xita-footer-meta {
  position: relative;
  z-index: 1;
  margin-top: 72px;
}

.xita-footer-note {
  max-width: 1180px;
  color: rgba(24, 33, 58, 0.56);
  font-size: 12px;
  line-height: 21px;
}

.xita-footer-note + .xita-footer-note {
  margin-top: 6px;
}

.xita-footer-phone-number {
  color: #333333;
}

.xita-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 74px;
  color: #18213a;
  font-size: 15px;
  line-height: 24px;
  font-weight: 700;
}

.xita-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 18px;
  color: #18213a;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 680ms cubic-bezier(0.22, 1, 0.36, 1), transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 980px) {
  .container,
  .nav-inner {
    width: calc(100% - 40px);
  }

  .site-nav {
    height: auto;
    padding: 16px 0;
  }

  .nav-inner {
    min-height: 60px;
    height: auto;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 0;
  }

  .nav-links {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    grid-column: 1 / -1;
    justify-self: stretch;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .nav-links a {
    flex: 0 0 auto;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-cta {
    min-height: 44px;
    padding: 0 18px;
  }

  .page-hero {
    min-height: 720px;
    padding: 172px 0 84px;
  }

  .smart-hero {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .split,
  .feature-grid,
  .xita-footer-main {
    grid-template-columns: 1fr;
  }

  .site-footer.xita-footer {
    min-height: auto;
    padding: 150px 0 42px;
  }

  .xita-footer-lottie {
    top: 44px;
    width: 156px;
    height: 156px;
  }

  .xita-footer-main {
    gap: 54px;
  }

  .xita-footer-code-list {
    margin-top: 40px;
  }

  .xita-footer-stage {
    justify-content: center;
    min-height: auto;
  }

  .xita-footer-phone-row {
    justify-content: center;
    width: min(620px, 100%);
    overflow: visible;
  }

  .xita-footer-phone {
    height: clamp(238px, 36.1vw, 342px);
  }

  .app-sync-section .split {
    grid-template-columns: 1fr;
  }

  .app-sync-section .section-title h2 {
    white-space: normal;
  }

  .smart-ip-corner {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(260px, 66vw);
    margin: 30px auto 0;
    display: block;
  }

  .product-hero {
    padding-top: 156px;
  }

  .vehicle-list-page {
    padding-top: 126px;
  }

  .vehicle-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 32px;
    width: min(100% - 32px, 860px);
    margin: 0 auto;
  }

  .vehicle-list-page--with-hero .vehicle-list-section {
    padding-top: 52px;
  }

  .vehicle-item {
    min-height: 680px;
    width: auto;
    translate: 0 0;
  }

  .detail-placeholder {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .detail-placeholder-copy {
    max-width: none;
  }

  .detail-placeholder-copy .eyebrow,
  .detail-placeholder-copy .hero-actions {
    justify-content: center;
  }

  .product-hero-stage {
    min-height: 460px;
  }

  .product-hero-bike {
    width: min(980px, 108vw);
    margin-top: 104px;
  }

  .product-spec-strip {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 28px;
  }

  .product-spec-strip div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }

  .product-spec-strip div:nth-child(4) {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }

  .product-config-grid,
  .product-card-grid,
  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .product-config-grid {
    gap: 34px;
  }

  .product-control-panel {
    width: min(620px, 100%);
    margin: 0 auto;
  }

  .product-card {
    min-height: 380px;
  }

  .product-card img {
    width: min(780px, 118%);
    margin-left: -8%;
  }

  .stat-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .life-gallery-marquee .marquee-card {
    width: 340px;
    height: 228px;
  }

  .accessory-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 32px;
    width: min(100% - 32px, 860px);
    margin: 0 auto;
  }

  .accessory-item {
    width: auto;
  }

  .accessory-image {
    height: 320px;
  }

  .model-grid {
    grid-template-columns: 1fr;
  }

  .media-panel {
    min-height: 420px;
  }

  .product-stage-mini {
    height: 520px;
  }

  .product-stage-mini svg {
    left: 50%;
    top: -16px;
    width: 840px;
    height: 520px;
    transform: translateX(-50%) scale(0.72);
    transform-origin: top center;
  }

  .product-stage-mini .product-bike {
    left: 50%;
    top: 180px;
    width: min(96vw, 620px);
    transform: translateX(-50%);
  }

  .join-form,
  .xita-footer-bottom {
    display: block;
  }

  .join-form .btn {
    width: 100%;
    margin-top: 12px;
  }

  .community-page-lead {
    min-height: auto;
    padding: 140px 24px 72px;
  }

  .community-page-lead .community-card,
  .community-page-lead .community-visual,
  .community-page-lead .community-copy {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
  }

  .community-page-lead .community-visual {
    height: 360px;
    margin-bottom: 24px;
  }

  .community-page-lead .community-ip {
    width: min(100%, 385px);
  }

  .community-page-lead .community-copy > p:not(.kicker),
  .community-page-lead .signup input {
    width: 100%;
  }

  .community-page-lead .signup {
    display: grid;
  }

  .life-title-nowrap,
  .community-title-nowrap {
    white-space: normal;
  }

  .xita-footer-bottom span:last-child {
    display: block;
    margin-top: 12px;
  }
}

@media (max-width: 560px) {
  .container,
  .nav-inner {
    width: calc(100% - 32px);
  }

  .brand-name {
    display: none;
  }

  .page-hero {
    min-height: 680px;
  }

  .product-hero-copy {
    width: calc(100% - 32px);
  }

  .vehicle-list-page {
    padding-top: 172px;
  }

  .detail-placeholder-page {
    padding-top: 172px;
  }

  .detail-placeholder-copy h1 {
    font-size: 40px;
    line-height: 46px;
  }

  .vehicle-item {
    min-height: 560px;
    padding: 34px 18px 0;
    translate: 0 0;
  }

  .vehicle-list {
    grid-template-columns: 1fr;
    column-gap: 0;
    width: 100%;
  }

  .vehicle-list-page--with-hero .vehicle-list-section {
    padding-top: 52px;
  }

  .vehicle-series-tabs,
  .accessory-series-tabs {
    width: min(100% - 32px, 360px);
    gap: 10px;
    margin-bottom: 24px;
  }

  .accessory-series-tabs {
    margin-bottom: 10px;
  }

  .vehicle-series-tab,
  .accessory-series-tab {
    min-width: 0;
    flex: 1;
    padding: 0 14px;
    font-size: 14px;
  }

  .accessory-category-tabs {
    width: min(100% - 32px, 420px);
    gap: 8px;
    margin-bottom: 32px;
  }

  .accessory-category-tab {
    min-height: 36px;
    padding: 0 12px;
    font-size: 13px;
  }

  .xita-footer-copy h2 {
    font-size: 24px;
    line-height: 34px;
  }

  .xita-footer-code-item {
    align-items: flex-start;
  }

  .xita-footer-code {
    width: 104px;
    height: 104px;
    border-radius: 16px;
  }

  .xita-footer-code img {
    width: 88px;
    height: 88px;
  }

  .xita-footer-links {
    gap: 18px;
    margin-top: 48px;
  }

  .vehicle-kicker {
    font-size: 20px;
    line-height: 28px;
  }

  .vehicle-item h1,
  .vehicle-item h2 {
    font-size: 30px;
    line-height: 38px;
  }

  .vehicle-more {
    font-size: 16px;
    line-height: 24px;
  }

  .vehicle-image,
  .vehicle-image--pro,
  .vehicle-image--lite,
  .vehicle-image--plus,
  .vehicle-image--air,
  .vehicle-image--urban {
    width: 112%;
    height: 250px;
    margin-top: 48px;
  }

  .product-hero-copy h1 {
    font-size: 48px;
    line-height: 52px;
  }

  .product-hero-copy p:not(.eyebrow) {
    font-size: 16px;
    line-height: 27px;
  }

  .product-hero-stage {
    width: 100%;
    min-height: 360px;
  }

  .product-wordmark {
    left: 20px;
    top: 30px;
    font-size: 22px;
  }

  .product-geometry {
    top: 8px;
    width: 760px;
    max-width: none;
    height: 420px;
  }

  .product-hero-bike {
    width: 760px;
    margin-top: 104px;
    margin-left: -152px;
  }

  .product-spec-strip {
    width: calc(100% - 32px);
    margin-bottom: 48px;
  }

  .product-spec-strip div {
    padding: 18px 12px;
  }

  .product-config-section {
    padding: 76px 0;
  }

  .product-config-stage {
    min-height: 380px;
  }

  .product-config-bike {
    top: 140px;
    width: 680px;
  }

  .product-control-panel {
    padding: 22px;
    border-radius: 24px;
  }

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

  .product-color-picker .color-dots {
    flex-wrap: wrap;
  }

  .range-option {
    grid-template-columns: 1fr auto;
  }

  .range-option span:not(.check) {
    grid-column: 1 / -1;
  }

  .spec-table div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px;
  }

  .smart-hero {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-copy {
    font-size: 17px;
    line-height: 29px;
  }

  .section {
    padding: 76px 0;
  }

  .feature-card,
  .spec-card,
  .story-card {
    padding: 22px;
  }

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

  .life-gallery-marquee {
    gap: 14px;
    margin-top: 36px;
  }

  .life-gallery-marquee .marquee-card {
    width: 282px;
    height: 206px;
  }

  .accessory-list-section {
    padding: 52px 0 76px;
  }

  .accessory-list {
    grid-template-columns: 1fr;
    row-gap: 76px;
    width: 100%;
  }

  .accessory-item {
    padding: 0 18px;
  }

  .accessory-item h2 {
    font-size: 30px;
    line-height: 38px;
  }

  .accessory-more {
    font-size: 16px;
    line-height: 24px;
  }

  .accessory-image {
    width: 112%;
    height: 300px;
    margin-top: 36px;
  }

  .marquee-card {
    width: 300px;
    height: 220px;
  }
}

.hero-title.title-46,
.section-title h2.title-46,
.page-cta h2.title-46 {
  font-size: 46px;
  line-height: 54px;
}

body[data-page="app"] .section-title h2.title-46,
body[data-page="app"] .page-cta h2.title-46 {
  font-size: 46px;
  line-height: 54px;
}

.smart-hero {
  display: flex;
  align-items: center;
  padding: 96px 0 72px;
  text-align: center;
}

.smart-hero > .container {
  display: flex;
  justify-content: center;
}

.smart-hero .hero-content {
  width: min(760px, 100%);
  margin: -20px auto 0;
}

.smart-hero .hero-title {
  white-space: nowrap;
}

.smart-hero .eyebrow,
.smart-hero .hero-actions {
  justify-content: center;
}

.smart-hero .hero-copy {
  margin-left: auto;
  margin-right: auto;
}

.app-hero .hero-title {
  white-space: nowrap;
}

@media (max-width: 980px) {
  .smart-hero {
    padding: 132px 0 76px;
  }
}

@media (max-width: 560px) {
  .smart-hero {
    padding: 124px 0 64px;
  }

  .smart-hero .hero-title {
    white-space: normal;
  }

  .app-hero .hero-title {
    white-space: normal;
  }
}

.pulse-detail-page {
  background: #fff;
  color: var(--text);
}

.pulse-detail-page section {
  scroll-margin-top: 112px;
}

.detail-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  color: #fff;
  background: #020202;
}

.detail-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.94;
}

.detail-hero-scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 48%, rgba(212, 227, 146, 0.14), rgba(212, 227, 146, 0) 24%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.42) 48%, rgba(0, 0, 0, 0.12) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.72) 100%);
}

.detail-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 136px 0 76px;
}

.detail-hero-copy {
  width: min(760px, 100%);
}

.detail-kicker {
  color: var(--brand);
  font-size: 18px;
  line-height: 28px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-hero h1 {
  margin-top: 18px;
  font-size: clamp(74px, 12vw, 176px);
  line-height: 0.84;
  font-weight: 800;
  letter-spacing: 0;
}

.detail-hero-copy > p:not(.detail-kicker) {
  width: min(560px, 100%);
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 22px;
  line-height: 36px;
  font-weight: 600;
}

.detail-hero-caption {
  position: absolute;
  right: 0;
  bottom: 74px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
}

.detail-local-nav {
  position: sticky;
  top: 96px;
  z-index: 19;
  background: rgba(9, 9, 9, 0.84);
  color: #fff;
  backdrop-filter: blur(22px);
}

.detail-local-nav .container {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.detail-local-nav strong {
  font-size: 16px;
  line-height: 24px;
}

.detail-local-nav div div {
  display: flex;
  align-items: center;
  gap: 24px;
}

.detail-local-nav a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 22px;
  font-weight: 700;
  transition: color 160ms ease;
}

.detail-local-nav a:hover {
  color: var(--brand);
}

.detail-cinematic {
  background: #020202;
}

.detail-video-frame {
  position: relative;
  height: 100vh;
  min-height: 760px;
  overflow: hidden;
}

.detail-video-frame video,
.detail-performance-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-video-frame::after,
.detail-performance-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.72));
}

.detail-cinematic-copy {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: min(900px, calc(100% - 48px));
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}

.detail-cinematic-copy p,
.detail-performance-copy p {
  color: var(--brand);
  font-size: 18px;
  line-height: 26px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-cinematic-copy h2 {
  margin-top: 18px;
  font-size: clamp(42px, 6vw, 86px);
  line-height: 1.02;
  font-weight: 750;
}

.detail-cinematic-copy a {
  display: inline-flex;
  margin-top: 30px;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.78);
}

.detail-showcase {
  padding: 138px 0;
  background: var(--product-bg, #ecf1fe);
  transition: background 240ms ease;
}

.detail-showcase-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 60px;
  align-items: center;
}

.detail-showcase-copy h2,
.detail-color-panel h2,
.detail-engine-section h2,
.detail-smart-section h2 {
  margin-top: 18px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.05;
  font-weight: 720;
}

.detail-showcase-copy p:not(.eyebrow),
.detail-color-panel p:not(.eyebrow) {
  margin-top: 22px;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 32px;
  font-weight: 500;
}

.detail-hotspot-list,
.detail-smart-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.detail-hotspot-list span,
.detail-smart-list span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: rgba(0, 0, 0, 0.72);
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
}

.detail-bike-stage {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 34px;
  background: var(--product-bg, #ecf1fe);
  transition: background 240ms ease;
}

.detail-bike-stage--large {
  min-height: 640px;
}

.detail-bike-stage img {
  position: relative;
  z-index: 2;
  width: min(860px, 104%);
  max-width: none;
  filter: drop-shadow(0 34px 30px rgba(28, 37, 56, 0.18));
}

.detail-geometry {
  position: absolute;
  z-index: 1;
  background: var(--product-shape, #dce3f0);
  opacity: 0.8;
  transition: background 240ms ease;
}

.detail-geometry--one {
  width: 420px;
  height: 420px;
  right: 8%;
  top: 62px;
  border-radius: 50%;
}

.detail-geometry--two {
  width: 520px;
  height: 360px;
  left: 6%;
  bottom: 28px;
  clip-path: polygon(0 55%, 86% 0, 100% 100%);
}

.detail-hotspot {
  position: absolute;
  z-index: 3;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 10px rgba(212, 227, 146, 0.18), 0 0 28px rgba(212, 227, 146, 0.56);
  cursor: pointer;
}

.detail-hotspot--front {
  left: 22%;
  top: 41%;
}

.detail-hotspot--body {
  left: 48%;
  top: 56%;
}

.detail-hotspot--seat {
  right: 26%;
  top: 42%;
}

.detail-performance {
  background: #050505;
}

.detail-performance-media {
  position: relative;
  height: 110vh;
  min-height: 820px;
  overflow: hidden;
}

.detail-performance-copy {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 92px;
  width: min(1120px, calc(100% - 64px));
  transform: translateX(-50%);
  color: #fff;
}

.detail-performance-copy h2 {
  width: min(820px, 100%);
  margin-top: 18px;
  font-size: clamp(52px, 8vw, 118px);
  line-height: 0.96;
  font-weight: 800;
}

.detail-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(820px, 100%);
  margin-top: 42px;
}

.detail-facts div {
  min-height: 132px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.detail-facts span {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 22px;
  font-weight: 700;
}

.detail-facts strong {
  display: inline-block;
  margin-top: 14px;
  font-size: 54px;
  line-height: 58px;
  font-weight: 760;
}

.detail-facts em {
  margin-left: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  font-style: normal;
}

.detail-engine-section {
  background: #fff;
}

.detail-card-stack {
  display: grid;
  gap: 16px;
}

.detail-spec-card {
  min-height: 178px;
  padding: 28px;
  border-radius: 28px;
  background: #f7f8fb;
}

.detail-spec-card span {
  color: var(--brand);
  font-size: 14px;
  line-height: 20px;
  font-weight: 900;
}

.detail-spec-card h3 {
  margin-top: 28px;
  font-size: 28px;
  line-height: 36px;
  font-weight: 720;
}

.detail-spec-card p {
  margin-top: 10px;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 28px;
}

.detail-color-section {
  padding: 132px 0;
  background: var(--product-bg, #ecf1fe);
  transition: background 240ms ease;
}

.detail-color-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  gap: 56px;
  align-items: center;
}

.detail-color-panel {
  padding: 34px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 32px 90px rgba(70, 92, 142, 0.14);
  backdrop-filter: blur(24px);
}

.detail-color-panel .color-dots {
  margin-top: 28px;
  background: rgba(255, 255, 255, 0.52);
}

.detail-display-section {
  padding: 136px 0;
  background: #050505;
  color: #fff;
}

.detail-display-section .section-title p {
  color: rgba(255, 255, 255, 0.62);
}

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

.detail-display-card {
  min-height: 360px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045));
}

.detail-display-card img {
  width: 74px;
  height: 74px;
  object-fit: contain;
}

.detail-display-card h3 {
  margin-top: 108px;
  font-size: 30px;
  line-height: 38px;
  font-weight: 720;
}

.detail-display-card p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 28px;
}

.detail-smart-section {
  padding: 132px 0;
  background: #fff;
}

.detail-smart-section .phone-cut {
  width: min(700px, 100%);
}

.detail-specs-section {
  padding: 132px 0;
  background: #f7f8fb;
}

.detail-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.detail-specs-model {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  padding: 30px;
  border-radius: 32px;
  background: #fff;
  text-align: center;
}

.detail-specs-model img {
  width: 142%;
  max-width: none;
  margin: auto 0 34px;
  filter: drop-shadow(0 26px 24px rgba(28, 37, 56, 0.14));
}

.detail-specs-model h3 {
  font-size: 26px;
  line-height: 34px;
  font-weight: 720;
}

.detail-specs-model p {
  margin-top: 6px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 24px;
}

.detail-specs-model a {
  margin-top: 18px;
  color: #333;
  font-size: 15px;
  line-height: 24px;
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

.detail-spec-table {
  margin-top: 28px;
}

.detail-final-cta h2 {
  white-space: nowrap;
}

@media (max-width: 980px) {
  .detail-hero-inner {
    padding-top: 180px;
  }

  .detail-hero-caption {
    right: 20px;
  }

  .detail-local-nav {
    top: 132px;
  }

  .detail-local-nav .container {
    display: block;
    padding: 14px 0;
  }

  .detail-local-nav div div {
    gap: 18px;
    margin-top: 8px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .detail-local-nav div div::-webkit-scrollbar {
    display: none;
  }

  .detail-showcase-grid,
  .detail-color-layout,
  .detail-specs-grid,
  .detail-display-grid {
    grid-template-columns: 1fr;
  }

  .detail-bike-stage,
  .detail-bike-stage--large {
    min-height: 480px;
  }

  .detail-color-panel {
    width: min(620px, 100%);
    margin: 0 auto;
  }

  .detail-performance-media {
    min-height: 760px;
  }

  .detail-specs-model {
    min-height: 430px;
  }

  .detail-specs-model img {
    width: min(760px, 116%);
  }

  .detail-final-cta h2 {
    white-space: normal;
  }
}

@media (max-width: 560px) {
  .detail-hero h1 {
    font-size: 68px;
  }

  .detail-hero-copy > p:not(.detail-kicker) {
    font-size: 18px;
    line-height: 30px;
  }

  .detail-hero-caption {
    display: none;
  }

  .detail-local-nav {
    top: 154px;
  }

  .detail-video-frame {
    min-height: 640px;
  }

  .detail-cinematic-copy h2,
  .detail-performance-copy h2 {
    font-size: 42px;
    line-height: 48px;
  }

  .detail-showcase,
  .detail-color-section,
  .detail-display-section,
  .detail-smart-section,
  .detail-specs-section {
    padding: 82px 0;
  }

  .detail-showcase-copy h2,
  .detail-color-panel h2,
  .detail-engine-section h2,
  .detail-smart-section h2 {
    font-size: 38px;
    line-height: 44px;
  }

  .detail-bike-stage,
  .detail-bike-stage--large {
    min-height: 360px;
    border-radius: 0;
    margin-left: -16px;
    margin-right: -16px;
  }

  .detail-bike-stage img {
    width: 720px;
  }

  .detail-geometry--one {
    width: 260px;
    height: 260px;
  }

  .detail-geometry--two {
    width: 320px;
    height: 220px;
  }

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

  .detail-color-panel {
    padding: 24px;
  }

  .detail-color-panel .color-dots {
    flex-wrap: wrap;
  }

  .detail-display-card {
    min-height: 300px;
  }

  .detail-display-card h3 {
    margin-top: 64px;
  }

  .detail-specs-model {
    min-height: 380px;
    border-radius: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .marquee {
    animation: none;
  }
}

/* Product detail redesign with local media assets */
.pulse-redesign {
  background: #fff;
}

.pulse-redesign .pulse-kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(0, 0, 0, 0.56);
  font-size: 15px;
  line-height: 24px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pulse-redesign .pulse-kicker::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: var(--brand);
}

.pulse-hero-v2 {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background: #f2f3f5;
  color: #101014;
}

.pulse-hero-v2--art {
  background: #e7e8eb;
}

.pulse-hero-static {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  z-index: 1;
}

.pulse-hero-art {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.pulse-hero-word {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: clamp(124px, 13vh, 164px);
  transform: translateX(-50%);
  color: #101014;
  font-family: var(--font);
  font-size: clamp(58px, 7.2vw, 112px);
  line-height: 0.96;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}

.pulse-hero-caption {
  position: absolute;
  z-index: 2;
  left: max(32px, calc((100vw - 1280px) / 2));
  bottom: clamp(88px, 12vh, 148px);
  color: rgba(16, 16, 20, 0.9);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pulse-hero-content {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 138px 0 86px;
}

.pulse-hero-copy {
  width: min(720px, 100%);
}

.pulse-hero-v2 .pulse-kicker {
  color: rgba(255, 255, 255, 0.82);
}

.pulse-hero-copy h1 {
  margin-top: 18px;
  color: #fff;
  font-size: 46px;
  line-height: 54px;
  font-weight: 650;
  letter-spacing: 0;
}

.pulse-hero-copy > p {
  width: min(560px, 100%);
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 22px;
  line-height: 36px;
  font-weight: 600;
}

.pulse-scroll-hint {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  color: rgba(16, 16, 20, 0.48);
  font-size: 13px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.pulse-reel-section {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background: #050505;
  color: #fff;
}

.pulse-reel-video,
.pulse-reel-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.pulse-reel-video {
  object-fit: cover;
  z-index: 1;
  filter: brightness(1.24) contrast(1.04);
}

.pulse-reel-shade {
  z-index: 2;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.03);
}

.pulse-reel-content {
  position: relative;
  z-index: 3;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 96px 0;
}

.pulse-reel-copy {
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.42);
}

.pulse-reel-section .pulse-kicker {
  color: rgba(255, 255, 255, 0.82);
}

.pulse-reel-copy h2 {
  margin-top: 0;
  color: #ffffff;
  font-size: 48px;
  line-height: 58px;
  font-weight: 650;
  letter-spacing: 0;
}

.pulse-reel-copy > p {
  width: min(620px, 100%);
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
}

.pulse-intro {
  padding: 132px 0;
  background: #fff;
  text-align: center;
}

.pulse-intro h2,
.pulse-section-copy h2,
.pulse-overlay-copy h2,
.pulse-cockpit-copy h2,
.pulse-core-copy h2 {
  margin-top: 18px;
  color: var(--text);
  font-size: 46px;
  line-height: 54px;
  font-weight: 650;
  letter-spacing: 0;
}

.pulse-intro h2 {
  width: min(980px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.pulse-intro-stats {
  width: min(1040px, 100%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 58px auto 0;
}

.pulse-intro-stats div {
  min-height: 136px;
  display: grid;
  place-items: center;
  padding: 22px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 26px;
  background: #f7f8fb;
}

.pulse-intro-stats strong {
  display: block;
  color: var(--text);
  font-size: 52px;
  line-height: 58px;
  font-weight: 780;
}

.pulse-intro-stats span {
  display: block;
  margin-top: 6px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 24px;
  font-weight: 700;
}

.pulse-night-section {
  position: relative;
  z-index: 1;
  margin-top: 238px;
  scroll-margin-top: 238px;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: visible;
  isolation: isolate;
  background: #000;
  color: #fff;
}

.pulse-night-section::before,
.pulse-night-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
}

.pulse-night-section::before {
  top: -238px;
  height: 340px;
  background: #000;
}

.pulse-night-section::after {
  top: 64px;
  height: 170px;
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 100%);
}

.pulse-night-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: transparent;
}

.pulse-night-copy {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: clamp(48px, 6vh, 68px);
  top: -108px;
  text-align: center;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.58);
}

.pulse-night-copy h2 {
  margin: 0;
  color: #fff;
  font-size: 46px;
  line-height: 54px;
  font-weight: 700;
  letter-spacing: 0;
}

.pulse-night-copy p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  letter-spacing: 0;
}

.pulse-media-story {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
}

.pulse-media-story--dark {
  background: #050505;
  color: #fff;
}

.pulse-media-story--light {
  background: #f2f5fb;
  color: var(--text);
}

.pulse-media-bg {
  position: absolute;
  inset: 0;
}

.pulse-media-bg video,
.pulse-wide-media img,
.pulse-split-video video,
.pulse-light-grid video,
.pulse-light-grid img,
.pulse-core-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pulse-media-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.66));
}

.pulse-media-story--light .pulse-media-bg::after {
  background: linear-gradient(90deg, rgba(242, 245, 251, 0.92) 0%, rgba(242, 245, 251, 0.7) 36%, rgba(242, 245, 251, 0.08) 100%);
}

.pulse-overlay-copy {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 92px;
}

.pulse-overlay-copy h2 {
  width: min(780px, 100%);
  color: currentColor;
}

.pulse-overlay-copy > p:not(.pulse-kicker) {
  width: min(560px, 100%);
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  line-height: 34px;
  font-weight: 600;
}

.pulse-media-story--light .pulse-overlay-copy > p:not(.pulse-kicker) {
  color: var(--text-soft);
}

.pulse-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  background: #050505;
}

.pulse-feature-card {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  color: #fff;
  background: #111;
}

.pulse-feature-card video,
.pulse-feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pulse-feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.74));
}

.pulse-feature-card div {
  position: absolute;
  z-index: 1;
  left: 48px;
  right: 48px;
  bottom: 46px;
}

.pulse-feature-card span {
  color: var(--brand);
  font-size: 15px;
  line-height: 22px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pulse-feature-card h3 {
  margin-top: 12px;
  font-size: 46px;
  line-height: 54px;
  font-weight: 650;
}

.pulse-feature-card p {
  width: min(480px, 100%);
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 29px;
  font-weight: 600;
}

.pulse-airflow,
.pulse-light {
  background: #fff;
}

.pulse-wide-media {
  height: 100vh;
  min-height: 760px;
  overflow: hidden;
  background: #f5f6f8;
}

.pulse-section-copy {
  width: min(980px, 100%);
  padding: 96px 0 126px;
}

.pulse-section-copy p:not(.pulse-kicker),
.pulse-cockpit-copy p,
.pulse-core-copy p {
  width: min(660px, 100%);
  margin-top: 24px;
  color: var(--text-soft);
  font-size: 20px;
  line-height: 34px;
  font-weight: 600;
}

.pulse-split-media,
.pulse-core-layout,
.pulse-cockpit-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.pulse-split-media {
  min-height: 860px;
  background: #f6f7fa;
}

.pulse-split-copy {
  width: min(560px, calc(100% - 64px));
  margin: 0 auto;
}

.pulse-split-copy h2 {
  margin-top: 18px;
  font-size: 46px;
  line-height: 54px;
  font-weight: 650;
}

.pulse-split-copy p:not(.pulse-kicker) {
  margin-top: 22px;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 32px;
  font-weight: 600;
}

.pulse-split-video {
  height: 860px;
  overflow: hidden;
}

.pulse-cockpit {
  padding: 140px 0;
  background: #ecf1fe;
}

.pulse-cockpit-layout {
  gap: 64px;
}

.pulse-cockpit-media {
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 38px 120px rgba(45, 68, 110, 0.18);
}

.pulse-cockpit-media img {
  width: 100%;
}

.pulse-light-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: #050505;
}

.pulse-light-grid video,
.pulse-light-grid img {
  min-height: 620px;
  background: #050505;
}

.pulse-color-gallery {
  padding: 116px 0 132px;
  overflow: hidden;
  background: #f7f8fb;
}

.pulse-color-gallery .pulse-section-copy {
  padding: 0 0 44px;
}

.pulse-color-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(520px, 1fr));
  gap: 18px;
  margin-left: max(32px, calc((100vw - 1280px) / 2));
  overflow-x: auto;
  scrollbar-width: none;
}

.pulse-color-row::-webkit-scrollbar {
  display: none;
}

.pulse-color-row img {
  width: 100%;
  height: 360px;
  border-radius: 28px;
  object-fit: cover;
  background: #fff;
}

.pulse-core {
  padding: 136px 0;
  background: #050505;
  color: #fff;
}

.pulse-core-layout {
  gap: 72px;
}

.pulse-core-media {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  border-radius: 34px;
  background: #111;
}

.pulse-core-media video {
  position: absolute;
  inset: 0;
  display: block;
}

.pulse-core-copy {
  position: relative;
  top: -20px;
}

.pulse-core-copy h2 {
  color: #fff;
  font-size: 46px;
  line-height: 54px;
}

.pulse-core-copy p {
  color: rgba(255, 255, 255, 0.68);
}

.pulse-specs {
  padding: 132px 0 96px;
  background: #fff;
}

.pulse-section-copy--center {
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.pulse-section-copy--center .pulse-kicker {
  justify-content: center;
}

.pulse-section-copy--center p:not(.pulse-kicker) {
  margin-left: auto;
  margin-right: auto;
}

.pulse-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.pulse-spec-model {
  min-height: 540px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 34px;
  border-radius: 34px;
  background: #f7f8fb;
  text-align: center;
}

.pulse-spec-model img {
  width: min(420px, 112%);
  margin: auto 0 34px;
  filter: drop-shadow(0 28px 26px rgba(26, 32, 44, 0.12));
}

.pulse-spec-model h3 {
  font-size: 28px;
  line-height: 36px;
  font-weight: 760;
}

.pulse-spec-model p {
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}

.pulse-spec-model a {
  margin-top: 18px;
  color: #333;
  font-size: 15px;
  line-height: 24px;
  font-weight: 800;
}

.pulse-spec-model a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 1100px) {
  .pulse-hero-word {
    top: 126px;
    font-size: clamp(52px, 9vw, 86px);
  }

  .pulse-hero-caption {
    left: 32px;
    bottom: 92px;
  }

  .pulse-intro-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .pulse-feature-grid,
  .pulse-split-media,
  .pulse-core-layout,
  .pulse-cockpit-layout,
  .pulse-light-grid,
  .pulse-specs-grid {
    grid-template-columns: 1fr;
  }

  .pulse-split-copy {
    padding: 96px 0;
  }

  .pulse-split-video {
    height: 620px;
  }

  .pulse-core-layout,
  .pulse-cockpit-layout {
    gap: 42px;
  }
}

@media (max-width: 680px) {
  .pulse-hero-copy > p,
  .pulse-reel-copy > p,
  .pulse-overlay-copy > p:not(.pulse-kicker),
  .pulse-section-copy p:not(.pulse-kicker),
  .pulse-cockpit-copy p,
  .pulse-core-copy p {
    font-size: 17px;
    line-height: 29px;
  }

  .pulse-hero-v2 {
    min-height: 760px;
  }

  .pulse-hero-static {
    object-position: center bottom;
  }

  .pulse-hero-word {
    top: 118px;
    font-size: clamp(38px, 13vw, 64px);
  }

  .pulse-hero-caption {
    left: 20px;
    bottom: 86px;
    font-size: 12px;
    line-height: 19px;
  }

  .pulse-reel-content {
    align-items: center;
    padding: 96px 0;
  }

  .pulse-reel-copy h2 {
    font-size: 48px;
    line-height: 58px;
  }

  .pulse-reel-copy > p {
    font-size: 20px;
    line-height: 32px;
  }

  .pulse-night-section::before {
    top: -188px;
    height: 320px;
  }

  .pulse-night-section {
    margin-top: 188px;
    scroll-margin-top: 188px;
  }

  .pulse-night-section::after {
    top: 74px;
    height: 150px;
  }

  .pulse-night-copy {
    top: -48px;
  }

  .pulse-intro,
  .pulse-cockpit,
  .pulse-core,
  .pulse-specs {
    padding: 84px 0;
  }

  .pulse-specs {
    padding-bottom: 72px;
  }

  .pulse-intro-stats {
    grid-template-columns: 1fr;
  }

  .pulse-feature-card {
    min-height: 580px;
  }

  .pulse-feature-card div {
    left: 24px;
    right: 24px;
    bottom: 28px;
  }

  .pulse-wide-media {
    min-height: 520px;
  }

  .pulse-section-copy {
    padding: 70px 0 82px;
  }

  .pulse-color-row {
    grid-template-columns: repeat(4, 300px);
    margin-left: 16px;
  }

  .pulse-color-row img {
    height: 230px;
    border-radius: 22px;
  }

  .pulse-core-media,
  .pulse-light-grid video,
  .pulse-light-grid img {
    min-height: 420px;
  }

  .pulse-spec-model {
    min-height: 440px;
  }
}
