.page-home {
  --page-bg: var(--light-gray);
  --page-text: var(--deep-gray);
  --page-border: var(--green);
  --page-accent: var(--orange);
  --page-blue: var(--deep-blue);
  background-color: var(--page-bg);
  color: var(--page-text);
  font-family: 'Noto Sans SC', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.5;
}
.page-home .breadcrumb {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0.75rem 1rem;
}
.page-home .breadcrumb ol {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}
.page-home .breadcrumb a {
  color: var(--page-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
}
.page-home .breadcrumb a:hover {
  text-decoration: underline;
}
.page-home .hero-frame {
  max-width: var(--container-max);
  margin: 0 auto 2rem;
  padding: 0 1rem;
}
.page-home .hero-frame__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: linear-gradient(135deg, var(--green) 0%, var(--dark-green) 100%);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.page-home .hero-frame__text {
  padding: 2rem 1.5rem;
  color: var(--white);
  z-index: 1;
}
.page-home .hero-frame__title {
  font-family: 'Impact', 'Arial Black', sans-serif;
  font-style: italic;
  font-weight: 900;
  font-size: clamp(2rem, 8vw, 3.5rem);
  line-height: 1.1;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
}
.page-home .hero-frame__subtitle {
  font-size: 1rem;
  margin: 0 0 1.25rem;
  opacity: 0.9;
}
.page-home .hero-frame__countdown {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.page-home .countdown-label {
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--white);
  color: var(--deep-blue);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}
.page-home .countdown-value {
  font-size: 1.75rem;
  font-weight: 900;
  font-family: 'Courier New', monospace;
  letter-spacing: 0.1em;
}
.page-home .hero-frame__media {
  position: relative;
  min-height: 200px;
}
.page-home .hero-frame__img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  display: block;
}
.page-home .hero-frame__border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 4px solid var(--orange);
  border-radius: 0;
  pointer-events: none;
  box-sizing: border-box;
}
.page-home .container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1rem;
}
.page-home .section-title {
  font-family: 'Impact', 'Arial Black', sans-serif;
  font-style: italic;
  font-weight: 900;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  color: var(--page-blue);
  margin: 0 0 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 4px solid var(--page-border);
  display: inline-block;
}
.page-home .filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.page-home .filter-btn {
  padding: 0.5rem 1rem;
  border: 2px solid var(--page-blue);
  background: var(--white);
  color: var(--page-blue);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.1s;
}
.page-home .filter-btn.is-active,
.page-home .filter-btn:active {
  background: var(--page-blue);
  color: var(--white);
}
.page-home .filter-btn:hover {
  background: var(--transparent-orange);
  border-color: var(--page-accent);
}
.page-home .hot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.page-home .hot-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.page-home .hot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.page-home .hot-card__img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  display: block;
}
.page-home .hot-card__body {
  padding: 1rem;
}
.page-home .hot-card__tag {
  display: inline-block;
  background: var(--page-accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}
.page-home .hot-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--page-blue);
  margin: 0 0 0.25rem;
}
.page-home .hot-card__desc {
  font-size: 0.875rem;
  color: var(--deep-gray);
  margin: 0;
}
.page-home .data-snapshot {
  background: var(--white);
  padding: 2rem 0;
  margin-top: 1rem;
}
.page-home .snapshot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.page-home .snapshot-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--light-gray);
  border-radius: var(--radius);
  border-left: 6px solid var(--page-accent);
}
.page-home .snapshot-card__icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-home .snapshot-card__img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}
.page-home .snapshot-card__big {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--page-accent);
  font-family: 'Impact', sans-serif;
}
.page-home .snapshot-card__content {
  display: flex;
  flex-direction: column;
}
.page-home .snapshot-card__number {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--page-blue);
}
.page-home .snapshot-card__label {
  font-size: 0.875rem;
  color: var(--deep-gray);
}
.page-home .quick-index {
  padding: 2rem 0 3rem;
}
.page-home .index-panel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 300px;
}
.page-home .index-panel__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  opacity: 0.2;
}
.page-home .index-panel__content {
  position: relative;
  z-index: 1;
  padding: 2rem 1.5rem;
  background: rgba(26,35,126,0.85);
  backdrop-filter: blur(4px);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-home .index-panel__intro {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.page-home .collapsible {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.page-home .collapsible-item {
  border: 1px solid var(--white);
  border-radius: 999px;
  overflow: hidden;
  background: transparent;
}
.page-home .collapsible-trigger {
  width: 100%;
  padding: 0.75rem 1.5rem;
  border: none;
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-align: left;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-home .collapsible-trigger::after {
  content: '+';
  font-size: 1.25rem;
  transition: transform 0.2s;
}
.page-home .collapsible-trigger[aria-expanded="true"]::after {
  content: '-';
}
.page-home .collapsible-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.page-home .collapsible-content[data-open] {
  max-height: 200px;
}
.page-home .index-list {
  list-style: none;
  margin: 0;
  padding: 0.5rem 1.5rem 1rem;
}
.page-home .index-link {
  display: block;
  padding: 0.5rem 0;
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.page-home .index-link:hover {
  color: var(--orange);
  border-bottom-color: var(--orange);
}
.page-home .trust-statement {
  text-align: center;
  padding: 1rem;
  font-size: 0.875rem;
  color: var(--deep-blue);
  font-weight: 600;
  background: var(--light-gray);
}
@media (min-width: 768px) {
  .page-home .hero-frame__inner {
    flex-direction: row;
  }
  .page-home .hero-frame__text {
    width: 50%;
    padding: 3rem 2rem;
  }
  .page-home .hero-frame__media {
    width: 50%;
  }
  .page-home .hot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-home .snapshot-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-home .index-panel__content {
    padding: 3rem;
  }
  .page-home .collapsible {
    flex-direction: row;
  }
  .page-home .collapsible-item {
    flex: 1;
  }
}
@media (min-width: 1024px) {
  .page-home .hero-frame__text {
    padding: 4rem 3rem;
  }
  .page-home .hot-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
</style>
```
