.page-home {
  --home-glow: rgba(57, 255, 136, 0.16);
  --home-glow-orange: rgba(255, 110, 61, 0.14);
  --home-grid: rgba(57, 255, 136, 0.06);
  --home-border: rgba(192, 200, 208, 0.28);
  overflow-x: hidden;
  background: var(--space-blue);
  color: var(--ice-blue);
}

.page-home .home-hero {
  position: relative;
  padding-top: 40px;
  overflow: hidden;
  background:
    linear-gradient(var(--home-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--home-grid) 1px, transparent 1px),
    radial-gradient(ellipse at 78% 18%, var(--home-glow) 0%, transparent 58%),
    linear-gradient(160deg, var(--midnight) 0%, var(--space-blue) 52%, #0e2337 100%);
  background-size: 48px 48px, 48px 48px, auto, auto;
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  background: linear-gradient(180deg, var(--home-glow) 0%, transparent 72%);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
  z-index: 1;
}

.page-home .home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--nebula-green), transparent 65%);
  opacity: 0.45;
}

.page-home .hero-flow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  pointer-events: none;
}

.page-home .home-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 40px;
  padding-top: 16px;
  padding-bottom: 56px;
  min-width: 0;
}

.page-home .hero-head {
  min-width: 0;
}

.page-home .hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--nebula-green);
}

.page-home .hero-kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--arc-orange);
  flex: 0 0 auto;
}

.page-home .hero-title {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: #fff;
}

.page-home .hero-title-mark {
  display: block;
  margin-top: 6px;
  font-family: var(--font-heading);
  font-size: 0.46em;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--metal-silver);
}

.page-home .hero-lede {
  max-width: 560px;
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(224, 240, 255, 0.82);
}

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

.page-home .hero-btn {
  padding: 12px 22px;
}

.page-home .hero-btn.btn-primary:hover {
  background-color: var(--arc-orange);
  border-color: var(--arc-orange);
  box-shadow: 0 0 20px rgba(255, 110, 61, 0.35);
}

.page-home .hero-board {
  min-width: 0;
  display: grid;
  gap: 20px;
}

.page-home .hero-stats-panel {
  position: relative;
  min-height: 260px;
  padding: 18px;
  overflow: hidden;
  background: rgba(5, 13, 22, 0.58);
  border: 1px solid var(--home-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep);
}

.page-home .hero-chart-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  mix-blend-mode: screen;
}

.page-home .hero-stats-panel > * {
  position: relative;
  z-index: 2;
}

.page-home .hero-panel-label {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--metal-silver);
  text-transform: uppercase;
}

.page-home .home-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
}

.page-home .dash-stat {
  position: relative;
  min-width: 0;
  padding: 16px 14px;
  overflow: hidden;
  background: rgba(10, 26, 47, 0.76);
  border: 1px solid rgba(192, 200, 208, 0.22);
  border-radius: var(--radius-md);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.page-home .dash-stat::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--nebula-green), transparent);
  opacity: 0.85;
}

.page-home .dash-stat:hover {
  border-color: var(--nebula-green);
  box-shadow: 0 0 22px rgba(57, 255, 136, 0.18);
}

.page-home .dash-stat dt {
  font-size: 12px;
  color: rgba(224, 240, 255, 0.64);
}

.page-home .dash-stat dd {
  margin: 6px 0 0;
  font-family: var(--font-data);
  font-size: 28px;
  line-height: 1.1;
  color: var(--nebula-green);
}

.page-home .dash-stat dd small {
  font-size: 15px;
  color: var(--metal-silver);
}

.page-home .dash-stat .dash-stat-note {
  display: block;
  margin-top: 5px;
  font-size: 11px;
  color: rgba(224, 240, 255, 0.5);
}

.page-home .hero-trust {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 14px;
  padding: 0 4px;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(224, 240, 255, 0.62);
}

.page-home .trust-dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--nebula-green);
  box-shadow: 0 0 10px var(--nebula-green);
}

.page-home .hero-quick {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.page-home .hero-quick .hero-panel-label {
  margin-bottom: 4px;
}

.page-home .hero-quick-card {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 14px;
  padding: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--home-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.page-home .hero-quick-card:hover {
  border-color: var(--arc-orange);
  transform: translateX(4px);
  box-shadow: 0 0 20px rgba(255, 110, 61, 0.14);
}

.page-home .hero-quick-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 42px;
  height: 42px;
  padding: 0 8px;
  font-size: 13px;
  color: var(--arc-orange);
  border: 1px solid rgba(255, 110, 61, 0.4);
  border-radius: var(--radius-sm);
}

.page-home .hero-quick-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.page-home .hero-quick-title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.page-home .hero-quick-desc {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(224, 240, 255, 0.62);
}

.page-home .hero-quick-arrow {
  margin-left: auto;
  align-self: center;
  font-family: var(--font-data);
  font-size: 18px;
  color: rgba(224, 240, 255, 0.4);
  transition: color 0.3s, transform 0.3s;
}

.page-home .hero-quick-card:hover .hero-quick-arrow {
  color: var(--arc-orange);
  transform: translateX(2px);
}

.page-home .hero-quick-img {
  position: absolute;
  right: -12px;
  bottom: -12px;
  width: 88px;
  height: 56px;
  object-fit: cover;
  opacity: 0.18;
  border-radius: var(--radius-sm);
  pointer-events: none;
}

.page-home .home-schedule {
  padding-top: 56px;
}

.page-home .schedule-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 26px;
}

.page-home .schedule-head h2,
.page-home .scores-head h2,
.page-home .contact-head h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff;
}

.page-home .schedule-tip {
  align-self: flex-start;
  padding: 8px 12px;
  font-size: 12px;
  background: rgba(255, 210, 63, 0.12);
  border: 1px solid rgba(255, 210, 63, 0.3);
  border-radius: var(--radius-sm);
  color: var(--warning-yellow);
}

.page-home .schedule-grid {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.page-home .schedule-table-card,
.page-home .schedule-zone {
  min-width: 0;
  padding: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--home-border);
  border-radius: var(--radius-lg);
}

.page-home .schedule-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.page-home .schedule-card-head h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
}

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

.page-home .week-stat {
  min-width: 0;
  padding: 14px 12px;
  background: rgba(5, 13, 22, 0.5);
  border-left: 3px solid var(--nebula-green);
  border-radius: var(--radius-md);
}

.page-home .week-stat-num {
  display: block;
  font-family: var(--font-data);
  font-size: 30px;
  line-height: 1.1;
  color: var(--nebula-green);
}

.page-home .week-stat-label {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: rgba(224, 240, 255, 0.62);
}

.page-home .schedule-note {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(224, 240, 255, 0.68);
}

.page-home .zone-title {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(224, 240, 255, 0.8);
}

.page-home .zone-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.page-home .zone-list li {
  margin: 0;
}

.page-home .zone-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(192, 200, 208, 0.14);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: border-color 0.3s, background 0.3s;
}

.page-home .zone-list a:hover {
  border-color: var(--nebula-green);
  background: rgba(57, 255, 136, 0.08);
}

.page-home .schedule-more {
  min-width: 0;
  display: grid;
  gap: 14px;
}

.page-home .round-collapse {
  min-width: 0;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--home-border);
  border-radius: var(--radius-md);
}

.page-home .round-collapse .collapsible-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 16px 18px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--ice-blue);
}

.page-home .round-collapse .collapsible-indicator {
  font-family: var(--font-data);
  font-size: 18px;
  color: var(--arc-orange);
}

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

.page-home .round-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 12px;
  background: rgba(5, 13, 22, 0.45);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--ice-blue);
}

.page-home .round-list li span:last-child {
  text-align: right;
  color: rgba(224, 240, 255, 0.68);
}

.page-home .schedule-help-link {
  align-self: center;
  font-size: 13px;
  color: var(--nebula-green);
  text-decoration: none;
  transition: color 0.3s;
}

.page-home .schedule-help-link:hover {
  color: var(--arc-orange);
}

.page-home .home-scores {
  padding-top: 64px;
}

.page-home .scores-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.page-home .scores-head-note {
  margin: 0;
  font-size: 13px;
  color: var(--nebula-green);
}

.page-home .scores-layout {
  min-width: 0;
  display: grid;
  gap: 20px;
}

.page-home .scores-list {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.page-home .score-card {
  min-width: 0;
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--home-border);
  border-left: 4px solid var(--nebula-green);
  border-radius: var(--radius-md);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.page-home .score-card:hover {
  border-color: var(--nebula-green);
  box-shadow: 0 0 24px rgba(57, 255, 136, 0.12);
}

.page-home .score-card-basket {
  border-left-color: var(--arc-orange);
}

.page-home .score-card-basket:hover {
  border-color: var(--arc-orange);
  box-shadow: 0 0 24px rgba(255, 110, 61, 0.12);
}

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

.page-home .score-status {
  font-size: 12px;
  color: rgba(224, 240, 255, 0.5);
}

.page-home .score-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}

.page-home .score-team-name {
  flex: 1 1 0;
  min-width: 0;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-home .score-team-name:last-child {
  text-align: right;
}

.page-home .score-middle {
  flex: 0 0 auto;
  font-size: 18px;
  color: var(--nebula-green);
  white-space: nowrap;
}

.page-home .score-card-basket .score-middle {
  color: var(--arc-orange);
}

.page-home .scores-archive {
  min-width: 0;
  display: grid;
  gap: 12px;
}

.page-home .archive-box {
  padding: 20px;
  background: linear-gradient(180deg, rgba(255, 110, 61, 0.08), rgba(255, 110, 61, 0.02));
  border: 1px solid rgba(255, 110, 61, 0.32);
  border-radius: var(--radius-lg);
}

.page-home .archive-box h3 {
  margin: 10px 0 8px;
  font-size: 18px;
  color: #fff;
}

.page-home .archive-box p {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(224, 240, 255, 0.7);
}

.page-home .archive-features {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.page-home .archive-features li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  color: rgba(224, 240, 255, 0.82);
}

.page-home .archive-features li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-data);
  color: var(--arc-orange);
}

.page-home .archive-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid rgba(192, 200, 208, 0.24);
  border-radius: var(--radius-md);
}

.page-home .home-mobile {
  position: relative;
  padding-top: 68px;
}

.page-home .mobile-wrap {
  min-width: 0;
  display: grid;
  gap: 32px;
  align-items: center;
}

.page-home .mobile-visual {
  position: relative;
  min-width: 0;
}

.page-home .mobile-phone {
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 auto;
  object-fit: cover;
  border: 2px solid var(--nebula-green);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 46px rgba(57, 255, 136, 0.14);
}

.page-home .mobile-scan {
  position: absolute;
  top: 14%;
  left: 50%;
  width: 82%;
  max-width: 260px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--nebula-green), transparent);
  border-radius: 999px;
  opacity: 0.75;
  transform: translateX(-50%);
}

.page-home .mobile-copy {
  min-width: 0;
}

.page-home .mobile-copy h2 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff;
}

.page-home .mobile-desc {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(224, 240, 255, 0.72);
}

.page-home .mobile-feature-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-home .mobile-feature-list li {
  display: block;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--arc-orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(224, 240, 255, 0.7);
}

.page-home .mobile-feature-list li strong {
  display: block;
  margin-bottom: 2px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.page-home .mobile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .home-contact {
  padding-top: 60px;
  padding-bottom: 64px;
}

.page-home .contact-panel {
  min-width: 0;
  padding: 24px;
  background: rgba(5, 13, 22, 0.5);
  border: 1px solid var(--home-border);
  border-radius: var(--radius-lg);
}

.page-home .contact-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-home .contact-head-note {
  margin: 0;
  font-size: 13px;
  color: rgba(224, 240, 255, 0.65);
}

.page-home .contact-methods {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.page-home .contact-method {
  min-width: 0;
  padding: 14px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
}

.page-home .contact-label {
  display: block;
  font-size: 12px;
  color: rgba(224, 240, 255, 0.5);
}

.page-home .contact-value {
  display: block;
  margin-top: 5px;
  font-size: 14px;
  color: var(--ice-blue);
}

.page-home .contact-cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-home .contact-cta p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(224, 240, 255, 0.68);
}

.page-home .contact-cta .btn-primary:hover {
  background-color: var(--arc-orange);
  border-color: var(--arc-orange);
  box-shadow: 0 0 20px rgba(255, 110, 61, 0.35);
}

@media (min-width: 768px) {
  .page-home .home-hero-inner {
    padding-bottom: 64px;
  }

  .page-home .schedule-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .page-home .schedule-more {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 20px;
  }

  .page-home .schedule-help-link {
    margin-top: 10px;
  }

  .page-home .scores-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 24px;
  }

  .page-home .mobile-wrap {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 36px;
  }

  .page-home .contact-panel {
    padding: 32px;
  }

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

@media (min-width: 1024px) {
  .page-home .home-hero {
    padding-top: 56px;
  }

  .page-home .home-hero-inner {
    gap: 52px;
    padding-bottom: 72px;
  }

  .page-home .hero-head {
    padding-right: 4%;
  }

  .page-home .hero-title {
    font-size: clamp(3.2rem, 5vw, 5.2rem);
  }

  .page-home .hero-board {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 24px;
    align-items: stretch;
  }

  .page-home .hero-stats-panel {
    padding: 22px;
  }

  .page-home .home-stats-grid {
    gap: 12px;
  }

  .page-home .schedule-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }

  .page-home .schedule-more {
    grid-column: 1 / -1;
  }

  .page-home .scores-layout {
    gap: 32px;
    align-items: stretch;
  }

  .page-home .mobile-wrap {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 64px;
  }

  .page-home .contact-methods {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .page-home .contact-cta p {
    max-width: 560px;
  }
}
