.page-home {
  --home-gold-soft: rgba(212, 175, 55, 0.12);
  --home-green-soft: rgba(13, 79, 60, 0.22);
  --home-gap-lg: clamp(2.5rem, 6vw, 5rem);
  --home-gap-md: clamp(1.5rem, 3vw, 2.5rem);
}

.page-home .hero-scope {
  position: relative;
  padding: 2rem 0 3.5rem;
  background:
    radial-gradient(ellipse at 75% 25%, rgba(212, 175, 55, 0.14) 0%, transparent 55%),
    linear-gradient(180deg, rgba(13, 79, 60, 0.35) 0%, rgba(10, 10, 10, 0) 45%, rgba(10, 10, 10, 1) 100%);
  border-bottom: 1px solid var(--line-gray);
}

.page-home .hero-topline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.page-home .hero-line {
  flex: 1;
  height: 1px;
  max-width: 180px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.page-home .hero-announce {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-align: center;
}

.page-home .hero-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--home-gap-md);
  align-items: center;
}

.page-home .hero-copy {
  padding: 2rem 0 1rem;
}

.page-home .hero-copy .breadcrumb {
  margin-bottom: 1.25rem;
}

.page-home .hero-copy h1 {
  font-family: var(--font-title);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
  color: var(--white);
}

.page-home .hero-copy h1 .hero-em {
  color: var(--gold);
}

.page-home .hero-lead {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--white);
  max-width: 34em;
  margin-bottom: 1.5rem;
}

.page-home .hero-points {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
}

.page-home .hero-points li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.25rem;
  color: var(--gray);
  font-size: 0.875rem;
  line-height: 1.5;
}

.page-home .hero-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: translateY(-50%) rotate(45deg);
}

.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.page-home .hero-stage {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-home .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  border-radius: 6px;
  border: 1px solid var(--line-gray);
}

.page-home .hero-stage::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0.12) 70%, rgba(10, 10, 10, 0.3) 100%);
  border-radius: 6px;
  pointer-events: none;
}

.page-home .dashboard-scope {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 620px;
  padding: 1.5rem;
  background: rgba(10, 10, 10, 0.82);
}

.page-home .scope-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line-gray);
}

.page-home .scope-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.page-home .scope-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--gray);
}

.page-home .status-dot {
  width: 8px;
  height: 8px;
  background: var(--bright-green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(30, 122, 90, 0.25);
}

.page-home .dashboard-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.page-home .dash-card {
  position: relative;
  padding: 1rem 1rem 1rem 1.2rem;
  background: var(--charcoal);
  border: 1px solid var(--line-gray);
  border-left: 3px solid var(--deep-green);
  transition: border-color var(--transition), background-color var(--transition);
}

.page-home .dash-card:hover {
  border-color: var(--gold);
  border-left-color: var(--gold);
  background: #1f1f1f;
}

.page-home .dash-card::after {
  content: '···';
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  opacity: 0;
  transition: opacity var(--transition);
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.page-home .dash-card:hover::after {
  opacity: 1;
}

.page-home .dash-label {
  display: block;
  font-size: 0.75rem;
  color: var(--gray);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.page-home .dash-value {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.page-home .dash-note {
  display: block;
  font-size: 0.8125rem;
  color: var(--gray);
  line-height: 1.5;
}

.page-home .dash-hover {
  display: block;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
  font-size: 0.8125rem;
  color: var(--bright-green);
  line-height: 1.5;
}

.page-home .dash-card:hover .dash-hover {
  max-height: 4em;
  opacity: 1;
  margin-top: 0.4rem;
}

.page-home .scope-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-gray);
  font-size: 0.75rem;
  color: var(--gray);
}

.page-home .scope-note {
  color: var(--bright-green);
}

.page-home .scope-metric {
  color: var(--gold);
  font-family: var(--font-mono);
}

.page-home .section-head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: var(--home-gap-md);
  position: relative;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line-gray);
}

.page-home .section-no {
  font-family: var(--font-mono);
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.page-home .section-head h2 {
  font-family: var(--font-title);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  margin: 0;
  color: var(--white);
}

.page-home .vertical-note {
  margin-left: auto;
  display: inline-block;
  writing-mode: vertical-rl;
  max-height: 5.2em;
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.3em;
  color: var(--gray);
  text-transform: uppercase;
}

.page-home .venue-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--home-gap-md);
}

.page-home .venue-figure .figure-frame {
  aspect-ratio: 3 / 2;
  border: 1px solid var(--line-gray);
  box-shadow: var(--shadow-card);
}

.page-home .figure-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .figure-label {
  display: inline-block;
  margin-top: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  color: var(--gray);
  text-transform: uppercase;
}

.page-home .venue-content {
  padding: 0.5rem 0;
}

.page-home .venue-desc {
  color: var(--white);
  margin: 1rem 0 1.5rem;
  max-width: 40em;
  line-height: 1.7;
}

.page-home .venue-facts {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.page-home .venue-facts li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--charcoal);
  border: 1px solid var(--line-gray);
  color: var(--white);
  font-size: 0.9375rem;
  transition: border-color var(--transition);
}

.page-home .venue-facts li:hover {
  border-color: var(--gold);
}

.page-home .fact-index {
  font-family: var(--font-mono);
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.page-home .transfer-section {
  background: rgba(26, 26, 26, 0.6);
  border-top: 1px solid var(--line-gray);
  border-bottom: 1px solid var(--line-gray);
}

.page-home .transfer-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--home-gap-md);
}

.page-home .transfer-timeline {
  position: relative;
  padding-left: 1.5rem;
  border-left: 1px solid var(--line-gray);
  margin-left: 0.5rem;
}

.page-home .timeline-item {
  position: relative;
  padding: 1rem 3rem 1rem 1.5rem;
  margin-bottom: 0.75rem;
  background: var(--charcoal);
  border: 1px solid var(--line-gray);
  transition: border-color var(--transition);
}

.page-home .timeline-item:hover {
  border-color: var(--gold);
}

.page-home .timeline-item::before {
  content: '';
  position: absolute;
  left: -1.5rem;
  top: 1.4rem;
  width: 11px;
  height: 11px;
  background: var(--gold);
  transform: rotate(45deg);
  outline: 2px solid rgba(212, 175, 55, 0.2);
  transition: background-color var(--transition);
}

.page-home .timeline-item:hover::before {
  background: var(--bright-gold);
}

.page-home .timeline-tag {
  display: inline-block;
  margin-bottom: 0.4rem;
}

.page-home .timeline-text {
  margin: 0 0 0.4rem;
  color: var(--white);
  font-size: 0.9375rem;
  line-height: 1.45;
}

.page-home .timeline-time {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gray);
}

.page-home .timeline-toggle {
  position: absolute;
  right: 1rem;
  top: 1rem;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 1rem;
  line-height: 1;
  transition: transform var(--transition);
}

.page-home .timeline-item:hover .timeline-toggle {
  transform: rotate(45deg);
}

.page-home .timeline-more {
  margin-top: 1.5rem;
  padding-left: 0.5rem;
}

.page-home .refresh-note {
  font-size: 0.875rem;
  color: var(--gray);
  margin-top: 0.75rem;
}

.page-home .transfer-side {
  display: grid;
  gap: 1.25rem;
  align-content: start;
}

.page-home .transfer-note {
  padding: 1.5rem;
  background: var(--charcoal);
}

.page-home .transfer-note p {
  color: var(--gray);
  font-size: 0.9375rem;
  margin: 0.75rem 0 0;
  line-height: 1.6;
}

.page-home .transfer-count {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 0.25rem 0.6rem;
}

.page-home .transfer-figure {
  aspect-ratio: 4 / 3;
}

.page-home .analysis-copy {
  padding: 1rem 0;
}

.page-home .analysis-desc {
  color: var(--white);
  margin: 1rem 0 1.5rem;
  max-width: 44em;
  line-height: 1.7;
}

.page-home .analysis-list {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.page-home .analysis-list li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.5rem;
  color: var(--gray);
  font-size: 0.9375rem;
  border-bottom: 1px dashed var(--line-gray);
  line-height: 1.5;
}

.page-home .analysis-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 0.55rem;
  color: var(--gold);
  font-size: 0.625rem;
}

.page-home .analysis-figure .figure-frame {
  aspect-ratio: 10 / 7;
  border: 1px solid var(--line-gray);
  box-shadow: var(--shadow-card);
}

.page-home .league-section {
  background:
    linear-gradient(rgba(13, 79, 60, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 79, 60, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  border-top: 1px solid var(--line-gray);
}

.page-home .league-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.page-home .league-lead {
  margin: 0;
  color: var(--white);
  max-width: 34em;
  line-height: 1.6;
}

.page-home .league-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.page-home .league-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
  background: #161616;
  border: 1px solid var(--line-gray);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), background-color var(--transition), transform var(--transition);
}

.page-home .league-card::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 22px;
  height: 22px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  opacity: 0;
  transition: opacity var(--transition);
}

.page-home .league-card:hover {
  border-color: var(--gold);
  background: var(--charcoal);
  transform: translateY(-2px);
}

.page-home .league-card:hover::after {
  opacity: 1;
}

.page-home .league-code {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.page-home .league-name {
  font-family: var(--font-title);
  font-weight: 900;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--white);
}

.page-home .league-desc {
  font-size: 0.75rem;
  color: var(--gray);
  font-family: var(--font-mono);
}

.page-home .league-more {
  justify-content: center;
  align-items: flex-start;
  background: rgba(212, 175, 55, 0.05);
}

.page-home .league-more-text {
  color: var(--gold);
  font-family: var(--font-title);
  font-style: italic;
  font-weight: 900;
  font-size: 0.875rem;
}

.page-home .league-total {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: var(--gray);
  font-family: var(--font-mono);
  text-align: center;
}

.page-home .trust-band {
  border-top: 1px solid var(--line-gray);
  background: rgba(13, 79, 60, 0.18);
  padding: 2rem 0;
}

.page-home .trust-band .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
}

.page-home .trust-band p {
  max-width: 46em;
  margin: 0;
  color: var(--gray);
  font-size: 0.875rem;
  line-height: 1.6;
}

.page-home .trust-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.page-home .trust-links a {
  color: var(--white);
  font-size: 0.8125rem;
  text-decoration: none;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}

.page-home .trust-links a:hover {
  color: var(--bright-gold);
  border-bottom-color: var(--gold);
}

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

  .page-home .hero-scope {
    padding: 3.5rem 0 4.5rem;
  }

  .page-home .hero-stage {
    min-height: 460px;
  }

  .page-home .hero-bg {
    opacity: 0.45;
  }

  .page-home .venue-layout {
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
  }

  .page-home .transfer-layout {
    grid-template-columns: 1.5fr 1fr;
    align-items: start;
  }

  .page-home .analysis-layout {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .page-home .league-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .page-home .hero-panel {
    grid-template-columns: 5fr 7fr;
  }

  .page-home .league-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .page-home .league-card {
    padding: 1.1rem 1.2rem;
  }
}
