.page-home {
  --home-gold: #C9A227;
  --home-gold-bright: #F2C94C;
  --home-elevated: #151010;
  --home-paper: #F2E8D8;
  --home-crimson: #7A1424;
  --home-live: #D43A4F;
  --home-border: rgba(201, 162, 39, 0.4);
  --home-shadow: rgba(0, 0, 0, 0.6);
  background: #0B090A;
  color: #F8F1E8;
  font-family: var(--font-body);
  overflow-x: hidden;
}

.page-home img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid var(--home-border);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), color 0.25s var(--ease);
}

.page-home .button--primary {
  background: var(--home-gold);
  border-color: var(--home-gold);
  color: #0B090A;
}

.page-home .button--primary:hover,
.page-home .button--primary:focus-visible {
  background: var(--home-gold-bright);
  border-color: var(--home-gold-bright);
  box-shadow: 0 0 18px rgba(242, 201, 76, 0.35);
}

.page-home .button--ghost {
  background: transparent;
  border-color: var(--home-border);
  color: #F8F1E8;
}

.page-home .button--ghost:hover,
.page-home .button--ghost:focus-visible {
  border-color: var(--home-gold-bright);
  color: var(--home-gold-bright);
  box-shadow: 0 0 12px rgba(242, 201, 76, 0.2);
}

.page-home .button--paper {
  background: var(--home-paper);
  border-color: var(--home-paper);
  color: #0B090A;
  font-weight: 700;
}

.page-home .button--paper:hover,
.page-home .button--paper:focus-visible {
  background: #FFF8EC;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.page-home .eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--home-gold-bright);
  text-transform: none;
  border-left: 4px solid var(--home-gold);
  padding-left: 12px;
  margin: 0 0 20px;
}

/* ===== 首页封面 ===== */
.page-home .home-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 720px;
  padding: clamp(64px, 8vw, 128px) 0 56px;
  border-bottom: 1px solid var(--home-border);
  overflow: hidden;
}

.page-home .hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-home .hero-figure {
  position: absolute;
  inset: 0;
  margin: 0;
}

.page-home .hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.32;
}

.page-home .hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0B090A 0%, rgba(11, 9, 10, 0.6) 40%, rgba(11, 9, 10, 0.84) 100%),
              linear-gradient(0deg, #0B090A 0%, rgba(11, 9, 10, 0.16) 30%, rgba(11, 9, 10, 0.32) 100%);
}

.page-home .hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  width: min(100% - 32px, 1280px);
  margin: 0 auto;
}

.page-home .hero-rail {
  position: relative;
  padding: 18px 16px;
  background: rgba(21, 16, 16, 0.88);
  border-left: 4px solid var(--home-gold);
  box-shadow: 10px 10px 0 var(--home-shadow);
  backdrop-filter: blur(6px);
}

.page-home .rail-label {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--home-gold-bright);
  border-bottom: 1px solid rgba(201, 162, 39, 0.25);
  padding-bottom: 10px;
}

.page-home .rail-item {
  display: flex;
  gap: 10px;
  align-items: baseline;
  padding: 8px 0;
  text-decoration: none;
  color: #B7A99A;
  font-size: 14px;
  border-bottom: 1px dashed rgba(201, 162, 39, 0.18);
  transition: color 0.2s var(--ease), padding-left 0.2s var(--ease);
}

.page-home .rail-item span {
  font-family: var(--font-num);
  font-size: 13px;
  font-weight: 600;
  color: var(--home-gold);
  min-width: 28px;
}

.page-home .rail-item:hover,
.page-home .rail-item:focus-visible,
.page-home .rail-item:first-of-type {
  color: #F8F1E8;
  padding-left: 6px;
}

.page-home .hero-main {
  max-width: 560px;
}

.page-home .hero-main h1 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(30px, 5vw, 60px);
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.5);
  border-left: 6px solid var(--home-gold);
  padding-left: 20px;
}

.page-home .hero-main .lead {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.78;
  color: #F8F1E8;
  border-left: 1px solid rgba(201, 162, 39, 0.4);
  padding-left: 20px;
}

.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ===== 区块通用 ===== */
.page-home .home-section {
  position: relative;
  padding: clamp(64px, 8vw, 112px) 0;
  width: min(100% - 32px, 1280px);
  margin: 0 auto;
}

.page-home .home-section::before {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(90deg, var(--home-gold) 0%, rgba(201, 162, 39, 0.18) 45%, rgba(201, 162, 39, 0) 100%);
  margin-bottom: 48px;
}

.page-home .section-head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 40px;
}

.page-home .section-no {
  font-family: var(--font-num);
  font-size: 20px;
  font-weight: 600;
  color: var(--home-gold);
  background: rgba(201, 162, 39, 0.08);
  border: 1px solid var(--home-border);
  padding: 6px 10px;
  min-width: 52px;
  text-align: center;
  clip-path: polygon(4% 0, 96% 0, 100% 18%, 100% 82%, 96% 100%, 4% 100%, 0 82%, 0 18%);
}

.page-home .section-head-copy {
  flex: 1;
}

.page-home .section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

.page-home .section-sub {
  font-size: 15px;
  color: #B7A99A;
  line-height: 1.6;
  margin: 0;
}

/* ===== 01 导航升级 ===== */
.page-home .home-upgrade .upgrade-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.page-home .upgrade-compare {
  display: flex;
  align-items: stretch;
  gap: 10px;
  padding: 24px 18px;
  background: rgba(21, 16, 16, 0.65);
  border: 1px solid var(--home-border);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.45);
  position: relative;
}

.page-home .upgrade-compare::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 22px;
  width: 4px;
  height: calc(100% - 44px);
  background: linear-gradient(180deg, var(--home-gold), transparent);
  opacity: 0.6;
}

.page-home .compare-cell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  min-height: 130px;
  padding: 16px;
  background: rgba(11, 9, 10, 0.8);
}

.page-home .compare-cell--old {
  border-bottom: 4px solid var(--home-crimson);
}

.page-home .compare-cell--new {
  border-bottom: 4px solid var(--home-gold);
}

.page-home .compare-num {
  font-family: var(--font-num);
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  font-weight: 600;
  color: #F8F1E8;
}

.page-home .compare-cell--new .compare-num {
  color: var(--home-gold-bright);
  text-shadow: 0 0 16px rgba(242, 201, 76, 0.35);
}

.page-home .compare-label {
  margin-top: 8px;
  font-size: 13px;
  color: #B7A99A;
  letter-spacing: 0.06em;
}

.page-home .compare-arrow {
  align-self: center;
  font-family: var(--font-num);
  font-size: 28px;
  color: var(--home-gold);
}

.page-home .upgrade-detail {
  padding: 28px 22px;
  background: linear-gradient(135deg, rgba(122, 20, 36, 0.24), rgba(11, 9, 10, 0) 42%);
  border: 1px solid rgba(201, 162, 39, 0.28);
}

.page-home .upgrade-detail h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 900;
  margin: 0 0 14px;
  letter-spacing: 0;
}

.page-home .upgrade-detail p {
  font-size: 15px;
  line-height: 1.78;
  color: #B7A99A;
  margin: 0 0 16px;
}

.page-home .upgrade-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-home .upgrade-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: #F8F1E8;
  line-height: 1.7;
}

.page-home .upgrade-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--home-gold);
  font-weight: 700;
}

/* ===== 02 临时信息浮窗 ===== */
.page-home .home-temp {
  background: rgba(21, 16, 16, 0.5);
}

.page-home .home-temp::before {
  background: linear-gradient(90deg, var(--home-crimson) 0%, rgba(122, 20, 36, 0.12) 60%, transparent 100%);
}

.page-home .temp-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.page-home .temp-demo {
  position: relative;
  padding: 28px;
  background: rgba(21, 16, 16, 0.9);
  border: 1px solid var(--home-border);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.4);
  max-width: 320px;
}

.page-home .temp-demo-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  background: #0B090A;
  border: 2px solid var(--home-gold);
  color: #F8F1E8;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  clip-path: polygon(3% 0, 97% 0, 100% 20%, 100% 80%, 97% 100%, 3% 100%, 0 80%, 0 20%);
}

.page-home .temp-demo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--home-live);
  box-shadow: 0 0 10px var(--home-live);
}

.page-home .temp-demo-panel {
  margin-top: 18px;
  padding: 18px;
  background: rgba(11, 9, 10, 0.9);
  border-left: 3px solid var(--home-gold);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.page-home .temp-demo-title {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--home-gold-bright);
}

.page-home .temp-demo-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.page-home .temp-demo-list li {
  font-size: 14px;
  color: #F8F1E8;
  padding-left: 14px;
  position: relative;
  line-height: 1.6;
}

.page-home .temp-demo-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 1px;
  background: var(--home-live);
}

.page-home .temp-copy {
  padding: 12px 0;
}

.page-home .temp-copy h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.35;
  margin: 0 0 14px;
}

.page-home .temp-copy p {
  font-size: 15px;
  line-height: 1.78;
  color: #B7A99A;
  margin: 0 0 14px;
}

.page-home .temp-figure {
  margin: 0;
  border: 1px solid var(--home-border);
  box-shadow: -8px 8px 0 rgba(122, 20, 36, 0.5);
}

.page-home .temp-figure img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* ===== 03 八大频道 ===== */
.page-home .home-channels {
  position: relative;
}

.page-home .home-channels::after {
  content: "";
  position: absolute;
  top: 20px;
  right: -6px;
  width: 18%;
  height: 60px;
  background: linear-gradient(120deg, transparent 12%, rgba(201, 162, 39, 0.18) 50%, transparent 88%);
  pointer-events: none;
}

.page-home .channels-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 30px;
  padding: 14px 20px;
  border: 1px solid var(--home-border);
  background: rgba(21, 16, 16, 0.55);
  max-width: 260px;
}

.page-home .badge-num {
  font-family: var(--font-num);
  font-size: 88px;
  font-weight: 600;
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 2px var(--home-gold-bright);
  text-shadow: 0 0 30px rgba(242, 201, 76, 0.22);
}

.page-home .badge-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #B7A99A;
  border-top: 1px solid var(--home-border);
  padding-top: 8px;
}

.page-home .channels-tabs {
  padding: 4px 0;
}

.page-home .tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
  padding: 0 0 12px;
  border-bottom: 2px solid rgba(201, 162, 39, 0.2);
}

.page-home .tab-button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  background: rgba(11, 9, 10, 0.85);
  border: 1px solid rgba(201, 162, 39, 0.25);
  color: #B7A99A;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.page-home .tab-button:hover,
.page-home .tab-button:focus-visible {
  color: #F8F1E8;
  border-color: var(--home-border);
}

.page-home .tab-button[aria-selected="true"] {
  background: rgba(201, 162, 39, 0.14);
  border-color: var(--home-gold);
  color: var(--home-gold-bright);
  box-shadow: 0 0 14px rgba(201, 162, 39, 0.14);
}

.page-home .tab-panel {
  display: block;
}

.page-home .channel-card {
  padding: 30px 26px;
  background: linear-gradient(115deg, rgba(21, 16, 16, 0.94), rgba(11, 9, 10, 0.88));
  border: 1px solid var(--home-border);
  border-left: 6px solid var(--home-gold);
  box-shadow: 14px 14px 0 rgba(0, 0, 0, 0.4);
  position: relative;
}

.page-home .channel-id {
  position: absolute;
  top: 16px;
  right: 18px;
  font-family: var(--font-num);
  font-size: 15px;
  letter-spacing: 0.1em;
  color: rgba(201, 162, 39, 0.55);
  border: 1px solid rgba(201, 162, 39, 0.22);
  padding: 3px 8px;
}

.page-home .channel-card h3 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 900;
  margin: 0 0 10px;
  letter-spacing: 0;
}

.page-home .channel-card p {
  font-size: 15px;
  line-height: 1.75;
  color: #B7A99A;
  margin: 0 0 18px;
  max-width: 560px;
}

.page-home .channel-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-home .tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
}

.page-home .tag--gold {
  color: var(--home-gold-bright);
  border-color: var(--home-border);
  background: rgba(201, 162, 39, 0.08);
}

.page-home .tag--crimson {
  color: #F2A6B0;
  border-color: rgba(212, 58, 79, 0.4);
  background: rgba(122, 20, 36, 0.3);
}

/* ===== 04 季度活动日历 ===== */
.page-home .home-calendar {
  background: linear-gradient(180deg, rgba(122, 20, 36, 0.12), rgba(11, 9, 10, 0) 30%, rgba(11, 9, 10, 0) 70%, rgba(122, 20, 36, 0.06));
}

.page-home .home-calendar::before {
  background: linear-gradient(90deg, var(--home-live) 0%, rgba(212, 58, 79, 0.2) 40%, transparent 100%);
}

.page-home .calendar-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.page-home .calendar-figure {
  margin: 0;
  border: 1px solid var(--home-border);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: relative;
}

.page-home .calendar-figure::after {
  content: "LIVE";
  position: absolute;
  top: 18px;
  right: -32px;
  background: var(--home-live);
  color: #F8F1E8;
  font-family: var(--font-num);
  font-size: 14px;
  font-weight: 600;
  padding: 5px 40px;
  transform: rotate(38deg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.page-home .calendar-figure img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
}

.page-home .calendar-content {
  padding: 8px 0;
}

.page-home .calendar-category h3,
.page-home .calendar-highlight h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 900;
  margin: 0 0 16px;
  color: #F8F1E8;
}

.page-home .category-list {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 4px;
}

.page-home .category-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(201, 162, 39, 0.12);
  font-size: 15px;
  color: #F8F1E8;
  transition: background 0.2s var(--ease), padding-left 0.2s var(--ease);
}

.page-home .category-list li:hover {
  background: rgba(201, 162, 39, 0.06);
  padding-left: 20px;
}

.page-home .cal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.page-home .cal-dot--live {
  background: var(--home-live);
  box-shadow: 0 0 10px rgba(212, 58, 79, 0.6);
}

.page-home .cal-dot--night {
  background: var(--home-gold);
  box-shadow: 0 0 8px rgba(201, 162, 39, 0.5);
}

.page-home .cal-dot--food {
  background: #C9A227;
  opacity: 0.7;
}

.page-home .cal-dot--scene {
  background: #7A1424;
  border: 1px solid rgba(242, 201, 76, 0.4);
}

.page-home .cal-meta {
  margin-left: auto;
  font-family: var(--font-num);
  font-size: 14px;
  color: var(--home-gold-bright);
  letter-spacing: 0.04em;
}

.page-home .calendar-highlight {
  border: 1px solid rgba(201, 162, 39, 0.2);
  padding: 20px;
  background: rgba(11, 9, 10, 0.6);
  margin-bottom: 24px;
}

.page-home .highlight-item {
  display: flex;
  gap: 12px;
  align-items: baseline;
  padding: 9px 0;
  border-bottom: 1px dashed rgba(201, 162, 39, 0.16);
}

.page-home .highlight-item:last-child {
  border-bottom: 0;
}

.page-home .highlight-tag {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--home-live);
  border: 1px solid rgba(212, 58, 79, 0.4);
  padding: 1px 6px;
}

.page-home .highlight-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #F8F1E8;
}

/* ===== 05 客服通道 ===== */
.page-home .home-service::before {
  background: linear-gradient(90deg, var(--home-gold) 0%, rgba(201, 162, 39, 0.3) 38%, transparent 100%);
}

.page-home .service-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 26px;
  border: 1px solid rgba(201, 162, 39, 0.3);
  background: linear-gradient(135deg, rgba(21, 16, 16, 0.8), rgba(11, 9, 10, 0.9));
  box-shadow: 16px 16px 0 rgba(0, 0, 0, 0.5);
  position: relative;
}

.page-home .service-texture {
  margin: 0;
  order: 1;
  border: 1px solid rgba(201, 162, 39, 0.18);
}

.page-home .service-texture img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  display: block;
  opacity: 0.75;
}

.page-home .service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  order: 2;
}

.page-home .service-card {
  padding: 22px 20px;
  background: rgba(11, 9, 10, 0.78);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-top: 3px solid var(--home-gold);
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.page-home .service-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

.page-home .service-icon {
  display: inline-block;
  font-family: var(--font-num);
  font-size: 18px;
  font-weight: 600;
  color: var(--home-gold-bright);
  border: 1px solid var(--home-border);
  width: 34px;
  height: 34px;
  line-height: 30px;
  text-align: center;
  margin-bottom: 14px;
}

.page-home .service-card h3 {
  font-size: 14px;
  color: #B7A99A;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin: 0 0 8px;
}

.page-home .service-value {
  font-family: var(--font-num);
  font-size: 22px;
  font-weight: 600;
  color: #F8F1E8;
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}

.page-home .service-note {
  font-size: 13px;
  color: #B7A99A;
  margin: 0;
  line-height: 1.6;
}

.page-home .service-cta {
  order: 3;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  border: 2px dashed rgba(201, 162, 39, 0.3);
  background: rgba(122, 20, 36, 0.16);
}

.page-home .service-cta p {
  font-size: 14px;
  line-height: 1.7;
  color: #F8F1E8;
  margin: 0;
}

/* ===== 06 索引清理 ===== */
.page-home .home-index::before {
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.5), rgba(242, 201, 76, 0.1) 50%, transparent 100%);
}

.page-home .index-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.page-home .index-copy {
  padding: 24px;
  background: rgba(21, 16, 16, 0.55);
  border: 1px solid rgba(201, 162, 39, 0.16);
  border-left: 5px solid rgba(201, 162, 39, 0.6);
}

.page-home .index-copy h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 900;
  margin: 0 0 14px;
}

.page-home .index-copy p {
  font-size: 15px;
  line-height: 1.78;
  color: #B7A99A;
  margin: 0 0 14px;
}

.page-home .index-copy p:last-of-type {
  margin-bottom: 22px;
}

.page-home .index-steps {
  list-style: none;
  counter-reset: index-step;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-home .index-steps li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  counter-increment: index-step;
  font-size: 14px;
  line-height: 1.6;
  color: #F8F1E8;
}

.page-home .index-steps li span {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-num);
  font-weight: 600;
  color: var(--home-gold-bright);
  border: 1px solid var(--home-border);
  background: rgba(201, 162, 39, 0.06);
}

.page-home .index-note {
  padding: 24px;
  background: rgba(21, 16, 16, 0.9);
  border: 2px solid var(--home-border);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.35);
}

.page-home .note-label {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 900;
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201, 162, 39, 0.3);
}

.page-home .note-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-home .note-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: #F8F1E8;
}

.page-home .note-list li span {
  font-family: var(--font-num);
  font-weight: 600;
  color: var(--home-gold-bright);
  min-width: 64px;
  border-right: 2px solid rgba(201, 162, 39, 0.3);
  padding-right: 10px;
  font-size: 14px;
}

.page-home .text-link {
  color: var(--home-gold-bright);
  font-size: 14px;
  border-bottom: 1px solid var(--home-border);
  padding-bottom: 4px;
  text-decoration: none;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.page-home .text-link:hover,
.page-home .text-link:focus-visible {
  border-color: var(--home-gold-bright);
  color: #F8F1E8;
}

/* ===== 桌面增强 ===== */
@media (min-width: 768px) {
  .page-home .temp-layout {
    grid-template-columns: 1fr 1.25fr;
    gap: 40px;
  }

  .page-home .temp-figure {
    grid-column: 1 / -1;
    max-width: 600px;
  }

  .page-home .temp-figure img {
    height: 340px;
  }

  .page-home .service-layout {
    grid-template-columns: 280px 1fr;
  }

  .page-home .service-texture {
    grid-row: 1 / span 2;
    order: 0;
  }

  .page-home .service-texture img {
    max-height: 360px;
    height: 100%;
  }

  .page-home .service-grid {
    grid-template-columns: repeat(3, 1fr);
    order: 1;
    grid-column: 2;
  }

  .page-home .service-cta {
    grid-column: 1 / -1;
    grid-row: 2;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .page-home .service-cta p {
    max-width: 500px;
  }

  .page-home .index-layout {
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
  }

  .page-home .upgrade-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
  }

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

  .page-home .home-hero {
    min-height: 760px;
  }

  .page-home .hero-layout {
    grid-template-columns: 220px 1fr;
    gap: 48px;
    width: min(100% - 64px, 1280px);
  }

  .page-home .hero-rail {
    align-self: start;
    position: sticky;
    top: calc(var(--header-h) + 28px);
  }
}

@media (min-width: 1024px) {
  .page-home .home-section {
    width: min(100% - 64px, 1280px);
  }

  .page-home .temp-layout {
    grid-template-columns: 0.9fr 1.4fr 1fr;
    gap: 48px;
    align-items: center;
  }

  .page-home .temp-figure {
    grid-column: auto;
    max-width: none;
  }

  .page-home .temp-figure img {
    height: 260px;
  }

  .page-home .channel-card {
    padding: 36px 34px;
  }

  .page-home .tab-button {
    padding: 0 18px;
    font-size: 15px;
  }

  .page-home .hero-main h1 {
    font-size: 58px;
  }

  .page-home .upgrade-compare {
    padding: 30px;
  }

  .page-home .compare-cell {
    min-height: 170px;
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home *,
  .page-home *::before,
  .page-home *::after {
    animation: none !important;
    transition: none !important;
  }
}
