.page-home {
  --home-max: 1200px;
  --home-gutter: 24px;
  --home-radius-lg: 28px;
  --home-radius-md: 20px;
  --home-deep: #0B3D2E;
  --home-surface: #0F4C3A;
  --home-orange: #FF6B35;
  --home-gold: #D4AF37;
  --home-text: #F5F5F5;
  --home-text-dim: #C4D4C2;
  --home-border: #2E5F4A;
  --home-mono: "Roboto Mono", "SFMono-Regular", Consolas, monospace;
  --home-title-font: Impact, "Noto Sans SC", "Arial Black", sans-serif;
  --home-body-font: Inter, "PingFang SC", "Microsoft YaHei", sans-serif;

  background: linear-gradient(160deg, #0B3D2E 0%, #0E4433 48%, #093527 100%);
  color: var(--home-text);
  overflow-x: hidden;
  font-family: var(--home-body-font);
}

.page-home .container {
  max-width: var(--home-max);
  margin: 0 auto;
  padding-left: var(--home-gutter);
  padding-right: var(--home-gutter);
}

.page-home .terminal-index {
  display: inline-block;
  font-family: var(--home-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--home-text-dim);
  border: 1px solid var(--home-border);
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 76, 58, 0.48);
}

.page-home .home-section__title {
  font-family: var(--home-title-font);
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.08;
  margin: 12px 0 14px;
  letter-spacing: 0.01em;
}

.page-home .home-section__lead {
  color: var(--home-text-dim);
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}

/* ---------- 首屏 ---------- */
.page-home .home-hero {
  position: relative;
  padding-top: 44px;
  padding-bottom: 44px;
}

.page-home .home-hero__inner {
  display: grid;
  gap: 34px;
}

.page-home .home-hero__crumb {
  font-family: var(--home-mono);
  font-size: 12px;
  color: var(--home-text-dim);
  margin: 0 0 18px;
  padding: 8px 0;
  border-bottom: 1px solid var(--home-border);
}

.page-home .home-hero__title {
  font-family: var(--home-title-font);
  font-size: clamp(36px, 7.2vw, 74px);
  line-height: 1.04;
  margin: 0 0 18px;
  letter-spacing: 0.01em;
}

.page-home .home-hero__lead {
  color: var(--home-text-dim);
  font-size: 15px;
  line-height: 1.85;
  max-width: 520px;
  margin: 0 0 22px;
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.page-home .btn-primary,
.page-home .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--home-body-font);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: box-shadow 200ms ease, background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.page-home .btn-primary {
  background: var(--home-orange);
  color: #0B2A1D;
  border: 1px solid var(--home-orange);
}

.page-home .btn-primary:hover,
.page-home .btn-primary:focus-visible {
  background: #E65A2B;
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.24), 0 0 24px rgba(255, 107, 53, 0.32);
  transform: translateY(-2px);
}

.page-home .btn-ghost {
  background: transparent;
  color: var(--home-text);
  border: 1px solid rgba(196, 212, 194, 0.55);
}

.page-home .btn-ghost:hover,
.page-home .btn-ghost:focus-visible {
  background: rgba(255, 107, 53, 0.14);
  border-color: var(--home-orange);
  transform: translateY(-2px);
}

.page-home .home-hero__points {
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--home-border);
  padding-top: 20px;
}

.page-home .home-hero__points li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 14px;
  color: var(--home-text-dim);
}

.page-home .home-hero__point-index {
  font-family: var(--home-mono);
  font-size: 12px;
  color: var(--home-orange);
  font-weight: 700;
}

.page-home .home-hero__visual {
  position: relative;
}

.page-home .home-hero__panel {
  position: relative;
  background: var(--home-surface);
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius-lg);
  overflow: hidden;
  padding-top: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.page-home .home-hero__panel-top {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 18px 16px;
  border-bottom: 1px solid var(--home-border);
}

.page-home .home-hero__panel-status {
  font-family: var(--home-mono);
  font-size: 12px;
  color: #9FD6B4;
}

.page-home .home-hero__panel-status::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6ED49A;
  margin-right: 7px;
  vertical-align: 1px;
}

.page-home .home-hero__art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
}

.page-home .home-hero__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(46, 95, 74, 0.46) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 95, 74, 0.46) 1px, transparent 1px);
  background-size: 44px 44px;
  mix-blend-mode: screen;
  z-index: 1;
}

.page-home .home-hero__stat {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin: 18px;
  padding: 12px 18px;
  border-radius: 16px;
  background: rgba(11, 61, 46, 0.82);
  border: 1px solid rgba(255, 107, 53, 0.6);
  backdrop-filter: blur(4px);
}

.page-home .home-hero__stat-value {
  font-family: var(--home-mono);
  font-size: 30px;
  font-weight: 700;
  color: var(--home-orange);
}

.page-home .home-hero__stat-label {
  font-size: 13px;
  color: var(--home-text-width);
  color: var(--home-text);
}

.page-home .home-hero__chart {
  position: relative;
  z-index: 3;
  display: block;
  width: calc(100% - 36px);
  margin: 0 18px 18px;
  border-radius: 14px;
  background: rgba(11, 61, 46, 0.66);
  border: 1px solid rgba(46, 95, 74, 0.7);
}

.page-home .home-hero__chart-grid line {
  stroke: rgba(196, 212, 194, 0.2);
  stroke-width: 1;
}

.page-home .home-hero__chart-line {
  fill: none;
  stroke: var(--home-orange);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-home .home-hero__chart-dot {
  fill: var(--home-orange);
  stroke: #0B3D2E;
  stroke-width: 2;
}

.page-home .home-hero__chart-dot--gold {
  fill: var(--home-gold);
  stroke: #0B3D2E;
  stroke-width: 2;
}

.page-home .home-hero__caption {
  position: relative;
  z-index: 3;
  margin: 0;
  padding: 0 18px 18px;
  font-family: var(--home-mono);
  font-size: 11px;
  color: var(--home-text-dim);
}

/* 橙色斜线贯穿 */
.page-home .home-diagonal {
  position: relative;
  height: 2px;
  background: linear-gradient(118deg, transparent 0%, var(--home-orange) 30%, var(--home-orange) 68%, transparent 100%);
  opacity: 0.7;
  margin: 10px 0 8px;
}

.page-home .home-diagonal::before {
  content: "";
  position: relative;
  display: block;
  width: 100%;
  height: 8px;
  background: linear-gradient(118deg, transparent 42%, rgba(255, 107, 53, 0.14) 55%, transparent 74%);
  top: -3px;
}

/* ---------- 功能特性：区块 1 居左 ---------- */
.page-home .home-section {
  padding: 60px 0;
}

.page-home .home-section__head {
  display: grid;
  gap: 8px;
  margin-bottom: 30px;
}

.page-home .home-feature-grid {
  display: grid;
  gap: 18px;
}

.page-home .home-feature-card {
  background: var(--home-surface);
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius-md);
  padding: 26px 24px;
  position: relative;
  transition: border-color 220ms ease, transform 220ms ease, background 220ms ease;
}

.page-home .home-feature-card:hover {
  border-color: var(--home-orange);
  transform: translateY(-3px);
  background: #144B3A;
}

.page-home .home-feature-card__code {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: var(--home-mono);
  font-size: 20px;
  font-weight: 700;
  color: rgba(255, 107, 53, 0.22);
}

.page-home .home-feature-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--home-text);
  margin: 12px 0 10px;
}

.page-home .home-feature-card__desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--home-text-dim);
  margin: 0 0 18px;
}

.page-home .home-feature-card .tag {
  display: inline-block;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 999px;
}

.page-home .tag--outline {
  border: 1px solid rgba(255, 107, 53, 0.55);
  color: var(--home-orange);
  background: transparent;
}

.page-home .tag--gold {
  border: 1px solid rgba(212, 175, 55, 0.5);
  color: var(--home-gold);
  background: rgba(212, 175, 55, 0.08);
}

.page-home .tag {
  font-family: var(--home-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  border: 1px solid var(--home-border);
  color: var(--home-text-dim);
  background: rgba(15, 76, 58, 0.6);
  padding: 7px 14px;
  border-radius: 999px;
}

/* ---------- 更新时间：区块 2 居右 ---------- */
.page-home .home-section--update {
  background: linear-gradient(120deg, #0E4433 0%, #0B3D2E 70%);
  padding: 70px 0;
}

.page-home .home-update-block {
  display: grid;
  gap: 32px;
  align-items: center;
}

.page-home .home-update-block__text {
  order: 2;
}

.page-home .home-update-block__text .home-section__title {
  font-size: clamp(30px, 5vw, 50px);
}

.page-home .home-update-block__body {
  color: var(--home-text-dim);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
  max-width: 560px;
}

.page-home .home-update-clock {
  order: 1;
  background: rgba(11, 61, 46, 0.72);
  border: 1px solid var(--home-border);
  border-radius: 24px;
  padding: 32px 26px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-home .home-update-clock::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.18) 0%, transparent 68%);
  top: -70px;
  right: -60px;
}

.page-home .home-update-clock__label {
  display: block;
  font-family: var(--home-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--home-text-dim);
  margin-bottom: 12px;
}

.page-home .home-update-clock__time {
  display: block;
  font-family: var(--home-mono);
  font-size: clamp(48px, 8vw, 84px);
  font-weight: 700;
  color: var(--home-orange);
  line-height: 1;
  letter-spacing: 0.02em;
}

.page-home .home-update-clock__day {
  display: inline-block;
  margin-top: 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--home-text);
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.55);
  color: var(--home-gold);
}

.page-home .home-update-clock__note {
  margin: 16px 0 0;
  font-size: 13px;
  color: var(--home-text-dim);
}

/* ---------- 进失球分布：区块 3 居左 ---------- */
.page-home .home-section--distribution .home-distribution {
  display: grid;
  gap: 34px;
  align-items: center;
}

.page-home .home-distribution__media {
  order: 2;
}

.page-home .home-distribution__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--home-radius-lg);
  border: 1px solid var(--home-border);
  object-fit: cover;
}

.page-home .home-distribution__content {
  order: 1;
}

.page-home .home-distribution__list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  gap: 16px;
}

.page-home .home-distribution__list li {
  border-left: 2px solid var(--home-border);
  padding-left: 16px;
  transition: border-color 200ms ease;
}

.page-home .home-distribution__list li:hover {
  border-left-color: var(--home-orange);
}

.page-home .home-distribution__term {
  display: block;
  font-family: var(--home-mono);
  font-size: 15px;
  font-weight: 700;
  color: var(--home-text);
  margin-bottom: 4px;
}

.page-home .home-distribution__desc {
  display: block;
  font-size: 14px;
  line-height: 1.65;
  color: var(--home-text-dim);
}

/* ---------- 服务范围 ---------- */
.page-home .home-section--scope {
  background: linear-gradient(180deg, #0D4131 0%, #0B3D2E 100%);
}

.page-home .home-scope__head .home-section__title {
  margin-bottom: 6px;
}

.page-home .home-scope__intro {
  color: var(--home-text-dim);
  font-size: 15px;
  line-height: 1.8;
  max-width: 640px;
  margin: 0 0 30px;
}

.page-home .home-scope__body {
  display: grid;
  gap: 28px;
  margin-bottom: 36px;
}

.page-home .home-scope__figure {
  margin: 0;
}

.page-home .home-scope__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--home-radius-lg);
  border: 1px solid var(--home-border);
  object-fit: cover;
}

.page-home .home-scope__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: flex-start;
}

.page-home .home-scope__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.page-home .home-scope__stats .data-block {
  background: var(--home-surface);
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius-md);
  padding: 22px 18px;
  text-align: center;
  transition: border-color 200ms ease;
}

.page-home .home-scope__stats .data-block:hover {
  border-color: var(--home-orange);
}

.page-home .data-value {
  display: block;
  font-family: var(--home-mono);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--home-text);
}

.page-home .data-value--orange {
  color: var(--home-orange);
}

.page-home .data-value--gold {
  color: var(--home-gold);
}

.page-home .data-label {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--home-text-dim);
}

/* ---------- 反馈与承诺 ---------- */
.page-home .home-section--feedback {
  padding-top: 20px;
}

.page-home .home-feedback {
  display: grid;
  gap: 30px;
}

.page-home .home-feedback__title {
  font-size: 34px;
}

.page-home .home-feedback__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.page-home .home-feedback__card {
  background: var(--home-surface);
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius-lg);
  padding: 28px;
}

.page-home .home-feedback__card-title {
  font-size: 18px;
  color: var(--home-text);
  margin: 10px 0 16px;
}

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

.page-home .home-feedback__steps li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--home-text-dim);
}

.page-home .home-feedback__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.16);
  border: 1px solid rgba(255, 107, 53, 0.5);
  color: var(--home-orange);
  font-family: var(--home-mono);
  font-size: 13px;
  font-weight: 700;
}

.page-home .home-feedback__card-note {
  margin: 22px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--home-border);
  font-size: 13px;
  color: var(--home-text-dim);
}

/* ---------- 响应式 ---------- */
@media (min-width: 900px) {
  .page-home .home-hero__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: 48px;
  }

  .page-home .home-hero {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .page-home .home-hero__title {
    font-size: clamp(46px, 6vw, 70px);
  }

  .page-home .home-section {
    padding: 84px 0;
  }

  .page-home .home-section__head {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }

  .page-home .home-section__lead {
    font-size: 16px;
  }

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

  .page-home .home-update-block {
    grid-template-columns: 1fr 420px;
    gap: 48px;
  }

  .page-home .home-update-block__text {
    order: 1;
  }

  .page-home .home-update-clock {
    order: 2;
    padding: 40px 30px;
  }

  .page-home .home-distribution {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 52px;
  }

  .page-home .home-distribution__media {
    order: 1;
  }

  .page-home .home-distribution__content {
    order: 2;
  }

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

  .page-home .home-scope__tags {
    justify-content: flex-start;
    padding: 20px;
  }

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

  .page-home .home-feedback {
    grid-template-columns: 1fr 360px;
    gap: 48px;
    align-items: center;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .page-home .home-feature-card {
    transition: border-color 220ms ease, transform 220ms ease, background 220ms ease;
  }
}

.page-home a:focus-visible {
  outline: 2px solid var(--home-orange);
  outline-offset: 3px;
}

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

.page-home {
  --home-text-width: currentColor;
}
