<style>
.page-home {
  position: relative;
  background-image:
    linear-gradient(rgba(57, 255, 20, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 255, 20, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
}

.page-home .home-hook {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(16px, 4vw, 36px));
}

.page-home .home-hook-grid {
  display: grid;
  gap: clamp(18px, 4vw, 40px);
}

.page-home .home-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-primary);
}

.page-home .home-hook h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 7vw, 4.3rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0.03em;
  color: var(--text-primary);
  text-transform: uppercase;
}

.page-home .home-slogan {
  margin: 8px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.85rem);
  font-weight: 700;
  font-style: italic;
  color: var(--accent-secondary);
  letter-spacing: 0.04em;
}

.page-home .home-desc {
  max-width: 62ch;
  margin: 0 0 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.9;
}

.page-home .home-toc {
  display: grid;
  gap: 10px;
  align-content: start;
}

.page-home .home-toc-label {
  margin: 0 0 2px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.page-home .toc-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-sm);
  background: rgba(13, 21, 48, 0.72);
  color: var(--text-primary);
  text-decoration: none;
  transition:
    border-color var(--transition-fast),
    transform var(--transition-fast),
    background var(--transition-fast);
}

.page-home .toc-link:hover,
.page-home .toc-link:focus-visible {
  border-color: var(--accent-primary);
  background: rgba(57, 255, 20, 0.05);
  transform: translateX(4px);
}

.page-home .toc-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent-primary);
}

.page-home .home-hero-frame {
  position: relative;
  margin-top: clamp(20px, 4vw, 44px);
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.page-home .home-hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(10, 17, 40, 0.5) 10%, rgba(57, 255, 20, 0.05) 55%, rgba(255, 107, 53, 0.14) 100%);
  pointer-events: none;
}

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

.page-home .home-timeline,
.page-home .home-data,
.page-home .home-index-entrance,
.page-home .home-lineup,
.page-home .home-brand-promise {
  position: relative;
  padding-top: clamp(42px, 7vw, 76px);
  padding-bottom: clamp(28px, 5vw, 56px);
}

.page-home .home-timeline::before,
.page-home .home-lineup::before {
  content: "";
  position: absolute;
  right: -40px;
  top: 30px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(57, 255, 20, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.page-home .home-data::before {
  content: "";
  position: absolute;
  left: -50px;
  bottom: 0;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.page-home .home-timeline .container,
.page-home .home-data .container,
.page-home .home-index-entrance .container,
.page-home .home-lineup .container,
.page-home .home-brand-promise .container {
  position: relative;
  z-index: 1;
}

.page-home .section-heading {
  margin-bottom: 22px;
}

.page-home .home-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.page-home .home-filter .filter-btn {
  border: 1px solid var(--line-subtle);
  border-radius: 999px;
  background: rgba(13, 21, 48, 0.6);
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  padding: 8px 16px;
  cursor: pointer;
  transition:
    color var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.page-home .home-filter .filter-btn:hover {
  color: var(--text-primary);
  border-color: var(--text-secondary);
}

.page-home .home-filter .filter-btn.is-active {
  color: var(--accent-primary);
  border-color: var(--accent-primary);
  box-shadow: 0 0 14px var(--glow-green);
}

.page-home .timeline-stream {
  position: relative;
  display: grid;
  gap: 18px;
}

.page-home .timeline-stream::before {
  content: "";
  position: absolute;
  left: 71px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-primary) 0%, rgba(57, 255, 20, 0.08) 55%, var(--accent-secondary) 100%);
  opacity: 0.5;
}

.page-home .timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  column-gap: 20px;
}

.page-home .timeline-item::before {
  content: "";
  position: absolute;
  left: 67px;
  top: 20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-primary);
  border: 2px solid var(--bg-deep);
  box-shadow: 0 0 10px var(--glow-green);
}

.page-home .timeline-time {
  padding-top: 16px;
  text-align: right;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent-secondary);
  line-height: 1.4;
}

.page-home .timeline-card {
  background: var(--bg-card);
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  transition:
    transform var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.page-home .timeline-card:hover {
  transform: translateY(-3px);
  border-color: rgba(57, 255, 20, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.page-home .timeline-card-title {
  margin: 8px 0 4px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.page-home .timeline-card-meta {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.5;
}

.page-home .timeline-footer {
  margin-top: 20px;
  text-align: right;
}

.page-home .timeline-footer a {
  color: var(--text-secondary);
  font-size: 0.86rem;
  text-decoration: none;
  border-bottom: 1px solid var(--line-subtle);
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.page-home .timeline-footer a:hover {
  color: var(--accent-primary);
  border-color: var(--accent-primary);
}

.page-home .data-dashboard {
  position: relative;
  display: grid;
  gap: 26px;
  background: var(--bg-alt);
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-lg);
  padding: clamp(16px, 3vw, 30px);
  overflow: hidden;
}

.page-home .data-dashboard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  opacity: 0.7;
}

.page-home .dashboard-chart img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-md);
}

.page-home .chart-legend {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 12px;
}

.page-home .legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.page-home .legend-item:hover {
  color: var(--text-primary);
}

.page-home .legend-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.page-home .legend-dot.dot-green {
  background: var(--accent-primary);
  box-shadow: 0 0 8px var(--glow-green);
}

.page-home .legend-dot.dot-orange {
  background: var(--accent-secondary);
  box-shadow: 0 0 8px var(--glow-orange);
}

.page-home .dashboard-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.page-home .dashboard-stats .stat-panel {
  transition:
    transform var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.page-home .dashboard-stats .stat-panel:hover {
  transform: translateY(-3px);
  border-color: var(--accent-primary);
  box-shadow: 0 0 18px rgba(57, 255, 20, 0.08);
}

.page-home .dashboard-stats .stat-panel-hot:hover {
  border-color: var(--accent-secondary);
  box-shadow: 0 0 18px rgba(255, 107, 53, 0.1);
}

.page-home .data-note {
  margin: 18px 0 0;
  padding: 10px 14px;
  border-left: 3px solid var(--accent-primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(57, 255, 20, 0.035);
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.8;
}

.page-home .entrance-grid {
  display: grid;
  gap: 24px;
}

.page-home .entrance-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.page-home .entrance-card:hover {
  transform: translateY(-3px);
  border-color: rgba(57, 255, 20, 0.35);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

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

.page-home .entrance-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 17, 40, 0.55));
  pointer-events: none;
}

.page-home .entrance-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .entrance-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: clamp(16px, 3vw, 26px);
}

.page-home .entrance-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  font-weight: 700;
  color: var(--text-primary);
}

.page-home .entrance-desc {
  margin: 0 0 6px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.85;
}

.page-home .entrance-links {
  margin-top: auto;
  padding: 14px clamp(16px, 3vw, 26px) clamp(16px, 3vw, 26px);
  border-top: 1px solid var(--line-subtle);
}

.page-home .entrance-links-title {
  margin: 0 0 10px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-secondary);
}

.page-home .entrance-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .entrance-links a {
  color: var(--text-secondary);
  font-size: 0.86rem;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.page-home .entrance-links a:hover {
  color: var(--accent-primary);
}

.page-home .lineup-list {
  display: grid;
  gap: 14px;
}

.page-home .lineup-panel {
  background: var(--bg-card);
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.page-home .lineup-panel summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  list-style: none;
  cursor: pointer;
  background: rgba(16, 27, 58, 0.65);
  transition: background var(--transition-fast);
}

.page-home .lineup-panel summary::-webkit-details-marker {
  display: none;
}

.page-home .lineup-panel summary:hover {
  background: rgba(16, 27, 58, 1);
}

.page-home .lineup-panel summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 1.25rem;
  line-height: 1;
  color: var(--accent-primary);
  text-shadow: 0 0 8px var(--glow-green);
  transition: transform 0.25s ease;
}

.page-home .lineup-panel[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.page-home .lineup-match {
  font-family: var(--font-display);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text-primary);
}

.page-home .lineup-time {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent-secondary);
}

.page-home .lineup-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 18px;
}

.page-home .lineup-team-name {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-primary);
}

.page-home .lineup-team-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
  color: var(--text-secondary);
  font-size: 0.86rem;
  line-height: 1.55;
}

.page-home .lineup-team-list li::marker {
  color: var(--accent-secondary);
}

.page-home .promise-block {
  display: grid;
  background: var(--bg-card);
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

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

.page-home .promise-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(10, 17, 40, 0.3), rgba(57, 255, 20, 0.03));
  pointer-events: none;
}

.page-home .promise-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .promise-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: clamp(20px, 4vw, 36px);
}

.page-home .promise-text {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.94rem;
  line-height: 1.9;
}

@media (min-width: 680px) {
  .page-home .home-hook-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
  }

  .page-home .home-toc {
    margin-top: 8px;
  }
}

@media (min-width: 900px) {
  .page-home .dashboard-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-home .data-dashboard {
    grid-template-columns: 2fr 3fr;
    align-items: center;
  }

  .page-home .dashboard-chart img {
    max-height: 340px;
    object-fit: cover;
  }

  .page-home .entrance-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
  }

  .page-home .entrance-card-offset {
    margin-top: 30px;
  }

  .page-home .lineup-list {
    grid-template-columns: 1fr 1fr;
  }

  .page-home .lineup-panel-wide {
    grid-column: 1 / -1;
  }

  .page-home .promise-block {
    grid-template-columns: 3fr 2fr;
  }

  .page-home .promise-media img {
    height: 100%;
    min-height: 300px;
  }
}
</style>
