.page-home {
  --home-hero-pad: clamp(40px, 8vw, 120px);
  --home-card-radius: 16px;
}

.page-home .home-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-h) + 40px) 0 56px;
  background: var(--night-blue);
  isolation: isolate;
}

.page-home .home-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.page-home .home-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
}

.page-home .home-hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 44px 44px;
  transform: perspective(520px) rotateX(18deg) scale(1.35);
  transform-origin: bottom center;
}

.page-home .home-hero-particles {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.page-home .home-hero-particles circle {
  fill: var(--neon-green);
  opacity: 0.38;
}

.page-home .hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

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

.page-home .page-eyebrow {
  display: inline-block;
  padding: 8px 16px;
  border-left: 3px solid var(--neon-green);
  color: var(--neon-green);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  background: rgba(17, 34, 64, 0.6);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.page-home .page-title {
  font-size: clamp(34px, 6vw, 68px);
  line-height: 1.08;
  color: var(--text-light);
  margin: 0 0 18px;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 28px rgba(57, 255, 20, 0.14);
}

.page-home .hero-title-accent {
  display: block;
  color: var(--neon-green);
  font-weight: 900;
}

.page-home .page-lead {
  color: var(--text-soft);
  font-size: clamp(15px, 1.6vw, 19px);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 30px;
}

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

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

.page-home .mini-stat {
  background: rgba(17, 34, 64, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--home-card-radius);
  padding: 18px 16px;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.page-home .mini-stat::after {
  content: "";
  position: absolute;
  right: -14px;
  top: -14px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, transparent 50%, rgba(57, 255, 20, 0.12));
}

.page-home .mini-stat:hover {
  transform: translateY(-3px);
  border-color: rgba(57, 255, 20, 0.45);
}

.page-home .mini-stat-value {
  display: block;
  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 800;
  color: var(--neon-green);
  line-height: 1.1;
}

.page-home .mini-stat-label {
  display: block;
  color: var(--text-soft);
  font-size: 13px;
  margin-top: 6px;
  line-height: 1.4;
}

.page-home .home-hub,
.page-home .home-ranking,
.page-home .home-lineup,
.page-home .home-highlight {
  padding: clamp(48px, 7vw, 88px) 0;
  position: relative;
}

.page-home .home-hub {
  background: var(--night-blue);
}

.page-home .home-ranking {
  background: linear-gradient(180deg, var(--night-blue) 0%, #0d1f3c 100%);
}

.page-home .home-lineup {
  background: var(--night-blue);
  border-top: 1px dashed var(--line);
}

.page-home .home-highlight {
  background: linear-gradient(180deg, #0d1f3c 0%, var(--night-blue) 100%);
}

.page-home .section-head {
  margin-bottom: 34px;
}

.page-home .section-caption {
  display: block;
  font-family: var(--font-mono);
  color: var(--volt-purple);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.page-home .section-title {
  font-family: var(--font-title);
  font-size: clamp(26px, 3.4vw, 40px);
  color: var(--text-light);
  margin: 0 0 10px;
  line-height: 1.15;
}

.page-home .section-subtitle {
  color: var(--text-soft);
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 1.6;
  max-width: 640px;
}

.page-home .hub-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-home .hub-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 24px;
  background: var(--panel-blue);
  border: 1px solid var(--line);
  border-radius: var(--home-card-radius);
  text-decoration: none;
  color: var(--text-light);
  overflow: hidden;
  transition: var(--transition);
}

.page-home .hub-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--neon-green);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.page-home .hub-card::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -22px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57, 255, 20, 0.12), transparent 65%);
  z-index: 0;
}

.page-home .hub-card:hover {
  transform: translateY(-4px);
  border-color: rgba(57, 255, 20, 0.4);
  box-shadow: var(--shadow-panel);
}

.page-home .hub-card:hover::before {
  transform: scaleY(1);
}

.page-home .hub-card-lineup::after {
  background: radial-gradient(circle, rgba(138, 43, 226, 0.18), transparent 65%);
}

.page-home .hub-card-video::after {
  background: radial-gradient(circle, rgba(57, 255, 20, 0.1), transparent 65%);
}

.page-home .hub-card-player::after {
  background: radial-gradient(circle, rgba(255, 107, 53, 0.12), transparent 65%);
}

.page-home .hub-card > * {
  position: relative;
  z-index: 1;
}

.page-home .hub-card-icon {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  color: var(--volt-purple);
  letter-spacing: 0.12em;
}

.page-home .hub-card h3 {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.page-home .hub-card p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.page-home .hub-card-tag {
  display: inline-block;
  align-self: flex-start;
  margin-top: 4px;
  padding: 5px 12px;
  border: 1px solid rgba(57, 255, 20, 0.3);
  border-radius: 30px;
  color: var(--neon-green);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.page-home .hub-card-lineup .hub-card-tag {
  border-color: rgba(138, 43, 226, 0.35);
  color: #c084fc;
}

.page-home .hub-card-video .hub-card-tag {
  border-color: rgba(138, 43, 226, 0.35);
  color: #c084fc;
}

.page-home .hub-card-player .hub-card-tag {
  border-color: rgba(255, 107, 53, 0.35);
  color: #ffb48a;
}

.page-home .ranking-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.page-home .ranking-copy p {
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 22px;
  max-width: 560px;
}

.page-home .ranking-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 10px;
}

.page-home .ranking-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.5;
}

.page-home .ranking-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 10px;
  height: 10px;
  background: var(--neon-green);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  opacity: 0.85;
}

.page-home .ranking-visual {
  position: relative;
}

.page-home .ranking-visual::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(57, 255, 20, 0.14);
  border-radius: var(--radius-lg);
  transform: translate(10px, 10px);
  z-index: 0;
}

.page-home .ranking-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-panel);
  object-fit: cover;
}

.page-home .lineup-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.page-home .lineup-visual {
  position: relative;
}

.page-home .lineup-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.16), transparent 60%);
  pointer-events: none;
}

.page-home .lineup-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-panel);
  object-fit: cover;
}

.page-home .lineup-copy p {
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 560px;
}

.page-home .lineup-detail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0 0 26px;
}

.page-home .lineup-detail-item {
  background: rgba(17, 34, 64, 0.6);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 12px;
  text-align: center;
  transition: var(--transition);
}

.page-home .lineup-detail-item:hover {
  border-color: rgba(138, 43, 226, 0.45);
}

.page-home .lineup-detail-item dt {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 6px;
}

.page-home .lineup-detail-item dd {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 800;
  color: var(--volt-purple);
  margin: 0;
}

.page-home .highlight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-home .highlight-card {
  background: var(--panel-blue);
  border: 1px solid var(--line);
  border-radius: var(--home-card-radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.page-home .highlight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(57, 255, 20, 0.32);
  box-shadow: var(--shadow-panel);
}

.page-home .highlight-card-featured {
  background: linear-gradient(135deg, var(--panel-blue) 0%, #16294d 100%);
}

.page-home .highlight-thumb {
  position: relative;
}

.page-home .highlight-thumb img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.page-home .highlight-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 25, 47, 0.55));
}

.page-home .highlight-body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.page-home .highlight-body h3 {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-light);
  margin: 0;
}

.page-home .highlight-body p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.page-home .text-link {
  color: var(--neon-green);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
}

.page-home .text-link::after {
  content: "→";
  transition: transform 200ms ease;
}

.page-home .text-link:hover::after {
  transform: translateX(4px);
}

.page-home .highlight-card-purple {
  background: linear-gradient(145deg, #151a35 0%, #1c1a4c 100%);
  border-color: rgba(138, 43, 226, 0.25);
}

.page-home .highlight-card-purple:hover {
  border-color: rgba(138, 43, 226, 0.5);
}

.page-home .highlight-card-purple .text-link {
  color: #c084fc;
}

.page-home .highlight-card-dark {
  background: #0c1c35;
  border-color: rgba(57, 255, 20, 0.18);
}

.page-home .home-notice {
  background: #0d1f3c;
  border-top: 1px solid var(--line);
}

.page-home .home-notice-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.page-home .home-notice p {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  max-width: 680px;
}

@media (min-width: 720px) {
  .page-home .hero-inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 48px;
  }

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

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

  .page-home .highlight-card-featured {
    grid-column: span 2;
  }

  .page-home .home-notice-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1080px) {
  .page-home .hub-grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-rows: minmax(180px, auto);
  }

  .page-home .hub-card-rank {
    grid-column: span 1;
    grid-row: span 2;
  }

  .page-home .hub-card-lineup {
    grid-column: span 1;
  }

  .page-home .hub-card-video {
    grid-column: span 1;
  }

  .page-home .hub-card-player {
    grid-column: span 2;
  }

  .page-home .ranking-split {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .page-home .lineup-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
  }

  .page-home .highlight-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .page-home .highlight-card-featured {
    grid-column: span 1;
    grid-row: span 2;
  }

  .page-home .highlight-card-featured .highlight-thumb {
    flex: 1;
    min-height: 0;
  }

  .page-home .highlight-card-featured .highlight-thumb img {
    height: 100%;
    object-fit: cover;
  }
}
