/** Shopify CDN: Minification failed

Line 221:15 Expected identifier but found whitespace
Line 221:17 Unexpected "{"
Line 221:26 Expected ":"

**/


/* CSS from section stylesheet tags */
.section-ed-comparison {
  padding: 60px 0;
}
.ed-comparison-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  justify-content: center;
}
.ed-comparison-left,
.ed-comparison-right {
  flex: 1 1 420px;
}
.ed-comparison-left img,
.ed-comparison-right img {
  width: 100%;
  border-radius: 8px;
}
.ed-comparison-right h3 {
  font-size: 1.75rem;
  margin-bottom: 16px;
}
.ed-comparison-right p {
  font-size: 1.5rem;
  line-height: 1.6;
}
@media screen and (max-width: 749px) {
  .ed-comparison-container {
    flex-direction: column;
  }
}
.custom-split-layout {
  display: flex;
  flex-wrap: wrap;
  max-width: 1920px;
  margin: 0 auto;
}
.custom-split-left,
.custom-split-right {
  width: 100%;
  padding: 20px;
}
@media screen and (min-width: 1200px) {
  .custom-split-left,
  .custom-split-right {
    width: 50%;
    max-width: 960px;
  }
}
.custom-split-left .title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}
.custom-split-images {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.custom-split-images .item {
  width: calc(50% - 10px);
}
.custom-split-images img {
  width: 100%;
  border-radius: 8px;
}
.custom-split-images .desc {
  text-align: center;
  margin-top: 8px;
  font-size: 14px;
}
.custom-split-right img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
}
.custom-split-right .right-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}
.custom-split-right .right-desc {
  font-size: 16px;
  line-height: 1.5;
}
.discoveryopt-story {
    background: var(--section-bg, #000);
    color: var(--text-color, #d0d8ff);
    padding: 60px 20px;
    background-size: cover;
    background-position: center;
  }

  .discoveryopt-story h2,
  .discoveryopt-story .step h3,
  .discoveryopt-story h4 {
    color: var(--heading-color, #4da6ff);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
  }

  .discoveryopt-story .intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: var(--desc-font-size, 1.1rem);
    line-height: 1.6;
    color: var(--text-color, #b0b8d0);
  }

  .discoveryopt-story .timeline {
    display: grid;
    gap: 30px;
    margin: 40px 0;
    grid-template-columns: repeat(var(--timeline-cols, 4), 1fr);
  }

  .discoveryopt-story .step {
    text-align: center;
  }

  .discoveryopt-story .step h3 {
    margin-bottom: 8px;
  }

  .discoveryopt-story .grid {
    display: grid;
    gap: 30px;
    margin-top: 40px;
    grid-template-columns: repeat(var(--card-cols, 3), 1fr);
  }

  .discoveryopt-story .card {
    background: var(--card-bg-color, #121827);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(77, 166, 255, 0.1);
    transition: transform 0.3s;
  }

  .discoveryopt-story .card:hover {
    transform: translateY(-4px);
  }

  .discoveryopt-story a.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
  }

  .discoveryopt-story img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #1e2130;
  }

  .discoveryopt-story h4 {
    margin: 16px;
    color: var(--heading-color, #4da6ff);
  }

  .discoveryopt-story p {
    margin: 0 16px 16px;
    color: var(--text-color, #b0b8d0);
    font-size: var(--desc-font-size, 1.1rem);
    line-height: 1.5;
  }

  .discoveryopt-story .cta {
    text-align: center;
    margin-top: 40px;
  }

  .discoveryopt-story .cta a.button {
    background-color: var(--button-bg-color, #4da6ff);
    color: var(--button-text-color, #fff);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background 0.3s;
  }

  .discoveryopt-story .cta a.button:hover {
    background-color: #1d4fff;
  }

  @media(max-width:768px){
    .discoveryopt-story .timeline,
    .discoveryopt-story .grid {
      grid-template-columns: 1fr !important;
    }
  }
.custom-masonry-three {
  display: flex;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  gap: 16px;
}

.custom-masonry-three__side,
.custom-masonry-three__stack > div {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: {{ section.settings.aspect_ratio }}; /* ✅ 动态比例 */
}

.custom-masonry-three__stack {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-card {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.image-card:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 24px;
  text-align: center;
  pointer-events: none;
}

@media screen and (max-width: 1024px) {
  .custom-masonry-three {
    flex-direction: column;
  }

  .custom-masonry-three__stack {
    flex-direction: row;
  }

  .image-overlay {
    justify-content: center;
    padding: 16px;
  }
}
.custom-masonry-hero {
    display: flex;
    max-width: 1920px;
    width: 100%;
    height: 800px;
    margin: 0 auto;
    gap: 16px;
  }

  .custom-masonry-hero__left {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
  }

  .custom-masonry-hero__right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .custom-masonry-hero__top {
    display: flex;
    gap: 16px;
    flex: 1;
  }

  .custom-masonry-hero__top .tile {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
  }

  .custom-masonry-hero__bottom {
    height: 50%;
    overflow: hidden;
    border-radius: 12px;
  }

  .custom-masonry-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
  }

  .custom-masonry-hero a:hover img {
    transform: scale(1.05);
  }

  @media screen and (max-width: 1024px) {
    .custom-masonry-hero {
      flex-direction: column;
      height: auto;
    }

    .custom-masonry-hero__right {
      flex-direction: column;
    }

    .custom-masonry-hero__top {
      flex-direction: row;
    }

    .custom-masonry-hero__bottom {
      height: auto;
    }

    .custom-masonry-hero img {
      height: auto;
    }
  }
.ballistic-bg-module {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  color: #fff;
}

.ballistic-bg-left {
  flex: 1;
  position: relative;
  min-height: 400px;
  overflow: hidden;
}

.ballistic-bg-image, .ballistic-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ballistic-bg-video {
  position: absolute;
  top: 0; left: 0;
  z-index: 0;
}

.ballistic-bg-overlay {
  position: absolute;
  top:0; left:0;
  width:100%; height:100%;
  z-index:1;
}

.ballistic-bg-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  padding-left: 40px;
  padding-right: 40px;
}

/* 文字样式 */
.ballistic-bg-title { font-size: 32px; font-weight:700; margin-bottom:20px; }
.ballistic-bg-desc { font-size:16px; line-height:1.6; margin-bottom:30px; }
.ballistic-bg-subtitle { font-size:18px; font-weight:600; margin-bottom:15px; }
.ballistic-bg-modes { display:flex; flex-wrap:wrap; gap:10px; }
.ballistic-bg-mode { background:#000; color:#fff; padding:6px 14px; border-radius:6px; font-size:14px; }

/* 渐入动画 */
.animate { opacity:0; transform: translateY(20px); transition: all 0.8s ease-out; }
.animate.visible { opacity:1; transform: translateY(0); }

/* 移动端自适应 */
@media(max-width:768px){
  .ballistic-bg-module { flex-direction: column; }
  .ballistic-bg-left, .ballistic-bg-right { flex:100%; padding:30px 20px; }
  .ballistic-bg-right { text-align:center; }
}
.vehicle-section {
    background-color: #000;
    color: #fff;
    padding: 80px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  }
  .vehicle-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: #000;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .vehicle-nav a {
    color: #aaa;
    text-decoration: none;
    padding: 16px 24px;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .vehicle-nav a.active,
  .vehicle-nav a:hover {
    color: #4da6ff;
  }
  .vehicle-block {
    max-width: 1200px;
    margin: 0 auto 100px auto;
    text-align: center;
  }
  .vehicle-block img {
    max-width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
  }
  .vehicle-block h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #4da6ff;
  }
  .vehicle-block p {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.6;
  }
  @media (max-width: 768px) {
    .vehicle-nav a {
      padding: 12px 16px;
      font-size: 0.9rem;
    }
    .vehicle-block h2 {
      font-size: 1.5rem;
    }
    .vehicle-block p {
      font-size: 1rem;
    }
  }
.split-duo-wrapper {
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding: 40px 20px;
}
.split-duo-item {
  flex: 1;
  min-width: 300px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.split-duo-text {
  flex: 1;
}
.split-duo-text .tag {
  font-size: 12px;
  font-weight: bold;
  padding: 4px 8px;
  background-color: #e1e1e1;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 10px;
}
.split-duo-text .title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}
.split-duo-text .description {
  font-size: 16px;
  line-height: 1.5;
}
.split-duo-image {
  flex: 1;
}
.split-duo-image img {
  width: 100%;
  border-radius: 8px;
}
@media screen and (max-width: 1024px) {
  .split-duo-wrapper {
    flex-direction: column;
  }
  .split-duo-item {
    flex-direction: column;
  }
}
.section-divider-with-title {
  position: relative;
  text-align: center;
  padding: 60px 20px;
  overflow: hidden;
}

.divider-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: nowrap;
}

.divider-line {
  flex: 1;
  height: 1px;
  background-color: #ccc;
  opacity: 0.6;
}

.divider-title-text {
  margin: 0;
  font-weight: var(--font-weight, 700);
  font-size: var(--font-size, 32px);
  color: var(--font-color, #000);
  background: var(--gradient, none);
  -webkit-background-clip: text;
  -webkit-text-fill-color: var(--text-fill-color, initial);
  transition: all 0.3s ease;
}

/* SVG背景图案（可开关） */
.section-divider-with-title::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 150%;
  height: 150%;
  background: url("https://cdn.shopify.com/s/files/1/1234/5678/files/decorative-lines.svg") center/cover no-repeat;
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
}

.section-divider-inner {
  position: relative;
  z-index: 1;
}
.series-section {
  width: 100%;
  max-width: 100vw;
  position: relative;
  background-color: #000;
  padding: 60px 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

.series-container {
  max-width: 2400px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.series-grid {
  display: grid;
  gap: 32px;
}

.series-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--card-radius, 12px);
  height: var(--card-height, 400px);
  z-index: 1;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.series-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
  transition: transform 0.4s ease;
}

.series-card:hover img {
  transform: scale(1.05);
}

.series-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-sizing: border-box;
  border: 2px solid transparent;
  border-image: none;
  border-color: transparent;
  background:
    linear-gradient(to right, #fff 100%, transparent 0) top,
    linear-gradient(to bottom, #fff 100%, transparent 0) right,
    linear-gradient(to left, #fff 100%, transparent 0) bottom,
    linear-gradient(to top, #fff 100%, transparent 0) left;
  background-repeat: no-repeat;
  background-size: 0% 2px, 2px 0%, 0% 2px, 2px 0%;
  transition: background-size 0.6s ease-out;
  z-index: 2;
}

.series-card:hover::before {
  background-size: 100% 2px, 2px 100%, 100% 2px, 2px 100%;
}

/* 卡片标题 */
.series-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 10px 0 0;
  color: #fff;
}

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

/* 响应式 */
@media (max-width: 900px) and (min-width: 601px) {
  .series-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    padding: 0 10px;
  }
  .series-card {
    height: 300px !important;
  }
}

@media (max-width: 600px) {
  .series-grid {
    grid-template-columns: 1fr !important;
    padding: 0 15px;
  }
  .series-card {
    height: 250px !important;
    width: 100%;
  }
}
.custom-table-section {
    padding: 40px 0;
  }
  .custom-table-section .custom-table-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 32px;
  }
  .custom-table-grid {
    display: grid;
    gap: 20px;
  }
  @media screen and (min-width: 750px) {
    .custom-table-grid {
      grid-template-columns: repeat(var(--desktop-columns), 1fr);
    }
  }
  @media screen and (max-width: 749px) {
    .custom-table-grid {
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
  }
  .custom-table-item {
    padding: 16px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    background: #fff;
    text-align: center;
  }
  .custom-table-item .col-title {
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 15px;
  }
  .custom-table-item .col-value {
    font-size: 16px;
  }