/* ============ 安博电竞 首页专属样式 ============ */
.page-home {
  --home-pad: 20px;
  --home-accent-line: linear-gradient(90deg, var(--cyan), var(--purple));
  --home-panel-grad: linear-gradient(135deg, var(--bg-panel) 0%, var(--bg-panel-2) 100%);
  --home-orange-glow: rgba(255, 122, 0, 0.18);
}

/* ---------- 页面上下文 ---------- */
.page-home .home-context {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 18px;
  padding-bottom: 4px;
}
.page-home .ctx-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text-sub);
  text-transform: uppercase;
}
.page-home .ctx-sep {
  width: 44px;
  height: 1px;
  background: var(--home-accent-line);
  flex: 0 0 auto;
}
.page-home .ctx-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
  flex: 0 0 auto;
}
.page-home .ctx-link {
  font-size: 13px;
  color: var(--text-main);
  text-decoration: none;
  transition: color 0.3s var(--ease-out);
}
.page-home .ctx-link:hover {
  color: var(--cyan);
}
.page-home .ctx-link:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
  border-radius: 2px;
}

/* ---------- Hero 区域 ---------- */
.page-home .home-hero {
  position: relative;
  overflow: hidden;
}
.page-home .hero-rail {
  display: none;
}
@media (min-width: 1180px) {
  .page-home .hero-rail {
    display: flex;
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    align-items: center;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--text-sub);
    border-right: 1px solid rgba(0, 229, 255, 0.3);
    padding-right: 14px;
    gap: 14px;
  }
  .page-home .hero-rail::after {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--cyan);
    border-radius: 50%;
    flex: 0 0 auto;
  }
  .page-home .hero-stage {
    padding-left: 52px;
  }
}

.page-home .hero-stage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding-top: 28px;
  padding-bottom: 32px;
}

/* 切角面板工具类 */
.page-home .cut-angle {
  background: var(--home-panel-grad);
  clip-path: polygon(
    0 0,
    calc(100% - 16px) 0,
    100% 16px,
    100% 100%,
    16px 100%,
    0 calc(100% - 16px)
  );
  position: relative;
}
.page-home .cut-frame {
  position: relative;
  background: var(--bg-panel);
  clip-path: polygon(
    0 0,
    calc(100% - 18px) 0,
    100% 18px,
    100% 100%,
    18px 100%,
    0 calc(100% - 18px)
  );
}

/* 品牌块 */
.page-home .hero-brand {
  padding: 30px 24px 32px;
  border: 1px solid rgba(0, 229, 255, 0.14);
}
.page-home .hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.page-home .hero-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--green);
}
.page-home .live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: home-pulse 2s ease-in-out infinite;
}
@keyframes home-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.82); }
}
.page-home .hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 38px;
  line-height: 1.14;
  letter-spacing: 0.01em;
  color: var(--text-main);
  margin: 0 0 16px;
}
.page-home .hero-lead {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-sub);
  margin: 0 0 24px;
  max-width: 56ch;
}
.page-home .hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* 数据面板 */
.page-home .hero-stats {
  padding: 24px 22px;
  border: 1px solid rgba(139, 92, 246, 0.2);
}
.page-home .stats-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
}
.page-home .stats-kicker {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.06em;
  color: var(--text-main);
}
.page-home .stats-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--purple);
  border: 1px solid rgba(139, 92, 246, 0.4);
  padding: 3px 8px;
  letter-spacing: 0.08em;
}
.page-home .stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 0;
}
.page-home .stats-cell {
  background: rgba(10, 14, 23, 0.55);
  padding: 14px 12px;
  border-left: 2px solid var(--cyan);
}
.page-home .stats-cell dt {
  font-size: 12px;
  color: var(--text-sub);
  margin-bottom: 6px;
}
.page-home .stats-cell dd {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1.1;
}
.page-home .stats-cell span {
  display: block;
  font-size: 11px;
  color: var(--text-sub);
  margin-top: 6px;
  line-height: 1.5;
}

/* 昨段赛事快照 */
.page-home .hero-snapshot {
  padding: 24px 22px 22px;
  border: 1px solid rgba(255, 122, 0, 0.18);
}
.page-home .snap-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.page-home .snap-status {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--green);
}
.page-home .snap-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--text-main);
  margin: 0 0 14px;
}
.page-home .snap-match {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.page-home .snap-team {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: var(--text-main);
  background: rgba(0, 229, 255, 0.08);
  padding: 8px 14px;
  border-radius: 2px;
}
.page-home .snap-score {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  color: var(--orange);
}
.page-home .snap-curve {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 14px;
}
.page-home .snap-line {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  animation: home-draw 1.8s var(--ease-out) forwards;
}
.page-home .snap-point {
  fill: var(--cyan);
  stroke: var(--bg-deep);
  stroke-width: 2;
}
.page-home .snap-point.hot {
  fill: var(--orange);
  filter: drop-shadow(0 0 6px var(--orange));
}
@keyframes home-draw {
  to { stroke-dashoffset: 0; }
}
.page-home .snap-nodes {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.page-home .snap-node {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-sub);
  background: rgba(10, 14, 23, 0.5);
  padding: 5px 10px;
  border-radius: 2px;
}
.page-home .snap-node i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--text-sub);
}
.page-home .snap-node.is-hot {
  color: var(--text-main);
  border: 1px solid rgba(255, 122, 0, 0.5);
}
.page-home .snap-node.is-hot i {
  background: var(--orange);
  box-shadow: 0 0 8px var(--orange);
}
.page-home .card-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px dashed rgba(0, 229, 255, 0.4);
  padding-bottom: 2px;
  transition: color 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.page-home .card-link:hover {
  color: var(--orange);
  border-color: var(--orange);
}
.page-home .card-link:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
  border-radius: 2px;
}

/* 手机陈列图 */
.page-home .hero-phone {
  margin: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}
.page-home .hero-phone img {
  width: 100%;
  height: auto;
  object-fit: cover;
  flex: 1;
  min-height: 0;
}
.page-home .hero-phone figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent, rgba(10, 14, 23, 0.92));
  padding: 32px 16px 14px;
  font-size: 12px;
  color: var(--text-main);
  line-height: 1.6;
  z-index: 2;
}

/* 团队条 */
.page-home .hero-staff {
  padding: 18px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  border: 1px solid rgba(0, 229, 255, 0.12);
}
.page-home .staff-head {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-sub);
  letter-spacing: 0.1em;
}
.page-home .staff-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.page-home .staff-cell {
  font-size: 12px;
  color: var(--text-sub);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(10, 14, 23, 0.6);
  padding: 6px 10px;
  border-radius: 2px;
}
.page-home .staff-cell b {
  font-family: var(--font-mono);
  color: var(--cyan);
  font-weight: 700;
  font-size: 14px;
}

/* ---------- 通用章节头 ---------- */
.page-home .section-header {
  margin-bottom: 30px;
}
.page-home .section-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--orange);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.page-home .section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  color: var(--text-main);
  margin: 0 0 12px;
}
.page-home .section-desc {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-sub);
  max-width: 62ch;
  margin: 0;
}

/* ---------- 01 陈列式入口 ---------- */
.page-home .home-entry {
  padding: 48px 0;
}
.page-home .entry-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.page-home .entry-flow {
  display: grid;
  gap: 14px;
}
.page-home .flow-step {
  display: flex;
  gap: 16px;
  background: rgba(17, 27, 46, 0.6);
  border-left: 2px solid var(--cyan);
  padding: 18px 18px 18px 14px;
  transition: transform 0.35s var(--ease-out), background 0.35s var(--ease-out);
}
.page-home .flow-step:hover {
  transform: translateX(6px);
  background: rgba(22, 34, 56, 0.9);
}
.page-home .flow-num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  color: var(--cyan);
  opacity: 0.85;
}
.page-home .flow-text h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--text-main);
  margin: 0 0 6px;
}
.page-home .flow-text p {
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-sub);
  margin: 0;
}
.page-home .entry-guide {
  padding: 26px 24px;
  border: 1px solid rgba(0, 229, 255, 0.16);
}
.page-home .entry-guide h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--text-main);
  margin: 16px 0 14px;
}
.page-home .guide-steps {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  counter-reset: step-counter;
}
.page-home .guide-steps li {
  counter-increment: step-counter;
  font-size: 13px;
  color: var(--text-main);
  line-height: 1.7;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.page-home .guide-steps li::before {
  content: counter(step-counter);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--orange);
  font-weight: 700;
  flex: 0 0 auto;
}

/* ---------- 02 对战曲线与爆点回放 ---------- */
.page-home .home-curve {
  padding: 48px 0;
  background: rgba(17, 27, 46, 0.34);
  border-block: 1px solid rgba(0, 229, 255, 0.08);
}
.page-home .home-curve > .container {
  max-width: 1120px;
}
.page-home .curve-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.page-home .curve-features {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.page-home .feature-row {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(138, 148, 166, 0.14);
}
.page-home .feature-row:last-child {
  border-bottom: 0;
}
.page-home .feature-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 17px;
  color: var(--cyan);
  background: rgba(0, 229, 255, 0.08);
  border-radius: 2px;
}
.page-home .feature-row h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-main);
  margin: 0 0 4px;
}
.page-home .feature-row p {
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-sub);
  margin: 0;
}
.page-home .curve-board {
  padding: 20px;
  border: 1px solid rgba(139, 92, 246, 0.22);
}
.page-home .curve-figure {
  margin: 0 0 20px;
}
.page-home .curve-figure img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}
.page-home .curve-figure figcaption {
  font-size: 12px;
  color: var(--text-sub);
  padding: 10px 2px 0;
  line-height: 1.6;
  font-family: var(--font-mono);
}
.page-home .timeline {
  display: grid;
  gap: 8px;
}
.page-home .tl-node {
  background: rgba(10, 14, 23, 0.5);
  border: 1px solid rgba(138, 148, 166, 0.14);
  transition: border-color 0.3s var(--ease-out);
}
.page-home .tl-node:hover,
.page-home .tl-node[open] {
  border-color: rgba(0, 229, 255, 0.45);
}
.page-home .tl-node summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  cursor: pointer;
}
.page-home .tl-node summary::-webkit-details-marker {
  display: none;
}
.page-home .tl-time {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
  min-width: 48px;
}
.page-home .tl-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--text-sub);
  flex: 0 0 auto;
  transition: background 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.page-home .tl-dot.hot {
  background: var(--orange);
  box-shadow: 0 0 8px var(--orange);
}
.page-home .tl-label {
  font-size: 13px;
  color: var(--text-main);
}
.page-home .tl-desc {
  margin: 0;
  padding: 0 14px 14px 74px;
  font-size: 12px;
  line-height: 1.7;
  color: var(--text-sub);
}

/* ---------- 03 对比项与订阅栏目 ---------- */
.page-home .home-compare {
  padding: 48px 0;
}
.page-home .compare-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.page-home .compare-topic,
.page-home .subscribe-topic {
  padding: 28px 24px;
}
.page-home .compare-topic {
  border: 1px solid rgba(255, 122, 0, 0.2);
}
.page-home .subscribe-topic {
  border: 1px solid rgba(0, 229, 255, 0.2);
}
.page-home .compare-topic h3,
.page-home .subscribe-topic h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 21px;
  color: var(--text-main);
  margin: 16px 0 10px;
}
.page-home .compare-topic p,
.page-home .subscribe-topic p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--text-sub);
  margin: 0 0 16px;
}
.page-home .topic-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 8px;
}
.page-home .topic-list li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-main);
}
.page-home .topic-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  background: var(--cyan);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.page-home .subscribe-topic .topic-list li::before {
  background: var(--orange);
}

/* ---------- 04 平板端经济曲线 ---------- */
.page-home .home-tablet {
  padding: 48px 0;
  background:
    radial-gradient(circle at 85% 30%, rgba(139, 92, 246, 0.12), transparent 42%),
    rgba(10, 14, 23, 0.8);
  border-block: 1px solid rgba(139, 92, 246, 0.12);
}
.page-home .tablet-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: center;
}
.page-home .tablet-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 22px 0 20px;
}
.page-home .pt-item {
  background: rgba(17, 27, 46, 0.7);
  border-left: 2px solid var(--purple);
  padding: 14px 16px;
}
.page-home .pt-item .pt-num {
  display: block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 22px;
  color: var(--purple);
  margin-bottom: 4px;
}
.page-home .pt-item p {
  margin: 0;
  font-size: 13px;
  color: var(--text-main);
  line-height: 1.6;
}
.page-home .tablet-figure {
  margin: 0;
  overflow: hidden;
  min-height: 240px;
  display: flex;
  flex-direction: column;
}
.page-home .tablet-figure img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}
.page-home .tablet-figure figcaption {
  font-size: 12px;
  color: var(--text-sub);
  font-family: var(--font-mono);
  padding: 10px 14px 14px;
}

/* ---------- 05 最近更新速览 ---------- */
.page-home .home-updates {
  padding: 48px 0;
}
.page-home .updates-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.page-home .updates-feed {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.page-home .feed-item {
  background: rgba(17, 27, 46, 0.62);
  border: 1px solid rgba(138, 148, 166, 0.12);
  padding: 18px 18px 16px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s var(--ease-out);
}
.page-home .feed-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--home-accent-line);
  opacity: 0.35;
}
.page-home .feed-item:hover {
  border-color: rgba(0, 229, 255, 0.35);
}
.page-home .feed-item .feed-tag {
  margin-bottom: 10px;
}
.page-home .feed-item h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-main);
  margin: 0 0 6px;
}
.page-home .feed-item p {
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-sub);
  margin: 0;
}
.page-home .updates-feature {
  margin: 0;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
}
.page-home .updates-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-home .feature-overlay {
  position: relative;
  z-index: 2;
  align-self: flex-end;
  margin: auto 16px 16px;
  background: linear-gradient(135deg, rgba(17, 27, 46, 0.96), rgba(10, 14, 23, 0.85));
  padding: 20px;
  border: 1px solid rgba(255, 122, 0, 0.3);
}
.page-home .feature-overlay h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 19px;
  color: var(--text-main);
  margin: 12px 0 8px;
}
.page-home .feature-overlay p {
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-sub);
  margin: 0;
}

/* ---------- 底部引导 ---------- */
.page-home .home-guide {
  position: relative;
  text-align: center;
  padding-top: 56px;
  padding-bottom: 64px;
}
.page-home .guide-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 640px;
  height: 240px;
  background: radial-gradient(ellipse, rgba(0, 229, 255, 0.1), rgba(139, 92, 246, 0.05) 60%, transparent);
  pointer-events: none;
}
.page-home .guide-title {
  position: relative;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.3;
  color: var(--text-main);
  margin: 0 auto 12px;
  max-width: 24ch;
}
.page-home .guide-desc {
  position: relative;
  font-size: 13px;
  color: var(--text-sub);
  margin: 0 auto 26px;
  max-width: 46ch;
  line-height: 1.8;
}
.page-home .guide-actions {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- 桌面端增强 ---------- */
@media (min-width: 640px) {
  .page-home .hero-title {
    font-size: 46px;
  }
  .page-home .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-home .entry-layout {
    grid-template-columns: 1fr;
  }
  .page-home .entry-flow {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-home .flow-step {
    flex-direction: column;
    gap: 10px;
    border-left: 0;
    border-top: 2px solid var(--cyan);
  }
  .page-home .flow-step:hover {
    transform: translateY(-4px);
  }
  .page-home .tablet-points {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-home .updates-feed {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  /* Hero 拼贴栅格 */
  .page-home .hero-stage {
    grid-template-columns: repeat(12, 1fr);
    grid-template-areas:
      "brand brand brand brand brand brand stats stats stats stats stats staff"
      "snap snap snap snap snap snap snap snap phone phone phone staff";
    gap: 20px;
  }
  .page-home .hero-brand { grid-area: brand; }
  .page-home .hero-stats { grid-area: stats; }
  .page-home .hero-snapshot { grid-area: snap; }
  .page-home .hero-phone { grid-area: phone; }
  .page-home .hero-staff { grid-area: staff; align-self: stretch; }

  .page-home .hero-staff {
    flex-direction: column;
    justify-content: space-around;
    align-items: stretch;
    text-align: left;
  }
  .page-home .staff-grid {
    flex-direction: column;
    gap: 8px;
  }
  .page-home .hero-phone {
    min-height: 100%;
  }
  .page-home .hero-phone img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .page-home .hero-phone figcaption {
    position: absolute;
  }

  /* 章节宽窄交替 */
  .page-home .home-entry {
    padding: 64px 0;
  }
  .page-home .home-curve {
    padding: 64px 0;
  }
  .page-home .home-compare {
    padding: 64px 0;
  }
  .page-home .home-tablet {
    padding: 64px 0;
  }
  .page-home .home-updates {
    padding: 64px 0;
  }
  .page-home .section-title {
    font-size: 32px;
  }

  .page-home .entry-layout {
    grid-template-columns: 1.35fr 0.85fr;
    align-items: start;
    gap: 28px;
  }
  .page-home .entry-flow {
    grid-template-columns: 1fr;
  }
  .page-home .flow-step {
    flex-direction: row;
    border-top: 0;
    border-left: 2px solid var(--cyan);
  }
  .page-home .flow-step:hover {
    transform: translateX(6px);
  }

  .page-home .curve-inner {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 40px;
    align-items: start;
  }
  .page-home .curve-copy {
    position: sticky;
    top: 120px;
  }

  .page-home .compare-layout {
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }

  .page-home .tablet-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .page-home .tablet-figure img {
    aspect-ratio: auto;
    height: 100%;
  }

  .page-home .updates-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
  }
  .page-home .updates-feature {
    min-height: 100%;
  }

  .page-home .home-guide {
    padding-top: 72px;
    padding-bottom: 80px;
  }
  .page-home .guide-title {
    font-size: 34px;
  }
}

@media (min-width: 1180px) {
  .page-home .hero-title {
    font-size: 52px;
  }
  .page-home .hero-lead {
    font-size: 16px;
  }
}

/* ---------- 动效与减少动态偏好 ---------- */
@media (prefers-reduced-motion: reduce) {
  .page-home .live-dot,
  .page-home .snap-line {
    animation: none;
  }
  .page-home .flow-step,
  .page-home .feed-item,
  .page-home .card-link,
  .page-home .ctx-link {
    transition: none;
  }
  .page-home .flow-step:hover {
    transform: none;
  }
}
