.page-home {
  --home-gutter: clamp(20px, 5vw, 56px);
  --home-space: clamp(52px, 8vw, 112px);
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* ===== FIG.01 首屏 ===== */
.page-home .hero {
  position: relative;
  background: var(--bg-alt);
  overflow: hidden;
}

.page-home .hero-bg {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center 35%;
}

.page-home .hero-copy {
  position: relative;
  background-color: var(--ink);
  background-image:
    linear-gradient(rgba(245, 242, 233, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 242, 233, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  color: #F5F2E9;
  padding: 40px var(--home-gutter) 56px;
  clip-path: polygon(0 0, calc(100% - 8%) 0, calc(100% - 28%) 100%, 0 100%);
  transition: clip-path 0.4s var(--ease);
}

.page-home .hero-copy:hover,
.page-home .hero-copy:focus-visible {
  clip-path: polygon(0 0, calc(100% - 6%) 0, calc(100% - 38%) 100%, 0 100%);
  outline: 2px solid var(--lime);
  outline-offset: -4px;
}

.page-home .hero-copy .index-tag {
  color: var(--lime);
  font-family: var(--font-index);
  font-size: 12px;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 10px;
}

.page-home .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 18px;
  padding: 0;
  font-family: var(--font-index);
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(245, 242, 233, 0.65);
}

.page-home .breadcrumb a {
  color: rgba(245, 242, 233, 0.8);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

.page-home .breadcrumb a:hover {
  color: var(--orange-soft);
}

.page-home .hero h1 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.12;
  letter-spacing: 1px;
  text-transform: uppercase;
  transform: skewX(-4deg);
  margin: 0 0 18px;
  max-width: 11em;
}

.page-home .hero-lead {
  max-width: 36em;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(245, 242, 233, 0.85);
  margin-bottom: 28px;
}

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

.page-home .hero-copy .btn-primary {
  background: var(--orange);
  border: 1px solid var(--orange);
  color: #fff;
  text-decoration: none;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.page-home .hero-copy .btn-primary:hover {
  background: var(--orange-soft);
  border-color: var(--orange-soft);
}

.page-home .hero-copy .btn-ghost {
  background: transparent;
  border: 1px dashed rgba(245, 242, 233, 0.7);
  color: #F5F2E9;
  text-decoration: none;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.page-home .hero-copy .btn-ghost:hover {
  border-color: var(--orange-soft);
  border-style: solid;
  color: var(--orange-soft);
}

.page-home .hero-coordinates {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
  padding-top: 16px;
  border-top: 1px solid rgba(245, 242, 233, 0.18);
  font-family: var(--font-index);
  font-size: 11px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(245, 242, 233, 0.55);
}

.page-home .hero-panel {
  background: var(--glass);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin: 22px var(--home-gutter) 48px;
  padding: 24px 20px;
  box-shadow: 10px 10px 0 rgba(43, 38, 32, 0.08);
}

.page-home .hero-panel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-index);
  font-size: 12px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.page-home .live-clock {
  color: var(--orange);
  font-weight: 700;
}

.page-home .hero-stats {
  margin: 0;
  padding: 0;
}

.page-home .hero-stats div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
}

.page-home .hero-stats dt {
  font-family: var(--font-index);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--ink-soft);
}

.page-home .hero-stats dd {
  margin: 0;
  font-family: var(--font-index);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  transition: color 0.3s var(--ease);
}

.page-home .hero-note {
  margin: 18px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.page-home .panel-link {
  color: var(--orange);
  font-family: var(--font-index);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 1px dashed currentColor;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.page-home .panel-link:hover {
  color: var(--ink);
  border-bottom-style: solid;
}

.page-home .hero-pulse {
  margin-top: 16px;
}

.page-home .hero-pulse svg {
  display: block;
  width: 100%;
  height: 42px;
}

.page-home .hero-pulse polyline {
  fill: none;
  stroke: var(--orange);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 340;
  animation: home-stream 12s linear infinite;
}

.page-home .hero-panel:hover .hero-pulse polyline {
  animation-duration: 2.4s;
  stroke: var(--ink);
}

.page-home .hero-panel:hover .hero-stats dd {
  color: var(--orange);
}

@keyframes home-stream {
  from { stroke-dashoffset: 340; }
  to { stroke-dashoffset: 0; }
}

/* ===== 信任声明 ===== */
.page-home .trust-bar {
  background: var(--orange);
  color: #fff;
  text-align: center;
  padding: 14px var(--home-gutter);
  font-family: var(--font-index);
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.page-home .trust-bar p {
  margin: 0;
}

.page-home .trust-bar strong {
  color: var(--lime);
}

/* ===== 区块通用标题 ===== */
.page-home .section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 16px;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.page-home .section-head h2 {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.2;
  letter-spacing: 1px;
  text-transform: uppercase;
  transform: skewX(-4deg);
}

.page-home .section-head .index-tag {
  font-family: var(--font-index);
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--orange);
  flex-basis: 100%;
}

.page-home .section-head .coord-tag {
  margin-left: auto;
  font-family: var(--font-index);
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ===== FIG.02 实时数据刷新面板 ===== */
.page-home .sync-panel {
  padding: var(--home-space) var(--home-gutter);
}

.page-home .sync-layout {
  display: grid;
  gap: 28px;
}

.page-home .sync-visual {
  margin: 0;
  position: relative;
  border: 1px solid var(--line);
  background: var(--brown);
}

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

.page-home .sync-visual figcaption {
  padding: 8px 12px;
  font-family: var(--font-index);
  font-size: 11px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: rgba(245, 242, 233, 0.7);
}

.page-home .sync-badge {
  position: absolute;
  top: -14px;
  right: 18px;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--font-index);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  padding: 8px 10px;
  transform: skewX(-5deg);
  box-shadow: 4px 4px 0 rgba(43, 38, 32, 0.18);
}

.page-home .sync-copy p {
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 18px;
}

.page-home .sync-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.page-home .sync-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 15px;
  line-height: 1.6;
}

.page-home .sync-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  background: var(--orange);
  border-radius: 50%;
  animation: home-breathe 2.4s ease-in-out infinite;
}

@keyframes home-breathe {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.72); }
}

/* ===== FIG.03 赛事日历 ===== */
.page-home .calendar-band {
  padding: var(--home-space) var(--home-gutter);
  border-top: 1px solid var(--line);
}

.page-home .calendar-layout {
  display: grid;
  gap: 28px;
  align-items: center;
}

.page-home .calendar-copy p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.8;
}

.page-home .text-link {
  display: inline-block;
  margin-top: 6px;
  color: var(--orange);
  font-family: var(--font-index);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px dashed currentColor;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.page-home .text-link:hover {
  color: var(--ink-soft);
  border-bottom-style: solid;
}

.page-home .calendar-visual {
  margin: 0;
}

.page-home .calendar-visual img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 260px;
  height: auto;
  object-fit: cover;
}

.page-home .calendar-visual figcaption,
.page-home .lineup-visual figcaption {
  margin-top: 10px;
  text-align: center;
  font-family: var(--font-index);
  font-size: 11px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ===== FIG.04 测试版栏目 ===== */
.page-home .lineup-band {
  position: relative;
  background: var(--bg-alt);
  color: #E8ECF1;
  padding: var(--home-space) var(--home-gutter);
  overflow: hidden;
}

.page-home .lineup-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 240, 79, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 240, 79, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.page-home .lineup-band .section-head {
  border-bottom-color: rgba(232, 236, 241, 0.16);
}

.page-home .lineup-band .section-head h2 {
  color: #E8ECF1;
}

.page-home .lineup-band .section-head .index-tag {
  color: var(--lime);
}

.page-home .lineup-band .section-head .coord-tag {
  color: rgba(232, 236, 241, 0.6);
}

.page-home .lineup-layout {
  display: grid;
  gap: 28px;
  position: relative;
}

.page-home .lineup-copy p {
  margin: 0 0 18px;
  color: rgba(232, 236, 241, 0.84);
  font-size: 16px;
  line-height: 1.8;
}

.page-home .lineup-metrics {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 36px;
  margin: 22px 0 28px;
  padding: 0;
}

.page-home .metric-num {
  display: block;
  font-family: var(--font-index);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
  color: var(--lime);
}

.page-home .metric-label {
  display: block;
  margin-top: 6px;
  font-family: var(--font-index);
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(232, 236, 241, 0.72);
}

.page-home .lineup-copy .btn-primary {
  background: var(--orange);
  border: 1px solid var(--orange);
  color: #fff;
  text-decoration: none;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.page-home .lineup-copy .btn-primary:hover {
  background: var(--orange-soft);
  border-color: var(--orange-soft);
}

.page-home .lineup-visual {
  margin: 0;
}

.page-home .lineup-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid rgba(232, 236, 241, 0.2);
}

.page-home .lineup-visual figcaption {
  color: rgba(232, 236, 241, 0.65);
  text-align: left;
}

/* ===== FIG.05 转会动态池 ===== */
.page-home .transfers-band {
  padding: var(--home-space) var(--home-gutter);
}

.page-home .transfers-layout {
  display: grid;
  gap: 28px;
}

.page-home .transfers-intro p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.8;
}

.page-home .transfer-list {
  list-style: none;
  margin: 0;
  padding: 4px 0 0 18px;
  border-left: 2px solid var(--orange);
}

.page-home .transfer-list li {
  position: relative;
  padding: 12px 0 12px 18px;
  border-bottom: 1px dashed var(--line);
  transition: background 0.25s var(--ease);
}

.page-home .transfer-list li:hover {
  background: rgba(224, 92, 58, 0.08);
}

.page-home .transfer-list li::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 20px;
  width: 10px;
  height: 10px;
  background: var(--yellow);
  border: 2px solid var(--bg);
  border-radius: 50%;
}

.page-home .transfer-time {
  display: inline-block;
  margin-bottom: 6px;
  padding: 2px 8px;
  background: var(--brown);
  font-family: var(--font-index);
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.page-home .transfer-list p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}

/* ===== FIG.06 会员中心 ===== */
.page-home .member-panel {
  padding: var(--home-space) var(--home-gutter);
  background:
    radial-gradient(circle at 88% 18%, rgba(233, 196, 106, 0.5) 0, transparent 26%),
    var(--bg);
}

.page-home .member-glass {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 48px);
  background: var(--glass);
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 10px 10px 0 rgba(43, 38, 32, 0.08);
  text-align: center;
}

.page-home .member-glass .index-tag {
  font-family: var(--font-index);
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--orange);
  text-transform: uppercase;
}

.page-home .member-glass h2 {
  margin: 10px 0 16px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: skewX(-4deg);
}

.page-home .member-glass p {
  margin: 0 auto 24px;
  max-width: 40em;
  font-size: 16px;
  line-height: 1.8;
}

.page-home .member-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

.page-home .member-glass .btn-primary {
  background: var(--orange);
  border: 1px solid var(--orange);
  color: #fff;
  text-decoration: none;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.page-home .member-glass .btn-primary:hover {
  background: var(--orange-soft);
  border-color: var(--orange-soft);
}

.page-home .member-glass .btn-ghost {
  background: transparent;
  border: 1px dashed var(--ink);
  color: var(--ink);
  text-decoration: none;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.page-home .member-glass .btn-ghost:hover {
  border-color: var(--orange);
  border-style: solid;
  color: var(--orange);
}

.page-home .member-feats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 40px;
  margin: 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
}

.page-home .member-feats div {
  min-width: 100px;
}

.page-home .member-feats dt {
  font-family: var(--font-index);
  font-size: 24px;
  font-weight: 700;
  color: var(--orange);
}

.page-home .member-feats dd {
  margin: 6px 0 0;
  font-family: var(--font-index);
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ===== 全站入口 ===== */
.page-home .portal-grid {
  padding: var(--home-space) var(--home-gutter);
  background: var(--bg-alt);
  color: #E8ECF1;
}

.page-home .portal-grid .section-head {
  border-bottom-color: rgba(232, 236, 241, 0.16);
}

.page-home .portal-grid .section-head h2 {
  color: #E8ECF1;
}

.page-home .portal-grid .section-head .index-tag {
  color: var(--lime);
}

.page-home .portal-grid .section-head .coord-tag {
  color: rgba(232, 236, 241, 0.6);
}

.page-home .portal-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.page-home .tile-card {
  display: block;
  padding: 20px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #E8ECF1;
  text-decoration: none;
  transition: border-color 0.3s var(--ease), border-style 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}

.page-home .tile-card:hover {
  border-color: var(--orange);
  border-style: dashed;
  background: rgba(224, 92, 58, 0.16);
  transform: translateY(-3px);
}

.page-home .tile-index {
  display: block;
  font-family: var(--font-index);
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--lime);
  margin-bottom: 10px;
}

.page-home .tile-title {
  display: block;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transform: skewX(-4deg);
  margin-bottom: 8px;
}

.page-home .tile-card span:last-child {
  display: block;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(232, 236, 241, 0.7);
}

/* ===== 桌面端布局 ===== */
@media (min-width: 768px) {
  .page-home .hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    min-height: min(720px, 92vh);
  }

  .page-home .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .page-home .hero-copy {
    grid-column: 1;
    grid-row: 1;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(48px, 7vw, 96px) clamp(24px, 4vw, 64px);
    clip-path: polygon(0 0, 98% 0, 74% 100%, 0 100%);
  }

  .page-home .hero-copy:hover,
  .page-home .hero-copy:focus-visible {
    clip-path: polygon(0 0, 100% 0, 62% 100%, 0 100%);
  }

  .page-home .hero-panel {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    margin: clamp(32px, 5vw, 64px) clamp(16px, 3vw, 48px);
  }

  .page-home .sync-layout,
  .page-home .calendar-layout,
  .page-home .lineup-layout,
  .page-home .transfers-layout {
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
  }

  .page-home .sync-layout {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .page-home .calendar-layout {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .page-home .calendar-visual img {
    max-width: 300px;
  }

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

@media (min-width: 1200px) {
  .page-home .hero-lead {
    font-size: 18px;
  }

  .page-home .hero-stats dd {
    font-size: 24px;
  }
}
