.page-home {
  --home-gap: clamp(24px, 5vw, 56px);
  --home-section-pad: clamp(56px, 8vw, 104px) 0;
  background: var(--color-dark);
  color: var(--color-text);
}

.page-home .home-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--header-h));
  overflow: hidden;
  padding: clamp(48px, 7vw, 96px) 0;
  color: #fff;
}

.page-home .hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.58) 55%, rgba(229,57,53,0.42) 100%);
}

.page-home .hero-inner-page {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--home-gap);
  align-items: end;
}

.page-home .hero-copy {
  max-width: 760px;
}

.page-home .hero-eyebrow {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.page-home .hero-copy h1 {
  margin: 0 0 20px;
  font-family: var(--font-heading);
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.page-home .hero-lead {
  margin: 0 0 12px;
  font-size: clamp(17px, 2.4vw, 24px);
  font-weight: 600;
  line-height: 1.5;
  color: rgba(255,255,255,0.96);
}

.page-home .hero-copy > p:not(.hero-lead) {
  max-width: 42em;
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
}

.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.page-home .btn-lg {
  padding: 14px 28px;
  font-size: 16px;
}

.page-home .hero-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
  padding: 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
}

.page-home .hero-score-ticket {
  padding: 12px 0 4px;
  text-align: center;
}

.page-home .ticket-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.page-home .ticket-num {
  display: block;
  margin: 8px 0 4px;
  font-family: var(--font-heading);
  font-size: clamp(56px, 10vw, 88px);
  line-height: 1;
  color: #fff;
}

.page-home .ticket-unit {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
}

.page-home .btn-enter {
  justify-content: center;
  padding: 16px 32px;
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-home .hero-coord {
  margin: 4px 0 0;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
}

.page-home .quick-entry {
  background: var(--color-light);
  padding: var(--home-section-pad);
}

.page-home .quick-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 26px;
  margin-top: clamp(28px, 5vw, 48px);
}

.page-home .quick-cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.page-home .entry-card {
  position: relative;
  display: block;
  min-height: 210px;
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--color-line);
  text-decoration: none;
  color: var(--color-text);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.page-home .entry-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-soft), 0 0 0 3px rgba(255,213,79,0.14);
}

.page-home .entry-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.3;
}

.page-home .entry-card p {
  max-width: 40em;
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.page-home .entry-card-index {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(13,13,13,0.35);
}

.page-home .entry-card-wide {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  color: #fff;
  border-color: transparent;
}

.page-home .entry-card-wide p,
.page-home .entry-card-wide .entry-card-index {
  color: rgba(255,255,255,0.8);
}

.page-home .entry-card-dark {
  background: var(--color-deep);
  color: #fff;
  border-color: transparent;
}

.page-home .entry-card-dark p,
.page-home .entry-card-dark .entry-card-index {
  color: rgba(255,255,255,0.75);
}

.page-home .entry-card-light {
  background: var(--color-bg-soft);
}

.page-home .entry-more {
  display: inline-block;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 2px solid currentColor;
  padding-bottom: 3px;
}

.page-home .entry-note {
  display: block;
  margin-top: 18px;
  font-size: 12px;
  color: var(--color-text-muted);
}

.page-home .quick-media,
.page-home .glance-media,
.page-home .fan-media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-bg-soft);
  box-shadow: var(--shadow-soft);
}

.page-home .quick-media img,
.page-home .glance-media img,
.page-home .fan-media img {
  display: block;
  width: 100%;
  height: auto;
}

.page-home .today-focus {
  background: var(--color-dark);
  color: #fff;
  padding: var(--home-section-pad);
}

.page-home .today-focus .section-title {
  color: #fff;
}

.page-home .today-focus .section-note {
  color: rgba(255,255,255,0.7);
}

.page-home .today-focus .section-index {
  color: var(--color-gold);
}

.page-home .focus-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  margin-top: clamp(28px, 5vw, 48px);
}

.page-home .focus-card {
  padding: 26px 22px 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.page-home .focus-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(255,213,79,0.14);
}

.page-home .focus-card-live {
  border-top: 4px solid var(--color-primary);
}

.page-home .focus-card-done {
  border-top: 4px solid var(--color-gold);
}

.page-home .focus-card-upcoming {
  border-top: 4px solid var(--color-deep);
}

.page-home .focus-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.page-home .focus-status {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
}

.page-home .focus-score {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 10px;
  margin: 20px 0 18px;
}

.page-home .focus-team {
  max-width: 70px;
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255,255,255,0.62);
}

.page-home .focus-number {
  min-width: 0.8em;
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1;
  color: #fff;
}

.page-home .focus-colon {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--color-gold);
}

.page-home .focus-meta {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.58);
}

.page-home .focus-card-live .focus-number {
  animation: leyou-home-score-bounce 1.15s ease-in-out infinite;
}

@keyframes leyou-home-score-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.page-home .data-glance {
  background: var(--color-bg-soft);
  padding: var(--home-section-pad);
}

.page-home .glance-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  margin-top: clamp(28px, 5vw, 48px);
}

.page-home .glance-stats {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.page-home .stat-block {
  position: relative;
  min-height: 180px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.page-home .stat-block:hover {
  transform: translateY(-4px);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-soft);
}

.page-home .stat-index {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}

.page-home .stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(50px, 6vw, 80px);
  line-height: 1;
  color: var(--color-primary);
}

.page-home .stat-unit {
  display: inline-block;
  margin-left: 6px;
  font-size: 16px;
  color: var(--color-text-muted);
}

.page-home .stat-label {
  margin: 14px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}

.page-home .stat-block-accent {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
}

.page-home .stat-block-deep {
  background: var(--color-deep);
}

.page-home .stat-block-accent .stat-number,
.page-home .stat-block-deep .stat-number {
  color: #fff;
}

.page-home .stat-block-accent .stat-unit,
.page-home .stat-block-deep .stat-unit,
.page-home .stat-block-accent .stat-label,
.page-home .stat-block-deep .stat-label,
.page-home .stat-block-accent .stat-index,
.page-home .stat-block-deep .stat-index {
  color: #fff;
}

.page-home .fan-channel {
  background: var(--color-dark);
  color: #fff;
  padding: var(--home-section-pad);
}

.page-home .fan-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.page-home .fan-copy .section-title {
  color: #fff;
}

.page-home .fan-copy .section-note {
  color: rgba(255,255,255,0.7);
}

.page-home .fan-copy .section-index {
  color: var(--color-gold);
}

.page-home .fan-lead {
  margin: 18px 0 12px;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}

.page-home .fan-copy p {
  max-width: 42em;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
}

.page-home .fan-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.page-home .fan-actions .btn-ghost,
.page-home .hero-actions .btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

.page-home .fan-actions .btn-ghost:hover,
.page-home .hero-actions .btn-ghost:hover {
  background: rgba(255,255,255,0.12);
}

.page-home .home-trust {
  background: var(--color-deep);
  color: rgba(255,255,255,0.88);
  padding: 28px 0;
}

.page-home .home-trust p {
  margin: 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

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

@media (min-width: 860px) {
  .page-home .focus-board {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .page-home .hero-inner-page {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  }
}

@media (min-width: 980px) {
  .page-home .quick-layout {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    align-items: center;
  }

  .page-home .quick-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-home .entry-card-wide {
    grid-column: 1 / -1;
  }

  .page-home .glance-layout {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    align-items: center;
  }

  .page-home .fan-inner {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home *,
  .page-home *::before,
  .page-home *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .page-home .focus-card-live .focus-number {
    animation: none;
    transform: none;
  }
}
