/* ===== 赛季服务清单 /products ===== */
.page-products {
  --off-line: 1px solid var(--scale);
  padding-bottom: 88px;
}

/* ---- 首屏 ---- */
.page-products .off-hero {
  display: grid;
  gap: 34px;
  padding: 42px 0 38px;
  border-bottom: var(--off-line);
}

.page-products .off-hero-copy {
  min-width: 0;
}

.page-products .off-hero h1 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(32px, 6.6vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.012em;
  margin: 14px 0 0;
  color: var(--paper);
  max-width: 20ch;
}

.page-products .off-lede {
  margin: 20px 0 0;
  max-width: 62ch;
  font-size: 17px;
  line-height: 1.75;
  color: var(--mist);
}

.page-products .off-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

/* 首屏右侧：赛季跨度刻度 */
.page-products .off-span {
  border: var(--off-line);
  background: var(--deep);
  padding: 20px 18px;
}

.page-products .off-span-row {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.page-products .off-span-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--mist);
}

.page-products .off-span-bar {
  position: relative;
  height: 14px;
  background: var(--tier);
  overflow: hidden;
}

.page-products .off-span-bar::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 84%;
}

.page-products .off-span-bar--reg::after {
  background: var(--lime);
}

.page-products .off-span-bar--post::after {
  width: 32%;
  background: var(--orange);
}

.page-products .off-span-axis {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 10px;
  border-top: 1px dashed var(--scale);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mist);
}

/* ---- 数据条 ---- */
.page-products .off-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--scale);
  border: var(--off-line);
  margin: 0;
}

.page-products .off-stat {
  background: var(--ink);
  padding: 18px 16px;
}

.page-products .off-stat dt {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--mist);
}

.page-products .off-stat-num {
  margin: 6px 0 0;
  font-family: var(--font-mono);
  font-size: 26px;
  line-height: 1.1;
  color: var(--paper);
}

/* ---- 主体布局 ---- */
.page-products .off-layout {
  padding-top: 30px;
}

.page-products .off-index {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 26px;
  border-bottom: var(--off-line);
  scrollbar-width: none;
}

.page-products .off-index::-webkit-scrollbar {
  display: none;
}

.page-products .off-index a {
  flex: 0 0 auto;
  display: block;
  padding: 7px 12px;
  border: 1px solid var(--scale);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--mist);
  transition: color 0.12s ease-out, background-color 0.12s ease-out, border-color 0.12s ease-out;
}

.page-products .off-index a:hover {
  color: var(--paper);
  border-color: var(--teal);
}

.page-products .off-index a[aria-current="true"],
.page-products .off-index a[aria-current="page"] {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

/* ---- 章节 ---- */
.page-products .off-section {
  padding: 46px 0;
  border-top: var(--off-line);
}

.page-products .off-section:first-child {
  border-top: 0;
  padding-top: 0;
}

.page-products .off-section--deep {
  background: var(--deep);
  padding-left: 20px;
  padding-right: 20px;
  margin-left: -20px;
  margin-right: -20px;
}

.page-products .off-section .section-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(26px, 4.2vw, 40px);
  line-height: 1.16;
  letter-spacing: -0.008em;
  color: var(--paper);
  margin: 10px 0 0;
  max-width: 26ch;
}

.page-products .section-kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--lime);
}

.page-products .off-lead {
  margin: 20px 0 0;
  font-size: 16px;
  line-height: 1.78;
  color: var(--mist);
  max-width: 64ch;
}

.page-products .off-split-main p + p {
  margin-top: 14px;
}

.page-products .off-split-main p {
  font-size: 15px;
  line-height: 1.78;
  color: var(--mist);
  max-width: 64ch;
}

/* ---- 分栏 ---- */
.page-products .off-split {
  display: grid;
  gap: 28px;
  margin-top: 24px;
}

/* ---- 图片 ---- */
.page-products .off-figure {
  margin: 0;
}

.page-products .off-figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border: var(--off-line);
  filter: saturate(0.55) contrast(1.05);
}

.page-products .off-figure--wide img {
  aspect-ratio: 16 / 6;
}

.page-products .off-figure--square img {
  aspect-ratio: 1 / 1;
}

.page-products .off-figure--plate img {
  aspect-ratio: 3 / 2;
  background: var(--deep);
}

.page-products .off-figure--tall img {
  aspect-ratio: 3 / 4;
}

.page-products .off-figure .media-caption {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--mist);
}

/* ---- 字段清单 ---- */
.page-products .off-field-grid {
  margin-top: 28px;
  border-top: var(--off-line);
}

.page-products .off-field-head {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 14px;
  padding: 10px 8px;
  border-bottom: var(--off-line);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--mist);
}

.page-products .off-field-row {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 14px;
  padding: 11px 8px;
  margin: 0 -8px;
  border-bottom: 1px solid var(--tier);
  transition: background-color 0.12s ease-out;
}

.page-products .off-field-row:hover {
  background: var(--deep);
}

.page-products .off-field-name {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--lime);
}

.page-products .off-field-val {
  font-size: 14px;
  line-height: 1.62;
  color: var(--mist);
}

/* ---- 季票对比表 ---- */
.page-products .off-tier-wrap {
  margin-top: 28px;
  border-top: var(--off-line);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.page-products .off-tier-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 14px;
}

.page-products .off-tier-table thead th {
  padding: 12px 12px 12px 0;
  text-align: left;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--mist);
  border-bottom: var(--off-line);
  white-space: nowrap;
}

.page-products .off-tier-table tbody th,
.page-products .off-tier-table tbody td {
  padding: 16px 12px 16px 0;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--tier);
  line-height: 1.65;
  color: var(--mist);
}

.page-products .off-tier-table tbody tr {
  transition: background-color 0.12s ease-out;
}

.page-products .off-tier-table tbody tr:hover {
  background: var(--tier);
}

.page-products .off-tier-table tbody tr:hover th,
.page-products .off-tier-table tbody tr:hover td {
  color: var(--paper);
}

.page-products .off-tier-name {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 600;
  color: var(--paper);
  white-space: nowrap;
}

.page-products .off-bar {
  display: block;
  position: relative;
  height: 10px;
  min-width: 96px;
  background: var(--tier);
}

.page-products .off-bar-fill {
  display: block;
  height: 100%;
  width: 32%;
  background: var(--mist);
}

.page-products .off-tier-table tbody tr:nth-child(2) .off-bar-fill {
  width: 52%;
  background: var(--paper);
}

.page-products .off-tier-table tbody tr:nth-child(3) .off-bar-fill {
  width: 76%;
  background: var(--lime);
}

.page-products .off-tier-table tbody tr:nth-child(4) .off-bar-fill {
  width: 100%;
  background: var(--orange);
}

.page-products .off-note {
  margin: 16px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--mist);
  max-width: 64ch;
}

/* ---- 日历周视图 ---- */
.page-products .off-weekview {
  margin-top: 26px;
  border: var(--off-line);
  background: var(--deep);
  padding: 14px;
}

.page-products .off-week-head,
.page-products .off-week-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}

.page-products .off-week-head span {
  padding-bottom: 8px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--mist);
}

.page-products .off-day {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--tier);
  border: 1px solid var(--scale);
}

.page-products .off-day--match::after,
.page-products .off-day--live::after {
  content: "";
  position: absolute;
  right: 4px;
  bottom: 4px;
  width: 6px;
  height: 6px;
}

.page-products .off-day--match::after {
  background: var(--lime);
}

.page-products .off-day--live {
  background: var(--ink);
  border-color: var(--orange);
}

.page-products .off-day--live::after {
  background: var(--orange);
}

.page-products .off-check {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
}

.page-products .off-check li {
  position: relative;
  padding: 0 0 0 18px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.72;
  color: var(--mist);
}

.page-products .off-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 2px;
  background: var(--lime);
}

.page-products .off-check strong {
  color: var(--paper);
  font-weight: 600;
}

/* ---- 呼吸区 ---- */
.page-products .off-quote {
  margin: 0;
  padding: 46px 0;
  border-top: var(--off-line);
  border-bottom: var(--off-line);
}

.page-products .off-quote p {
  margin: 0;
  max-width: 34ch;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(22px, 3.6vw, 34px);
  line-height: 1.34;
  color: var(--paper);
}

/* ---- 赛前指标 ---- */
.page-products .off-preview-grid {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.page-products .off-metric {
  border-top: 2px solid var(--scale);
  padding-top: 14px;
}

.page-products .off-metric h3 {
  margin: 0 0 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 19px;
  color: var(--lime);
}

.page-products .off-metric p {
  margin: 0;
  font-size: 14px;
  line-height: 1.72;
  color: var(--mist);
}

/* ---- 流程步骤 ---- */
.page-products .off-steps {
  list-style: none;
  margin: 28px 0 0;
  padding: 0 0 0 24px;
  border-left: 1px solid var(--scale);
}

.page-products .off-step {
  position: relative;
  padding-bottom: 28px;
}

.page-products .off-step:last-child {
  padding-bottom: 0;
}

.page-products .off-step::before {
  content: "";
  position: absolute;
  left: -29px;
  top: 7px;
  width: 9px;
  height: 9px;
  border: 1px solid var(--lime);
  border-radius: 50%;
  background: var(--ink);
}

.page-products .off-step-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--lime);
}

.page-products .off-step-title {
  margin: 6px 0 6px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  color: var(--paper);
}

.page-products .off-step p {
  margin: 0;
  max-width: 58ch;
  font-size: 14px;
  line-height: 1.72;
  color: var(--mist);
}

.page-products .off-timing {
  margin: 34px 0 0;
  border-top: var(--off-line);
}

.page-products .off-timing > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--tier);
}

.page-products .off-timing dt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--paper);
}

.page-products .off-timing dd {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--lime);
  text-align: right;
  white-space: nowrap;
}

/* ---- 适用场景 ---- */
.page-products .off-scenes {
  display: grid;
  gap: 1px;
  margin-top: 28px;
  background: var(--scale);
  border: var(--off-line);
}

.page-products .off-scene {
  background: var(--ink);
  border-left: 2px solid transparent;
  padding: 24px 20px;
  transition: background-color 0.12s ease-out, border-color 0.12s ease-out;
}

.page-products .off-scene:hover {
  background: var(--deep);
  border-left-color: var(--lime);
}

.page-products .off-scene-role {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--lime);
}

.page-products .off-scene h3 {
  margin: 8px 0 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 21px;
  line-height: 1.3;
  color: var(--paper);
}

.page-products .off-scene p {
  margin: 0;
  font-size: 14px;
  line-height: 1.72;
  color: var(--mist);
}

/* ---- 合作入口 ---- */
.page-products .off-cta {
  margin-top: 36px;
  padding: 26px 22px;
  border: var(--off-line);
  background: var(--deep);
}

.page-products .off-cta-title {
  margin: 0 0 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.28;
  color: var(--paper);
}

.page-products .off-cta p {
  margin: 0;
  max-width: 62ch;
  font-size: 15px;
  line-height: 1.75;
  color: var(--mist);
}

.page-products .off-cta .copy-btn {
  margin-top: 18px;
}

.page-products .off-cta-note {
  margin-top: 16px !important;
  font-size: 13px !important;
  line-height: 1.7 !important;
}

.page-products .off-cta-note a {
  color: var(--lime);
  text-decoration: none;
  border-bottom: 1px solid var(--teal);
  transition: color 0.12s ease-out, border-color 0.12s ease-out;
}

.page-products .off-cta-note a:hover {
  color: var(--paper);
  border-bottom-color: var(--lime);
}

/* ===== 断点：600px ===== */
@media (min-width: 600px) {
  .page-products .off-section--deep {
    padding-left: 30px;
    padding-right: 30px;
    margin-left: -30px;
    margin-right: -30px;
  }

  .page-products .off-field-head,
  .page-products .off-field-row {
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 18px;
  }

  .page-products .off-scenes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-products .off-cta {
    padding: 30px 28px;
  }
}

/* ===== 断点：760px ===== */
@media (min-width: 760px) {
  .page-products .off-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .page-products .off-stat {
    padding: 22px 20px;
  }

  .page-products .off-stat-num {
    font-size: 30px;
  }

  .page-products .off-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
  }
}

/* ===== 断点：860px ===== */
@media (min-width: 860px) {
  .page-products .off-scenes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ===== 断点：980px ===== */
@media (min-width: 980px) {
  .page-products .off-hero {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 56px;
    align-items: end;
    padding: 56px 0 46px;
  }

  .page-products .off-span {
    padding: 24px 22px;
  }

  .page-products .off-split {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    gap: 46px;
    align-items: start;
  }

  .page-products .off-split--reverse {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  }

  .page-products .off-field-head,
  .page-products .off-field-row {
    grid-template-columns: 148px minmax(0, 1fr);
  }
}

/* ===== 断点：1024px —— 侧栏索引变为纵向轨道 ===== */
@media (min-width: 1024px) {
  .page-products .off-layout {
    display: grid;
    grid-template-columns: 184px minmax(0, 1fr);
    gap: 48px;
    align-items: start;
    padding-top: 38px;
  }

  .page-products .off-index {
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow: visible;
    margin: 0;
    padding: 0 0 0 16px;
    border-bottom: 0;
    border-left: 1px solid var(--scale);
    position: sticky;
    top: 28px;
    align-self: start;
  }

  .page-products .off-index a {
    border: 0;
    border-left: 2px solid transparent;
    padding: 8px 10px;
    background: transparent;
  }

  .page-products .off-index a:hover {
    color: var(--lime);
    border-left-color: var(--teal);
  }

  .page-products .off-index a[aria-current="true"],
  .page-products .off-index a[aria-current="page"] {
    background: transparent;
    color: var(--lime);
    border-left-color: var(--lime);
  }

  .page-products .off-section {
    padding: 56px 0;
  }

  .page-products .off-quote {
    padding: 56px 0;
  }
}

/* ===== 窄屏微调 ===== */
@media (max-width: 599px) {
  .page-products .off-timing > div {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
  }

  .page-products .off-timing dd {
    text-align: left;
    white-space: normal;
  }

  .page-products .off-field-head,
  .page-products .off-field-row {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
  }

  .page-products .off-span-row {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 10px;
  }

  .page-products .off-cta {
    padding: 22px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-products .off-index a,
  .page-products .off-field-row,
  .page-products .off-tier-table tbody tr,
  .page-products .off-scene,
  .page-products .off-cta-note a {
    transition: none;
  }
}
