.page-home {
  --home-space: clamp(4rem, 9vw, 7.5rem);
  --home-num-size: clamp(4rem, 14vw, 10.5rem);
  --home-radius: 28px;
}

.page-home .btn {
  border-radius: var(--radius-pill);
}

.page-home .hero-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding-top: var(--header-h);
  overflow: hidden;
  background: linear-gradient(145deg, var(--cb-green-900) 0%, var(--cb-green-700) 60%, #0f3b22 100%);
}

.page-home .hero-frame {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1.4rem;
}

.page-home .hero-frame::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: var(--radius-lg);
  pointer-events: none;
  z-index: 1;
}

.page-home .hero-frame__scale {
  position: absolute;
  width: 48px;
  height: 48px;
  z-index: 2;
  pointer-events: none;
}

.page-home .hero-frame__scale--tl {
  top: 6px;
  left: 6px;
  border-top: 3px solid var(--cb-gold);
  border-left: 3px solid var(--cb-gold);
  border-top-left-radius: 14px;
}

.page-home .hero-frame__scale--tr {
  top: 6px;
  right: 6px;
  border-top: 3px solid var(--cb-gold);
  border-right: 3px solid var(--cb-gold);
  border-top-right-radius: 14px;
}

.page-home .hero-frame__scale--bl {
  bottom: 6px;
  left: 6px;
  border-bottom: 3px solid var(--cb-gold);
  border-left: 3px solid var(--cb-gold);
  border-bottom-left-radius: 14px;
}

.page-home .hero-frame__scale--br {
  bottom: 6px;
  right: 6px;
  border-bottom: 3px solid var(--cb-gold);
  border-right: 3px solid var(--cb-gold);
  border-bottom-right-radius: 14px;
}

.page-home .hero-frame__side-label {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 1.4rem;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  color: rgba(201, 162, 39, 0.7);
}

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

.page-home .hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: clamp(4rem, 12vh, 7rem);
  padding-bottom: clamp(2.5rem, 6vh, 4rem);
  text-align: center;
}

.page-home .hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 6.2vw, 4.5rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--cb-white);
  text-wrap: balance;
}

.page-home .hero-title__accent {
  display: block;
  color: var(--cb-gold);
}

.page-home .hero-desc {
  max-width: 46em;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.82);
}

.page-home .keyword {
  font-weight: 700;
  color: var(--cb-orange);
}

.page-home .hero-section .keyword {
  color: var(--cb-gold);
}

.page-home .direct-console {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  text-align: left;
}

.page-home .direct-console__label {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

.page-home .direct-console__row {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.page-home .direct-console__input {
  flex: 1;
  min-width: 0;
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.25);
  color: var(--cb-white);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
}

.page-home .direct-console__input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.page-home .direct-console__btn {
  white-space: nowrap;
}

.page-home .direct-console__quick {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.page-home .direct-console__hint {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.page-home .direct-console__quick a {
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: var(--radius-pill);
  background: rgba(201, 162, 39, 0.14);
  color: var(--cb-white);
  font-size: 0.85rem;
  text-decoration: none;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.page-home .direct-console__quick a:hover {
  background: var(--cb-gold);
  color: var(--cb-green-900);
}

.page-home .home-section {
  position: relative;
  overflow: hidden;
  padding-top: var(--home-space);
  padding-bottom: var(--home-space);
}

.page-home .home-section-head {
  position: relative;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.page-home .home-section-head .section-number {
  display: block;
  font-family: var(--font-display);
  font-size: var(--home-num-size);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(201, 162, 39, 0.85);
  user-select: none;
}

.page-home .home-section-head .section-title {
  position: relative;
  z-index: 2;
  max-width: 12em;
  margin-top: -2.1rem;
  margin-bottom: 1rem;
  padding-left: clamp(1rem, 5vw, 4rem);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4.6vw, 3.4rem);
  line-height: 1.14;
  color: var(--cb-text);
}

.page-home .home-section-head .section-desc {
  max-width: 46em;
  margin-left: clamp(1rem, 5vw, 4rem);
  color: var(--cb-text-muted);
  line-height: 1.85;
}

.page-home .home-section-head--light .section-title {
  color: var(--cb-white);
}

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

.page-home .home-subheading {
  margin-bottom: 1rem;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  color: var(--cb-text-muted);
  text-transform: uppercase;
}

.page-home .report-columns {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.page-home .report-fig {
  margin: 0;
  overflow: hidden;
  background: var(--cb-navy);
  border: 1px solid var(--cb-border);
  border-radius: var(--radius-lg);
}

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

.page-home .report-fig__caption {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1rem;
  background: var(--cb-navy);
  color: var(--cb-white);
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

.page-home .report-list {
  min-width: 0;
}

.page-home .report-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.page-home .report-item {
  overflow: hidden;
  background: var(--cb-white);
  border: 1px solid var(--cb-border);
  border-radius: var(--radius-md);
}

.page-home .report-item-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1.2rem;
  border: 0;
  background: transparent;
  color: var(--cb-text);
  text-align: left;
  cursor: pointer;
}

.page-home .report-item-toggle:focus-visible {
  outline: 2px solid var(--cb-gold);
  outline-offset: -2px;
}

.page-home .report-item__meta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
}

.page-home .report-item__score {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cb-navy);
}

.page-home .report-item-panel {
  padding: 0 1.2rem 1.2rem;
  border-top: 1px solid var(--cb-border);
  background: var(--cb-bg-light);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  color: var(--cb-text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.page-home .report-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin: 0.9rem 0 0;
}

.page-home .report-stats div {
  padding: 0.7rem;
  text-align: center;
  background: var(--cb-white);
  border-radius: var(--radius-sm);
}

.page-home .report-stats dt {
  font-size: 0.75rem;
  color: var(--cb-text-muted);
}

.page-home .report-stats dd {
  margin: 0.15rem 0 0;
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cb-navy);
}

.page-home .text-link {
  display: inline-block;
  margin-top: 1.2rem;
  border-bottom: 2px solid var(--cb-gold);
  color: var(--cb-green-700);
  font-weight: 700;
  text-decoration: none;
}

.page-home .calendar-section {
  background: linear-gradient(160deg, var(--cb-green-900), var(--cb-green-700));
}

.page-home .calendar-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.14;
}

.page-home .calendar-section .container {
  position: relative;
  z-index: 2;
}

.page-home .calendar-slider {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  margin: 0 0 1.6rem;
  padding-bottom: 0.8rem;
}

.page-home .calendar-track {
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .calendar-event {
  display: flex;
  flex: 0 0 min(78%, 18rem);
  flex-direction: column;
  gap: 0.7rem;
  scroll-snap-align: start;
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  color: var(--cb-white);
}

.page-home .calendar-event__time {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--cb-gold);
}

.page-home .calendar-event__title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.5;
}

.page-home .calendar-event__badge {
  align-self: flex-start;
  padding: 0.25rem 0.6rem;
  border: 1px solid rgba(201, 162, 39, 0.45);
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--cb-gold);
  text-transform: uppercase;
}

.page-home .calendar-more {
  display: inline-block;
}

.page-home .lineup-console {
  position: relative;
  display: grid;
  gap: 1.6rem;
  overflow: hidden;
  padding: clamp(1.5rem, 5vw, 3rem);
  background: var(--cb-navy);
  border-radius: var(--radius-lg);
  color: var(--cb-white);
}

.page-home .lineup-console::after {
  content: "";
  position: absolute;
  top: -6rem;
  right: -6rem;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  border: 2px solid rgba(201, 162, 39, 0.2);
}

.page-home .lineup-console__status {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  justify-self: start;
  padding: 0.55rem 1rem;
  background: rgba(255, 109, 0, 0.14);
  border: 1px solid rgba(255, 109, 0, 0.4);
  border-radius: var(--radius-pill);
  color: rgba(255, 255, 255, 0.92);
}

.page-home .status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cb-orange);
  box-shadow: 0 0 0 5px rgba(255, 109, 0, 0.2);
}

.page-home .lineup-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.page-home .lineup-step {
  flex: 1 1 8rem;
  padding: 1.2rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
}

.page-home .lineup-step__num {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-mono);
  font-size: 1.5rem;
  color: var(--cb-gold);
}

.page-home .lineup-console .btn {
  justify-self: start;
  position: relative;
  z-index: 1;
}

.page-home .review-section {
  background: linear-gradient(150deg, #0d1f2d, var(--cb-navy));
}

.page-home .review-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.page-home .review-copy {
  position: relative;
  z-index: 2;
}

.page-home .review-rounds {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
}

.page-home .round-chip {
  padding: 0.55rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-pill);
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  text-decoration: none;
  transition: border-color var(--transition-fast), color var(--transition-fast);
}

.page-home .round-chip:hover {
  border-color: var(--cb-gold);
  color: var(--cb-gold);
}

.page-home .review-stack {
  position: relative;
}

.page-home .review-stack .review-card {
  display: none;
  margin-bottom: 1.4rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  scroll-margin-top: calc(var(--header-h) + 2rem);
}

.page-home .review-stack .review-card:first-child {
  display: block;
}

.page-home .review-stack:has(.review-card:target) .review-card {
  display: none;
}

.page-home .review-stack:has(.review-card:target) .review-card:target {
  display: block;
}

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

.page-home .review-card__score {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cb-gold);
}

.page-home .review-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}

.page-home .review-more {
  display: inline-block;
}

.page-home .review-icon {
  margin: 0;
}

.page-home .review-icon img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
}

.page-home .finale-section {
  background: var(--cb-bg-light);
}

.page-home .finale-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 5vw, 4rem);
  text-align: center;
  background: linear-gradient(135deg, var(--cb-green-900), var(--cb-green-700));
  border-radius: var(--radius-lg);
}

.page-home .finale-card::after {
  content: "";
  position: absolute;
  top: -6rem;
  right: -6rem;
  width: 16rem;
  height: 16rem;
  border: 2px solid rgba(201, 162, 39, 0.3);
  border-radius: 50%;
}

.page-home .finale-card__title {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.2;
  color: var(--cb-white);
}

.page-home .finale-card__desc {
  max-width: 42em;
  margin: 0 auto 1.6rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}

.page-home .finale-links {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.page-home .finale-links a {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-pill);
  color: var(--cb-white);
  text-decoration: none;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.page-home .finale-links a:hover {
  background: var(--cb-gold);
  color: var(--cb-green-900);
}

@media (min-width: 640px) {
  .page-home .direct-console__row {
    flex-direction: row;
    align-items: stretch;
  }

  .page-home .direct-console__btn {
    padding-inline: 2rem;
  }

  .page-home .report-columns {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: stretch;
  }

  .page-home .calendar-track {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .page-home .calendar-slider {
    overflow: visible;
  }

  .page-home .lineup-timeline {
    flex-wrap: nowrap;
    align-items: stretch;
  }
}

@media (min-width: 920px) {
  .page-home .hero-frame__side-label {
    display: block;
  }

  .page-home .review-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  }

  .page-home .review-copy .home-section-head {
    margin-bottom: 2rem;
  }
}

@media (min-width: 1024px) {
  .page-home .calendar-track {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-home .home-section-head {
    padding-left: clamp(2rem, 8vw, 8rem);
  }

  .page-home .home-section-head .section-title {
    margin-top: -2.6rem;
  }
}
