.page-home {
  background: var(--obsidian);
  color: var(--bone);
  overflow-x: clip;
}

.page-home img {
  max-width: 100%;
  height: auto;
}

.page-home .home-breadcrumbs {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 18px var(--container-pad) 0;
  font-size: 13px;
  color: var(--silver);
}

.page-home .home-hero {
  display: grid;
  grid-template-columns: 1fr;
}

.page-home .hero-narrative {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 480px;
  padding: 56px var(--container-pad);
}

.page-home .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}

.page-home .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(115deg, rgba(11,13,17,0.97) 0%, rgba(11,13,17,0.82) 40%, rgba(232,75,34,0.35) 100%);
}

.page-home .hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.page-home .hero-content .section-label {
  color: var(--gold);
  margin-bottom: 10px;
}

.page-home .hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 18px 0 14px;
  color: var(--warm-white);
  text-shadow: 0 4px 28px rgba(0,0,0,0.5);
}

.page-home .hero-version {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.page-home .hero-version::before {
  content: "";
  width: 26px;
  height: 3px;
  background: var(--flame);
  display: inline-block;
  clip-path: polygon(0 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

.page-home .hero-lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--bone);
  max-width: 560px;
  margin: 0;
}

.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.page-home .hero-index {
  background: var(--charcoal);
  padding: 36px var(--container-pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-home .hero-index::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--flame), transparent 70%);
}

.page-home .index-heading {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
}

.page-home .index-kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--silver);
}

.page-home .index-heading h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  margin: 0;
  color: var(--warm-white);
}

.page-home .home-index-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .home-index-list li {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.page-home .home-index-list li:last-child {
  border-bottom: 0;
}

.page-home .home-index-list a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 4px;
  color: var(--bone);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition), padding-left var(--transition);
}

.page-home .home-index-list a:hover {
  color: var(--flame);
  padding-left: 10px;
}

.page-home .index-num {
  font-family: var(--font-mono);
  color: var(--silver);
  font-size: 13px;
  min-width: 28px;
}

.page-home .hero-quote {
  margin: 24px 0 0;
  padding: 16px 18px;
  border-left: 3px solid var(--gold);
  background: rgba(201,165,92,0.08);
  color: var(--silver);
  font-size: 15px;
  line-height: 1.6;
}

.page-home .hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.page-home .hero-stats__item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 14px 8px;
  text-align: center;
}

.page-home .hero-stats__item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1.1;
  color: var(--flame);
}

.page-home .hero-stats__item span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--silver);
}

.page-home .home-upgrade,
.page-home .home-rights,
.page-home .home-tianjin,
.page-home .home-weekly,
.page-home .home-commute {
  position: relative;
  padding: 72px 0;
}

.page-home .home-upgrade::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(232,75,34,0.16), transparent 68%);
  pointer-events: none;
}

.page-home .section-head {
  margin-bottom: 40px;
  max-width: 780px;
}

.page-home .section-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  margin: 12px 0 8px;
  color: var(--warm-white);
}

.page-home .section-head .page-subtitle {
  color: var(--silver);
  font-size: 16px;
}

.page-home .section-label {
  color: var(--flame);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.page-home .upgrade-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

.page-home .upgrade-visual {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 100%);
}

.page-home .upgrade-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform 500ms var(--ease);
}

.page-home .upgrade-visual:hover img {
  transform: scale(1.03);
}

.page-home .upgrade-content > p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--bone);
  margin: 0 0 20px;
}

.page-home .upgrade-content strong {
  color: var(--warm-white);
}

.page-home .upgrade-points {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.page-home .upgrade-points li {
  position: relative;
  padding: 12px 0 12px 34px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--silver);
  line-height: 1.6;
}

.page-home .upgrade-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  width: 18px;
  height: 4px;
  background: var(--flame);
  clip-path: polygon(0 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

.page-home .home-rights {
  background: var(--charcoal);
  border-top: 1px solid rgba(232,75,34,0.3);
  border-bottom: 1px solid rgba(232,75,34,0.18);
}

.page-home .home-rights::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(640px 280px at 85% 0%, rgba(232,75,34,0.16), transparent 72%);
}

.page-home .rights-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.page-home .rights-panel .tablist {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-bottom: 14px;
}

.page-home .tab {
  appearance: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--silver);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
  padding: 12px 20px;
  cursor: pointer;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.page-home .tab:hover {
  color: var(--warm-white);
  border-color: rgba(232,75,34,0.6);
}

.page-home .tab[aria-selected="true"] {
  background: var(--flame);
  border-color: var(--flame);
  color: var(--warm-white);
}

.page-home .tab-panel[hidden] {
  display: none;
}

.page-home .rights-panel .tab-panel {
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--flame);
  padding: 28px 24px;
  min-height: 180px;
}

.page-home .rights-panel .tab-panel h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--warm-white);
  margin: 0 0 10px;
}

.page-home .rights-panel .tab-panel p {
  color: var(--silver);
  line-height: 1.7;
  margin: 0;
}

.page-home .rights-figure {
  margin: 0;
}

.page-home .rights-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius);
}

.page-home .figure__caption {
  margin-top: 10px;
  font-size: 13px;
  color: var(--silver);
}

.page-home .home-tianjin::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232,75,34,0.12), transparent 68%);
  pointer-events: none;
}

.page-home .tianjin-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

.page-home .tianjin-copy > p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--bone);
  margin: 0 0 22px;
}

.page-home .tianjin-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.page-home .tianjin-list li {
  position: relative;
  padding: 12px 0 12px 30px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--silver);
  line-height: 1.6;
}

.page-home .tianjin-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--flame);
  transform: rotate(45deg);
}

.page-home .tianjin-list strong {
  color: var(--warm-white);
}

.page-home .tianjin-map {
  margin: 0;
}

.page-home .tianjin-map img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 8 / 5;
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(0,0,0,0.3);
}

.page-home .home-weekly {
  background: var(--charcoal);
  border-top: 1px solid rgba(201,165,92,0.22);
}

.page-home .home-weekly::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 420px;
  height: 260px;
  background: radial-gradient(closest-side, rgba(201,165,92,0.14), transparent);
  pointer-events: none;
}

.page-home .weekly-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
}

.page-home .weekly-intro {
  max-width: 520px;
}

.page-home .weekly-intro h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  margin: 14px 0 8px;
  color: var(--warm-white);
}

.page-home .weekly-intro .page-subtitle {
  color: var(--gold);
  font-size: 16px;
  font-weight: 600;
}

.page-home .weekly-lead {
  color: var(--silver);
  line-height: 1.75;
  margin: 18px 0 0;
}

.page-home .weekly-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  margin: 26px 0;
  padding: 16px 26px;
  background: rgba(232,75,34,0.14);
  border-left: 4px solid var(--flame);
}

.page-home .weekly-stat__num {
  font-family: var(--font-heading);
  font-size: 46px;
  line-height: 1;
  color: var(--flame);
}

.page-home .weekly-stat__label {
  color: var(--bone);
  font-weight: 600;
  font-size: 15px;
}

.page-home .weekly-timeline {
  position: relative;
  padding-left: 32px;
  border-left: 2px solid rgba(232,75,34,0.5);
}

.page-home .weekly-timeline .timeline__item {
  position: relative;
  padding-bottom: 26px;
}

.page-home .weekly-timeline .timeline__item::before {
  content: "";
  position: absolute;
  left: -37px;
  top: 5px;
  width: 10px;
  height: 10px;
  background: var(--flame);
  transform: rotate(45deg);
  box-shadow: 0 0 0 5px rgba(232,75,34,0.16);
}

.page-home .weekly-timeline .timeline__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--gold);
  text-transform: uppercase;
  margin: 0 0 6px;
}

.page-home .weekly-timeline .timeline__title {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--warm-white);
  margin: 0 0 6px;
}

.page-home .weekly-timeline .timeline__text {
  color: var(--silver);
  line-height: 1.65;
  margin: 0;
}

.page-home .weekly-intro .btn {
  margin-top: 4px;
}

.page-home .home-commute::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(520px 360px at 12% 88%, rgba(232,75,34,0.16), transparent 70%);
}

.page-home .commute-stage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.page-home .commute-copy h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  margin: 14px 0 8px;
  color: var(--warm-white);
}

.page-home .commute-copy .page-subtitle {
  color: var(--silver);
  font-size: 16px;
}

.page-home .commute-copy > p {
  color: var(--bone);
  line-height: 1.75;
  margin: 18px 0 0;
}

.page-home .commute-copy strong {
  color: var(--flame);
}

.page-home .commute-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 28px;
}

.page-home .commute-tags .tag {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--silver);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
}

.page-home .commute-tags .tag--gold {
  border-color: rgba(201,165,92,0.6);
  color: var(--gold);
  background: rgba(201,165,92,0.08);
}

.page-home .commute-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

.page-home .commute-phone {
  width: 300px;
  max-width: 100%;
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  padding: 48px 20px 20px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.45), 0 0 0 8px rgba(232,75,34,0.08);
  position: relative;
}

.page-home .commute-phone::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 82px;
  height: 20px;
  background: rgba(255,255,255,0.1);
  border-radius: 0 0 14px 14px;
}

.page-home .commute-phone__rows {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .commute-phone__rows li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
}

.page-home .commute-phone__rows li:last-child {
  border-bottom: 0;
}

.page-home .commute-phone__rows span {
  color: var(--silver);
  font-weight: 600;
}

.page-home .commute-phone__rows b {
  color: var(--gold);
  font-weight: 600;
  font-size: 13px;
}

@media (min-width: 900px) {
  .page-home .home-hero {
    grid-template-columns: minmax(0, 1fr) 360px;
    min-height: calc(100vh - var(--header-h));
  }

  .page-home .hero-narrative {
    min-height: 640px;
    padding: 72px 64px;
  }

  .page-home .hero-index {
    padding: 48px 36px;
  }

  .page-home .hero-index::before {
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--flame), transparent 70%);
    left: 0;
    top: 0;
  }

  .page-home .upgrade-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
  }

  .page-home .rights-layout {
    grid-template-columns: 1fr 0.85fr;
    gap: 56px;
    align-items: center;
  }

  .page-home .tianjin-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
  }

  .page-home .weekly-layout {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 72px;
    align-items: start;
  }

  .page-home .commute-stage {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
  }
}

@media (min-width: 1200px) {
  .page-home .home-upgrade,
  .page-home .home-rights,
  .page-home .home-tianjin,
  .page-home .home-weekly,
  .page-home .home-commute {
    padding: 96px 0;
  }

  .page-home .hero-narrative {
    padding: 88px 96px;
  }
}
