.page-home {
  --home-accent: #E8590C;
  --home-ink: #1F2937;
  --home-muted: #6B7280;
  --home-mid: #4A5D6B;
  --home-deep: #2F3E46;
  --home-bg: #F2F4F3;
  --home-highlight: #FFF0E6;
  --home-secondary: #E5E9EC;
  --font-heading: "Source Han Serif SC", "Songti SC", "SimSun", serif;
  --font-body: "Source Han Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --radius-card: 12px;
  --shadow-float: 0 6px 20px rgba(47, 62, 70, 0.08);
  --shadow-lift: 0 14px 32px rgba(47, 62, 70, 0.16);
  overflow-x: hidden;
}

/* 分屏首屏 */
.page-home .hero-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 48px clamp(20px, 5vw, 64px) 56px;
  background: linear-gradient(135deg, #F2F4F3 0%, #E5E9EC 100%);
  position: relative;
}

.page-home .hero-split-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  z-index: 2;
}

.page-home .section-tag {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--home-mid);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.page-home .tag-prefix {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--home-accent);
}

.page-home .hero-split h1 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.2;
  color: var(--home-ink);
  margin: 0 0 20px 0;
  letter-spacing: 0.02em;
  max-width: 540px;
}

.page-home .hero-lead {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--home-mid);
  margin: 0 0 24px 0;
  max-width: 520px;
  text-align: left;
}

.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border-radius: var(--radius-tag);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}

.page-home .btn-accent {
  background: var(--home-accent);
  color: #FFFFFF;
  border: 1px solid var(--home-accent);
}

.page-home .btn-ghost {
  background: transparent;
  color: var(--home-ink);
  border: 1px solid var(--home-mid);
}

.page-home .btn:hover,
.page-home .btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(232, 89, 12, 0.18);
}

.page-home .btn-ghost:hover,
.page-home .btn-ghost:focus-visible {
  border-color: var(--home-accent);
  color: var(--home-accent);
}

.page-home .hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--home-muted);
}

.page-home .meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.page-home .status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--home-accent);
  border-radius: 50%;
}

.page-home .hero-split-visual {
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 3% 100%);
  border-radius: var(--radius-card);
  overflow: hidden;
  min-height: 320px;
}

.page-home .hero-split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-home .hero-arc {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  fill: none;
  stroke-linecap: round;
  color: #FFFFFF;
}

.page-home .arc-path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.page-home .arc-one {
  opacity: 0.95;
  stroke-dasharray: 8 4;
}

.page-home .arc-two {
  opacity: 0.7;
  stroke-dasharray: 3 6;
}

.page-home .arc-three {
  opacity: 0.4;
  stroke-dasharray: 10 6;
}

/* 控制台区块 */
.page-home .console-section {
  position: relative;
  padding: 64px 0 72px;
  background: linear-gradient(180deg, #F2F4F3 0%, #FFFFFF 100%);
}

.page-home .console-bg-texture {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  opacity: 0.14;
}

.page-home .console-bg-texture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-home .shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.page-home .section-heading-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
}

.page-home .section-heading-row h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 36px);
  color: var(--home-ink);
  margin: 0;
  line-height: 1.3;
}

.page-home .section-desc {
  flex-basis: 100%;
  max-width: 440px;
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--home-muted);
}

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

.page-home .console-card.card-panel {
  position: relative;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--home-secondary);
  border-radius: var(--radius-card);
  padding: 28px 24px 22px;
  text-decoration: none;
  color: var(--home-ink);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.2s;
  overflow: hidden;
}

.page-home .console-card.card-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: transparent;
  transition: background 0.2s;
}

.page-home .console-card.card-panel:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: transparent;
}

.page-home .console-card.card-panel:hover::before {
  background: var(--home-accent);
}

.page-home .console-card-index {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--home-accent);
  display: inline-block;
  margin-bottom: 12px;
  letter-spacing: 0.06em;
}

.page-home .console-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--home-ink);
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.page-home .console-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--home-muted);
  margin: 0 0 16px 0;
}

.page-home .console-card-link {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--home-mid);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}

.page-home .console-card-link:hover {
  color: var(--home-accent);
}

.page-home .console-card-stats {
  background: linear-gradient(135deg, var(--home-deep) 0%, #40607A 100%) !important;
  color: #F2F4F3;
  border-color: var(--home-deep);
}

.page-home .console-card-stats .console-card-index {
  color: var(--home-accent);
}

.page-home .console-card-stats h3 {
  color: #F2F4F3;
}

.page-home .stat-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-home .stat-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.page-home .stat-label {
  font-size: 13px;
  color: rgba(242, 244, 243, 0.72);
}

.page-home .stat-value {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  color: #F2F4F3;
}

/* 公告时间线 */
.page-home .timeline-section {
  padding: 72px 0 64px;
  background: #FFFFFF;
  border-top: 1px solid var(--home-secondary);
  border-bottom: 1px solid var(--home-secondary);
}

.page-home .timeline-section .section-heading-row {
  margin-bottom: 32px;
}

.page-home .timeline-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.page-home .timeline-item {
  position: relative;
  padding-left: 28px;
  padding-bottom: 28px;
}

.page-home .timeline-item::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 0;
  width: 2px;
  background: var(--home-secondary);
}

.page-home .timeline-item:last-child::before {
  display: none;
}

.page-home .timeline-marker {
  position: absolute;
  left: 0;
  top: 12px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--home-bg);
  border: 2px solid var(--home-accent);
  z-index: 2;
}

.page-home .timeline-card.card-panel {
  background: var(--home-bg);
  border: 1px solid transparent;
  border-radius: var(--radius-card);
  padding: 20px 18px;
  transition: background 0.2s var(--ease), box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}

.page-home .timeline-card.card-panel:hover {
  background: var(--home-highlight);
  box-shadow: var(--shadow-float);
  transform: translateX(4px);
}

.page-home .timeline-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--home-accent);
  background: var(--home-highlight);
  border-radius: var(--radius-tag);
  padding: 2px 8px;
  margin-bottom: 10px;
}

.page-home .timeline-card h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  color: var(--home-ink);
  margin: 0 0 6px 0;
  line-height: 1.5;
}

.page-home .timeline-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--home-muted);
  margin: 0 0 10px 0;
}

.page-home .timeline-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--home-muted);
  letter-spacing: 0.04em;
}

/* 会员权益实时面板 */
.page-home .member-section {
  padding: 72px 0;
  background: var(--home-bg);
}

.page-home .member-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.page-home .member-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-home .member-copy h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 36px);
  color: var(--home-ink);
  margin: 0 0 16px 0;
}

.page-home .member-intro {
  font-size: 15px;
  line-height: 1.8;
  color: var(--home-mid);
  margin: 0 0 24px 0;
  max-width: 520px;
}

.page-home .benefit-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-home .benefit-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--home-ink);
  background: #FFFFFF;
  border-radius: var(--radius-card);
  padding: 12px 16px;
  border: 1px solid var(--home-secondary);
  transition: border-color 0.2s var(--ease);
}

.page-home .benefit-list li:hover {
  border-color: var(--home-accent);
}

.page-home .benefit-sign {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--home-accent);
  background: var(--home-highlight);
  border-radius: var(--radius-tag);
  padding: 2px 8px;
  flex-shrink: 0;
}

.page-home .member-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-home .member-panel > img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
  object-fit: cover;
  max-height: 300px;
  box-shadow: var(--shadow-float);
}

.page-home .member-card.card-panel {
  background: #FFFFFF;
  border-radius: var(--radius-card);
  padding: 22px 24px;
  box-shadow: var(--shadow-float);
  border: 1px solid var(--home-secondary);
}

.page-home .member-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.page-home .member-card-label {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--home-muted);
}

.page-home .member-card-value {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 700;
  color: var(--home-accent);
}

.page-home .progress-track-large {
  height: 6px;
  background: var(--home-secondary);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 14px;
}

.page-home .progress-bar-fill {
  height: 100%;
  display: block;
  background: linear-gradient(90deg, var(--home-mid), var(--home-accent));
  border-radius: 4px;
}

.page-home .member-card-foot {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--home-muted);
}

/* 桌面端优势指标 */
.page-home .desktop-advantage {
  padding: 72px 0 80px;
  background: var(--home-deep);
  color: #F2F4F3;
}

.page-home .shell-wide {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-home .advantage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.page-home .advantage-text .section-tag {
  color: rgba(242, 244, 243, 0.72);
}

.page-home .advantage-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 36px);
  color: #F2F4F3;
  margin: 0 0 16px 0;
}

.page-home .advantage-lead {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(242, 244, 243, 0.82);
  margin: 0 0 32px 0;
  max-width: 560px;
}

.page-home .indicator-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-home .indicator-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(242, 244, 243, 0.16);
}

.page-home .indicator-item dt {
  font-size: 15px;
  color: rgba(242, 244, 243, 0.78);
}

.page-home .indicator-item dd {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.page-home .indicator-num {
  font-family: var(--font-mono);
  font-size: 30px;
  font-weight: 700;
  color: #F2F4F3;
  letter-spacing: -0.02em;
}

.page-home .indicator-num::after {
  content: "";
  display: none;
}

.page-home .indicator-unit {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--home-accent);
}

.page-home .advantage-visual {
  overflow: hidden;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lift);
}

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

.page-home .advantage-note {
  margin-top: 32px;
  text-align: center;
}

.page-home .advantage-note p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(242, 244, 243, 0.58);
  margin: 0 auto;
  max-width: 640px;
}

/* 键盘焦点样式 */
.page-home .btn:focus-visible,
.page-home .console-card:focus-visible,
.page-home .timeline-card:focus-visible {
  outline: 2px solid var(--home-accent);
  outline-offset: 3px;
}

/* 响应式断点 */
@media (min-width: 768px) {
  .page-home .hero-split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    padding: 72px clamp(32px, 6vw, 80px) 80px;
    min-height: auto;
  }

  .page-home .hero-split-copy {
    padding-top: 12px;
  }

  .page-home .hero-split-visual {
    min-height: auto;
    height: 100%;
  }

  .page-home .hero-lead {
    font-size: 18px;
  }

  .page-home .console-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-home .timeline-item {
    padding-left: 44px;
  }

  .page-home .timeline-card.card-panel {
    padding: 24px 28px;
  }

  .page-home .timeline-card h3 {
    font-size: 19px;
  }

  .page-home .member-layout {
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
  }

  .page-home .advantage-grid {
    grid-template-columns: 1fr 1.04fr;
    gap: 60px;
  }
}

@media (min-width: 1024px) {
  .page-home .console-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-home .console-card-stats {
    grid-row: auto;
  }

  .page-home .timeline-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 48px;
    row-gap: 8px;
  }

  .page-home .timeline-item {
    padding-bottom: 32px;
  }

  .page-home .timeline-item:nth-child(odd) {
    padding-right: 16px;
  }

  .page-home .timeline-item:nth-child(even) {
    padding-left: 48px;
  }
}
