.page-home {
  --home-cut: 6deg;
  position: relative;
  overflow-x: hidden;
  font-family: var(--font-body);
  color: var(--data-white);
  background:
    radial-gradient(110% 70% at 8% 0%, rgba(53, 232, 192, 0.1), transparent 58%),
    radial-gradient(80% 60% at 100% 24%, rgba(255, 106, 43, 0.09), transparent 60%);
}

.page-home__crumb-wrap {
  padding-top: 20px;
}

/* ---------- 首屏 ---------- */
.page-home .hero {
  padding: 4px 0 8px;
}

.page-home .hero__inner {
  padding-top: 18px;
}

.page-home .hero__lede {
  max-width: 52ch;
}

.page-home .hero__kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--cyan);
}

.page-home .hero__title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 8.6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0.01em;
  color: var(--cream);
}

.page-home .hero__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(232, 241, 236, 0.8);
}

/* ---------- 拼贴网格 ---------- */
.page-home .pitch-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 30px;
}

.page-home .board {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  padding: 22px 20px 26px;
  background: var(--shadow-green);
  border: 1px solid var(--rule);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 22px), 0 100%);
}

.page-home .board__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.26;
  filter: saturate(0.7) contrast(1.05);
  pointer-events: none;
}

.page-home .board__head,
.page-home .board__score,
.page-home .board__note,
.page-home .board__svg {
  position: relative;
  z-index: 1;
}

.page-home .board__head .index-label {
  color: rgba(232, 241, 236, 0.7);
}

.page-home .board__score {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

.page-home .board__cell {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-home .board__num {
  font-family: var(--font-data);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  font-size: clamp(46px, 13vw, 88px);
  line-height: 0.88;
  letter-spacing: -0.02em;
  color: var(--accent-2);
}

.page-home .board__unit {
  font-family: var(--font-index);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: rgba(232, 241, 236, 0.72);
}

.page-home .board__slash {
  font-family: var(--font-data);
  font-size: 40px;
  line-height: 1;
  color: rgba(232, 241, 236, 0.28);
  padding-bottom: 4px;
}

.page-home .board__note {
  margin: 0;
  max-width: 42ch;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(232, 241, 236, 0.7);
}

.page-home .board__svg {
  width: 100%;
  max-width: 320px;
  height: auto;
  margin-top: auto;
  color: rgba(53, 232, 192, 0.5);
}

.page-home .board__svg circle {
  fill: currentColor;
}

/* 倒计时玻璃条 */
.page-home .countdown {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  background: var(--glass);
  border: 1px solid var(--rule);
  backdrop-filter: blur(10px);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 16px));
}

.page-home .countdown__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.page-home .countdown__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: home-pulse 1.8s infinite;
}

@keyframes home-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 106, 43, 0.55);
  }
  60% {
    box-shadow: 0 0 0 9px rgba(255, 106, 43, 0);
  }
}

.page-home .countdown__big {
  margin: 0;
  font-family: var(--font-data);
  font-variant-numeric: tabular-nums;
  font-size: clamp(42px, 11vw, 62px);
  line-height: 0.92;
  color: var(--cyan);
}

.page-home .countdown__label {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--cream);
}

.page-home .countdown__bar {
  height: 6px;
  margin: 6px 0 2px;
  background: rgba(232, 241, 236, 0.12);
  overflow: hidden;
}

.page-home .countdown__fill {
  display: block;
  width: 64%;
  height: 100%;
  background: var(--cyan);
}

.page-home .countdown__foot {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(232, 241, 236, 0.62);
}

/* 首屏主图 */
.page-home .hero-figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--rule);
}

.page-home .hero-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.06);
}

.page-home .hero-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 31, 26, 0.08), rgba(12, 31, 26, 0.66));
  pointer-events: none;
}

.page-home .hero-figure .media__caption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 2;
  font-family: var(--font-index);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
}

/* 场边笔记 */
.page-home .note-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 22px;
  background: var(--cream);
  color: var(--ink);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), 0 100%);
}

.page-home .note-card .index-label {
  color: rgba(20, 32, 28, 0.6);
}

.page-home .note-card__text {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
}

.page-home .note-card__cta {
  font-family: var(--font-index);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--ink);
}

/* ---------- 租借时间线 ---------- */
.page-home .window {
  position: relative;
  margin-top: 46px;
  padding: 76px 0 68px;
  background: var(--shadow-green);
  clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
}

.page-home .window__head {
  max-width: 56ch;
}

.page-home .window__title {
  margin: 12px 0 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 5.4vw, 44px);
  line-height: 1.04;
  letter-spacing: 0.01em;
  color: var(--cream);
}

.page-home .window__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(232, 241, 236, 0.72);
}

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

.page-home .node {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
  padding: 20px 20px 20px 22px;
  background: rgba(244, 239, 227, 0.05);
  border-left: 2px solid rgba(232, 241, 236, 0.2);
  transition: border-color 0.24s var(--ease), background 0.24s var(--ease);
}

.page-home .node:hover {
  border-left-color: var(--accent);
  background: rgba(244, 239, 227, 0.08);
}

.page-home .node--live {
  border-left-color: var(--cyan);
}

.page-home .node--next {
  border-left-color: var(--orange);
}

.page-home .node__num {
  font-family: var(--font-data);
  font-variant-numeric: tabular-nums;
  font-size: 22px;
  line-height: 1.2;
  color: var(--accent);
}

.page-home .node__body {
  min-width: 0;
}

.page-home .node__title {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--cream);
}

.page-home .node__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(232, 241, 236, 0.72);
}

.page-home .node__state {
  grid-column: 2;
  justify-self: start;
  margin-top: 10px;
  padding: 3px 0;
  font-family: var(--font-index);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(232, 241, 236, 0.6);
}

/* ---------- 数据同步带 ---------- */
.page-home .sync {
  padding: 62px 0 30px;
}

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

.page-home .sync__title {
  margin: 12px 0 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 5.4vw, 44px);
  line-height: 1.04;
  color: var(--cream);
}

.page-home .sync__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(232, 241, 236, 0.75);
}

.page-home .sync__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.page-home .sync__stats li {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.page-home .s-num {
  font-family: var(--font-data);
  font-variant-numeric: tabular-nums;
  font-size: 34px;
  line-height: 1;
  color: var(--cyan);
}

.page-home .s-unit {
  font-size: 13px;
  letter-spacing: 0.05em;
  color: rgba(232, 241, 236, 0.66);
}

.page-home .sync__bars {
  display: grid;
  gap: 24px;
  align-content: start;
}

.page-home .meter__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 14px;
  color: var(--cream);
}

.page-home .meter__top .data-figure {
  font-family: var(--font-data);
  font-variant-numeric: tabular-nums;
  font-size: 18px;
  color: var(--accent-2);
}

.page-home .meter__track {
  height: 10px;
  margin: 10px 0 8px;
  background: rgba(232, 241, 236, 0.1);
  overflow: hidden;
}

.page-home .meter__fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), rgba(53, 232, 192, 0.4));
}

.page-home .meter__fill--56 {
  width: 56%;
}

.page-home .meter__fill--78 {
  width: 78%;
}

.page-home .meter__note {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(232, 241, 236, 0.62);
}

.page-home .corners__label {
  display: block;
  margin-bottom: 12px;
}

.page-home .corners__scale {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 4px;
  align-items: end;
  height: 64px;
}

.page-home .corners__scale i {
  display: block;
  height: 36%;
  background: rgba(232, 241, 236, 0.14);
}

.page-home .corners__scale i.on {
  height: 100%;
  background: var(--accent-2);
}

.page-home .corners__note {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(232, 241, 236, 0.62);
}

.page-home .sync__figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--rule);
  align-self: start;
}

.page-home .sync__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.08) brightness(0.9);
}

.page-home .sync__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(12, 31, 26, 0.2), rgba(12, 31, 26, 0.7));
  pointer-events: none;
}

.page-home .sync__figure .media__caption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 2;
  font-family: var(--font-index);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
}

/* ---------- 看台文化 ---------- */
.page-home .terrace {
  padding: 46px 0 10px;
}

.page-home .terrace__banner {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.page-home .terrace__banner img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.05);
}

.page-home .terrace__banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 31, 26, 0.92), rgba(12, 31, 26, 0.28) 52%, rgba(12, 31, 26, 0.92));
  pointer-events: none;
}

.page-home .terrace__inner {
  padding-top: 30px;
}

.page-home .terrace__head {
  max-width: 54ch;
}

.page-home .terrace__title {
  margin: 12px 0 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 5.4vw, 42px);
  line-height: 1.06;
  color: var(--cream);
}

.page-home .terrace__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(232, 241, 236, 0.75);
}

.page-home .filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.page-home .filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  font-family: var(--font-index);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--data-white);
  background: rgba(244, 239, 227, 0.05);
  border: 1px solid var(--rule);
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.page-home .filter-chip:hover {
  border-color: var(--cyan);
}

.page-home .filter-chip[aria-pressed="true"] {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--ink);
}

.page-home .filter-chip__count {
  font-family: var(--font-data);
  font-variant-numeric: tabular-nums;
  opacity: 0.7;
}

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

.page-home .quote {
  position: relative;
  padding: 18px 18px 18px 22px;
  background: rgba(244, 239, 227, 0.05);
  border: 1px solid var(--rule-soft);
}

.page-home .quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 2px;
  background: transparent;
  transition: background 0.24s var(--ease);
}

.page-home .quote:hover::before {
  background: var(--accent);
}

.page-home .quote__text {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--data-white);
}

.page-home .quote__src {
  font-family: var(--font-index);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(232, 241, 236, 0.55);
}

.page-home .terrace__more {
  margin: 22px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(232, 241, 236, 0.68);
}

.page-home .terrace__more a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(53, 232, 192, 0.5);
}

/* ---------- 入口分流 ---------- */
.page-home .gates {
  padding: 54px 0 70px;
}

.page-home .gates__title {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 5.4vw, 42px);
  line-height: 1.06;
  color: var(--cream);
}

.page-home .gates__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 26px;
}

.page-home .gate {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  padding: 22px 20px;
  text-decoration: none;
  color: inherit;
  background: rgba(244, 239, 227, 0.04);
  border: 1px solid var(--rule);
  transition: background 0.24s var(--ease), transform 0.24s var(--ease), border-color 0.24s var(--ease);
}

.page-home .gate:hover {
  background: rgba(53, 232, 192, 0.08);
  border-color: rgba(53, 232, 192, 0.45);
  transform: translateY(-2px);
}

.page-home .gate__num {
  font-family: var(--font-data);
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--accent);
}

.page-home .gate__body {
  min-width: 0;
}

.page-home .gate__name {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--cream);
}

.page-home .gate__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(232, 241, 236, 0.72);
}

.page-home .gate__go {
  margin-top: auto;
  font-family: var(--font-index);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.page-home .gate--hero {
  background: rgba(53, 232, 192, 0.06);
  border-color: rgba(53, 232, 192, 0.3);
}

/* ---------- 桌面栅格 ---------- */
@media (min-width: 720px) {
  .page-home .quotes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 860px) {
  .page-home .pitch-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: minmax(66px, auto);
    gap: 18px;
  }

  .page-home .board {
    grid-column: 1 / 7;
    grid-row: 1 / 4;
  }

  .page-home .countdown {
    grid-column: 7 / 13;
    grid-row: 1 / 2;
  }

  .page-home .hero-figure {
    grid-column: 7 / 13;
    grid-row: 2 / 6;
    height: 100%;
    min-height: 320px;
  }

  .page-home .hero-figure img {
    height: 100%;
    aspect-ratio: auto;
  }

  .page-home .note-card {
    grid-column: 1 / 7;
    grid-row: 4 / 6;
  }

  .page-home .sync__inner {
    grid-template-columns: 1.25fr 1fr 0.72fr;
    gap: 32px;
    align-items: start;
  }

  .page-home .gate--hero {
    grid-column: span 6;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    padding: 30px 26px;
  }

  .page-home .gate--hero .gate__body {
    flex: 1;
  }

  .page-home .gate--hero .gate__name {
    font-size: 30px;
  }

  .page-home .gate--hero .gate__go {
    margin-top: 0;
  }
}

@media (min-width: 1024px) {
  .page-home .gates__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
  }

  .page-home .gate {
    grid-column: span 2;
  }

  .page-home .window {
    margin-top: 60px;
    padding: 90px 0 84px;
  }

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

  .page-home .hero {
    padding: 10px 0 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .countdown__pulse {
    animation: none;
  }

  .page-home .gate,
  .page-home .node,
  .page-home .quote::before,
  .page-home .filter-chip {
    transition-duration: 0.01ms;
  }

  .page-home .gate:hover {
    transform: none;
  }
}
