.page-home {
  background: var(--clr-bg);
}

/* ============ 首屏 ============ */
.page-home .home-hero {
  position: relative;
  background: var(--clr-bg);
  color: var(--clr-white);
  padding: 3rem 0 4.5rem;
  overflow: hidden;
}
.page-home .home-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 58%;
  height: 22px;
  background: var(--clr-accent);
  clip-path: polygon(0 0, 100% 0, 92% 100%, 18% 100%);
  opacity: 0.9;
  z-index: 1;
}
.page-home .home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40%;
  height: 80px;
  background: linear-gradient(115deg, var(--clr-bg-secondary) 0%, var(--clr-bg-secondary) 48%, transparent 48%);
  opacity: 0.7;
}
.page-home .home-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2.75rem;
  align-items: center;
}

.page-home .hero-crumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
}
.page-home .hero-crumb a {
  color: var(--clr-accent);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.15s ease;
}
.page-home .hero-crumb a:hover {
  color: var(--clr-gold);
}
.page-home .hero-crumb [aria-current="page"] {
  color: var(--clr-gold);
}

.page-home .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 0.85rem;
}
.page-home .hero-eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--clr-gold);
}

.page-home .hero-title {
  margin: 0 0 1.4rem;
}
.page-home .hero-official {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 0.4rem;
}
.page-home .hero-slogan {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  font-weight: 800;
  line-height: 1.06;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--clr-white);
}

.page-home .hero-lead {
  max-width: 31rem;
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
}
.page-home .hero-lead strong {
  color: var(--clr-accent);
  font-weight: 800;
}

.page-home .hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 1rem;
  margin-bottom: 1.75rem;
}
.page-home .hero-meta-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--clr-bg);
  background: var(--clr-accent);
  padding: 0.35rem 0.8rem;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 0 100%);
}
.page-home .hero-meta-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--clr-gold);
}
.page-home .hero-meta-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}

.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.page-home .hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid rgba(255,255,255,0.6);
  background: transparent;
  color: var(--clr-white);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.page-home .hero-secondary:hover {
  background: var(--clr-white);
  border-color: var(--clr-white);
  color: var(--clr-bg);
}

.page-home .hero-note {
  max-width: 30rem;
  margin-top: 1.5rem;
  padding-left: 0.9rem;
  border-left: 2px solid var(--clr-gold);
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
}
.page-home .hero-note a {
  color: var(--clr-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.page-home .hero-note a:hover {
  color: var(--clr-accent);
}

.page-home .hero-visual {
  position: relative;
  padding: 1rem 0;
}
.page-home .hero-deco-ring {
  position: absolute;
  top: -14px;
  right: 4%;
  width: 110px;
  height: 110px;
  border: 2px solid rgba(0,255,157,0.3);
  border-radius: 16px;
  transform: rotate(24deg);
  pointer-events: none;
}
.page-home .hero-deco-tri {
  position: absolute;
  bottom: 8px;
  left: 2%;
  width: 64px;
  height: 64px;
  background: rgba(255,215,0,0.35);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  pointer-events: none;
}
.page-home .hero-stack {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
}

.page-home .phone-frame {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  width: 190px;
  height: 380px;
  border-radius: 30px;
  background: var(--clr-bg-secondary);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 26px 60px rgba(0,0,0,0.45), inset 0 0 0 2px rgba(255,255,255,0.03);
  padding: 20px 14px 16px;
  box-sizing: border-box;
  transform: rotate(2.5deg);
}
.page-home .phone-notch {
  width: 72px;
  height: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.14);
  margin: -8px auto 8px;
}
.page-home .phone-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.58rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 6px;
}
.page-home .phone-apphead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--clr-white);
}
.page-home .phone-live {
  display: inline-block;
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--clr-bg);
  background: var(--clr-accent);
  border-radius: 2px;
  padding: 2px 5px;
}
.page-home .phone-section {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 10px;
}
.page-home .phone-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 8px;
}
.page-home .phone-bar {
  display: block;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.14);
  margin-bottom: 6px;
}
.page-home .phone-bar.w-80 { width: 80%; }
.page-home .phone-bar.w-60 { width: 60%; }
.page-home .phone-bar.w-75 { width: 75%; }
.page-home .phone-bar.w-50 { width: 50%; }
.page-home .phone-bar.w-70 { width: 70%; }
.page-home .phone-bar.w-40 { width: 40%; }
.page-home .phone-bar.accent { background: var(--clr-accent); }
.page-home .phone-divider {
  height: 1px;
  margin: 10px 0;
  background: linear-gradient(90deg, var(--clr-gold), transparent);
}
.page-home .phone-scoreline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.page-home .phone-score {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--clr-white);
  letter-spacing: 0.02em;
}
.page-home .phone-pill {
  display: inline-block;
  font-size: 0.52rem;
  font-weight: 800;
  color: var(--clr-bg);
  background: var(--clr-gold);
  border-radius: 2px;
  padding: 2px 6px;
}
.page-home .hero-phone-img {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  align-self: end;
  width: 140px;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  border-radius: 18px;
  border: 3px solid var(--clr-accent-dark);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  transform: translate(16px, -16px) rotate(-5deg);
}

/* ============ 赛事状态分屏 ============ */
.page-home .home-status {
  position: relative;
  background: var(--clr-light);
  color: var(--clr-dark);
  padding: 3.5rem 0 4rem;
  overflow: hidden;
}
.page-home .home-status::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 6px;
  background: linear-gradient(90deg, transparent, var(--clr-accent-dark));
}

.page-home .section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-bg);
  background: var(--clr-accent);
  padding: 0.35rem 0.8rem;
  border-radius: 2px;
}
.page-home .section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 4vw, 2.3rem);
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0.85rem 0 0;
}
.page-home .section-desc {
  margin-top: 0.8rem;
  max-width: 38rem;
  font-size: 0.95rem;
  line-height: 1.75;
}

.page-home .status-header {
  max-width: 42rem;
  margin-bottom: 1.5rem;
}
.page-home .home-status .section-desc {
  color: rgba(26,26,26,0.72);
}

.page-home .status-flow {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.page-home .flow-node {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.4);
  padding: 0.35rem 0.65rem;
  border: 1px solid #D5DBE1;
  border-radius: 3px;
  background: var(--clr-white);
  white-space: nowrap;
}
.page-home .flow-node.is-active {
  color: var(--clr-bg);
  background: var(--clr-accent);
  border-color: var(--clr-accent);
}
.page-home .flow-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-accent-dark), #D5DBE1);
  margin: 0 0.4rem;
}

.page-home .status-columns {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.page-home .status-card {
  position: relative;
  background: var(--clr-white);
  border: 1px solid #E1E6EB;
  padding: 1.5rem 1.35rem 1.5rem 1.6rem;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.page-home .status-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--clr-accent-dark);
  transform: scaleY(0.5);
  transform-origin: bottom;
  transition: transform 0.25s ease;
}
.page-home .status-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(13,27,42,0.1);
}
.page-home .status-card:hover::before {
  transform: scaleY(1);
}
.page-home .status-card-score::before {
  background: var(--clr-gold);
}
.page-home .status-index {
  position: absolute;
  top: 0.7rem;
  right: 1rem;
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(13,27,42,0.07);
  pointer-events: none;
}
.page-home .status-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 0.55rem;
}
.page-home .status-card p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(26,26,26,0.72);
  margin-bottom: 1rem;
}
.page-home .status-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-home .status-list li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.86rem;
  line-height: 1.65;
  color: rgba(26,26,26,0.8);
  margin-bottom: 0.35rem;
}
.page-home .status-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  background: var(--clr-accent-dark);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}
.page-home .status-card-score .status-list li::before {
  background: var(--clr-gold);
}

.page-home .status-figure {
  margin: 0;
  position: relative;
  background: var(--clr-bg-secondary);
  padding: 0.6rem 0.6rem 0;
}
.page-home .status-figure::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 34%;
  height: 3px;
  background: var(--clr-gold);
}
.page-home .status-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-home .status-figure figcaption {
  padding: 0.7rem 0.4rem 0.55rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
}

/* ============ 本地案例合集 ============ */
.page-home .home-cases {
  position: relative;
  background: var(--clr-bg);
  color: var(--clr-white);
  padding: 4rem 0;
  overflow: hidden;
}
.page-home .home-cases::after {
  content: "";
  position: absolute;
  right: -70px;
  top: 18%;
  width: 170px;
  height: 170px;
  border: 2px solid rgba(0,255,157,0.22);
  border-radius: 50%;
  pointer-events: none;
}

.page-home .cases-header {
  max-width: 42rem;
  margin-bottom: 2.25rem;
  position: relative;
  z-index: 1;
}
.page-home .home-cases .section-desc {
  color: rgba(255,255,255,0.72);
}

.page-home .cases-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.75rem;
}

.page-home .cases-calendar {
  background: var(--clr-bg-secondary);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 1.25rem 1.25rem 1.4rem;
}
.page-home .calendar-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}
.page-home .calendar-topline a {
  color: var(--clr-accent);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease;
}
.page-home .calendar-topline a:hover {
  color: var(--clr-gold);
}
.page-home .calendar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}
.page-home .calendar-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.7rem 0.8rem;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.page-home .calendar-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--clr-accent);
  transform: translateX(4px);
}
.page-home .calendar-item.is-today {
  border-color: var(--clr-accent);
  background: rgba(0,255,157,0.08);
}
.page-home .cal-week {
  min-width: 2.1rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--clr-gold);
  text-transform: uppercase;
}
.page-home .cal-event {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.82);
}
.page-home .calendar-note {
  margin: 1rem 0 0;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
}

.page-home .cases-figure {
  margin: 0;
  background: var(--clr-white);
  padding: 0.6rem 0.6rem 0;
}
.page-home .cases-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-home .cases-figure figcaption {
  padding: 0.6rem 0.4rem 0.55rem;
  font-size: 0.8rem;
  color: rgba(26,26,26,0.65);
}

.page-home .cases-footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.page-home .text-link {
  color: var(--clr-accent);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.page-home .text-link:hover {
  color: var(--clr-gold);
  border-color: var(--clr-gold);
}

/* ============ 即时推送与复盘 ============ */
.page-home .home-push {
  background: var(--clr-light);
  color: var(--clr-dark);
  padding: 4rem 0 4.5rem;
}
.page-home .home-push-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.page-home .push-visual {
  position: relative;
  display: flex;
  justify-content: center;
  order: 2;
}
.page-home .push-visual::before {
  content: "LIVE";
  position: absolute;
  top: 14px;
  right: calc(50% - 128px);
  z-index: 2;
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--clr-bg);
  background: var(--clr-accent);
  padding: 4px 8px;
  border-radius: 3px;
  transform: rotate(2deg);
}
.page-home .push-visual::after {
  content: "";
  position: absolute;
  left: calc(50% - 118px);
  bottom: -10px;
  width: 80px;
  height: 80px;
  border: 2px solid var(--clr-gold);
  border-radius: 12px;
  transform: rotate(20deg);
  pointer-events: none;
}
.page-home .push-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: 220px;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  border-radius: 24px;
  border: 3px solid var(--clr-white);
  box-shadow: 0 22px 50px rgba(13,27,42,0.22);
  transform: rotate(2deg);
}

.page-home .push-copy {
  order: 1;
}
.page-home .push-lead {
  max-width: 32rem;
  margin: 0.9rem 0 1.5rem;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(26,26,26,0.75);
}

.page-home .push-list {
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}
.page-home .push-list li {
  background: var(--clr-white);
  border: 1px solid #E1E6EB;
  border-left: 4px solid var(--clr-accent-dark);
  padding: 1rem 1.1rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(26,26,26,0.75);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.page-home .push-list li:hover {
  box-shadow: 0 10px 24px rgba(13,27,42,0.08);
  transform: translateX(3px);
}
.page-home .push-list strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--clr-dark);
}

.page-home .push-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.page-home .push-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--clr-accent-dark);
  background: transparent;
  color: var(--clr-accent-dark);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.page-home .push-secondary:hover {
  background: var(--clr-accent-dark);
  border-color: var(--clr-accent-dark);
  color: var(--clr-white);
}

/* ============ 长江波浪纹理 ============ */
.page-home .home-wave {
  display: block;
  background: var(--clr-bg);
  line-height: 0;
}
.page-home .home-wave svg {
  display: block;
  width: 100%;
  height: 56px;
}

/* ============ 桌面端 ============ */
@media (min-width: 860px) {
  .page-home .home-hero {
    padding: 4.5rem 0 6rem;
  }
  .page-home .home-hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
  }
  .page-home .hero-slogan {
    font-size: clamp(2.6rem, 5vw, 4rem);
  }
  .page-home .hero-visual {
    padding: 2rem 0;
  }
  .page-home .phone-frame {
    width: 240px;
    height: 480px;
  }
  .page-home .hero-phone-img {
    width: 190px;
    transform: translate(24px, -24px) rotate(-5deg);
  }
  .page-home .hero-deco-ring {
    width: 140px;
    height: 140px;
  }

  .page-home .home-status {
    padding: 5rem 0 5.5rem;
  }
  .page-home .status-columns {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
    margin-bottom: 3rem;
  }
  .page-home .status-figure {
    max-width: 66%;
    margin-left: auto;
    margin-right: 0;
  }

  .page-home .home-cases {
    padding: 5rem 0;
  }
  .page-home .cases-layout {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
  }
  .page-home .cases-footer {
    margin-top: 2rem;
  }

  .page-home .home-push {
    padding: 5rem 0 6rem;
  }
  .page-home .home-push-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
  }
  .page-home .push-copy {
    order: 2;
  }
  .page-home .push-visual {
    order: 1;
  }
  .page-home .push-visual img {
    width: 250px;
  }

  .page-home .home-wave svg {
    height: 80px;
  }
}
