.page-home {
  --page-hero-bg: #061632;
  --page-card-border: 1px solid rgba(62, 92, 138, 0.22);
  overflow-x: hidden;
}

.page-home .page-hero {
  position: relative;
  padding: 2rem 0 4rem;
  color: #FFFFFF;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 16%, rgba(255, 107, 0, 0.24), transparent 32%),
    linear-gradient(128deg, #061632 0%, #0A1F44 55%, #132B56 100%);
}

.page-home .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  transform: skewY(-6deg) scale(1.2);
  transform-origin: left top;
}

.page-home .page-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: -8%;
  width: 48%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(255, 107, 0, 0.34), rgba(255, 107, 0, 0.02) 68%);
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
}

.page-home .page-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2rem;
}

.page-home .hero-context {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Courier New", "Courier", "Consolas", monospace;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #FF9A4D;
}

.page-home .hero-context__line {
  display: block;
  width: 2rem;
  height: 2px;
  background: #FF6B00;
}

.page-home .hero-title {
  font-family: "Oswald", "Impact", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0.75rem 0;
}

.page-home .hero-lead {
  margin: 0.5rem 0 0;
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
  font-size: 1rem;
}

.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

.page-home .hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 2.5rem 0 0;
}

.page-home .hero-stat {
  border-left: 2px solid #FF6B00;
  padding-left: 1rem;
}

.page-home .hero-stat__label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0.25rem;
}

.page-home .hero-stat__num {
  margin: 0;
  font-family: "Courier New", "Courier", "Consolas", monospace;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  color: #FFFFFF;
}

.page-home .hero-aside {
  display: grid;
  gap: 1rem;
}

.page-home .hero-aside__media {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 40px rgba(6, 22, 50, 0.34);
}

.page-home .hero-aside__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .standings-card {
  background: rgba(255, 255, 255, 0.96);
  color: #0A1F44;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(10, 31, 68, 0.08);
  padding: 1.5rem;
}

.page-home .standings-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.page-home .standings-card__title {
  font-family: "Oswald", "Impact", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  margin: 0.5rem 0 0;
}

.page-home .standings-card__update {
  font-family: "Courier New", "Courier", "Consolas", monospace;
  font-size: 0.875rem;
  color: #FF6B00;
}

.page-home .standings-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Courier New", "Courier", "Consolas", monospace;
  font-size: 0.875rem;
}

.page-home .standings-table th {
  background: #0A1F44;
  color: #FFFFFF;
  font-weight: 500;
  text-align: left;
  padding: 0.5rem 0.625rem;
}

.page-home .standings-table td {
  padding: 0.5rem 0.625rem;
  border-bottom: 1px solid rgba(62, 92, 138, 0.22);
}

.page-home .standings-table tbody tr:last-child td {
  border-bottom: none;
}

.page-home .standings-card__link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 700;
  color: #0A1F44;
  text-decoration: none;
  border-bottom: 2px solid #FF6B00;
  padding-bottom: 2px;
}

.page-home .data-dashboard {
  padding: 4rem 0;
  background:
    linear-gradient(140deg, rgba(255, 107, 0, 0.07), transparent 34%),
    #F5F7FA;
}

.page-home .section-head--split {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.page-home .dashboard-layout {
  display: grid;
  gap: 2.5rem;
}

.page-home .dashboard-chart {
  position: relative;
}

.page-home .dashboard-chart__visual {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10, 31, 68, 0.08);
  border: 1px solid rgba(62, 92, 138, 0.22);
}

.page-home .dashboard-chart__img {
  display: block;
  width: 100%;
  height: auto;
}

.page-home .dashboard-chart__stat {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  background: #FF6B00;
  color: #FFFFFF;
  border-radius: 4px;
  padding: 0.5rem 1.5rem;
  box-shadow: 0 4px 20px rgba(10, 31, 68, 0.08);
  transform: rotate(-2deg);
}

.page-home .dashboard-chart__stat p {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.page-home .dashboard-chart__stat strong {
  display: block;
  font-family: "Courier New", "Courier", "Consolas", monospace;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  margin-top: 0.25rem;
}

.page-home .dashboard-cards {
  display: grid;
  gap: 1rem;
}

.page-home .dashboard-card {
  background: #FFFFFF;
  border: 1px solid rgba(62, 92, 138, 0.22);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(10, 31, 68, 0.04);
}

.page-home .dashboard-card--dark {
  background: linear-gradient(145deg, #0A1F44, #132B56);
  color: #FFFFFF;
}

.page-home .dashboard-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.page-home .dashboard-card__index {
  font-family: "Courier New", "Courier", "Consolas", monospace;
  color: #FF6B00;
  font-weight: 700;
}

.page-home .dashboard-card--dark .dashboard-card__index {
  color: #FF9A4D;
}

.page-home .dashboard-card__data {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0;
}

.page-home .dashboard-card__data dt {
  font-size: 0.875rem;
  color: #6B7280;
  margin-bottom: 0.28rem;
}

.page-home .dashboard-card__data dd {
  margin: 0;
  font-family: "Courier New", "Courier", "Consolas", monospace;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  line-height: 1;
}

.page-home .dashboard-card--dark .dashboard-card__data dt {
  color: rgba(255, 255, 255, 0.62);
}

.page-home .dashboard-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: #FFFFFF;
  border: 1px solid rgba(62, 92, 138, 0.22);
  border-left: 4px solid #FF6B00;
  border-radius: 8px;
  padding: 1.5rem;
}

.page-home .dashboard-note p {
  margin: 0;
  max-width: 46ch;
}

.page-home .update-section {
  position: relative;
  padding: 4rem 0 4rem;
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 107, 0, 0.2), transparent 34%),
    linear-gradient(135deg, #061632, #0A1F44 55%, #132B56);
  color: #FFFFFF;
}

.page-home .update-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 12rem;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 107, 0, 0.22), transparent 60%);
  clip-path: polygon(0 0, 100% 0, 100% 36%, 0 80%);
}

.page-home .update-section > .container {
  position: relative;
  z-index: 1;
}

.page-home .section-head--light .section-title {
  color: #FFFFFF;
}

.page-home .section-head--light .section-desc {
  color: rgba(255, 255, 255, 0.72);
}

.page-home .section-head--light .section-eyebrow {
  color: #FF9A4D;
}

.page-home .updates-layout {
  display: grid;
  gap: 2.5rem;
}

.page-home .updates-list {
  display: grid;
  gap: 1rem;
}

.page-home .update-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 1.5rem;
  clip-path: polygon(0 0, calc(100% - 0.75rem) 0, 100% 0.75rem, 100% 100%, 0 100%);
}

.page-home .update-card__no {
  font-family: "Courier New", "Courier", "Consolas", monospace;
  color: #FF9A4D;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  line-height: 1;
}

.page-home .update-card__body h3 {
  font-family: "Oswald", "Impact", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  margin: 0 0 0.375rem;
  color: #FFFFFF;
}

.page-home .update-card__body p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.page-home .update-card__body a {
  color: #FF9A4D;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 154, 77, 0.5);
  padding-bottom: 2px;
}

.page-home .updates-media {
  position: relative;
}

.page-home .updates-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 4px 20px rgba(10, 31, 68, 0.08);
}

.page-home .updates-media__caption {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.875rem;
  line-height: 1.6;
}

.page-home .index-section {
  padding: 4rem 0;
  background: #F5F7FA;
}

.page-home .index-layout {
  display: grid;
  gap: 2rem;
}

.page-home .index-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid rgba(62, 92, 138, 0.22);
  box-shadow: 0 4px 20px rgba(10, 31, 68, 0.08);
}

.page-home .index-table-wrap {
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid rgba(62, 92, 138, 0.22);
  background: #FFFFFF;
}

.page-home .index-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.page-home .index-table th {
  background: #0A1F44;
  color: #FFFFFF;
  font-family: "Oswald", "Impact", "PingFang SC", "Microsoft YaHei", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 1rem;
  text-align: left;
}

.page-home .index-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(62, 92, 138, 0.22);
}

.page-home .index-table td a {
  color: #FF6B00;
  font-weight: 700;
  text-decoration: none;
}

.page-home .index-table td a:hover {
  text-decoration: underline;
}

.page-home .index-table tbody tr:last-child td {
  border-bottom: none;
}

.page-home .index-cards {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.25rem 0.25rem 1.25rem;
  margin-top: 2rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.page-home .index-cards .map-card {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  scroll-snap-align: start;
  background: #FFFFFF;
  border: 1px solid rgba(62, 92, 138, 0.22);
  border-radius: 8px;
  padding: 1.5rem;
  color: #0A1F44;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(10, 31, 68, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-home .index-cards .map-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(10, 31, 68, 0.1);
}

.page-home .map-card__number {
  font-family: "Courier New", "Courier", "Consolas", monospace;
  color: #FF6B00;
  font-weight: 700;
}

.page-home .map-card__title {
  font-family: "Oswald", "Impact", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
}

.page-home .map-card__desc {
  color: #6B7280;
  font-size: 0.875rem;
}

.page-home .app-entry {
  background:
    radial-gradient(circle at 18% 90%, rgba(255, 107, 0, 0.2), transparent 32%),
    linear-gradient(128deg, #061632, #0A1F44 58%, #132B56);
  color: #FFFFFF;
  padding: 4rem 0;
}

.page-home .app-entry__inner {
  display: grid;
  gap: 2.5rem;
}

.page-home .app-entry__content .section-title {
  color: #FFFFFF;
}

.page-home .app-entry__content .section-eyebrow {
  color: #FF9A4D;
}

.page-home .app-entry__content p {
  color: rgba(255, 255, 255, 0.76);
  max-width: 56ch;
  line-height: 1.7;
}

.page-home .app-entry__list {
  margin: 2rem 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.page-home .app-entry__list li {
  position: relative;
  padding-left: 1.4rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
}

.page-home .app-entry__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.5rem;
  height: 0.5rem;
  background: #FF6B00;
  transform: skewX(-12deg);
}

.page-home .app-entry__panel {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 1.5rem;
  backdrop-filter: blur(6px);
}

.page-home .app-entry__panel::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 1.5rem;
  width: 64px;
  height: 3px;
  background: #FF6B00;
}

.page-home .app-entry__panel-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.page-home .app-entry__code {
  font-family: "Courier New", "Courier", "Consolas", monospace;
  font-size: 0.875rem;
  color: #FF9A4D;
  background: rgba(255, 107, 0, 0.14);
  border: 1px dashed rgba(255, 154, 77, 0.4);
  border-radius: 4px;
  padding: 0.3rem 0.5rem;
}

.page-home .app-entry__panel-data {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0 0;
}

.page-home .app-entry__panel-data dt {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.2rem;
}

.page-home .app-entry__panel-data dd {
  margin: 0;
  font-family: "Courier New", "Courier", "Consolas", monospace;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #FFFFFF;
}

.page-home .app-entry .btn-outline {
  border-color: rgba(255, 255, 255, 0.6);
  color: #FFFFFF;
}

.page-home .trust-strip {
  background: #FFFFFF;
  border-bottom: 1px solid rgba(62, 92, 138, 0.22);
}

.page-home .trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 2.5rem 0;
  align-items: center;
}

.page-home .trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.page-home .trust-item__num {
  font-family: "Courier New", "Courier", "Consolas", monospace;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  color: #0A1F44;
}

.page-home .trust-item__label {
  font-size: 0.875rem;
  color: #6B7280;
}

.page-home .trust-item--cta {
  align-items: flex-start;
  justify-content: center;
}

@media (min-width: 640px) {
  .page-home .dashboard-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-home .dashboard-note {
    grid-column: 1 / -1;
  }
}

@media (min-width: 700px) {
  .page-home .updates-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 760px) {
  .page-home .section-head--split {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .page-home .section-head--split .section-desc {
    max-width: 46ch;
  }
}

@media (min-width: 800px) {
  .page-home .index-layout {
    grid-template-columns: 0.7fr 1.3fr;
    align-items: center;
  }
}

@media (min-width: 900px) {
  .page-home .page-hero {
    padding-top: calc(64px + 3rem);
    padding-bottom: 5rem;
  }

  .page-home .page-hero__grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
    gap: 3rem;
    min-height: 600px;
  }

  .page-home .hero-main {
    padding-top: 2rem;
  }

  .page-home .hero-aside {
    margin-top: 2rem;
  }

  .page-home .standings-card {
    margin: -6rem 0 0 2rem;
  }

  .page-home .dashboard-layout {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }

  .page-home .trust-strip__inner {
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    padding: 3rem 0;
  }
}

@media (min-width: 960px) {
  .page-home .app-entry__inner {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

  .page-home .app-entry__panel {
    padding: 2rem;
  }
}

@media (min-width: 1100px) {
  .page-home .updates-layout {
    grid-template-columns: 1fr 0.6fr;
    align-items: start;
  }

  .page-home .updates-media {
    position: sticky;
    top: calc(64px + 2rem);
  }
}
