/* ===== 奇异果体育 产品服务页 ===== */
.page-products {
  --product-gap: clamp(24px, 5vw, 64px);
  --product-radius-lg: 22px;
  --product-radius-md: 16px;
  --product-ink: #0b1f17;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
}

.page-products button {
  border: 0;
  background: none;
  font: inherit;
  cursor: pointer;
}

.page-products .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 12px 22px;
  font-weight: 800;
  font-size: 15px;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background-color 0.2s ease, color 0.2s ease;
}

.page-products .btn:hover {
  transform: translateY(-2px);
}

.page-products .btn--primary {
  background: var(--color-accent);
  color: var(--color-ink);
  box-shadow: var(--shadow-accent);
}

.page-products .btn--primary:hover {
  background: #ffb64f;
  box-shadow: 0 10px 24px rgba(255, 152, 0, 0.32);
}

.page-products .btn--ghost {
  background: transparent;
  color: var(--color-primary-dark);
  border-color: var(--color-border);
}

.page-products .btn--ghost:hover {
  border-color: var(--color-primary);
  background: rgba(139, 195, 74, 0.1);
}

.page-products .btn--ghost-light {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.page-products .btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.72);
}

/* ===== 首屏英雄区 ===== */
.hero-products {
  position: relative;
  overflow: hidden;
  background: var(--color-ink);
  color: #ffffff;
  padding: 30px 0 52px;
}

.hero-products__bg,
.hero-products__shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-products__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.26;
}

.hero-products__shade {
  background: linear-gradient(105deg, rgba(11, 31, 23, 0.94) 0%, rgba(11, 31, 23, 0.8) 52%, rgba(139, 195, 74, 0.24) 100%);
}

.hero-products__inner {
  position: relative;
  z-index: 2;
  width: min(1200px, 100%);
  margin-inline: auto;
  padding: 0 20px;
}

.hero-products .breadcrumb {
  padding: 0;
}

.hero-products .breadcrumb__link {
  color: rgba(255, 255, 255, 0.72);
}

.hero-products .breadcrumb__link:hover {
  color: var(--color-highlight);
}

.hero-products .breadcrumb__item[aria-current="page"] {
  color: var(--color-primary);
}

.hero-products__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 28px 0 12px;
}

.hero-products__kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 5px rgba(255, 152, 0, 0.2);
}

.hero-products h1 {
  font-family: var(--font-head);
  color: #ffffff;
  font-size: clamp(32px, 6.4vw, 56px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  max-width: 860px;
  margin-bottom: 18px;
  text-wrap: balance;
}

.hero-products__bar {
  color: var(--color-accent);
  padding: 0 0.04em;
}

.hero-products__core {
  color: var(--color-primary);
}

.hero-products__lead {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  max-width: 680px;
  margin-bottom: 24px;
}

.hero-products__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.hero-metric {
  position: relative;
  min-width: 132px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  backdrop-filter: blur(6px);
}

.hero-metric__label {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}

.hero-metric__value {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 30px;
  line-height: 1.1;
  color: var(--color-highlight);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.chart-hover {
  position: relative;
}

.chart-hover__tip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-ink);
  background: var(--color-accent);
  padding: 6px 12px;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(6px);
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 4;
}

.chart-hover__tip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 18px;
  border: 6px solid transparent;
  border-top-color: var(--color-accent);
}

.chart-hover:hover .chart-hover__tip,
.chart-hover:focus-within .chart-hover__tip {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.hero-products__tickets {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  margin-top: 10px;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.hero-ticket {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  flex: 0 0 72%;
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 3px solid var(--color-accent);
  border-radius: 12px;
  padding: 14px 16px;
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.2s var(--ease-out), background-color 0.2s ease, border-color 0.2s ease;
}

.hero-ticket:hover {
  background: rgba(139, 195, 74, 0.16);
  transform: translateX(4px);
}

.hero-ticket--mid {
  border-left-color: var(--color-primary);
}

.hero-ticket__num {
  grid-row: 1 / 3;
  font-family: var(--font-head);
  font-size: 24px;
  color: var(--color-accent);
}

.hero-ticket__name {
  font-size: 16px;
  font-weight: 800;
}

.hero-ticket__meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.66);
}

/* ===== 产品功能模块通用 ===== */
.product-feature {
  position: relative;
  scroll-margin-top: 20px;
}

.product-feature__inner {
  position: relative;
  width: min(1200px, 100%);
  margin-inline: auto;
  padding: 64px 20px;
  display: grid;
  gap: 36px;
  align-items: center;
}

.product-feature__eyebrow {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.product-feature__body h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.4vw, 36px);
  line-height: 1.16;
  color: var(--color-ink);
  margin-bottom: 14px;
}

.product-feature__desc {
  color: var(--color-text);
  font-size: 16px;
}

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

.feature-list li {
  position: relative;
  padding-left: 28px;
  list-style: none;
  font-size: 15px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 3px;
  transform: rotate(14deg);
}

.product-feature__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.product-feature__media {
  position: relative;
}

.product-feature__ghost {
  position: absolute;
  top: -20px;
  left: -4px;
  font-family: var(--font-head);
  font-size: 72px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(27, 94, 32, 0.3);
  pointer-events: none;
  z-index: 0;
}

.product-feature__deco {
  display: none;
}

.product-shot {
  position: relative;
  z-index: 1;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.product-shot__img {
  display: block;
  width: 100%;
  aspect-ratio: 7 / 4;
  object-fit: cover;
}

.product-shot--tilt {
  transform: rotate(1deg);
}

.product-shot--tilt-left {
  transform: rotate(-1deg);
}

.product-shot__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-accent);
  color: var(--color-ink);
  font-size: 13px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 6px;
}

.product-shot__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
}

.product-shot__play::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 16px solid var(--color-primary-dark);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  left: 6px;
}

.product-shot__live {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--color-accent);
  color: var(--color-ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  padding: 5px 9px;
  border-radius: 5px;
}

.product-shot__find {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--color-primary);
  color: var(--color-ink);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease-out);
}

.product-shot__find svg {
  width: 20px;
  height: 20px;
}

.product-shot:hover .product-shot__find {
  transform: scale(1.2) rotate(8deg);
}

/* ===== 模块 01 赛程表 ===== */
.product-feature--schedule {
  background: var(--color-bg);
}

/* ===== 模块 02 回看集锦（深绿色区块） ===== */
.product-feature--highlights {
  background: var(--color-primary-dark);
}

.product-feature--highlights .product-feature__desc {
  color: rgba(255, 255, 255, 0.82);
}

.product-feature--highlights .product-feature__body h2 {
  color: #ffffff;
}

.product-feature--highlights .feature-list {
  color: rgba(255, 255, 255, 0.9);
}

.product-feature--highlights .feature-list li::before {
  background: var(--color-accent);
}

.product-feature--highlights .product-feature__ghost {
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.3);
}

.product-feature--highlights .product-shot {
  border-color: rgba(255, 255, 255, 0.22);
}

/* ===== 模块 03 比分追踪 ===== */
.product-feature--scores {
  background: var(--color-bg);
}

/* ===== 模块 04 安卓新版（手机模型） ===== */
.product-feature--android {
  background: var(--color-surface);
}

.product-feature__media--phone {
  padding: 8px 0 16px;
}

.phone-stage {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.phone-stage__chip {
  display: inline-flex;
  align-items: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 13px;
  font-weight: 800;
  color: var(--color-ink);
  box-shadow: var(--shadow-sm);
}

.phone-shell {
  position: relative;
  flex: 0 0 auto;
  width: 168px;
  background: var(--color-ink);
  border-radius: 24px;
  padding: 8px 8px 4px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 40px rgba(11, 31, 23, 0.3), 0 4px 10px rgba(0, 0, 0, 0.18);
}

.phone-shell__notch {
  display: block;
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 58px;
  height: 12px;
  background: var(--color-ink);
  border-radius: 9px;
  z-index: 2;
}

.phone-shell__screen {
  width: 100%;
  border-radius: 17px;
  overflow: hidden;
  background: var(--color-bg);
}

.phone-shell__img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 2;
  object-fit: cover;
}

.phone-shell__home {
  display: block;
  width: 28px;
  height: 4px;
  background: rgba(255, 255, 255, 0.24);
  border-radius: 2px;
  margin: 6px auto 4px;
}

/* ===== 安卓下载：二维码弹层 ===== */
.android-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 26px;
}

.qr-pop {
  margin-top: 12px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  padding: 12px;
  text-align: center;
}

.qr-pop__img {
  display: block;
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 8px;
}

.qr-pop__hint {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-muted);
}

.product-feature__note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--color-text-muted);
}

/* ===== 新用户查赛程攻略 ===== */
.quickstart {
  background: var(--color-bg);
  padding: 60px 0 28px;
}

.quickstart__inner {
  width: min(1200px, 100%);
  margin-inline: auto;
  padding: 0 20px;
}

.quickstart__head {
  margin-bottom: 28px;
}

.quickstart__eyebrow {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.quickstart__head h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.4vw, 34px);
  color: var(--color-ink);
  line-height: 1.2;
  margin-bottom: 10px;
}

.quickstart__lead {
  color: var(--color-text-muted);
  max-width: 560px;
  line-height: 1.65;
}

.quickstart__steps {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  margin-inline: -20px;
  padding-inline: 20px;
  padding-bottom: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary) transparent;
  -webkit-overflow-scrolling: touch;
}

.quickstart__step {
  flex: 0 0 84%;
  scroll-snap-align: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 24px;
}

.quickstart__step-num {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--color-primary);
  color: var(--color-ink);
  font-family: var(--font-head);
  font-size: 22px;
  margin-bottom: 16px;
}

.quickstart__step--accent .quickstart__step-num {
  background: var(--color-accent);
}

.quickstart__step--accent {
  border-top: 3px solid var(--color-accent);
}

.quickstart__step h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-ink);
  margin-bottom: 10px;
}

.quickstart__step p {
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.65;
}

.quickstart__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* ===== 联系与信任 ===== */
.support-banner {
  background: var(--color-ink);
  color: #ffffff;
  padding: 56px 0;
}

.support-banner__inner {
  width: min(1200px, 100%);
  margin-inline: auto;
  padding: 0 20px;
  display: grid;
  gap: 28px;
}

.support-banner__eyebrow {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.support-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.4vw, 34px);
  line-height: 1.2;
  color: #ffffff;
  max-width: 600px;
  margin-bottom: 12px;
}

.support-banner__lead {
  color: rgba(255, 255, 255, 0.74);
  max-width: 560px;
  line-height: 1.7;
}

.support-banner__contact {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.support-banner__contact li {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
}

.support-banner__contact span {
  min-width: 88px;
  color: var(--color-highlight);
  font-weight: 800;
  font-size: 14px;
}

.support-banner__note {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
}

.support-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.support-banner__trust {
  background: rgba(139, 195, 74, 0.1);
  border: 1px solid rgba(139, 195, 74, 0.3);
  border-radius: 18px;
  padding: 24px;
}

.support-banner__trust-eyebrow {
  color: var(--color-primary);
  font-weight: 800;
  margin-bottom: 14px;
}

.support-banner__trust-list {
  display: grid;
  gap: 14px;
}

.support-banner__trust-list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.support-banner__trust-list strong {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 28px;
  color: var(--color-accent);
  letter-spacing: -0.02em;
  min-width: 72px;
  font-variant-numeric: tabular-nums;
}

.support-banner__trust-list span {
  color: rgba(255, 255, 255, 0.78);
}

/* ===== 平板及以上 ===== */
@media (min-width: 860px) {
  .product-feature__inner {
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
    gap: clamp(48px, 7vw, 100px);
    padding: 104px 32px;
  }

  .product-feature__inner--reverse {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  }

  .product-feature__inner--reverse .product-feature__media {
    order: 2;
  }

  .product-feature__inner--reverse .product-feature__body {
    order: 1;
  }

  .product-feature--highlights .product-feature__inner {
    padding-top: 108px;
    padding-bottom: 108px;
  }

  .product-feature--android .product-feature__inner {
    padding-top: 112px;
    padding-bottom: 112px;
  }

  .product-feature--schedule .product-feature__media {
    transform: translateY(18px);
  }

  .product-feature--scores .product-feature__media {
    transform: translateY(-14px);
  }

  .product-feature--highlights .product-feature__media {
    transform: translateY(16px);
  }

  .product-feature--android .product-feature__media {
    transform: translateY(-18px);
  }

  .product-feature__ghost {
    font-size: 128px;
    top: -42px;
    left: -10px;
  }

  .product-shot--tilt {
    transform: rotate(1.5deg) translateX(12px);
  }

  .product-shot--tilt-left {
    transform: rotate(-1.5deg) translateX(-12px);
  }

  .product-feature__deco {
    display: block;
    position: absolute;
    pointer-events: none;
    z-index: 0;
  }

  .product-feature__deco--tick {
    top: -16px;
    right: -26px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle at 1px 1px, var(--color-accent) 2px, transparent 2px);
    background-size: 16px 16px;
    opacity: 0.4;
  }

  .product-feature__deco--line {
    right: 14px;
    bottom: -22px;
    width: 90px;
    height: 90px;
    border-right: 3px solid var(--color-accent);
    border-bottom: 3px solid var(--color-accent);
    border-radius: 0 0 18px 0;
    transform: rotate(8deg);
  }

  .product-feature__deco--pulse {
    top: 18px;
    right: -46px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-accent);
    box-shadow: 0 0 0 14px rgba(255, 152, 0, 0.18), 0 0 0 30px rgba(255, 152, 0, 0.08);
  }

  /* 手机模型桌面布局 */
  .product-feature__media--phone {
    padding: 40px 10px;
  }

  .phone-stage {
    display: grid;
    place-items: center;
  }

  .phone-stage__chip {
    position: absolute;
  }

  .phone-stage__chip--reg {
    left: 0;
    top: 4%;
  }

  .phone-stage__chip--fav {
    right: 0;
    top: 34%;
  }

  .phone-stage__chip--alert {
    left: 0;
    bottom: 6%;
  }

  .phone-shell {
    width: 216px;
    padding: 10px 10px 6px;
    border-radius: 30px;
  }

  .phone-shell__home {
    margin-top: 8px;
    margin-bottom: 6px;
  }

  /* 安卓二维码桌面弹层 */
  .android-cta {
    position: relative;
  }

  .qr-pop {
    position: absolute;
    bottom: calc(100% + 14px);
    left: 0;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 6;
  }

  .android-cta__btn:hover + .qr-pop,
  .android-cta__btn:focus-visible + .qr-pop,
  .qr-pop:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* 支持横幅桌面 */
  .support-banner {
    padding: 76px 0;
  }

  .support-banner__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.65fr);
    gap: 56px;
    align-items: center;
  }
}

/* ===== 宽屏桌面 ===== */
@media (min-width: 960px) {
  .hero-products {
    padding: 40px 0 76px;
  }

  .hero-products__inner {
    padding: 0 32px;
  }

  .hero-products__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
    gap: 48px;
    align-items: center;
    margin-top: 20px;
  }

  .hero-products__tickets {
    display: grid;
    gap: 12px;
    margin: 0;
    overflow: visible;
  }

  .hero-ticket {
    flex: 1;
    scroll-snap-align: none;
  }

  .hero-ticket--mid {
    margin-left: 36px;
  }

  .hero-products h1 {
    max-width: 760px;
  }

  .quickstart {
    padding: 88px 0 44px;
  }

  .quickstart__inner {
    padding: 0 32px;
  }

  .quickstart__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    overflow: visible;
    margin-inline: 0;
    padding-inline: 0;
  }

  .quickstart__step {
    flex: 1;
  }

  .quickstart__step--accent {
    transform: translateY(14px);
  }

  .support-banner__inner {
    padding: 0 32px;
  }
}
