.page-home {
  font-family: var(--font-body);
  background: var(--color-cream);
  overflow-x: hidden;
}

/* 面包屑 */
.page-home .breadcrumb {
  margin: 0 0 28px;
}
.page-home .breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
}
.page-home .breadcrumb li {
  color: var(--color-gray);
}
.page-home .breadcrumb li + li::before {
  content: "/";
  margin-right: 6px;
  color: var(--color-light-gray);
}
.page-home .breadcrumb a {
  color: var(--color-gray);
  text-decoration: none;
  transition: color 0.2s ease;
}
.page-home .breadcrumb a:hover {
  color: var(--color-orange);
}

/* 首屏 */
.page-home .hero-section {
  position: relative;
  padding: 24px 0 56px;
}
.page-home .hero-grid {
  display: grid;
  gap: 32px;
}
.page-home .hero-left {
  display: grid;
  gap: 24px;
}
.page-home .hero-story {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.page-home .hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-orange);
}
.page-home .hero-kicker::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 3px;
  background: var(--color-orange);
}
.page-home .hero-story h1 {
  margin: 16px 0 14px;
  font-family: var(--font-display);
  font-size: 2.7rem;
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--color-dark);
}
@media (min-width: 768px) {
  .page-home .hero-story h1 {
    font-size: 3.5rem;
  }
}
@media (min-width: 1200px) {
  .page-home .hero-story h1 {
    font-size: 4.25rem;
  }
}
.page-home .hero-desc {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #565a66;
  max-width: 36em;
}
.page-home .hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 0;
  list-style: none;
  padding: 0;
  width: 100%;
}
.page-home .hero-stats div {
  display: flex;
  flex-direction: column-reverse;
  gap: 2px;
  padding: 12px 14px;
  background: var(--color-white);
  border: 2px solid var(--color-dark);
  border-radius: var(--radius-card);
  box-shadow: 3px 3px 0 rgba(10, 25, 47, 0.85);
}
.page-home .hero-stats dt {
  order: 2;
  font-size: 12px;
  color: var(--color-gray);
}
.page-home .hero-stats dd {
  order: 1;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-dark);
}
.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.page-home .hero-figure {
  margin: 0;
  overflow: hidden;
  background: var(--color-dark);
  border: 3px solid var(--color-dark);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-hard);
}
@media (min-width: 992px) {
  .page-home .hero-figure {
    transform: rotate(-1.1deg);
  }
}
.page-home .hero-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-home .hero-index {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 24px;
  background: var(--color-dark);
  border: 2px solid var(--color-brown);
  border-radius: 20px;
  box-shadow: 8px 8px 0 rgba(255, 107, 53, 0.25);
  color: var(--color-cream);
}
.page-home .hero-index-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
.page-home .hero-index .section-number {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-mono);
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--color-orange);
}
.page-home .hero-index-title {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-white);
}
.page-home .hero-index-note {
  margin: 0 0 20px;
  font-size: 14px;
  color: rgba(245, 240, 232, 0.66);
}
.page-home .hero-update-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.page-home .hero-update-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.page-home .hero-update-list li:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}
.page-home .hero-update-list p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-cream);
}
.page-home .hero-index-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: 22px;
  padding-bottom: 2px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: var(--color-gold);
  border-bottom: 2px solid rgba(255, 215, 0, 0.35);
  transition: border-color 0.2s ease;
}
.page-home .hero-index-link::after {
  content: "→";
  transition: transform 0.2s ease;
}
.page-home .hero-index-link:hover {
  border-color: var(--color-gold);
}
.page-home .hero-index-link:hover::after {
  transform: translateX(3px);
}
.page-home .slant-strip {
  position: absolute;
  z-index: 0;
  right: -28px;
  bottom: 28px;
  width: 140px;
  height: 26px;
  background: var(--color-orange);
  transform: rotate(-8deg);
  opacity: 0.85;
}

/* 章节标题 */
.page-home .section-header {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}
.page-home .section-header .section-number {
  display: block;
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--color-orange);
}
.page-home .section-header h2 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-dark);
}
.page-home .section-subtitle {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-gray);
}
.page-home .section-header-light h2 {
  color: var(--color-white);
}
.page-home .section-header-light .section-subtitle {
  color: rgba(245, 240, 232, 0.7);
}

/* 核心控制台 */
.page-home .console-section {
  padding: 56px 0;
}
.page-home .console-frame {
  overflow: hidden;
  background: var(--color-dark);
  border: 3px solid var(--color-dark);
  border-radius: 18px;
  box-shadow: 7px 7px 0 rgba(255, 107, 53, 0.28);
}
.page-home .tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.page-home .tab-btn {
  appearance: none;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(245, 240, 232, 0.72);
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.page-home .tab-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  color: var(--color-white);
}
.page-home .tab-btn.is-active {
  background: var(--color-orange);
  color: #ffffff;
}
.page-home .console-panels {
  background: var(--color-cream);
}
.page-home .console-panel {
  display: none;
  gap: 24px;
  padding: 28px 20px;
}
.page-home .console-panel.is-active {
  display: grid;
}
.page-home .console-panel-copy h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-dark);
}
.page-home .console-panel-copy > p {
  margin: 0 0 16px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #565a66;
}
.page-home .console-panel-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 9px;
}
.page-home .console-panel-list li {
  position: relative;
  padding-left: 24px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-dark);
}
.page-home .console-panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 10px;
  height: 3px;
  background: var(--color-orange);
  transform: rotate(-20deg);
}
.page-home .panel-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.page-home .console-figure {
  margin: 0;
  overflow: hidden;
  border: 3px solid var(--color-dark);
  border-radius: var(--radius-card);
  box-shadow: 5px 5px 0 rgba(10, 25, 47, 0.88);
}
.page-home .console-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (min-width: 768px) {
  .page-home .console-panel.has-media {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }
}

/* 最新动态 */
.page-home .updates-section {
  position: relative;
  overflow: hidden;
  padding: 56px 0;
  background: var(--color-dark);
  color: var(--color-cream);
}
.page-home .updates-section::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 240px;
  height: 240px;
  background: rgba(255, 107, 53, 0.18);
  transform: rotate(12deg);
}
.page-home .updates-section .container {
  position: relative;
  z-index: 1;
}
.page-home .updates-grid {
  display: grid;
  gap: 32px;
}
.page-home .updates-list {
  display: flex;
  flex-direction: column;
}
.page-home .update-item {
  padding: 22px 0;
  border-bottom: 1px solid rgba(245, 240, 232, 0.15);
}
.page-home .update-item:first-child {
  padding-top: 0;
}
.page-home .update-item h3 {
  margin: 10px 0 8px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-white);
}
.page-home .update-item p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(245, 240, 232, 0.68);
}
.page-home .updates-list .btn {
  align-self: flex-start;
  margin-top: 24px;
}
.page-home .updates-figure {
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-card);
}
.page-home .updates-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-home .updates-section .badge {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-cream);
}
.page-home .updates-section .badge-bright {
  background: rgba(255, 107, 53, 0.2);
  color: var(--color-orange);
}
.page-home .updates-section .badge-gold {
  background: rgba(255, 215, 0, 0.16);
  color: var(--color-gold);
}
@media (min-width: 768px) {
  .page-home .updates-grid {
    grid-template-columns: 1fr 300px;
    align-items: center;
  }
}

/* 进入方式 */
.page-home .access-section {
  padding: 56px 0 64px;
}
.page-home .access-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .page-home .access-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.page-home .access-card {
  position: relative;
  padding: 30px 26px;
  background: var(--color-white);
  border: 3px solid var(--color-dark);
  border-radius: 18px;
  box-shadow: 5px 5px 0 rgba(10, 25, 47, 0.9);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.page-home .access-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 rgba(10, 25, 47, 0.9);
}
.page-home .access-card-bright {
  background: var(--color-cream);
  box-shadow: 5px 5px 0 rgba(255, 107, 53, 0.55);
}
.page-home .access-card-bright:hover {
  box-shadow: 8px 8px 0 rgba(255, 107, 53, 0.55);
}
.page-home .access-number {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-orange);
}
.page-home .access-card h3 {
  margin: 8px 0 12px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-dark);
}
.page-home .access-card p {
  margin: 0 0 16px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #565a66;
}
.page-home .access-card ul {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 8px;
}
.page-home .access-card li {
  position: relative;
  padding-left: 22px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-dark);
}
.page-home .access-card li::before {
  content: "→";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--color-orange);
}
.page-home .access-feedbackbar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--color-dark);
  border: 2px solid var(--color-dark);
  border-radius: 16px;
}
.page-home .access-feedbackbar p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-cream);
}
.page-home .access-feedbackbar strong {
  color: var(--color-gold);
}

/* 桌面增强 */
@media (min-width: 992px) {
  .page-home .hero-section {
    padding-top: 40px;
  }
  .page-home .hero-grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    align-items: stretch;
  }
  .page-home .hero-left {
    gap: 28px;
    align-content: space-between;
  }
  .page-home .hero-index {
    padding: 40px 34px;
  }
  .page-home .console-section {
    padding: 64px 0;
  }
  .page-home .updates-section {
    padding: 72px 0;
  }
  .page-home .access-section {
    padding: 64px 0;
  }
}
