.page-home {
  --home-panel: #20242B;
  --home-panel-deep: #16191F;
  --home-dark-line: #3A414B;
  --home-deco: rgba(0, 168, 255, 0.18);
  --home-deco-orange: rgba(255, 106, 0, 0.16);
  background: var(--c-bg);
  color: var(--c-white);
  overflow-x: hidden;
}

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

.page-home .breadcrumbs {
  padding-top: 20px;
}

/* ========== 首屏分屏 ========== */
.page-home .home-hero {
  position: relative;
  padding: clamp(24px, 5vw, 64px) 0 44px;
}

.page-home .home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-primary) 30%, var(--c-accent) 70%, transparent);
  opacity: 0.7;
}

.page-home .home-hero__grid {
  display: grid;
  gap: 36px;
  align-items: center;
}

.page-home .home-hero__story {
  position: relative;
  z-index: 2;
}

.page-home .home-hero__eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 14px 6px 12px;
  border-left: 3px solid var(--c-accent);
  background: var(--home-deco-orange);
  color: var(--c-accent);
  font: 700 12px/1.4 var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-home .home-hero__title {
  margin: 0 0 16px;
  font: italic 900 clamp(30px, 5vw, 54px)/1.08 var(--font-display);
  letter-spacing: 0.01em;
  color: var(--c-white);
}

.page-home .home-hero__lead {
  margin: 0 0 24px;
  max-width: 560px;
  color: var(--c-silver);
  font: 400 15px/1.8 var(--font-body);
}

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

.page-home .home-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--c-edge);
}

.page-home .home-hero__stat dt {
  margin-bottom: 4px;
  color: var(--c-silver);
  font-size: 12px;
}

.page-home .home-hero__stat dd {
  margin: 0;
  color: var(--c-primary);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.page-home .home-hero__visual {
  position: relative;
  min-height: 340px;
}

.page-home .home-hero__visual::before {
  content: "";
  position: absolute;
  top: -8%;
  right: -10%;
  width: 120%;
  height: 64%;
  background: repeating-linear-gradient(-45deg, transparent 0 14px, rgba(0, 168, 255, 0.08) 14px 16px);
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  pointer-events: none;
}

.page-home .hero-gauge {
  position: relative;
  z-index: 2;
  width: min(360px, 82vw);
  aspect-ratio: 1/1;
  margin: 0 auto;
}

.page-home .hero-gauge__svg {
  display: block;
  width: 100%;
  height: 100%;
}

.page-home .hero-gauge__track {
  fill: none;
  stroke: var(--c-panel);
  stroke-width: 10;
}

.page-home .hero-gauge__arc {
  fill: none;
  stroke: var(--c-primary);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 74 100;
  transform: rotate(-90deg);
  transform-origin: center;
}

.page-home .hero-gauge__tick {
  stroke: var(--c-accent);
  stroke-width: 4;
}

.page-home .hero-gauge__center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.page-home .hero-gauge__label {
  color: var(--c-silver);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.page-home .hero-gauge__time {
  color: var(--c-neon);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.1;
}

.page-home .hero-gauge__hint {
  color: var(--c-accent);
  font-size: 13px;
}

.page-home .home-hero__img {
  position: absolute;
  left: -8%;
  bottom: -18%;
  z-index: 0;
  width: 80%;
  max-width: 420px;
  height: auto;
  object-fit: cover;
  clip-path: polygon(8% 0, 100% 8%, 92% 100%, 0 92%);
  opacity: 0.3;
  pointer-events: none;
}

/* ========== 赛程中心 ========== */
.page-home .schedule-section {
  padding: 40px 0 60px;
}

.page-home .schedule-section > .container {
  position: relative;
  z-index: 1;
}

.page-home .schedule-section__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
}

.page-home .schedule-grid {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.page-home .schedule-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  border-left: 3px solid var(--c-primary);
  background: linear-gradient(135deg, #232930 0%, #1E242C 60%);
}

.page-home .schedule-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
  height: 32px;
  background: var(--c-primary);
  opacity: 0.16;
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}

.page-home .schedule-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.page-home .schedule-card__index {
  color: var(--c-accent);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.page-home .schedule-card__name {
  margin: 4px 0 0;
  color: var(--c-white);
  font: 700 18px/1.3 var(--font-body);
}

.page-home .schedule-card__body {
  display: grid;
  gap: 14px;
}

.page-home .schedule-card__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0;
  padding: 12px 0;
  border-top: 1px dashed var(--home-dark-line);
  border-bottom: 1px dashed var(--home-dark-line);
}

.page-home .schedule-card__meta dt {
  margin-bottom: 4px;
  color: var(--c-silver);
  font-size: 12px;
}

.page-home .schedule-card__meta dd {
  margin: 0;
  color: var(--c-white);
  font-weight: 700;
}

.page-home .schedule-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.page-home .schedule-card__fee {
  color: var(--c-accent);
  font-size: 20px;
  font-weight: 700;
}

/* ========== 老用户登录 ========== */
.page-home .login-section {
  padding: 52px 0;
  background: var(--c-bg-deep);
}

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

.page-home .login-section__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  clip-path: polygon(0 4%, 96% 0, 100% 96%, 4% 100%);
}

.page-home .login-section__content .section__head {
  margin-bottom: 18px;
}

.page-home .login-panel {
  position: relative;
  margin-top: 18px;
  padding: 20px;
  border: 1px solid var(--home-dark-line);
  background: var(--home-panel);
}

.page-home .login-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--c-primary), var(--c-accent));
}

.page-home .login-panel__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--c-silver);
  font-size: 13px;
}

.page-home .login-panel__list {
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
  padding-left: 18px;
  color: var(--c-silver);
  font-size: 14px;
  line-height: 1.6;
}

.page-home .login-panel__list strong {
  color: var(--c-white);
}

.page-home .login-panel__note {
  margin: 0 0 14px;
  color: var(--c-silver);
  font-size: 13px;
  line-height: 1.6;
}

/* ========== 阵容费用清单 ========== */
.page-home .fee-section {
  padding: 52px 0;
  background: linear-gradient(var(--home-deco-angle, 146deg), var(--c-bg-deep) 0%, #181D22 60%, var(--c-bg) 100%);
}

.page-home .fee-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.page-home .fee-item {
  border: 1px solid var(--home-dark-line);
  border-left: 3px solid var(--c-accent);
  background: var(--home-panel);
  transition: border-color 0.2s ease;
}

.page-home .fee-item .faq-item__q {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  width: 100%;
  padding: 16px 18px;
  border: 0;
  background: transparent;
  color: var(--c-white);
  font: 500 15px/1.5 var(--font-body);
  text-align: left;
  cursor: pointer;
}

.page-home .fee-item__tag {
  justify-self: start;
}

.page-home .fee-item__title {
  font-weight: 700;
}

.page-home .fee-item__amount {
  justify-self: end;
  color: var(--c-accent);
  font-size: 20px;
  font-weight: 700;
}

.page-home .fee-item .faq-item__a {
  padding: 0 18px 18px;
}

/* ========== 赛前十分钟提醒 ========== */
.page-home .remind-section {
  padding: 52px 0;
}

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

.page-home .remind-section__text {
  margin: 0 0 18px;
  color: var(--c-silver);
  font: 400 15px/1.8 var(--font-body);
}

.page-home .remind-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  max-width: 520px;
  padding: 28px;
  border: 1px solid rgba(57, 255, 20, 0.35);
  background: linear-gradient(135deg, rgba(57, 255, 20, 0.08), transparent 60%);
  clip-path: polygon(0 0, 100% 0, 100% 86%, 6% 100%, 0 78%);
}

.page-home .remind-panel__ico {
  font-size: 30px;
  line-height: 1;
}

.page-home .remind-panel__text {
  color: var(--c-neon);
  font: 700 18px/1.4 var(--font-body);
}

.page-home .remind-panel__time {
  color: var(--c-accent);
  font-size: 28px;
  font-weight: 700;
}

/* ========== 苹果手机赛事入口 ========== */
.page-home .apple-section {
  padding: 52px 0;
  background: #171B20;
}

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

.page-home .apple-steps {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.page-home .apple-steps__item {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--home-dark-line);
  background: var(--home-panel);
  transform: skewX(-8deg);
}

.page-home .apple-steps__item > * {
  transform: skewX(8deg);
}

.page-home .apple-steps__no {
  flex: 0 0 auto;
  color: var(--c-primary);
  font-size: 16px;
  font-weight: 700;
}

.page-home .apple-steps__item p {
  margin: 0;
  color: var(--c-silver);
  font-size: 14px;
  line-height: 1.7;
}

.page-home .apple-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-home .apple-frame {
  position: relative;
  max-width: 320px;
  margin: 0 auto;
}

.page-home .apple-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  clip-path: polygon(2% 6%, 98% 2%, 96% 98%, 6% 96%);
}

.page-home .apple-frame__dock {
  display: block;
  margin-top: 12px;
  padding: 10px 8px;
  border-left: 3px solid var(--c-accent);
  background: var(--home-deco-orange);
  color: var(--c-accent);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-align: center;
}

/* ========== 数据更新状态 ========== */
.page-home .refresh-section {
  padding: 52px 0;
  background: linear-gradient(146deg, #15191E 0%, var(--c-bg) 55%, #15191E 100%);
}

.page-home .refresh-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.page-home .refresh-grid .data-panel {
  background: var(--home-panel);
  border: 1px solid var(--home-dark-line);
  border-top: 3px solid var(--c-primary);
}

.page-home .key-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 24px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--c-edge);
  list-style: none;
}

.page-home .cross-section {
  padding: 48px 0 56px;
}

.page-home .cross-grid {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.page-home .cross-card {
  display: block;
  padding: 20px;
  background: var(--home-panel);
  border: 1px solid var(--home-dark-line);
  border-bottom: 3px solid var(--c-primary);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.page-home .cross-card:hover {
  transform: translateX(4px) skewX(-1deg);
  border-bottom-color: var(--c-accent);
}

.page-home .cross-card__no {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--c-primary);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.page-home .cross-card h3 {
  margin: 4px 0 8px;
  color: var(--c-white);
  font-size: 16px;
  line-height: 1.4;
}

.page-home .cross-card p {
  margin: 0;
  color: var(--c-silver);
  font-size: 13px;
  line-height: 1.6;
}

/* ========== 刷新高亮 ========== */
.page-home [data-refresh].is-flash {
  animation: page-home-flash 0.6s ease;
}

@keyframes page-home-flash {
  0% {
    box-shadow: 0 0 0 2px rgba(57, 255, 20, 0.85);
  }
  100% {
    box-shadow: 0 0 0 2px transparent;
  }
}

/* ========== 桌面端 ========== */
@media (min-width: 640px) {
  .page-home .cross-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 960px) {
  .page-home .home-hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
  }

  .page-home .home-hero__visual {
    min-height: 0;
  }

  .page-home .home-hero__img {
    left: -6%;
    bottom: -14%;
    opacity: 0.34;
  }

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

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

  .page-home .fee-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

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

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

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

  .page-home .apple-steps__item p {
    font-size: 15px;
  }

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

.page-home {
  --home-deco-angle: transparent;
}
