.page-home {
  --ph-accent: #FF6B35;
  --ph-accent-2: #9A4DFF;
  --ph-navy: #0B1B3F;
  --ph-navy-2: #1A2D5A;
  --ph-light: #F5F7FA;
  --ph-panel: #E1E8F0;
  --ph-text: #1A1A2E;
  --ph-success: #00C896;
  --ph-warning: #FFC857;
  background-color: var(--ph-light);
  color: var(--ph-text);
  overflow-x: hidden;
}

/* ===== 首屏拼贴区 ===== */
.page-home__hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--ph-navy);
  color: #FFFFFF;
  overflow: hidden;
  padding: 0 0 4rem;
}

.page-home__hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-home__hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-home__hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(11,27,63,0.97) 0%, rgba(11,27,63,0.88) 45%, rgba(26,45,90,0.68) 100%),
    radial-gradient(circle at 22% 32%, rgba(154,77,255,0.18) 0%, transparent 42%),
    radial-gradient(circle at 85% 85%, rgba(255,107,53,0.12) 0%, transparent 36%);
}

.page-home__hero-nodes {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  pointer-events: none;
}

.page-home .breadcrumbs {
  position: relative;
  z-index: 4;
  padding: 1rem 0 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  background: transparent;
}

.page-home .breadcrumbs__list {
  margin: 0;
  padding: 0;
}

.page-home .breadcrumbs__link {
  color: rgba(255,255,255,0.72);
}

.page-home .breadcrumbs__item--current {
  color: var(--ph-accent);
}

.page-home__hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 2rem;
  padding-top: 3rem;
}

.page-home__hero-kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

.page-home__kicker-line {
  display: inline-block;
  width: 3rem;
  height: 2px;
  background: var(--ph-accent);
  flex: 0 0 auto;
}

.page-home__hero-title {
  margin: 0 0 1.25rem;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 8vw, 4.75rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  text-wrap: balance;
}

.page-home__hero-lead {
  max-width: 34rem;
  margin: 0 0 2rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.86);
}

.page-home__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.page-home__hero-console {
  display: grid;
  gap: 1rem;
}

.page-home__console-card {
  position: relative;
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  background: rgba(26,45,90,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.page-home__console-card--fee {
  background: linear-gradient(150deg, rgba(26,45,90,0.86), rgba(11,27,63,0.72));
}

.page-home__console-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.page-home__console-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFFFFF;
}

.page-home__console-tag {
  padding: 0.2rem 0.6rem;
  border: 1px solid rgba(255,107,53,0.42);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ph-accent);
}

.page-home__console-list {
  display: grid;
  gap: 0.7rem;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

.page-home__console-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.6rem;
  align-items: center;
  font-size: 0.95rem;
}

.page-home__console-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--ph-accent);
  box-shadow: 0 0 8px rgba(255,107,53,0.72);
}

.page-home__console-name {
  font-weight: 600;
  color: #FFFFFF;
}

.page-home__console-meta {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}

.page-home__console-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--ph-accent);
}

.page-home__console-card--report {
  background: rgba(154,77,255,0.18);
}

.page-home__console-report-text {
  margin: 0.5rem 0 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
}

.page-home__hero-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  justify-self: start;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  background: var(--ph-accent);
  color: #FFFFFF;
  box-shadow: 0 4px 24px rgba(255,107,53,0.4);
}

.page-home__hero-pill-num {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  line-height: 1;
}

.page-home__hero-pill-label {
  font-size: 0.85rem;
  opacity: 0.9;
}

.page-home__hero-scroll {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  justify-self: center;
  margin-top: 2rem;
  font-size: 0.88rem;
  text-decoration: none;
  color: rgba(255,255,255,0.7);
}

/* ===== 核心服务优势 ===== */
.page-home__features {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 4rem;
  background:
    radial-gradient(circle at 85% 10%, rgba(154,77,255,0.08), transparent 32%),
    var(--ph-light);
}

.page-home__intro-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.page-home__eyebrow {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ph-accent);
}

.page-home__eyebrow--light {
  color: var(--ph-accent);
}

.page-home__intro-note {
  max-width: 44rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(26,26,46,0.75);
}

.page-home__feature-grid {
  display: grid;
  gap: 1.25rem;
}

.page-home__feature {
  position: relative;
  padding: 1.75rem 1.5rem;
  border-radius: 10px;
  border-top: 3px solid var(--ph-accent);
  background: #FFFFFF;
  box-shadow: 0 8px 30px rgba(11,27,63,0.08);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
}

.page-home__feature-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.25rem;
}

.page-home__feature-num {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--ph-accent);
}

.page-home__feature-line {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, var(--ph-accent) 0%, transparent 100%);
}

.page-home__feature-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  line-height: 1.25;
  color: var(--ph-navy);
}

.page-home__feature-text {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(26,26,46,0.75);
}

.page-home__feature-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--ph-accent);
}

.page-home__metric-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 2.5rem 0 0;
  padding: 1.5rem;
  border-radius: 12px;
  background: var(--ph-navy);
  color: #FFFFFF;
  list-style: none;
}

.page-home__metric-strip li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.page-home__metric-strip strong {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  line-height: 1;
  color: var(--ph-accent);
}

.page-home__metric-strip span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
}

/* ===== 费用对照表 ===== */
.page-home__pricing {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--ph-navy) 0%, var(--ph-navy-2) 100%);
  color: #FFFFFF;
}

.page-home__pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ph-accent) 0%, var(--ph-accent-2) 100%);
}

.page-home__pricing::after {
  content: '';
  position: absolute;
  top: -3rem;
  right: -3rem;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: rgba(154,77,255,0.12);
}

.page-home__pricing-wrapper {
  position: relative;
  display: grid;
  gap: 2rem;
}

.page-home__pricing-visual img {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.page-home__pricing-content .section__heading {
  color: #FFFFFF;
}

.page-home__pricing-intro {
  max-width: 38rem;
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
}

.page-home__price-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1.25rem;
}

.page-home__price-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.page-home__price-table th,
.page-home__price-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  text-align: left;
}

.page-home__price-table thead th {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

.page-home__price-table tbody th {
  font-weight: 700;
  color: #FFFFFF;
  white-space: nowrap;
}

.page-home__price-table tbody td {
  color: rgba(255,255,255,0.82);
}

.page-home__price-notes {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin: 0 0 1.5rem;
  padding: 0.9rem 1rem;
  border-left: 3px solid var(--ph-warning);
  border-radius: 0 8px 8px 0;
  background: rgba(255,200,87,0.12);
  font-size: 0.88rem;
  color: var(--ph-warning);
}

.page-home__price-alert-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.1rem;
  border-radius: 50%;
  background: var(--ph-warning);
  color: var(--ph-navy);
  font-family: var(--font-heading);
  font-size: 0.75rem;
}

.page-home__pricing .btn--ghost {
  border-color: rgba(255,255,255,0.5);
  color: #FFFFFF;
}

/* ===== 最新战报 ===== */
.page-home__briefings {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: var(--ph-light);
}

.page-home__briefing-head {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.page-home__briefing-lede {
  max-width: 36rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(26,26,46,0.75);
}

.page-home__briefing-grid {
  display: grid;
  gap: 1.5rem;
}

.page-home__briefing-main {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--ph-panel);
  border-radius: 14px;
  background: #FFFFFF;
}

.page-home__briefing-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.page-home__briefing-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home__briefing-body {
  padding: 1.75rem;
}

.page-home__briefing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.page-home__briefing-tag {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-home__briefing-tag--league {
  background: rgba(255,107,53,0.12);
  color: var(--ph-accent);
}

.page-home__briefing-tag--state {
  background: rgba(0,200,150,0.14);
  color: var(--ph-success);
}

.page-home__briefing-tag--time {
  background: rgba(26,45,90,0.08);
  color: rgba(26,26,46,0.7);
}

.page-home__briefing-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  line-height: 1.3;
  color: var(--ph-navy);
}

.page-home__briefing-summary {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(26,26,46,0.7);
}

.page-home__briefing-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--ph-accent);
}

.page-home__briefing-side {
  display: grid;
  gap: 1rem;
}

.page-home__briefing-item {
  padding: 1.5rem;
  border: 1px solid var(--ph-panel);
  border-radius: 10px;
  background: #FFFFFF;
  box-shadow: 0 4px 18px rgba(11,27,63,0.06);
}

.page-home__briefing-item-title {
  margin: 0.6rem 0 0.4rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--ph-navy);
}

.page-home__briefing-item-text {
  margin: 0 0 0.9rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(26,26,46,0.7);
}

.page-home__briefing-more {
  margin-top: 2rem;
  text-align: center;
}

/* ===== 如何开始 ===== */
.page-home__start {
  padding: 4rem 0;
  color: #FFFFFF;
  background:
    radial-gradient(circle at 85% 10%, rgba(154,77,255,0.2), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(255,107,53,0.12), transparent 35%),
    var(--ph-navy);
}

.page-home__start-grid {
  display: grid;
  gap: 2.5rem;
}

.page-home__start-content .section__heading {
  color: #FFFFFF;
}

.page-home__steps {
  display: grid;
  gap: 1.8rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.page-home__step {
  position: relative;
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  align-items: start;
}

.page-home__step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 3rem;
  left: 1.5rem;
  width: 1px;
  height: 1.8rem;
  background: rgba(255,255,255,0.24);
}

.page-home__step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--ph-accent);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1rem;
  box-shadow: 0 0 0 4px rgba(255,107,53,0.2);
}

.page-home__step-body {
  padding-top: 0.3rem;
}

.page-home__step-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  line-height: 1.3;
  color: #FFFFFF;
}

.page-home__step-text {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
}

.page-home__step-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--ph-accent);
}

.page-home__start-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-home__start-visual img {
  display: block;
  width: 100%;
  max-width: 260px;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

/* ===== 平板以上 ===== */
@media (min-width: 768px) {
  .page-home__hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: center;
    padding-top: 2.5rem;
  }

  .page-home__hero-console {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .page-home__console-card--fee {
    grid-row: span 2;
  }

  .page-home__console-card--report {
    align-self: end;
    transform: translateX(-1rem);
  }

  .page-home__hero-pill {
    justify-self: end;
    transform: translateY(-0.5rem);
  }

  .page-home__hero-scroll {
    grid-column: 1 / -1;
  }

  .page-home__intro-row {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }

  .page-home__intro-note {
    justify-self: end;
    text-align: right;
  }

  .page-home__feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-home__metric-strip {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-home__pricing-wrapper {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: center;
  }

  .page-home__pricing-visual {
    order: -1;
  }

  .page-home__briefing-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: stretch;
  }

  .page-home__start-grid {
    grid-template-columns: 1fr 0.7fr;
    gap: 3rem;
    align-items: center;
  }

  .page-home__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .page-home__step {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .page-home__step:not(:last-child)::after {
    display: none;
  }

  .page-home__step:not(:last-child)::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    left: calc(-2rem + 0px);
    width: 2rem;
    height: 1px;
    background: rgba(255,255,255,0.24);
  }

  .page-home__step + .page-home__step::before {
    left: -2rem;
  }

  .page-home__start-visual img {
    max-width: 220px;
  }
}

/* ===== 桌面端 ===== */
@media (min-width: 1024px) {
  .page-home__hero {
    padding-bottom: 5rem;
  }

  .page-home__hero-title {
    font-size: 4.25rem;
  }

  .page-home__hero-lead {
    font-size: 1.1rem;
  }

  .page-home__feature {
    padding: 2rem 1.75rem;
  }

  .page-home__metric-strip {
    padding: 2rem;
  }

  .page-home__pricing {
    padding: 5rem 0;
  }

  .page-home__briefings {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .page-home__start {
    padding: 5rem 0;
  }

  .page-home__price-table {
    min-width: 520px;
  }
}
