/* ==========================================================
   BEPLAY「CN」首页 — 页面专属样式
   作用域：.page-home
   ========================================================== */

.page-home {
  --home-line: rgba(36, 50, 71, 0.32);
  --home-grid: 64px;
  --home-pad: clamp(64px, 8vw, 128px);
  --home-shadow: rgba(0, 0, 0, 0.55);
  --home-card-bg: #0B111D;

  position: relative;
  background: var(--deep-black);
  color: var(--silver);
  overflow-x: hidden;
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* 容器与公共组件在首页作用域内的微调 */
.page-home .container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.page-home .section__index {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--electric-blue);
}

.page-home .section__index::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--electric-blue);
}

.page-home .btn {
  border-radius: 0;
  font-weight: 500;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.25s, border-color 0.25s;
}

.page-home .btn--primary {
  background: var(--electric-blue);
  border: 1px solid var(--electric-blue);
  color: var(--deep-black);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.4);
}

.page-home .btn--primary:hover {
  background: #50C8FF;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.45);
  transform: translate(-2px, -2px);
}

.page-home .btn--ghost {
  background: transparent;
  border: 1px solid var(--divider);
  color: var(--silver);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.35);
}

.page-home .btn--ghost:hover {
  border-color: var(--electric-blue);
  color: var(--white);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.4);
  transform: translate(-2px, -2px);
}

.page-home .breadcrumb {
  margin: 0 0 24px;
  font-size: 13px;
}

.page-home .breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.page-home .breadcrumb__item a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.page-home .breadcrumb__item a:hover {
  color: var(--electric-blue);
}

.page-home .breadcrumb__item + .breadcrumb__item::before {
  content: '/';
  margin-right: 6px;
  color: var(--divider);
}

.page-home .breadcrumb__item[aria-current='page'] {
  color: var(--silver);
}

/* ---------- 首页首屏 ---------- */
.page-home .ph-hero {
  position: relative;
  min-height: calc(100vh - var(--header-total));
  padding-top: calc(var(--header-total) + 24px);
  display: flex;
  flex-direction: column;
  background: var(--deep-black);
  overflow: hidden;
}

.page-home .ph-hero__grid {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image:
    linear-gradient(to right, var(--home-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--home-line) 1px, transparent 1px);
  background-size: var(--home-grid) var(--home-grid);
  opacity: 0.5;
  pointer-events: none;
}

.page-home .ph-hero__grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 68% 38%, rgba(0, 163, 255, 0.06), transparent 65%);
}

.page-home .ph-hero__coords {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  font-family: var(--font-data);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: rgba(100, 116, 139, 0.65);
}

.page-home .ph-hero__coords span {
  position: absolute;
}

.page-home .ph-hero__coords span:nth-child(1) { top: 100px; left: 12px; }
.page-home .ph-hero__coords span:nth-child(2) { top: 100px; right: 12px; }
.page-home .ph-hero__coords span:nth-child(3) { bottom: 128px; left: 12px; }
.page-home .ph-hero__coords span:nth-child(4) { bottom: 128px; right: 12px; }

.page-home .ph-hero__container {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding-top: 16px;
  padding-bottom: 40px;
}

.page-home .ph-hero__masthead {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.page-home .ph-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.page-home .ph-hero__dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 2px;
  border-radius: 50%;
  background: var(--fluorescent-green);
  box-shadow: 0 0 12px rgba(57, 255, 20, 0.7);
}

.page-home .ph-hero__layout {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 40px;
}

.page-home .ph-hero__main {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-home .ph-hero__title {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.8rem, 12vw, 5.5rem);
  line-height: 0.94;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
}

.page-home .ph-hero__badge {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 6px 10px;
  border: 1px solid var(--divider);
  background: rgba(0, 163, 255, 0.08);
  font-family: var(--font-data);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--electric-blue);
}

.page-home .ph-hero__title-line {
  display: block;
}

.page-home .ph-hero__title-line--year {
  color: var(--electric-blue);
  text-shadow: 0 0 60px rgba(0, 163, 255, 0.35);
}

.page-home .ph-hero__lead {
  max-width: 560px;
  margin: 28px 0 0;
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  line-height: 1.85;
  color: var(--silver);
}

.page-home .ph-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}

.page-home .ph-hero__actions .btn {
  min-width: 180px;
  justify-content: center;
  padding: 14px 24px;
  font-size: 0.95rem;
  text-align: center;
}

.page-home .ph-hero__side {
  position: relative;
  display: flex;
  flex-direction: column;
}

.page-home .ph-hero__side-note {
  position: absolute;
  top: 0;
  right: -6px;
  z-index: 3;
  padding: 4px 6px;
  font-size: 10px;
  color: rgba(100, 116, 139, 0.75);
}

.page-home .ph-hero__visual {
  position: relative;
  width: 100%;
}

.page-home .ph-hero__visual-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.page-home .ph-hero__tags {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-home .ph-hero__coord {
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.12em;
  white-space: nowrap;
  color: var(--muted);
}

.page-home .ph-hero__image-wrap {
  position: relative;
  overflow: hidden;
  border: 2px solid #2C3E5B;
  background: var(--home-card-bg);
  box-shadow: 18px 18px 0 rgba(0, 0, 0, 0.5), 0 0 60px rgba(0, 163, 255, 0.06);
}

.page-home .ph-hero__image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(0, 163, 255, 0.1), transparent 40%);
}

.page-home .ph-hero__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .ph-hero__desc {
  margin: 18px 0 0;
  font-family: var(--font-data);
  font-size: 12px;
  line-height: 1.9;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.page-home .ph-hero__scroll {
  display: none;
}

/* ---------- 亮点区块 ---------- */
.page-home .ph-features {
  position: relative;
  padding-block: var(--home-pad);
  background: var(--home-card-bg);
}

.page-home .ph-section-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 44px;
}

.page-home .ph-section-title {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.8rem, 4.5vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--white);
}

.page-home .ph-section-desc {
  max-width: 720px;
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--silver);
}

.page-home .ph-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 3px solid var(--divider);
  border-bottom: 3px solid var(--divider);
}

.page-home .ph-feature {
  position: relative;
  padding: 28px 22px 30px;
  border-bottom: 1px solid var(--divider);
  transition: background 0.3s;
}

.page-home .ph-feature:last-child {
  border-bottom: 0;
}

.page-home .ph-feature__num {
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--electric-blue);
}

.page-home .ph-feature__title {
  margin: 14px 0 10px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--white);
}

.page-home .ph-feature__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--silver);
}

.page-home .ph-feature__metric-group {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 18px;
}

.page-home .ph-feature__metric {
  font-family: var(--font-data);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  color: var(--fluorescent-green);
}

.page-home .ph-feature__metric--text {
  font-size: 1.25rem;
  letter-spacing: 0.04em;
}

.page-home .ph-feature__metric-label {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.page-home .ph-feature__tag {
  margin-top: 20px;
}

.page-home .ph-features__media {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
}

.page-home .ph-features__media-frame {
  flex: 0 0 auto;
  width: 100%;
  max-width: 320px;
  border: 2px solid var(--divider);
  background: var(--deep-black);
  box-shadow: 12px 12px 0 var(--home-shadow);
}

.page-home .ph-features__media-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .ph-features__media-note {
  position: static;
  white-space: nowrap;
  color: rgba(100, 116, 139, 0.75);
}

.page-home .ph-features__cadence {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
  border: 3px solid var(--divider);
  box-shadow: 10px 10px 0 var(--home-shadow);
}

.page-home .ph-cadence-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 18px 8px;
  text-align: center;
}

.page-home .ph-cadence-item + .ph-cadence-item {
  border-left: 1px solid var(--divider);
}

.page-home .ph-cadence-item__k {
  font-family: var(--font-data);
  font-size: 15px;
  font-weight: 700;
  color: var(--electric-blue);
}

.page-home .ph-cadence-item__v {
  font-size: 12px;
  color: var(--muted);
}

.page-home .ph-features__foot {
  margin: 40px 0 0;
  font-size: 14px;
  color: var(--muted);
}

.page-home .ph-text-link {
  border-bottom: 1px solid transparent;
  color: var(--electric-blue);
  text-decoration: none;
  transition: border-color 0.2s;
}

.page-home .ph-text-link:hover {
  border-bottom-color: var(--electric-blue);
}

/* ---------- 三步切换 ---------- */
.page-home .ph-steps {
  position: relative;
  padding-block: var(--home-pad);
  background: var(--deep-black);
}

.page-home .ph-steps__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.page-home .ph-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 30px 26px 28px;
  border: 3px solid var(--divider);
  background: var(--home-card-bg);
  box-shadow: 10px 10px 0 var(--home-shadow);
  transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s, background 0.3s;
}

.page-home .ph-step:hover {
  transform: translate(-3px, -3px);
  border-color: var(--electric-blue);
  background: var(--cyan-slate);
  box-shadow: 14px 14px 0 rgba(0, 163, 255, 0.18);
}

.page-home .ph-step__num {
  font-family: var(--font-data);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--electric-blue);
  transition: color 0.3s;
}

.page-home .ph-step:hover .ph-step__num {
  color: var(--fluorescent-green);
}

.page-home .ph-step__content {
  flex: 1;
}

.page-home .ph-step__title {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--white);
}

.page-home .ph-step__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--silver);
}

.page-home .ph-step__link {
  align-self: flex-start;
  font-family: var(--font-data);
  font-size: 13px;
  border-bottom: 1px solid transparent;
  color: var(--electric-blue);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}

.page-home .ph-step__link:hover {
  border-bottom-color: var(--electric-blue);
  color: var(--white);
}

.page-home .ph-steps__visual {
  margin-top: 56px;
  border: 3px solid var(--divider);
  background: var(--home-card-bg);
  box-shadow: 14px 14px 0 var(--home-shadow);
  overflow: hidden;
}

.page-home .ph-steps__visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .ph-steps__index {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
}

/* ---------- 官方直营与合规保障 ---------- */
.page-home .ph-trust {
  position: relative;
  padding-block: var(--home-pad);
  background: var(--home-card-bg);
}

.page-home .ph-trust__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.page-home .ph-trust__lead {
  margin: 20px 0 0;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--silver);
}

.page-home .ph-trust__list {
  display: grid;
  grid-template-columns: 1fr;
  margin: 32px 0 0;
}

.page-home .ph-trust__item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--divider);
}

.page-home .ph-trust__item:first-child {
  border-top: 2px solid var(--divider);
}

.page-home .ph-trust__item dt,
.page-home .ph-trust__item dd {
  margin: 0;
}

.page-home .ph-trust__item dt {
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.page-home .ph-trust__item dd {
  font-family: var(--font-data);
  font-size: 13px;
  text-align: right;
  color: var(--silver);
}

.page-home .ph-trust__stats {
  display: flex;
  gap: 40px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 2px solid var(--divider);
}

.page-home .ph-trust__stat-num {
  font-family: var(--font-data);
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
}

.page-home .ph-trust__stat-num small {
  font-size: 0.95rem;
  color: var(--muted);
}

.page-home .ph-trust__stat-label {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.page-home .ph-trust__timeline {
  display: flex;
  flex-wrap: wrap;
  margin-top: 28px;
  border: 1px solid var(--divider);
}

.page-home .ph-timeline__item {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--divider);
  font-size: 12px;
  color: var(--muted);
}

.page-home .ph-timeline__item:nth-child(even) {
  border-left: 1px solid var(--divider);
}

.page-home .ph-timeline__item:nth-child(n+3) {
  border-bottom: 0;
}

.page-home .ph-timeline__item span {
  font-family: var(--font-data);
  font-size: 14px;
  font-weight: 700;
  color: var(--electric-blue);
}

.page-home .ph-trust__guarantee {
  margin-top: 28px;
  padding: 16px 18px;
  border-left: 4px solid var(--fluorescent-green);
  background: rgba(57, 255, 20, 0.05);
  font-size: 14px;
  line-height: 1.75;
  color: var(--silver);
}

.page-home .ph-trust__actions {
  display: flex;
  margin-top: 28px;
}

.page-home .ph-trust__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-home .ph-trust__image-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
  border: 2px solid #2C3E5B;
  background: var(--deep-black);
  box-shadow: 20px 20px 0 var(--home-shadow);
  overflow: hidden;
}

.page-home .ph-trust__image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .ph-trust__image-note {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 5px 3px;
  background: rgba(10, 14, 23, 0.65);
  color: rgba(255, 255, 255, 0.7);
}

/* ---------- 订阅更新提醒 ---------- */
.page-home .ph-subscribe {
  position: relative;
  padding-block: var(--home-pad);
  background: var(--deep-black);
}

.page-home .ph-subscribe__panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding: 28px 22px;
  border: 3px solid var(--divider);
  background:
    linear-gradient(135deg, rgba(0, 163, 255, 0.08), transparent 55%),
    var(--home-card-bg);
  box-shadow: 16px 16px 0 var(--home-shadow);
}

.page-home .ph-subscribe__lead {
  max-width: 640px;
  margin: 16px 0 0;
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--silver);
}

.page-home .ph-subscribe__methods {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 28px;
}

.page-home .ph-subscribe__method {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  padding: 14px 16px;
  border-left: 4px solid var(--electric-blue);
  background: var(--deep-black);
}

.page-home .ph-subscribe__method .tag {
  flex: 0 0 auto;
}

.page-home .ph-subscribe__method-name {
  display: inline-block;
  padding: 4px 8px;
  border: 1px solid var(--divider);
  background: rgba(0, 163, 255, 0.08);
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.1em;
  white-space: nowrap;
  color: var(--electric-blue);
}

.page-home .ph-subscribe__code {
  font-family: var(--font-data);
  font-size: 14px;
  white-space: nowrap;
  cursor: copy;
  color: var(--white);
  transition: color 0.2s;
}

.page-home .ph-subscribe__code:hover {
  color: var(--fluorescent-green);
}

.page-home .ph-subscribe__hint {
  width: 100%;
  font-size: 12px;
  color: var(--muted);
}

.page-home .ph-subscribe__link {
  margin-left: auto;
  font-family: var(--font-data);
  font-size: 13px;
  border-bottom: 1px solid transparent;
  color: var(--electric-blue);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}

.page-home .ph-subscribe__link:hover {
  border-bottom-color: var(--electric-blue);
  color: var(--white);
}

.page-home .ph-subscribe__aside {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px 20px;
  border: 1px solid var(--divider);
  background: var(--cyan-slate);
  overflow: hidden;
}

.page-home .ph-subscribe__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(36, 50, 71, 0.4) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(36, 50, 71, 0.4) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.page-home .ph-subscribe__aside-label {
  position: relative;
  margin: 0;
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--electric-blue);
}

.page-home .ph-subscribe__cadence {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .ph-subscribe__cadence li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(36, 50, 71, 0.8);
}

.page-home .ph-subscribe__cadence li:last-child {
  border-bottom: 0;
}

.page-home .ph-subscribe__cadence strong {
  font-family: var(--font-data);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.page-home .ph-subscribe__cadence span {
  font-size: 13px;
  color: var(--silver);
}

.page-home .ph-subscribe__note {
  position: relative;
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  color: var(--silver);
}

.page-home .ph-subscribe__aside .btn {
  position: relative;
  align-self: flex-start;
  margin-top: 4px;
}

/* ---------- 响应式：中等屏 ---------- */
@media (min-width: 600px) {
  .page-home .ph-hero__actions {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .page-home .ph-hero__title {
    font-size: clamp(3.5rem, 10vw, 6.5rem);
  }

  .page-home .ph-features__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-home .ph-feature {
    padding: 36px 24px 40px;
    border-right: 1px solid var(--divider);
    border-bottom: 0;
  }

  .page-home .ph-feature:last-child {
    border-right: 0;
  }

  .page-home .ph-features__media-frame {
    max-width: 400px;
  }

  .page-home .ph-steps__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .page-home .ph-steps__visual {
    margin-top: 64px;
  }

  .page-home .ph-timeline__item {
    flex-basis: 25%;
    border-bottom: 0;
  }

  .page-home .ph-timeline__item:nth-child(even) {
    border-left: 0;
  }

  .page-home .ph-timeline__item + .ph-timeline__item {
    border-left: 1px solid var(--divider);
  }

  .page-home .ph-subscribe__panel {
    padding: 36px 28px;
  }
}

/* ---------- 响应式：桌面 ---------- */
@media (min-width: 1024px) {
  .page-home .ph-hero {
    padding-top: calc(var(--header-total) + 40px);
  }

  .page-home .ph-hero__container {
    padding-bottom: 48px;
  }

  .page-home .ph-hero__masthead {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .page-home .ph-hero__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
  }

  .page-home .ph-hero__title {
    font-size: clamp(5rem, 8vw, 8rem);
  }

  .page-home .ph-hero__badge {
    padding: 8px 14px;
    font-size: 14px;
  }

  .page-home .ph-hero__actions {
    margin-top: 36px;
  }

  .page-home .ph-hero__side-note {
    right: -10px;
    font-size: 11px;
  }

  .page-home .ph-hero__scroll {
    position: absolute;
    right: 28px;
    bottom: 32px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-data);
    font-size: 10px;
    letter-spacing: 0.3em;
    writing-mode: vertical-rl;
    color: var(--muted);
  }

  .page-home .ph-hero__scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--electric-blue), transparent);
  }

  .page-home .ph-section-head {
    margin-bottom: 56px;
  }

  .page-home .ph-trust__layout {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 72px;
  }

  .page-home .ph-subscribe__panel {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    padding: 52px 48px;
  }
}

/* ---------- 动效降级 ---------- */
@media (prefers-reduced-motion: reduce) {
  .page-home *,
  .page-home *::before,
  .page-home *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
