/* ============================================================
   GapaSea 官网 - 镜像 Shopify Dawn theme v15.4.0
   配色变量来源：docs/源代码:140-220
   ============================================================ */

:root,
.color-scheme-1 {
  --color-background: 255, 255, 255;
  --color-foreground: 18, 18, 18;
  --color-background-contrast: 191, 191, 191;
  --color-button: 254, 81, 0;
  --color-button-text: 255, 255, 255;
  --color-secondary-button: 255, 255, 255;
  --color-secondary-button-text: 18, 18, 18;
  --color-link: 18, 18, 18;
}

.color-scheme-2 {
  --color-background: 243, 243, 243;
  --color-foreground: 18, 18, 18;
  --color-button: 254, 81, 0;
  --color-button-text: 255, 255, 255;
}

.color-scheme-3 {
  --color-background: 36, 40, 51;
  --color-foreground: 255, 255, 255;
  --color-button: 254, 81, 0;
  --color-button-text: 255, 255, 255;
  --color-secondary-button: 36, 40, 51;
  --color-secondary-button-text: 255, 255, 255;
}

.color-scheme-4 {
  --color-background: 0, 0, 0;
  --color-foreground: 255, 255, 255;
  --color-button: 255, 255, 255;
  --color-button-text: 18, 18, 18;
  --color-link: 255, 255, 255;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB",
               Inter, Assistant, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: rgb(var(--color-foreground));
  background: rgb(var(--color-background));
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 500; line-height: 1.25; }

/* ----- Layout helpers ----- */
.page-width { max-width: 1440px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 749px) { .page-width { padding: 0 16px; } }

.section-padding { padding: 80px 0; }
@media (max-width: 749px) { .section-padding { padding: 40px 0; } }

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

/* ----- Typography ----- */
.gapasea_title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  text-align: center;
  margin-bottom: 24px;
}
.section-subtitle {
  text-align: center;
  color: rgba(var(--color-foreground), 0.7);
  margin-bottom: 60px;
}

/* ----- Buttons (Dawn 风格：直角 / 实色 / 极小圆角) ----- */
.gapasea_btn {
  display: inline-block;
  padding: 14px 32px;
  background: rgb(var(--color-button));
  color: rgb(var(--color-button-text));
  font-size: 15px;
  font-weight: 500;
  border-radius: 4px;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}
.gapasea_btn:hover { opacity: 0.9; transform: translateY(-1px); }

.gapasea_btn--secondary {
  background: rgb(var(--color-secondary-button));
  color: rgb(var(--color-secondary-button-text));
  border: 1px solid currentColor;
}

/* ============================================================
   Announcement bar (顶部黑底文字轮播 · color-scheme-4)
   ============================================================ */
.announcement-bar {
  background: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.announcement-bar__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 10px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
}
.announcement-bar__viewport {
  flex: 1;
  overflow: hidden;
  text-align: center;
}
.announcement-bar__track {
  display: flex;
  transition: transform 0.5s ease;
}
.announcement-bar__slide {
  flex: 0 0 100%;
  font-size: 13px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.announcement-bar__slide a {
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.announcement-bar__slide a::after {
  content: "→";
  transition: transform 0.2s;
}
.announcement-bar__slide a:hover::after { transform: translateX(3px); }
.announcement-bar__btn {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  flex-shrink: 0;
}
.announcement-bar__btn:hover { color: rgb(255, 255, 255); }
@media (max-width: 749px) {
  .announcement-bar__inner { padding: 8px 12px; }
  .announcement-bar__slide { font-size: 12px; }
}

/* ============================================================
   Header / Nav (Dawn header--top-center: logo 顶部居中 · 菜单第二行)
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgb(var(--color-background));
  border-bottom: 1px solid rgba(var(--color-foreground), 0.08);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.site-header--hidden {
  transform: translateY(-100%);
}
.site-header__top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px 32px 12px;
  max-width: 1440px;
  margin: 0 auto;
  gap: 16px;
}
.site-header__logo {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
}
.site-header__logo img { height: 32px; width: auto; }
.site-header__cta {
  grid-column: 3;
  justify-self: end;
  padding: 9px 20px;
  font-size: 13px;
}
.site-header__mobile-toggle {
  display: none;
  grid-column: 1;
  justify-self: start;
  width: 36px; height: 36px;
  padding: 6px;
  color: rgb(var(--color-foreground));
}

.site-header__menu {
  display: flex;
  gap: 32px;
  justify-content: center;
  padding: 0 32px 16px;
  max-width: 1440px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.site-header__menu a {
  font-size: 16px;
  letter-spacing: 0.02em;
  color: rgb(var(--color-foreground));
  padding: 6px 0;
  position: relative;
}
.site-header__menu a:hover,
.site-header__menu a[aria-current="page"] {
  border-bottom: 2px solid rgb(var(--color-button));
}

/* ----- Mobile header ----- */
@media (max-width: 989px) {
  .site-header__top { padding: 14px 16px; }
  .site-header__cta { padding: 10px 16px; font-size: 13px; }
  .site-header__mobile-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-header__menu {
    position: fixed;
    top: 0; left: 0; bottom: 0;
    width: 280px;
    flex-direction: column;
    gap: 0;
    background: rgb(var(--color-background));
    padding: 80px 24px 24px;
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s;
    z-index: 200;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .site-header__menu.is-open { transform: translateX(0); }
  .site-header__menu a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(var(--color-foreground), 0.08);
    font-size: 15px;
  }
  /* 抽屉背后的遮罩，点击关闭 */
  .site-header__menu-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 199;
  }
  .site-header__menu-backdrop.is-open { display: block; }
}

/* ============================================================
   Footer (Dawn 黑底 · color-scheme-4)
   ============================================================ */
.site-footer {
  background: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
  padding-top: 60px;
}
.site-footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}
.site-footer__columns {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
@media (max-width: 989px) {
  .site-footer__columns { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 580px) {
  .site-footer__columns { grid-template-columns: 1fr; }
}
.site-footer__heading {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  color: rgb(255, 255, 255);
}
.site-footer__list li { margin-bottom: 10px; }
.site-footer__list a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.site-footer__list a:hover { color: rgb(255, 255, 255); }

.site-footer__brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 360px;
  margin: 16px 0 0;
}
.site-footer__brand img {
  height: 28px;
  filter: brightness(0) invert(1);
}

.site-footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.site-footer__social a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.85);
  transition: border-color 0.2s, color 0.2s;
}
.site-footer__social a:hover {
  border-color: rgb(var(--color-button));
  color: rgb(var(--color-button));
}
.site-footer__social svg { width: 18px; height: 18px; }

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.site-footer__bottom a { color: inherit; }
.site-footer__bottom a:hover { color: rgb(255, 255, 255); }
.site-footer__bottom .sep { margin: 0 8px; opacity: 0.5; }

/* ============================================================
   Common section variants
   ============================================================ */
.section-dark {
  background: rgb(36, 40, 51);
  color: #fff;
}

/* WOW-style 入场动画占位（Dawn 默认 fadeInUp） */
.wow { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.wow.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   Pay modal (行业资讯付费弹层)
   ============================================================ */
.modal-pay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  padding: 16px;
}
.modal-pay.is-open { display: flex; }
.modal-pay__panel {
  background: #fff;
  border-radius: 8px;
  width: 100%;
  max-width: 420px;
  padding: 32px;
  position: relative;
  text-align: center;
}
.modal-pay__close {
  position: absolute;
  top: 12px; right: 12px;
  width: 32px; height: 32px;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.6);
}
.modal-pay__title {
  font-size: 18px;
  margin-bottom: 8px;
}
.modal-pay__amount {
  font-size: 32px;
  font-weight: 600;
  color: rgb(var(--color-button));
  margin: 16px 0;
}
.modal-pay__qr {
  width: 200px; height: 200px;
  margin: 0 auto 16px;
  background: #f5f5f5;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 13px;
}
.modal-pay__hint {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 20px;
}
.modal-pay__close-bottom {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
}

/* ============================================================
   §1 Hero 视频 Banner
   ============================================================ */
.hero-banner {
  position: relative;
  width: 100%;
  height: calc(100vh - 130px);
  min-height: 520px;
  max-height: 820px;
  overflow: hidden;
  background: #000;
}
.hero-banner__media,
.hero-banner__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-banner__video {
  object-fit: cover;
}
.hero-banner__video.mobile-video { display: none; }
@media (max-width: 749px) {
  .hero-banner { height: 80vh; min-height: 480px; }
  .hero-banner__video.desktop-video { display: none; }
  .hero-banner__video.mobile-video { display: block; }
}
.hero-banner__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 24px;
}
.hero-banner__subtitle {
  font-size: clamp(14px, 1.5vw, 18px);
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 20px;
}
.hero-banner__title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  margin: 0 0 36px;
  letter-spacing: 0.02em;
}
.hero-banner__voice-toggle {
  position: absolute;
  right: 32px;
  bottom: 32px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero-banner__voice-toggle svg { width: 20px; height: 20px; }

/* ============================================================
   §2 3D 产品交互区
   ============================================================ */
.feature-section { background: #fff; }
.feature-section__head { text-align: center; margin-bottom: 48px; }
.feature-section__head .section-subtitle { margin-bottom: 0; }

.feature-section__stage {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.feature-section__video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  background: #f5f5f5;
}

.feature-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.feature-dots[hidden] { display: none; }
.feature-dot {
  position: absolute;
  width: 28px;
  height: 28px;
  pointer-events: auto;
  cursor: pointer;
}
.feature-dot__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(197, 197, 197, 0.7);
  border: 1px solid rgba(254, 81, 0, 0.4);
  animation: feature-dot-pulse 2s ease-in-out infinite alternate;
}
@keyframes feature-dot-pulse {
  from { transform: scale(0.85); box-shadow: 0 0 0 0 rgba(254, 81, 0, 0.4); }
  to { transform: scale(1.15); box-shadow: 0 0 0 8px rgba(254, 81, 0, 0); }
}
.feature-dot__bubble {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  transform: translateX(-50%) translateY(8px);
  background: rgb(254, 81, 0);
  color: #fff;
  font-size: 14px;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}
.feature-dot__bubble::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: rgb(254, 81, 0);
}
.feature-dot:hover .feature-dot__bubble,
.feature-dot.is-active .feature-dot__bubble {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.feature-mob-list {
  display: none;
  margin-top: 24px;
  text-align: center;
}
.feature-mob-list li {
  display: inline-block;
  padding: 6px 14px;
  margin: 4px 6px;
  font-size: 13px;
  border: 1px solid rgba(18, 18, 18, 0.15);
  border-radius: 999px;
}
@media (max-width: 749px) {
  .feature-dots { display: none; }
  .feature-mob-list { display: block; }
}

/* ============================================================
   §3 场景轮播
   ============================================================ */
.scene-banner { padding: 60px 0; background: #fff; }
.scene-swiper {
  --swiper-pagination-color: rgb(254, 81, 0);
  --swiper-pagination-bullet-inactive-color: rgba(18, 18, 18, 0.25);
  --swiper-pagination-bullet-inactive-opacity: 1;
  padding-bottom: 48px;
}
.scene-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 7;
}
.scene-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.scene-card__img--mob { display: none; }
@media (max-width: 749px) {
  .scene-card { aspect-ratio: 4 / 5; }
  .scene-card__img--pc { display: none; }
  .scene-card__img--mob { display: block; }
}
.scene-card__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 24px;
  color: #fff;
  text-align: center;
}
.scene-card__content h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 600;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  margin: 0;
}

/* ============================================================
   §4 App 推广带
   ============================================================ */
.app-promo {
  background: #fff;
  padding: 60px 0 120px;
}
.app-promo__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 6.25vw;
  display: flex;
  align-items: center;
  gap: 6.72vw;
}
.app-promo__media { width: 50%; }
.app-promo__image { width: 100%; height: auto; display: block; }
.app-promo__image.mob_show_img { display: none; }
.app-promo__text { width: 50%; display: flex; flex-direction: column; gap: 20px; }
.app-promo__headline {
  font-size: clamp(28px, 2.6vw, 44px);
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}
.app-promo__sub {
  font-size: clamp(15px, 1.3vw, 18px);
  color: rgba(18, 18, 18, 0.75);
  margin: 0;
}
.app-promo__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 60px;
}
.app-promo__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgb(254, 81, 0);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: opacity 0.2s, transform 0.2s;
}
.app-promo__btn:hover { opacity: 0.9; transform: translateY(-1px); }
.app-promo__btn--store {
  background: #fff;
  color: rgb(18, 18, 18);
  border: 1px solid rgba(18, 18, 18, 0.15);
}
@media (max-width: 749px) {
  .app-promo { padding: 40px 0 60px; }
  .app-promo__container { flex-direction: column; padding: 0 20px; gap: 24px; }
  .app-promo__media,
  .app-promo__text { width: 100%; }
  .app-promo__image.pc_show_img { display: none; }
  .app-promo__image.mob_show_img { display: block; }
  .app-promo__buttons { margin-top: 16px; gap: 10px; }
  .app-promo__btn { font-size: 13px; padding: 10px 16px; }
}

/* ============================================================
   §5 达人内容墙
   ============================================================ */
.kol-wall { background: #fff; }
.kol-wall .gapasea_title { margin-bottom: 48px; padding: 0 20px; }

.kol-swiper {
  --swiper-pagination-color: rgb(254, 81, 0);
  --swiper-pagination-bullet-inactive-color: rgba(18, 18, 18, 0.2);
  --swiper-pagination-bullet-inactive-opacity: 1;
  padding-bottom: 48px;
  overflow: visible;
}
.kol-swiper .swiper-wrapper {
  align-items: stretch;
}
.kol-swiper .swiper-slide {
  height: auto;
  display: flex;
}
.kol-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.kol-card__media {
  position: relative;
  cursor: pointer;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: #000;
}
.kol-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.kol-card__media:hover img { transform: scale(1.04); }
.kol-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.kol-card__play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 56%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent rgb(254, 81, 0);
}
.kol-card__meta {
  padding: 16px 4px 4px;
}
.kol-card__tag {
  display: inline-block;
  padding: 4px 10px;
  background: #f4f4f4;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  font-size: 12px;
  color: #111;
  margin-bottom: 10px;
}
.kol-card__desc {
  font-size: 14px;
  color: rgba(18, 18, 18, 0.75);
  line-height: 1.5;
  margin: 0;
}

/* B 站视频弹层 */
.video-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  padding: 24px;
}
.video-modal.is-open { display: flex; }
.video-modal__panel {
  position: relative;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
}
.video-modal__panel iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 4px;
  background: #000;
}
.video-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  font-size: 28px;
  color: #fff;
}

/* ============================================================
   §6 行业资讯入口
   ============================================================ */
.news-cta { background: #f7f7f7; }
.news-cta__card {
  background: #fff;
  border-radius: 12px;
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.news-cta__eyebrow {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgb(254, 81, 0);
  margin: 0 0 8px;
  font-weight: 600;
}
.news-cta__card h2 {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 600;
  margin: 0 0 8px;
}
.news-cta__desc {
  color: rgba(18, 18, 18, 0.7);
  margin: 0;
  font-size: 15px;
  max-width: 560px;
}
@media (max-width: 749px) {
  .news-cta__card {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
    gap: 24px;
  }
}

/* ============================================================
   Common subpage hero (white)
   ============================================================ */
.page-hero {
  padding: 80px 0 48px;
  background: #fff;
  text-align: center;
}
.page-hero__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  margin: 0 0 16px;
}
.page-hero__subtitle {
  color: rgba(18, 18, 18, 0.7);
  margin: 0 auto;
  max-width: 720px;
  font-size: 16px;
}

.section-light { background: #f7f7f7; }

/* ============================================================
   Contact page
   ============================================================ */
.contact-grid__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 989px) { .contact-grid__inner { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .contact-grid__inner { grid-template-columns: 1fr; } }
.contact-card {
  background: #fff;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.contact-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}
.contact-card__icon {
  width: 48px; height: 48px;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  color: rgb(254, 81, 0);
}
.contact-card__icon svg { width: 28px; height: 28px; }
.contact-card__title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px;
}
.contact-card__body {
  font-size: 14px;
  color: rgba(18, 18, 18, 0.7);
  line-height: 1.7;
  margin: 0;
}
.contact-card__body a { color: rgb(254, 81, 0); }

.contact-channels { text-align: center; }
.channels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
@media (max-width: 749px) { .channels-grid { grid-template-columns: repeat(2, 1fr); } }
.channel-card {
  background: #fff;
  border: 1px solid rgba(18, 18, 18, 0.1);
  border-radius: 8px;
  padding: 28px 16px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.channel-card:hover { border-color: rgb(254, 81, 0); transform: translateY(-2px); }
.channel-card__name { font-size: 18px; font-weight: 600; }
.channel-card__handle { font-size: 13px; color: rgba(18, 18, 18, 0.6); }

/* ============================================================
   PDP — simple accessory detail (mirror Dawn accessory PDP)
   ============================================================ */
.pdp-simple { padding: 40px 0 80px; }
.pdp-simple__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: flex-start;
}
@media (max-width: 989px) {
  .pdp-simple__grid { grid-template-columns: 1fr; gap: 32px; }
}
.pdp-simple__main {
  background: #f7f7f7;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  margin-bottom: 12px;
}
.pdp-simple__main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 40px;
}
.pdp-simple__thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pdp-simple__thumb {
  width: 72px;
  height: 72px;
  border-radius: 6px;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  background: #f7f7f7;
  transition: border-color 0.2s;
}
.pdp-simple__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}
.pdp-simple__thumb.is-active { border-color: rgb(254, 81, 0); }
.pdp-simple__thumb:hover { border-color: rgba(254, 81, 0, 0.5); }

.pdp-simple__info { padding: 20px 0; }
.pdp-simple__eyebrow {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(18, 18, 18, 0.55);
  margin: 0 0 14px;
}
.pdp-simple__title {
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 24px;
}
.pdp-simple__desc p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(18, 18, 18, 0.82);
  margin: 0 0 12px;
}
.pdp-simple__desc strong { color: rgb(18, 18, 18); }
.pdp-simple__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 32px 0 20px;
}
.pdp-simple__note {
  font-size: 13px;
  color: rgba(18, 18, 18, 0.6);
  line-height: 1.7;
  padding-top: 16px;
  border-top: 1px solid rgba(18, 18, 18, 0.08);
  margin: 0;
}
.pdp-simple__note a {
  color: rgb(254, 81, 0);
  border-bottom: 1px solid currentColor;
}

/* ============================================================
   About page (1:1 mirror of海外 /pages/explore-gapasea)
   ============================================================ */
.about { background: #fff; }

.about-section {
  padding: 80px 0;
}
@media (max-width: 749px) { .about-section { padding: 48px 0; } }

.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-start;
}
@media (max-width: 989px) {
  .about-row { grid-template-columns: 1fr; gap: 32px; }
}

.about-row--reverse-on-desktop {
  grid-template-columns: 1fr 1fr;
}
.about-row--reverse-on-desktop .about-row__text { order: 1; }
.about-row--reverse-on-desktop .about-row__media { order: 2; }
@media (max-width: 989px) {
  .about-row--reverse-on-desktop .about-row__text { order: 0; }
  .about-row--reverse-on-desktop .about-row__media { order: 0; }
}

.about-row__text--card {
  background: #f3f3f3;
  padding: 40px 36px;
  border-radius: 8px;
  align-self: flex-start;
}

.about-eyebrow {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(18, 18, 18, 0.65);
  margin: 0 0 18px;
  font-weight: 500;
}
.about-eyebrow--center { text-align: center; }

.about-h1 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.about-h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.about-h2--center { text-align: center; }

.about-row__text p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(18, 18, 18, 0.85);
  margin: 0 0 16px;
}
.about-row__text p:last-child { margin-bottom: 0; }

.about-lede {
  text-align: center;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(18, 18, 18, 0.7);
  max-width: 720px;
  margin: 0 auto 36px;
}

/* 团队照片成对 */
.about-photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-photo-pair img {
  width: 100%;
  height: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 8px;
}

/* 视频块 */
.about-video-card {
  position: relative;
  width: 100%;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  cursor: pointer;
}
.about-video-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.about-video-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.3s;
}
.about-video-card:hover > img { transform: scale(1.03); opacity: 0.92; }
.about-video-card__play {
  position: absolute;
  left: 50%; top: 50%;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s, background-color 0.2s;
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.about-video-card__play::after {
  content: "";
  border-left: 18px solid rgb(254, 81, 0);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 4px;
}
.about-video-card:hover .about-video-card__play {
  transform: translate(-50%, -50%) scale(1.08);
  background: #fff;
}
.about-video-card--wide {
  margin-top: 40px;
  aspect-ratio: 16 / 8;
}
.about-video-card--wide .about-video-card__play {
  width: 88px; height: 88px;
}
.about-video-card--wide .about-video-card__play::after {
  border-left-width: 22px;
  border-top-width: 14px;
  border-bottom-width: 14px;
}

/* iframe 直接嵌入版（镜像海外站 explore-gapasea） */
.about-video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}
.about-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.about-video-embed--wide {
  margin: 40px auto 0;
  max-width: 900px;
}

/* §5 Places */
.about-section--places { padding-bottom: 100px; }
.places-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
@media (max-width: 989px) { .places-grid { grid-template-columns: 1fr; } }

.place-card {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  margin: 0;
  background: #1c1d22;
  align-self: start;
}
.place-card--image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.place-card--image figcaption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 600;
  color: #fff;
  font-style: italic;
  letter-spacing: -0.02em;
  pointer-events: none;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}
@media (max-width: 749px) {
  .place-card { aspect-ratio: auto; }
}

/* ============================================================
   User guide (empty state)
   ============================================================ */
.guide-empty__card {
  background: #f7f7f7;
  border-radius: 12px;
  padding: 64px 48px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.guide-empty__card h2 {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  margin: 0 0 16px;
}
.guide-empty__card p {
  color: rgba(18, 18, 18, 0.7);
  margin: 0 0 32px;
  line-height: 1.7;
}
.guide-empty__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   Legal (privacy / policy long-form)
   ============================================================ */
.legal__main {
  max-width: 880px;
  margin: 0 auto;
  background: #fff;
}
.legal__block {
  padding: 24px 0;
  border-bottom: 1px solid rgba(18, 18, 18, 0.08);
}
.legal__block:last-child { border-bottom: 0; }
.legal__block--intro {
  background: #f7f7f7;
  border-radius: 8px;
  padding: 24px 28px;
  border-bottom: 0;
  margin-bottom: 12px;
}
.legal__block h2 {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 14px;
}
.legal__block p,
.legal__block li {
  color: rgba(18, 18, 18, 0.78);
  font-size: 15px;
  line-height: 1.85;
  margin: 0 0 10px;
}
.legal__block strong { color: rgb(18, 18, 18); }
.legal__block ul,
.legal__block ol { padding-left: 22px; margin: 0 0 10px; }
.legal__block ul li,
.legal__block ol li { margin-bottom: 6px; }
.legal__block a { color: rgb(254, 81, 0); }
.legal__block a:hover { text-decoration: underline; }

/* ============================================================
   Return & Exchange (single-column 主体)
   ============================================================ */
.rx-grid--tight { padding: 24px 0 80px; }
@media (max-width: 749px) { .rx-grid--tight { padding: 16px 0 40px; } }
.rx-main--full {
  max-width: 880px;
  margin: 0 auto;
  background: #fff;
}
.rx-block {
  padding: 24px 0;
  border-bottom: 1px solid rgba(18, 18, 18, 0.08);
}
.rx-block:last-child { border-bottom: 0; }
.rx-block h2 {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 12px;
}
.rx-block p,
.rx-block li {
  color: rgba(18, 18, 18, 0.78);
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 8px;
}
.rx-block ul,
.rx-block ol { padding-left: 22px; }
.rx-block ul li,
.rx-block ol li { margin-bottom: 4px; }
.rx-block strong { color: rgb(18, 18, 18); }
.rx-block--note {
  background: #f7f7f7;
  border-radius: 8px;
  padding: 20px 24px;
}
.rx-block--note p { margin: 0; }

/* ============================================================
   Products list
   ============================================================ */
.products-page { padding-top: 48px; }
.products-page__head {
  margin-bottom: 32px;
}
.products-page__title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.products-page__subtitle {
  font-size: 15px;
  color: rgba(18, 18, 18, 0.65);
  margin: 0;
}

.products-grid__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 989px) { .products-grid__inner { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .products-grid__inner { grid-template-columns: 1fr; } }
.product-card {
  background: #fff;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-card__media {
  display: block;
  background: #f7f7f7;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.product-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.product-card__media:hover img { transform: scale(1.04); }
.product-card__meta {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.product-card__badge {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(254, 81, 0, 0.1);
  color: rgb(254, 81, 0);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  align-self: flex-start;
}
.product-card__title {
  font-size: 17px;
  font-weight: 600;
  margin: 0;
}
.product-card__desc {
  font-size: 14px;
  color: rgba(18, 18, 18, 0.7);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.product-card .gapasea_btn { align-self: flex-start; padding: 10px 22px; font-size: 14px; }


/* ============================================================
   PDP (Product detail) - 镜像海外 /products/walkie-talkie-glasses
   ============================================================ */
.pdp { background: #fff; }

.pdp-section-title {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700;
  text-align: center;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.pdp-section-sub {
  text-align: center;
  color: rgba(18, 18, 18, 0.7);
  max-width: 760px;
  margin: 0 auto 48px;
  font-size: 15px;
  line-height: 1.7;
}

/* §1 Gallery + Info */
.pdp-top { padding: 40px 0 60px; }
.pdp-top__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: flex-start;
}
@media (max-width: 989px) { .pdp-top__grid { grid-template-columns: 1fr; gap: 32px; } }
.pdp-gallery { display: flex; flex-direction: column; gap: 14px; }
.pdp-gallery__main {
  aspect-ratio: 1 / 1;
  background: #f3f3f3;
  border-radius: 8px;
  overflow: hidden;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pdp-gallery__main img { width: 100%; height: 100%; object-fit: contain; display: block; }
.pdp-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}
@media (max-width: 580px) { .pdp-gallery__thumbs { grid-template-columns: repeat(4, 1fr); } }
.pdp-thumb {
  padding: 6px; background: #f3f3f3;
  border-radius: 4px; overflow: hidden;
  aspect-ratio: 1 / 1; cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}
.pdp-thumb img { width: 100%; height: 100%; object-fit: contain; display: block; }
.pdp-thumb:hover { border-color: rgba(254, 81, 0, 0.4); }
.pdp-thumb.is-active { border-color: rgb(254, 81, 0); }

.pdp-info { padding-top: 8px; }
.pdp-info__eyebrow {
  font-size: 13px; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(18, 18, 18, 0.6);
  margin: 0 0 14px;
}
.pdp-info__title {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700; line-height: 1.15;
  margin: 0 0 14px; letter-spacing: -0.01em;
}
.pdp-info__tagline { font-size: 17px; color: rgba(18, 18, 18, 0.7); line-height: 1.6; margin: 0 0 28px; }
.pdp-info__points { display: flex; flex-direction: column; gap: 12px; margin: 0 0 32px; }
.pdp-info__points li {
  position: relative; padding-left: 28px;
  font-size: 15px; color: rgba(18, 18, 18, 0.85); line-height: 1.55;
}
.pdp-info__points li::before {
  content: ""; position: absolute; left: 0; top: 6px;
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(254, 81, 0, 0.15);
}
.pdp-info__points li::after {
  content: ""; position: absolute; left: 5px; top: 10px;
  width: 6px; height: 6px; border-radius: 50%; background: rgb(254, 81, 0);
}
.pdp-info__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.pdp-info__note {
  padding: 14px 18px; background: #f7f7f7;
  border-radius: 6px; font-size: 13px; color: rgba(18, 18, 18, 0.7);
}
.pdp-info__note p { margin: 0; }

/* §2 When Signal Fails 双卡 */
.pdp-fail__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 40px; }
@media (max-width: 749px) { .pdp-fail__grid { grid-template-columns: 1fr; gap: 24px; } }
.pdp-fail__media { aspect-ratio: 1 / 1; background: #f3f3f3; border-radius: 8px; overflow: hidden; margin-bottom: 20px; }
.pdp-fail__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pdp-fail__text h3 { font-size: 22px; font-weight: 700; margin: 0 0 10px; line-height: 1.3; }
.pdp-fail__text p { font-size: 15px; color: rgba(18, 18, 18, 0.7); line-height: 1.7; margin: 0; }

/* §3 深色宣言 */
.pdp-statement { padding: 80px 0; background: rgb(36, 40, 51); color: #fff; text-align: center; }
.pdp-statement__title { font-size: clamp(22px, 2.8vw, 34px); font-weight: 700; max-width: 960px; margin: 0 auto 20px; line-height: 1.35; }
.pdp-statement__sub { font-size: 16px; color: rgba(255, 255, 255, 0.75); max-width: 680px; margin: 0 auto; line-height: 1.7; }

/* §4 三行图文 */
.pdp-rows { padding: 40px 0; }
.pdp-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  align-items: stretch; margin-bottom: 8px;
  background: #fff; border-radius: 12px; overflow: hidden;
}
.pdp-row--reverse .pdp-row__media { order: 2; }
@media (max-width: 749px) {
  .pdp-row { grid-template-columns: 1fr; }
  .pdp-row--reverse .pdp-row__media { order: 0; }
}
.pdp-row__media { background: #f3f3f3; aspect-ratio: 16 / 9; overflow: hidden; }
.pdp-row__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pdp-row__text {
  padding: 48px 56px; display: flex;
  flex-direction: column; justify-content: center;
  background: #f7f7f7;
}
@media (max-width: 989px) { .pdp-row__text { padding: 32px 28px; } }
.pdp-row__eyebrow { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(18, 18, 18, 0.55); margin: 0 0 14px; font-weight: 500; }
.pdp-row__text h2 { font-size: clamp(24px, 2.6vw, 34px); font-weight: 700; margin: 0 0 16px; line-height: 1.2; }
.pdp-row__text p { font-size: 15px; line-height: 1.75; color: rgba(18, 18, 18, 0.78); margin: 0; }

/* §5 对比表 */
.pdp-compare__title {
  font-size: clamp(22px, 2.6vw, 34px); font-weight: 700;
  text-align: center; margin: 0 0 48px;
  display: inline-flex; align-items: center; gap: 10px;
  flex-wrap: wrap; justify-content: center; width: 100%;
  letter-spacing: -0.01em;
}
.pdp-compare__brand {
  font-style: italic;
  background: linear-gradient(90deg, rgb(254, 81, 0) 0%, rgb(180, 30, 160) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; font-weight: 700;
}
.pdp-compare__vs { font-size: 0.75em; color: rgba(18, 18, 18, 0.5); font-weight: 500; text-transform: lowercase; }
.pdp-compare__table {
  max-width: 1100px; margin: 0 auto;
  border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(18, 18, 18, 0.08); background: #fff;
}
.pdp-compare__header { display: grid; grid-template-columns: 1fr 1.3fr 1fr 1fr; background: #fff; }
.pdp-compare__empty { background: transparent; }
.pdp-compare__col { padding: 24px 12px; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; gap: 14px; position: relative; }
.pdp-compare__col--hero {
  background: linear-gradient(180deg, #ff6b19 0%, #c836a9 100%);
  color: #fff; border-radius: 16px 16px 0 0; margin-top: -1px;
}
.pdp-compare__badge {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  background: #fff; color: rgb(254, 81, 0);
  font-size: 12px; font-weight: 700;
  padding: 4px 12px; border-radius: 4px; letter-spacing: 0.08em;
}
.pdp-compare__col-name { font-weight: 700; font-size: 15px; line-height: 1.3; padding-top: 20px; }
.pdp-compare__col--hero .pdp-compare__col-name { color: #fff; padding-top: 28px; }
.pdp-compare__col-img { height: 80px; display: flex; align-items: center; justify-content: center; }
.pdp-compare__col-img img { max-height: 100%; width: auto; object-fit: contain; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.15)); }
.pdp-compare__col-img--icon svg { width: 100px; height: 80px; color: rgba(18, 18, 18, 0.85); }
.pdp-compare__row { display: grid; grid-template-columns: 1fr 1.3fr 1fr 1fr; border-top: 1px solid rgba(18, 18, 18, 0.06); }
.pdp-compare__feature {
  padding: 24px 20px; font-size: 13px;
  color: rgba(18, 18, 18, 0.65); font-weight: 600;
  display: flex; align-items: center;
  background: #fafafa; line-height: 1.4;
  border-right: 1px solid rgba(18, 18, 18, 0.06);
}
.pdp-compare__cell { padding: 20px 16px; text-align: center; display: flex; align-items: center; justify-content: center; }
.pdp-compare__cell span { font-size: 13px; line-height: 1.5; position: relative; padding-top: 28px; display: inline-block; }
.pdp-compare__cell span::before {
  content: ""; position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 22px; height: 22px; border-radius: 50%;
  background-repeat: no-repeat; background-position: center;
}
.pdp-compare__cell--yes { background: linear-gradient(180deg, #ff6b19 0%, #c836a9 100%); color: #fff; font-weight: 500; }
.pdp-compare__cell--yes span::before {
  background-color: #fff;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%23ff6b19' stroke-width='2'><path d='M2 6l3 3 5-6'/></svg>");
}
.pdp-compare__cell--neutral { color: rgba(18, 18, 18, 0.75); }
.pdp-compare__cell--neutral span::before {
  background-color: rgb(52, 199, 89);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='white' stroke-width='2'><path d='M2 6l3 3 5-6'/></svg>");
}
.pdp-compare__cell--no { color: rgba(18, 18, 18, 0.55); }
.pdp-compare__cell--no span::before {
  background-color: rgba(18, 18, 18, 0.3);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='white' stroke-width='2'><path d='M3 3l6 6M9 3l-6 6'/></svg>");
}
@media (max-width: 749px) {
  .pdp-compare__header, .pdp-compare__row { grid-template-columns: 1fr 1.2fr 1fr 1fr; }
  .pdp-compare__feature { font-size: 11px; padding: 16px 10px; }
  .pdp-compare__cell { padding: 14px 6px; }
  .pdp-compare__cell span { font-size: 11px; padding-top: 24px; }
  .pdp-compare__cell span::before { width: 18px; height: 18px; }
  .pdp-compare__col-name { font-size: 12px; }
  .pdp-compare__col-img { height: 60px; }
  .pdp-compare__col-img--icon svg { width: 60px; height: 48px; }
}

/* §5 对比表（整张图片版） */
.pdp-compare-image { text-align: center; }
.pdp-compare-image img {
  max-width: 1200px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* §6/§8/§9/§10/§11/§12 共用 rich-image */
.pdp-rich-image { text-align: center; background: #fff; }
.pdp-rich-image__title { font-size: clamp(28px, 3.4vw, 44px); font-weight: 700; margin: 0 0 18px; letter-spacing: -0.01em; }
.pdp-rich-image__sub { color: rgba(18, 18, 18, 0.7); max-width: 800px; margin: 0 auto 40px; font-size: 15px; line-height: 1.75; }
.pdp-rich-image__media { border-radius: 18px; overflow: hidden; max-width: 1200px; margin: 0 auto; }
.pdp-rich-image__media img { width: 100%; height: auto; display: block; }
.pdp-rich-image__media--bg { background: #f3f3f3; padding: 40px 20px; }
.pdp-rich-image__media--bg img { max-width: 760px; margin: 0 auto; }
.pdp-rich-image__media--full { max-width: none; border-radius: 12px; }

/* §7 7 Channels */
.pdp-channels__wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
.pdp-channels__img {
  width: 39.2%;
  height: auto;
  display: block;
  object-fit: contain;
}
.pdp-channels__video {
  width: 50.4%;
  height: auto;
  aspect-ratio: 16 / 13;
  object-fit: cover;
  display: block;
}
@media (max-width: 749px) {
  .pdp-channels__wrapper { flex-direction: column; gap: 16px; }
  .pdp-channels__img { width: 100%; }
  .pdp-channels__video { width: 100%; aspect-ratio: 16 / 10; }
}

/* §13 More Features */
.pdp-more__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px 24px; max-width: 960px; margin: 20px auto 0; }
@media (max-width: 749px) { .pdp-more__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 16px; } }
.pdp-more__item { text-align: center; }
.pdp-more__item img { height: 56px; width: auto; margin: 0 auto 20px; object-fit: contain; }
.pdp-more__item h3 { font-size: 18px; font-weight: 700; margin: 0 0 6px; }
.pdp-more__item p { font-size: 14px; color: rgba(18, 18, 18, 0.65); margin: 0; line-height: 1.5; }

/* §14 Specs */
.pdp-specs__image { max-width: 700px; margin: 0 auto 40px; }
.pdp-specs__image img { width: 100%; height: auto; display: block; }
.pdp-specs__list { max-width: 720px; margin: 0 auto; }

/* Accordion 通用 */
.pdp-accordion { border-bottom: 1px solid rgba(18, 18, 18, 0.1); }
.pdp-accordion:first-child { border-top: 1px solid rgba(18, 18, 18, 0.1); }
.pdp-accordion summary {
  list-style: none; cursor: pointer;
  padding: 20px 4px; display: flex;
  justify-content: space-between; align-items: center;
  gap: 16px; font-size: 16px; font-weight: 600; user-select: none;
}
.pdp-accordion summary::-webkit-details-marker { display: none; }
.pdp-accordion summary svg { width: 14px; height: 10px; flex-shrink: 0; transition: transform 0.2s; color: rgba(18, 18, 18, 0.6); }
.pdp-accordion[open] summary svg { transform: rotate(180deg); }
.pdp-accordion__body { padding: 4px 4px 24px; font-size: 15px; line-height: 1.75; color: rgba(18, 18, 18, 0.8); }
.pdp-accordion__body p { margin: 0 0 10px; }
.pdp-accordion__body ul, .pdp-accordion__body ol { padding-left: 20px; margin: 0 0 10px; }
.pdp-accordion__body li { margin-bottom: 6px; }
.pdp-accordion__body strong { color: rgb(18, 18, 18); margin-right: 6px; }

/* §15 FAQ */
.pdp-faq { background: #f3f3f3; }
.pdp-faq__list { max-width: 860px; margin: 0 auto; background: #fff; border-radius: 12px; padding: 8px 32px; }
.pdp-faq__list .pdp-accordion:first-child { border-top: 0; }
.pdp-faq__list .pdp-accordion:last-child { border-bottom: 0; }

/* §16 Final CTA */
.pdp-final-cta { text-align: center; }
.pdp-final-cta__title { font-size: clamp(28px, 3.4vw, 44px); font-weight: 700; margin: 0 0 16px; color: #fff; }
.pdp-final-cta__sub { color: rgba(255, 255, 255, 0.78); margin: 0 0 32px; font-size: 16px; }
.pdp-final-cta__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.pdp-final-cta .gapasea_btn--secondary { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.5); }


/* ============================================================
   Industry news (list + article)
   ============================================================ */
.news-paywall-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 24px auto 0;
  padding: 10px 20px;
  background: rgba(254, 81, 0, 0.08);
  color: rgb(254, 81, 0);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
}
.news-paywall-banner__tag {
  display: inline-block;
  padding: 2px 10px;
  background: rgb(254, 81, 0);
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
}

.news-list__inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: flex-start;
}
@media (max-width: 989px) { .news-list__inner { grid-template-columns: 1fr; } }
.news-list__main { display: flex; flex-direction: column; gap: 20px; }

.news-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  background: #fff;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 8px;
  padding: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.news-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}
@media (max-width: 749px) {
  .news-card { grid-template-columns: 1fr; }
}
.news-card__media {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #f7f7f7;
}
.news-card__media img { width: 100%; height: 100%; object-fit: cover; }
.news-card__meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.news-card__price {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(254, 81, 0, 0.1);
  color: rgb(254, 81, 0);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  align-self: flex-start;
}
.news-card__title {
  font-size: 19px;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}
.news-card__title a { color: inherit; }
.news-card__title a:hover { color: rgb(254, 81, 0); }
.news-card__excerpt {
  color: rgba(18, 18, 18, 0.7);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card__foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(18, 18, 18, 0.6);
}
.news-card__pay {
  padding: 6px 14px;
  background: rgb(254, 81, 0);
  color: #fff;
  border-radius: 4px;
  font-size: 13px;
}
.news-card__pay:hover { opacity: 0.9; }

.news-side { display: flex; flex-direction: column; gap: 20px; }
.news-side__card {
  background: #fff;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 8px;
  padding: 20px;
}
.news-side__title {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 16px;
  letter-spacing: 0.04em;
}
.news-side__list { display: flex; flex-direction: column; gap: 14px; }
.news-side__list li {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: rgba(18, 18, 18, 0.75);
  line-height: 1.5;
}
.news-side__date {
  color: rgb(254, 81, 0);
  font-weight: 600;
  flex-shrink: 0;
}
.news-side__card--pay { background: rgba(254, 81, 0, 0.05); }
.news-side__card--pay p {
  font-size: 13px;
  color: rgba(18, 18, 18, 0.75);
  line-height: 1.6;
  margin: 0 0 8px;
}
.news-side__hint { color: rgba(18, 18, 18, 0.5) !important; font-size: 12px !important; }

/* Article (resource detail) */
.article__header {
  padding: 60px 0 36px;
  text-align: center;
  background: #fff;
}
.article__eyebrow {
  font-size: 13px;
  color: rgb(254, 81, 0);
  letter-spacing: 0.1em;
  margin: 0 0 16px;
  font-weight: 600;
}
.article__title {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 600;
  max-width: 820px;
  margin: 0 auto 16px;
  line-height: 1.3;
}
.article__meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(18, 18, 18, 0.6);
}
.article__meta .dot { opacity: 0.5; }
.article__price { color: rgb(254, 81, 0); font-weight: 600; }

.article__cover { padding: 16px 0 32px; }
.article__cover img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 8px;
}
.article__body {
  max-width: 820px;
  padding-bottom: 80px;
  position: relative;
}
.article__lead {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(18, 18, 18, 0.85);
  margin: 0 0 24px;
}
.article__body h2 {
  font-size: 22px;
  font-weight: 600;
  margin: 32px 0 12px;
}
.article__body p {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(18, 18, 18, 0.78);
  margin: 0 0 14px;
}

.article__paywall {
  position: relative;
  margin-top: 24px;
}
.article__paywall-fade {
  height: 80px;
  background: linear-gradient(to bottom, transparent, #fff);
  margin-bottom: -1px;
}
.article__paywall-card {
  background: #f7f7f7;
  border: 1px solid rgba(254, 81, 0, 0.2);
  border-radius: 12px;
  padding: 32px 28px;
  text-align: center;
}
.article__paywall-eyebrow {
  display: inline-block;
  padding: 4px 12px;
  background: rgb(254, 81, 0);
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  margin-bottom: 16px;
  font-weight: 600;
}
.article__paywall-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 12px;
}
.article__paywall-card p {
  color: rgba(18, 18, 18, 0.7);
  margin: 0 0 20px;
  font-size: 15px;
}
