.page-home {
  --home-title-size: clamp(3.2rem, 13vw, 10rem);
  --home-card-glow: rgba(139, 92, 246, 0.28);
  --home-ticker-duration: 32s;
  background-color: var(--hyty-bg);
  color: var(--hyty-white);
  overflow-x: hidden;
}

/* ---------- 首屏封面 ---------- */
.home-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.home-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.home-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.08);
}

.home-hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(90% 60% at 75% 22%, rgba(139, 92, 246, 0.36) 0%, transparent 70%),
    radial-gradient(70% 50% at 12% 85%, rgba(0, 166, 255, 0.26) 0%, transparent 65%),
    linear-gradient(180deg, rgba(10, 15, 30, 0.86) 0%, rgba(10, 15, 30, 0.36) 45%, rgba(10, 15, 30, 0.62) 75%, rgba(10, 15, 30, 0.95) 100%);
}

.home-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 110px;
  background: repeating-linear-gradient(
    135deg,
    rgba(0, 166, 255, 0.13) 0 10px,
    transparent 10px 20px
  );
  transform: skewY(-2.5deg);
  pointer-events: none;
  z-index: 1;
}

.home-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--hyty-space-md);
  width: 100%;
  padding-top: var(--hyty-space-xl);
  padding-bottom: calc(var(--hyty-space-lg) + 2.5rem);
}

.home-hero-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.1rem;
}

.home-hero-badge {
  margin-bottom: 0.15rem;
}

.home-hero-title {
  margin: 0;
  font-family: var(--hyty-font-display);
  font-weight: 900;
  font-size: var(--home-title-size);
  line-height: 0.82;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--hyty-white);
}

.home-hero-kicker {
  display: block;
  font-family: var(--hyty-font-body);
  font-size: clamp(0.88rem, 1.6vw, 1.15rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--hyty-mist);
  text-transform: none;
  line-height: 1.45;
  margin-bottom: 0.9rem;
}

.home-hero-title-row {
  display: block;
  transform: skewX(-5deg);
}

.home-hero-title-row--first {
  color: var(--hyty-white);
}

.home-hero-title-row--second {
  color: transparent;
  -webkit-text-stroke: 2px var(--hyty-blue);
  text-shadow: 6px 6px 0 rgba(139, 92, 246, 0.25);
}

.home-hero-lead {
  max-width: 32rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--hyty-mist);
  margin: 0.25rem 0 0.15rem;
}

.home-hero-cta {
  margin-top: 0.6rem;
}

.home-hero-index {
  border-left: 2px solid var(--hyty-border);
  padding-left: 1.4rem;
}

.home-hero-index-list {
  list-style: none;
  margin: 0.7rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.home-hero-index-list a {
  font-family: var(--hyty-font-mono);
  font-size: 0.875rem;
  color: var(--hyty-mist);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  transition: color 0.28s var(--hyty-ease), transform 0.28s var(--hyty-ease);
}

.home-hero-index-list a::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--hyty-blue);
  transition: background 0.28s var(--hyty-ease);
}

.home-hero-index-list a:hover {
  color: var(--hyty-white);
  transform: translateX(4px);
}

.home-score-ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  background: rgba(15, 21, 40, 0.88);
  border-top: 1px solid var(--hyty-border);
  backdrop-filter: blur(8px);
  overflow: hidden;
  white-space: nowrap;
}

.home-score-ticker-track {
  display: inline-flex;
  min-width: max-content;
  padding: 0.8rem 0;
  animation: home-ticker-scroll var(--home-ticker-duration) linear infinite;
}

.home-score-ticker-track span {
  font-family: var(--hyty-font-mono);
  font-size: 0.8125rem;
  color: var(--hyty-mist);
  padding: 0 2.4rem;
  position: relative;
}

.home-score-ticker-track span::after {
  content: '◇';
  position: absolute;
  right: 0.3rem;
  color: var(--hyty-blue);
  opacity: 0.65;
  font-size: 0.65rem;
}

.home-score-ticker:hover .home-score-ticker-track {
  animation-play-state: paused;
}

@keyframes home-ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- 章节通用 ---------- */
.home-section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: var(--hyty-space-md);
}

.home-section-head h2,
.home-pricing-copy h2 {
  font-family: var(--hyty-font-body);
  font-weight: 700;
  font-size: clamp(1.85rem, 4.2vw, 3rem);
  line-height: 1.15;
  margin: 0.35rem 0 0;
  letter-spacing: -0.01em;
}

.home-section-note {
  font-family: var(--hyty-font-mono);
  font-size: 0.8125rem;
  color: var(--hyty-mist);
  background: rgba(255, 92, 122, 0.08);
  border: 1px solid rgba(255, 92, 122, 0.28);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
  margin-top: 0.25rem;
}

/* ---------- 当前轮次摘要 ---------- */
.home-round {
  background: var(--hyty-bg);
}

.home-round-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.home-round-card {
  position: relative;
  padding: 1.75rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  background: linear-gradient(160deg, var(--hyty-bg-panel) 0%, rgba(20, 28, 46, 0.72) 100%);
  border: 1px solid var(--hyty-border);
  border-radius: var(--hyty-radius);
  overflow: hidden;
  transition: transform 0.3s var(--hyty-ease), border-color 0.3s var(--hyty-ease);
}

.home-round-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 166, 255, 0.35);
}

.home-round-card::after {
  content: '';
  position: absolute;
  width: 130px;
  height: 130px;
  right: -40px;
  bottom: -40px;
  background: radial-gradient(circle, var(--home-card-glow), transparent 70%);
  opacity: 0.55;
  pointer-events: none;
}

.home-round-card--wide {
  background: linear-gradient(135deg, rgba(30, 42, 64, 0.75), rgba(20, 28, 46, 0.55));
  border-color: rgba(0, 166, 255, 0.22);
}

.home-round-card--accent {
  border-color: rgba(139, 92, 246, 0.34);
}

.home-card-label {
  font-family: var(--hyty-font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hyty-mist);
  margin: 0 0 0.5rem;
}

.home-card-stat {
  font-family: var(--hyty-font-mono);
  font-size: clamp(2.6rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--hyty-white);
  line-height: 1;
  margin: 0;
}

.home-card-stat-suffix {
  color: var(--hyty-lime);
}

.home-card-desc {
  color: var(--hyty-mist);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0;
}

.home-card-status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--hyty-font-mono);
  font-size: 1rem;
  font-weight: 500;
  color: var(--hyty-white);
  margin: 0.5rem 0 0.5rem;
}

.home-live-dot {
  width: 8px;
  height: 8px;
  background: var(--hyty-red);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255, 92, 122, 0.2);
  animation: home-live-pulse 2.4s ease-in-out infinite;
}

@keyframes home-live-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(255, 92, 122, 0.2); }
  50% { box-shadow: 0 0 0 7px rgba(255, 92, 122, 0.08); }
}

.home-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--hyty-white);
  text-decoration: none;
  margin-top: 1rem;
  transition: color 0.28s var(--hyty-ease);
}

.home-card-link:hover {
  color: var(--hyty-blue);
}

/* ---------- 会员费用速览 ---------- */
.home-pricing {
  position: relative;
  overflow: hidden;
  background: var(--hyty-bg-panel);
  border-top: 1px solid var(--hyty-border);
  border-bottom: 1px solid var(--hyty-border);
}

.home-pricing::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 18%;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.22), transparent 70%);
  pointer-events: none;
}

.home-pricing::after {
  content: '';
  position: absolute;
  bottom: -120px;
  right: 8%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(0, 166, 255, 0.16), transparent 70%);
  pointer-events: none;
}

.home-pricing-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--hyty-space-lg);
}

.home-pricing-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.15rem;
}

.home-pricing-lead {
  font-size: clamp(1.18rem, 2.4vw, 1.7rem);
  line-height: 1.62;
  color: var(--hyty-white);
  margin: 0;
}

.home-pricing-lead strong {
  color: var(--hyty-lime);
  font-weight: 500;
}

.home-pricing-desc {
  color: var(--hyty-mist);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
}

.home-pricing-cta {
  margin-top: 0.35rem;
}

.home-pricing-visual {
  border-radius: var(--hyty-radius);
  overflow: hidden;
  border: 1px solid var(--hyty-border);
  box-shadow: var(--hyty-shadow);
  background: var(--hyty-bg);
}

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

/* ---------- 复盘入口 ---------- */
.home-review {
  background: var(--hyty-bg);
}

.home-review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--hyty-space-lg);
  align-items: center;
}

.home-review-image {
  position: relative;
  border-radius: var(--hyty-radius);
  overflow: hidden;
  border: 1px solid var(--hyty-border);
  box-shadow: var(--hyty-shadow);
}

.home-review-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.home-review-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 55%, rgba(0, 166, 255, 0.14));
  pointer-events: none;
}

.home-review-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.1rem;
}

.home-review-lead {
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  line-height: 1.6;
  color: var(--hyty-white);
  margin: 0;
}

.home-review-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.home-review-list li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--hyty-mist);
  line-height: 1.75;
  font-size: 0.95rem;
}

.home-review-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 11px;
  height: 11px;
  background: var(--hyty-blue);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  opacity: 0.8;
}

.home-review-cta {
  margin-top: 0.4rem;
}

/* ---------- 多端同步说明 ---------- */
.home-sync {
  background: linear-gradient(180deg, var(--hyty-bg) 0%, var(--hyty-bg-panel) 28%, var(--hyty-bg-panel) 72%, var(--hyty-bg) 100%);
  border-top: 1px solid var(--hyty-border);
}

.home-sync-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--hyty-space-lg);
  align-items: center;
}

.home-sync-image {
  border-radius: var(--hyty-radius);
  overflow: hidden;
  border: 1px solid var(--hyty-border);
  box-shadow: var(--hyty-shadow);
}

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

.home-sync-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.home-sync-item {
  display: grid;
  grid-template-columns: 2.6rem 1fr;
  gap: 1rem;
  align-items: start;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--hyty-border);
}

.home-sync-item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.home-sync-item-num {
  font-family: var(--hyty-font-mono);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--hyty-blue);
  background: rgba(0, 166, 255, 0.1);
  border-radius: 8px;
  padding: 0.4rem 0.55rem;
  text-align: center;
}

.home-sync-item h3 {
  font-size: 1.075rem;
  font-weight: 600;
  margin: 0 0 0.3rem;
  color: var(--hyty-white);
}

.home-sync-item p {
  margin: 0;
  color: var(--hyty-mist);
  line-height: 1.7;
  font-size: 0.9375rem;
}

.home-sync-cta {
  margin-top: 0.35rem;
  align-self: flex-start;
}

/* ---------- 桌面端布局 ---------- */
@media (min-width: 768px) {
  .home-hero-inner {
    grid-template-columns: 7fr 3fr;
    align-items: end;
    column-gap: var(--hyty-space-md);
    padding-bottom: calc(var(--hyty-space-lg) + 3.2rem);
  }

  .home-hero-index {
    padding-left: 1.8rem;
    margin-bottom: 0.4rem;
  }

  .home-section-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .home-section-note {
    margin-top: 0;
  }

  .home-round-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    align-items: stretch;
  }

  .home-pricing-inner {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: var(--hyty-space-xl);
  }

  .home-review-grid {
    grid-template-columns: 0.92fr 1.08fr;
  }

  .home-sync-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

@media (min-width: 1200px) {
  .home-hero-title {
    font-size: clamp(5.5rem, 12vw, 10rem);
  }

  .home-round-card {
    padding: 2.1rem;
  }

  .home-pricing-visual {
    transform: perspective(1200px) rotateY(-4deg);
    transition: transform 0.4s var(--hyty-ease);
  }

  .home-pricing-visual:hover {
    transform: perspective(1200px) rotateY(0deg);
  }
}
