.page-products {
  --pl-slice: 28px;
  --pl-soft-green: #E9F5EE;
  --pl-grad-green: #33B86B;
  position: relative;
  background: var(--paper);
  overflow-x: hidden;
}

.page-products .container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 24px;
}

.page-products .breadcrumb {
  padding-top: calc(var(--header-height) + 28px);
  padding-bottom: 12px;
  font-size: 0.875rem;
  color: var(--muted-text);
}

.page-products .breadcrumb a {
  color: var(--pitch-green);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid rgba(30, 152, 79, 0.35);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.page-products .breadcrumb a:hover {
  color: var(--deep-blue);
  border-color: var(--deep-blue);
}

.page-products .breadcrumb [aria-current="page"] {
  color: var(--deep-blue);
  font-weight: 800;
}

.page-products h1,
.page-products h2,
.page-products h3 {
  font-family: var(--font-title);
  letter-spacing: -0.02em;
}

.page-products strong {
  font-weight: 800;
}

.page-products .data-num {
  font-family: var(--font-data);
  font-style: italic;
  font-weight: 700;
}

.page-products .tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.4;
  white-space: nowrap;
}

.page-products .tag--yellow {
  color: #14213D;
  background: var(--sun-yellow);
}

.page-products .tag--green {
  color: #fff;
  background: var(--pitch-green);
}

.page-products .tag--orange {
  color: #14213D;
  background: var(--orange);
}

.page-products .tag--wine {
  color: #fff;
  background: var(--wine-red);
}

/* ── 01 选择你的球场视野 ── */
.page-products .pl-stage {
  position: relative;
  background: linear-gradient(135deg, var(--deep-blue) 0%, #0D2C5E 58%, #13386E 100%);
  color: #fff;
  padding: 56px 0 96px;
  overflow: hidden;
}

.page-products .pl-stage::before {
  content: "";
  position: absolute;
  top: 0;
  right: -8%;
  width: 48%;
  height: 100%;
  background:
    linear-gradient(115deg,
      transparent 0 16%,
      rgba(30, 152, 79, 0.28) 16% 32%,
      transparent 32% 54%,
      rgba(242, 201, 76, 0.14) 54% 68%,
      transparent 68% 100%);
  transform: skewX(-12deg);
  pointer-events: none;
}

.page-products .pl-stage::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--pl-slice);
  background: linear-gradient(115deg, var(--paper) 0 46%, var(--pitch-green) 46% 48%, var(--paper) 48% 62%, var(--sun-yellow) 62% 63%, var(--paper) 63% 100%);
  opacity: 0.92;
  pointer-events: none;
}

.page-products .pl-stage__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.page-products .pl-stage__eyebrow {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pitch-green-light);
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.page-products .pl-stage__eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: var(--pitch-green-light);
  display: inline-block;
}

.page-products .pl-stage h1 {
  font-weight: 900;
  font-size: clamp(2.4rem, 6.4vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: #fff;
  margin: 0 0 12px;
}

.page-products .pl-stage__subtitle {
  font-size: clamp(1.15rem, 2.6vw, 1.75rem);
  font-weight: 800;
  color: var(--pitch-green-light);
  margin: 0 0 20px;
}

.page-products .pl-stage__lead {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  max-width: 34em;
  margin: 0 0 26px;
}

.page-products .pl-stage__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-products .pl-switch {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.page-products .pl-mode__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.page-products .pl-mode__head h2 {
  font-size: 1.35rem;
  font-weight: 900;
  color: #fff;
  margin: 0;
}

.page-products .pl-mode__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--pitch-green-light);
  color: var(--pitch-green-light);
  font-family: var(--font-data);
  font-style: italic;
  font-weight: 700;
  border-radius: 6px;
  font-size: 0.85rem;
  transform: skewX(-6deg);
}

.page-products .pl-mode p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 16px;
  line-height: 1.7;
}

.page-products .pl-mode__spec {
  margin: 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.25);
}

.page-products .pl-mode__spec > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.18);
  font-size: 0.875rem;
}

.page-products .pl-mode__spec dt {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

.page-products .pl-mode__spec dd {
  margin: 0;
  color: #fff;
  font-weight: 700;
}

.page-products .pl-mode__divider {
  display: none;
}

.page-products .pl-switch__note {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.64);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 14px;
  margin: 0;
  line-height: 1.7;
}

.page-products .pl-switch__note a {
  color: var(--sun-yellow);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(242, 201, 76, 0.4);
  transition: border-color 0.2s ease;
}

.page-products .pl-switch__note a:hover {
  border-color: var(--sun-yellow);
}

/* ── 02 核心功能矩阵 ── */
.page-products .pl-band {
  background: var(--paper);
  padding: 68px 0 88px;
  position: relative;
}

.page-products .pl-band::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--pitch-green) 0%, var(--pitch-green-light) 35%, transparent 35% 62%, var(--orange) 62% 78%, transparent 78%);
  margin-bottom: 50px;
}

.page-products .pl-band__intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  margin-bottom: 36px;
}

.page-products .pl-band__num {
  font-family: var(--font-data);
  font-style: italic;
  color: var(--pitch-green);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 6px;
}

.page-products .pl-band__intro .section-title {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.page-products .pl-band__intro > p:last-child {
  margin: 0;
  color: var(--muted-text);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 42em;
}

.page-products .pl-band__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.page-products .pl-feature {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px 22px;
  border-radius: 14px;
  min-height: 260px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.page-products .pl-feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.page-products .pl-feature__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
}

.page-products .pl-feature__index {
  font-family: var(--font-data);
  font-weight: 700;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--pitch-green);
}

.page-products .pl-feature h3 {
  font-family: var(--font-title);
  font-size: 1.45rem;
  font-weight: 900;
  margin: 0 0 10px;
  color: var(--deep-blue);
}

.page-products .pl-feature__desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--muted-text);
  margin: 0 0 18px;
}

.page-products .pl-feature__stat {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.page-products .pl-feature__stat .data-num {
  font-size: 2rem;
  color: var(--deep-blue);
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.page-products .pl-feature__stat span:last-child {
  font-size: 0.8rem;
  color: var(--muted-text);
  font-weight: 600;
}

.page-products .pl-feature__devices {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  margin-top: 14px;
  font-size: 0.74rem;
  color: var(--pitch-green);
  border-top: 1px dashed var(--line);
}

.page-products .pl-feature__devices span {
  display: inline-block;
  padding-top: 10px;
  font-weight: 700;
}

.page-products .pl-feature:hover .pl-feature__devices,
.page-products .pl-feature:focus-within .pl-feature__devices {
  max-height: 50px;
  opacity: 1;
}

.page-products .pl-feature--catalog {
  background: linear-gradient(135deg, var(--deep-blue) 0%, #12305E 100%);
  border-color: transparent;
  color: #fff;
  overflow: hidden;
}

.page-products .pl-feature--catalog::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 152, 79, 0.45) 0%, transparent 70%);
  pointer-events: none;
}

.page-products .pl-feature--catalog .pl-feature__index,
.page-products .pl-feature--lineup .pl-feature__index {
  color: var(--sun-yellow);
}

.page-products .pl-feature--catalog h3,
.page-products .pl-feature--lineup h3 {
  color: #fff;
}

.page-products .pl-feature--catalog .pl-feature__desc,
.page-products .pl-feature--lineup .pl-feature__desc {
  color: rgba(255, 255, 255, 0.82);
}

.page-products .pl-feature--catalog .pl-feature__stat .data-num,
.page-products .pl-feature--lineup .pl-feature__stat .data-num {
  color: var(--sun-yellow);
}

.page-products .pl-feature--catalog .pl-feature__stat span:last-child,
.page-products .pl-feature--lineup .pl-feature__stat span:last-child {
  color: rgba(255, 255, 255, 0.75);
}

.page-products .pl-feature--live {
  background: linear-gradient(0deg, #FDFEFD 0%, #F1F8F2 100%);
  border-top: 3px solid var(--pitch-green);
}

.page-products .pl-feature--lineup {
  background: linear-gradient(135deg, var(--wine-red) 0%, #8A2B50 100%);
  border-color: transparent;
  color: #fff;
}

.page-products .pl-feature--news {
  background: #fff;
  border-top: 3px solid var(--sun-yellow);
}

.page-products .pl-shot {
  position: relative;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--deep-blue);
  box-shadow: var(--shadow-md);
}

.page-products .pl-shot img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-products .pl-shot figcaption {
  font-size: 0.74rem;
  color: #fff;
  background: linear-gradient(0deg, rgba(10, 31, 68, 0.82), transparent 70%);
  padding: 12px 14px 14px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  letter-spacing: 0.04em;
}

/* ── 03 版本与设备适配 ── */
.page-products .pl-devices {
  background: #EDF2EE;
  padding: 72px 0 88px;
}

.page-products .pl-devices__intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 34px;
}

.page-products .pl-devices__lead {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-products .pl-devices__num {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
  color: var(--muted-text);
  font-size: 0.85rem;
}

.page-products .pl-devices__num .data-num {
  font-size: 2.3rem;
  font-style: italic;
  font-weight: 800;
  color: var(--deep-blue);
  line-height: 1;
}

.page-products .pl-devices__meta {
  font-family: var(--font-data);
  font-size: 0.82rem;
  color: var(--pitch-green);
  letter-spacing: 0.04em;
  margin: 0;
}

.page-products .pl-devices__intro .section-title {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.page-products .pl-devices__intro > p:last-child {
  margin: 0;
  color: var(--muted-text);
  line-height: 1.7;
  font-size: 0.95rem;
  max-width: 44em;
}

.page-products .pl-devices__hero {
  margin: 0 0 40px;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  background: var(--deep-blue);
}

.page-products .pl-devices__hero img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-products .pl-devices__hero figcaption {
  font-size: 0.78rem;
  color: #fff;
  background: linear-gradient(0deg, rgba(10, 31, 68, 0.8), transparent 75%);
  padding: 12px 16px 14px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  letter-spacing: 0.04em;
}

.page-products .pl-devices__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.page-products .pl-devices__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-products .pl-device {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
}

.page-products .pl-device h3 {
  font-family: var(--font-title);
  font-size: 1.25rem;
  margin: 0 0 8px;
  color: var(--deep-blue);
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-products .pl-device h3::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 20px;
  border-radius: 3px;
  background: var(--pitch-green);
  flex: none;
}

.page-products .pl-device p {
  font-size: 0.88rem;
  color: var(--muted-text);
  line-height: 1.65;
  margin-bottom: 14px;
}

.page-products .pl-device ul {
  list-style: none;
  margin: 0;
  padding: 12px 0 0;
  border-top: 1px dashed var(--line);
}

.page-products .pl-device li {
  font-size: 0.85rem;
  color: var(--muted-text);
  padding: 4px 0;
  display: flex;
  gap: 8px;
  align-items: baseline;
}

.page-products .pl-device li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pitch-green);
  flex: none;
}

.page-products .pl-devices__history {
  grid-column: 1 / -1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.page-products .pl-devices__history summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 800;
  font-family: var(--font-title);
  color: var(--deep-blue);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s ease;
}

.page-products .pl-devices__history summary::-webkit-details-marker {
  display: none;
}

.page-products .pl-devices__history summary::before {
  content: "＋";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--pitch-green);
  color: #fff;
  font-size: 0.8rem;
  line-height: 1;
}

.page-products .pl-devices__history[open] summary::before {
  content: "－";
}

.page-products .pl-devices__history ul {
  list-style: none;
  margin: 0;
  padding: 0 20px 20px 52px;
}

.page-products .pl-devices__history li {
  font-size: 0.88rem;
  color: var(--muted-text);
  padding: 7px 0;
  border-top: 1px dashed var(--line);
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.page-products .pl-devices__history li .data-num {
  font-style: italic;
  color: var(--pitch-green);
  font-weight: 700;
  flex: none;
}

.page-products .pl-devices__shot {
  margin: 0;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  background: var(--deep-blue);
  max-width: 340px;
  margin-inline: auto;
}

.page-products .pl-devices__shot img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-products .pl-devices__shot figcaption {
  font-size: 0.74rem;
  color: #fff;
  background: linear-gradient(0deg, rgba(10, 31, 68, 0.82), transparent 70%);
  padding: 12px 14px 14px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  letter-spacing: 0.04em;
}

/* ── 04 首次入口通道设置 ── */
.page-products .pl-setup {
  position: relative;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--deep-blue) 100%);
  color: #fff;
  padding: 76px 0 92px;
  overflow: hidden;
}

.page-products .pl-setup::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
  height: 100%;
  background: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.05) 0 2px, transparent 2px 14px);
  pointer-events: none;
}

.page-products .pl-setup__intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 44px;
}

.page-products .pl-setup__num {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.page-products .pl-setup__num .data-num {
  font-family: var(--font-data);
  font-style: italic;
  font-weight: 800;
  font-size: 2.1rem;
  color: var(--sun-yellow);
  line-height: 1;
}

.page-products .pl-setup__headline .section-title {
  color: #fff;
  margin: 0 0 8px;
}

.page-products .pl-setup__headline p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 44em;
}

.page-products .pl-setup__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.page-products .pl-setup__steps {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-products .pl-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.22);
}

.page-products .pl-step:first-child {
  padding-top: 0;
}

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

.page-products .pl-step__num {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--pitch-green);
  color: #fff;
  font-family: var(--font-data);
  font-style: italic;
  font-weight: 700;
  font-size: 1.05rem;
  transform: skewX(-6deg);
  box-shadow: 0 6px 14px rgba(30, 152, 79, 0.4);
}

.page-products .pl-step__body h3 {
  color: #fff;
  font-family: var(--font-title);
  font-size: 1.3rem;
  margin: 0 0 6px;
  font-weight: 900;
}

.page-products .pl-step__body p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  line-height: 1.7;
}

.page-products .pl-setup__guide {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 18px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.page-products .pl-setup__shot {
  margin: 0 0 14px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-products .pl-setup__shot img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-products .pl-setup__shot figcaption {
  font-size: 0.74rem;
  color: #fff;
  background: linear-gradient(0deg, rgba(10, 31, 68, 0.82), transparent 70%);
  padding: 12px 14px 14px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  letter-spacing: 0.04em;
}

.page-products .pl-setup__guide > p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.page-products .pl-setup__guide a {
  color: var(--sun-yellow);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(242, 201, 76, 0.4);
  transition: border-color 0.2s ease;
}

.page-products .pl-setup__guide a:hover {
  border-color: var(--sun-yellow);
}

/* ── 05 更新日历 ── */
.page-products .pl-calendar {
  background: var(--paper);
  padding: 76px 0 88px;
}

.page-products .pl-calendar__intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 40px;
}

.page-products .pl-calendar__num {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
  color: var(--muted-text);
  font-size: 0.85rem;
}

.page-products .pl-calendar__num .data-num {
  font-size: 2.2rem;
  font-style: italic;
  font-weight: 800;
  color: var(--pitch-green);
  font-family: var(--font-data);
  line-height: 1;
}

.page-products .pl-calendar__headline .section-title {
  margin: 0 0 8px;
}

.page-products .pl-calendar__headline p {
  margin: 0;
  color: var(--muted-text);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 44em;
}

.page-products .pl-calendar__track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  position: relative;
  padding-left: 18px;
  border-left: 2px solid var(--line);
}

.page-products .pl-calendar__item {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 22px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.page-products .pl-calendar__item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.page-products .pl-calendar__item .tag {
  display: inline-block;
  margin-bottom: 10px;
}

.page-products .pl-calendar__item h3 {
  font-family: var(--font-title);
  font-size: 1.15rem;
  color: var(--deep-blue);
  margin: 0 0 6px;
}

.page-products .pl-calendar__item p {
  font-size: 0.86rem;
  color: var(--muted-text);
  line-height: 1.65;
  margin: 0;
}

.page-products .pl-calendar__note {
  margin-top: 40px;
  background: #EAF4ED;
  border-left: 4px solid var(--pitch-green);
  border-radius: 0 12px 12px 0;
  padding: 18px 22px;
}

.page-products .pl-calendar__note p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--deep-blue);
  line-height: 1.7;
}

.page-products .pl-calendar__note a {
  color: var(--pitch-green);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(30, 152, 79, 0.4);
  transition: border-color 0.2s ease;
}

.page-products .pl-calendar__note a:hover {
  border-color: var(--pitch-green);
}

/* ── 响应式扩展 ── */
@media (min-width: 600px) {
  .page-products .pl-devices__cards {
    grid-template-columns: 1fr 1fr;
  }

  .page-products .pl-calendar__track {
    grid-template-columns: 1fr 1fr;
    border-left: 0;
    padding-left: 0;
    gap: 20px;
  }

  .page-products .pl-setup__guide {
    padding: 22px;
  }
}

@media (min-width: 900px) {
  .page-products .pl-stage__inner {
    grid-template-columns: 1.08fr 0.92fr;
    gap: 56px;
    align-items: center;
  }

  .page-products .pl-switch {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    padding: 28px;
  }

  .page-products .pl-mode__divider {
    display: block;
    width: 1px;
    height: 100%;
    min-height: 180px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  }

  .page-products .pl-switch__note {
    grid-column: 1 / -1;
  }

  .page-products .pl-band__intro {
    grid-template-columns: 140px 1fr 2fr;
    align-items: end;
    gap: 22px;
  }

  .page-products .pl-band__num {
    margin: 0;
  }

  .page-products .pl-band__grid {
    grid-template-columns: repeat(12, 1fr);
    align-items: stretch;
  }

  .page-products .pl-feature--catalog {
    grid-column: span 4;
    min-height: 380px;
  }

  .page-products .pl-shot--home {
    grid-column: span 3;
    max-height: 620px;
  }

  .page-products .pl-feature--live {
    grid-column: span 5;
    min-height: 380px;
  }

  .page-products .pl-feature--lineup {
    grid-column: span 4;
    min-height: 340px;
  }

  .page-products .pl-shot--table {
    grid-column: span 3;
    max-height: 600px;
  }

  .page-products .pl-feature--news {
    grid-column: span 5;
    min-height: 340px;
  }

  .page-products .pl-shot img {
    height: 100%;
    max-height: 620px;
  }

  .page-products .pl-devices__intro {
    grid-template-columns: 180px 1fr 2fr;
    align-items: end;
    gap: 24px;
  }

  .page-products .pl-devices__grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
  }

  .page-products .pl-setup__intro {
    grid-template-columns: 140px 1fr;
    align-items: end;
  }

  .page-products .pl-setup__grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
    align-items: center;
  }

  .page-products .pl-calendar__intro {
    grid-template-columns: 170px 1fr;
    align-items: start;
  }
}

@media (hover: none) {
  .page-products .pl-feature__devices {
    max-height: 50px;
    opacity: 1;
  }
}
