.page-home {
  --home-glow-orange: rgba(255, 106, 0, 0.14);
  --home-glow-blue: rgba(0, 229, 255, 0.1);
  --home-section-pad: clamp(3rem, 7vw, 5.5rem);
  position: relative;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: clip;
}

.page-home .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 20px;
}

.page-home .home-hero {
  position: relative;
  padding: calc(var(--header-height) + 28px) 0 3.5rem;
  background:
    radial-gradient(ellipse at 80% 20%, var(--home-glow-orange), transparent 46%),
    radial-gradient(ellipse at 12% 70%, var(--home-glow-blue), transparent 52%),
    linear-gradient(140deg, #0B0F1A 0%, #101726 55%, #131C2E 100%);
  border-bottom: 1px solid var(--divider);
  isolation: isolate;
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, transparent 65%, rgba(255, 106, 0, 0.16) 65.5%, transparent 66%),
    linear-gradient(105deg, transparent 82%, rgba(0, 229, 255, 0.08) 82.5%, transparent 83%);
  pointer-events: none;
}

.page-home .home-hero-pattern {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(42, 51, 72, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 51, 72, 0.4) 1px, transparent 1px);
  background-size: 36px 36px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 72%);
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 72%);
  pointer-events: none;
}

.page-home .home-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

.page-home .home-hero-context {
  margin: 0 0 1rem;
  font-family: var(--font-data);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.page-home .home-hero-context::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent-orange);
}

.page-home .home-hero h1 {
  margin: 0 0 1.25rem;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(2rem, 6vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.page-home .home-h1-line {
  display: block;
}

.page-home .home-h1-accent {
  color: var(--accent-orange);
  -webkit-text-stroke: 1px rgba(255, 106, 0, 0.35);
  text-stroke: 1px rgba(255, 106, 0, 0.35);
}

.page-home .home-hero-lead {
  max-width: 34rem;
  margin: 0 0 1.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: var(--body-line-height);
  color: var(--text-secondary);
}

.page-home .home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.6rem;
}

.page-home .home-hero-actions .btn {
  text-decoration: none;
}

.page-home .home-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.8rem;
  margin: 0;
  padding-top: 1.2rem;
  border-top: 1px solid var(--divider);
}

.page-home .hero-stat {
  display: grid;
  gap: 0.15rem;
}

.page-home .hero-stat .data-value {
  font-family: var(--font-data);
  font-size: 1.35rem;
  color: var(--accent-blue);
  line-height: 1.2;
}

.page-home .hero-stat dd {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.page-home .chapter-panel {
  position: relative;
  background: rgba(21, 28, 43, 0.72);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.2rem 1.2rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.page-home .chapter-panel::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-blue));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0.85;
}

.page-home .chapter-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.page-home .chapter-panel-total {
  font-size: 1rem;
  color: var(--accent-blue);
  opacity: 0.7;
}

.page-home .chapter-list {
  display: grid;
  gap: 0.35rem;
}

.page-home .chapter-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  padding: 0.78rem 0.7rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  background: rgba(30, 42, 58, 0.35);
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.page-home .chapter-link:hover {
  background: var(--bg-elevation);
  border-color: var(--border-highlight);
  transform: translateX(4px);
}

.page-home .chapter-link:hover .chapter-link-arrow {
  color: var(--accent-orange);
  transform: translate(2px, -2px);
}

.page-home .chapter-link:focus-visible {
  outline: 2px solid var(--accent-blue);
  outline-offset: 2px;
}

.page-home .chapter-link-num {
  font-family: var(--font-data);
  font-size: 0.9rem;
  color: var(--accent-blue);
  min-width: 1.6rem;
}

.page-home .chapter-link-body {
  display: grid;
  gap: 0.2rem;
  flex: 1;
}

.page-home .chapter-link-title {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.25;
  color: var(--text-primary);
}

.page-home .chapter-link-tag {
  font-family: var(--font-data);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
}

.page-home .chapter-link-arrow {
  font-size: 1.1rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.page-home .chapter-panel-note {
  margin: 0.8rem 0 0;
  padding-top: 0.8rem;
  border-top: 1px solid var(--divider);
  font-family: var(--font-data);
  font-size: 0.72rem;
  color: var(--text-secondary);
  text-align: right;
}

.page-home .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.87rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.page-home .btn-primary {
  background: var(--accent-orange);
  color: #fff;
  border: 1px solid var(--accent-orange);
}

.page-home .btn-primary:hover {
  background: #ff7f26;
  border-color: #ff7f26;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 106, 0, 0.28);
}

.page-home .btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--divider);
}

.page-home .btn-outline:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  transform: translateY(-2px);
}

.page-home .btn-compact {
  background: var(--bg-elevation);
  border: 1px solid var(--divider);
  color: var(--text-primary);
  padding: 0.55rem 1rem;
  font-size: 0.8rem;
}

.page-home .btn-compact:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
}

.page-home .home-section {
  padding-block: var(--home-section-pad);
  scroll-margin-top: calc(var(--header-height) + 16px);
}

.page-home .section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.4rem;
}

.page-home .section-heading-text {
  display: grid;
  gap: 0.6rem;
}

.page-home .section-heading h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.6rem, 3.6vw, 2.2rem);
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--text-primary);
}

.page-home .section-heading-desc {
  max-width: 42rem;
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.94rem;
  line-height: var(--body-line-height);
  color: var(--text-secondary);
}

.page-home .exhibit-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-data);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  padding: 0.3rem 0.65rem;
  border: 1px solid var(--divider);
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  background: rgba(21, 28, 43, 0.6);
}

.page-home .exhibit-index {
  color: var(--accent-orange);
  font-weight: 700;
}

.page-home .text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--accent-blue);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-fast), color var(--transition-fast);
}

.page-home .text-link:hover {
  border-bottom-color: var(--accent-blue);
}

.page-home .tag {
  display: inline-block;
  padding: 0.28rem 0.6rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-data);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  background: var(--bg-elevation);
  border: 1px solid var(--divider);
}

.page-home .tag-accent {
  color: var(--accent-orange);
  border-color: rgba(255, 106, 0, 0.4);
  background: rgba(255, 106, 0, 0.08);
}

.page-home .home-schedule {
  position: relative;
  background: linear-gradient(180deg, var(--bg-primary) 0%, #0D1220 100%);
  border-bottom: 1px solid var(--divider);
}

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

.page-home .league-schedule-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--divider);
  padding: 1.4rem 1.2rem 1.2rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.page-home .league-schedule-card:hover {
  border-color: rgba(255, 106, 0, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
}

.page-home .league-schedule-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.1), transparent 68%);
  pointer-events: none;
  border-radius: 50%;
}

.page-home .league-schedule-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.page-home .league-schedule-head h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.page-home .league-schedule-round {
  font-family: var(--font-data);
  font-size: 0.7rem;
  color: var(--accent-blue);
  padding: 0.2rem 0.5rem;
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: var(--radius-sm);
  background: rgba(0, 229, 255, 0.06);
}

.page-home .match-lineup {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.page-home .match-lineup-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.5rem;
  padding: 0.62rem 0.7rem;
  background: rgba(30, 42, 58, 0.45);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.page-home .match-lineup-item:hover {
  border-color: var(--divider);
  background: var(--bg-elevation);
}

.page-home .match-lineup-club {
  font-family: var(--font-body);
  font-size: 0.86rem;
  line-height: 1.3;
  color: var(--text-primary);
}

.page-home .match-lineup-club:first-child {
  text-align: right;
}

.page-home .match-lineup-club:last-child {
  text-align: left;
}

.page-home .match-lineup-time {
  font-family: var(--font-data);
  font-size: 0.72rem;
  color: var(--accent-blue);
  text-align: center;
  white-space: nowrap;
}

.page-home .league-schedule-status {
  margin: 0 0 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.page-home .status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
  flex: none;
}

.page-home .status-dot-live {
  background: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.2);
  animation: homePulse 2s ease infinite;
}

@keyframes homePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

.page-home .status-dot-upcoming {
  background: var(--accent-blue);
}

.page-home .schedule-visual-figure {
  margin: 0;
  grid-column: 1 / -1;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--divider);
  background: var(--bg-card);
}

.page-home .schedule-visual-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}

.page-home .schedule-visual-caption {
  display: block;
  padding: 0.7rem 1rem;
  font-family: var(--font-data);
  font-size: 0.75rem;
  color: var(--text-secondary);
  background: rgba(11, 15, 26, 0.85);
  border-top: 1px solid var(--divider);
}

.page-home .home-report {
  position: relative;
  background:
    radial-gradient(ellipse at 0% 30%, rgba(0, 229, 255, 0.05), transparent 50%),
    var(--bg-primary);
  border-bottom: 1px solid var(--divider);
}

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

.page-home .report-main-card {
  background: linear-gradient(150deg, var(--bg-card), #131B2A 100%);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.page-home .report-main-card:hover {
  border-color: rgba(0, 229, 255, 0.45);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.page-home .report-main-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent-orange), var(--accent-blue));
}

.page-home .report-main-card-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  margin-bottom: 1rem;
}

.page-home .report-main-card-league {
  font-family: var(--font-data);
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.page-home .report-main-card-title {
  margin: 0 0 0.4rem;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.3rem, 2.8vw, 1.8rem);
  color: var(--text-primary);
  letter-spacing: 0.01em;
}

.page-home .report-main-card-status {
  margin: 0 0 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--accent-blue);
  font-family: var(--font-data);
}

.page-home .report-main-card-status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-blue);
  box-shadow: 0 0 8px rgba(0, 229, 255, 0.5);
}

.page-home .report-main-card-summary {
  margin: 0 0 1.4rem;
  font-size: 0.9rem;
  line-height: var(--body-line-height);
  color: var(--text-secondary);
  max-width: 30rem;
}

.page-home .report-main-card-stats {
  display: flex;
  gap: 1.2rem 2rem;
  flex-wrap: wrap;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--divider);
  margin-bottom: 1.4rem;
}

.page-home .report-stat-cell {
  display: grid;
  gap: 0.15rem;
  min-width: 4.5rem;
}

.page-home .report-stat-cell .data-value {
  font-family: var(--font-data);
  font-size: 1.6rem;
  color: var(--accent-orange);
  line-height: 1;
}

.page-home .report-stat-cell-label {
  font-size: 0.72rem;
  color: var(--text-secondary);
  font-family: var(--font-body);
}

.page-home .report-main-card-figure {
  margin: 0;
}

.page-home .report-main-card-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid var(--divider);
  object-fit: cover;
}

.page-home .report-main-card-figure figcaption {
  margin-top: 0.5rem;
  font-family: var(--font-data);
  font-size: 0.72rem;
  color: var(--text-secondary);
}

.page-home .report-side-panel {
  background: var(--bg-card);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  align-self: start;
}

.page-home .report-side-title {
  margin: 0 0 0.8rem;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--text-primary);
}

.page-home .report-side-desc {
  margin: 0 0 1.4rem;
  font-size: 0.9rem;
  line-height: var(--body-line-height);
  color: var(--text-secondary);
}

.page-home .report-feature-list {
  list-style: none;
  margin: 0 0 1.4rem;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.page-home .report-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--text-primary);
}

.page-home .report-feature-icon {
  flex: none;
  width: 9px;
  height: 9px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.15);
}

.page-home .report-feature-text b {
  color: var(--text-primary);
}

.page-home .home-help {
  position: relative;
  background:
    radial-gradient(ellipse at 90% 20%, rgba(255, 106, 0, 0.06), transparent 55%),
    var(--bg-primary);
  border-bottom: 1px solid var(--divider);
}

.page-home .home-help-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.page-home .help-layer-visual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  position: relative;
  padding: 1.4rem;
  background: linear-gradient(160deg, var(--bg-card), var(--bg-primary));
  border-radius: var(--radius-lg);
  border: 1px solid var(--divider);
  overflow: hidden;
}

.page-home .help-layer-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 70%, rgba(255, 106, 0, 0.06) 70.5%, transparent 71%),
    linear-gradient(60deg, transparent 20%, rgba(0, 229, 255, 0.05) 20.5%, transparent 21%);
  pointer-events: none;
}

.page-home .help-layer-stack {
  display: grid;
  gap: 0.25rem;
  position: relative;
  z-index: 1;
}

.page-home .help-layer-card {
  background: var(--bg-elevation);
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.page-home .help-layer-card:hover {
  border-color: rgba(255, 106, 0, 0.5);
}

.page-home .help-layer-card-top {
  border-left: 3px solid var(--accent-orange);
}

.page-home .help-layer-card-mid {
  border-left: 3px solid var(--accent-blue);
}

.page-home .help-layer-card-bottom {
  border-left: 3px solid var(--accent-orange);
}

.page-home .help-layer-label {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-primary);
}

.page-home .help-layer-note {
  font-family: var(--font-data);
  font-size: 0.72rem;
  color: var(--text-secondary);
}

.page-home .help-layer-connector {
  width: 1px;
  height: 16px;
  margin-left: 22px;
  background: var(--divider);
}

.page-home .help-layer-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  margin-top: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--divider);
  position: relative;
  z-index: 1;
}

.page-home .help-center-content {
  display: grid;
  gap: 1.4rem;
}

.page-home .help-center-title {
  margin: 0;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--text-primary);
}

.page-home .help-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.page-home .help-feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: rgba(21, 28, 43, 0.65);
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.page-home .help-feature-item:hover {
  border-color: rgba(0, 229, 255, 0.4);
  transform: translateX(3px);
}

.page-home .help-feature-num {
  font-family: var(--font-data);
  font-size: 1.2rem;
  line-height: 1;
  color: var(--accent-orange);
  font-weight: 700;
  min-width: 2rem;
}

.page-home .help-feature-body {
  display: grid;
  gap: 0.2rem;
}

.page-home .help-feature-body b {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.page-home .help-feature-body span {
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.page-home .home-download {
  position: relative;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(255, 106, 0, 0.1), transparent 55%),
    linear-gradient(180deg, var(--bg-primary) 0%, #0D1220 100%);
  border-bottom: 1px solid var(--divider);
  overflow: hidden;
}

.page-home .home-download::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent 20%, rgba(255, 106, 0, 0.05) 20.5%, transparent 21%);
  pointer-events: none;
}

.page-home .home-download-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
}

.page-home .home-download-content {
  display: grid;
  gap: 1.2rem;
}

.page-home .home-download-content .exhibit-label {
  justify-self: start;
}

.page-home .home-download-content h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.6rem, 3.6vw, 2.2rem);
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--text-primary);
}

.page-home .home-download-lead {
  max-width: 30rem;
  margin: 0;
  font-size: 0.93rem;
  line-height: var(--body-line-height);
  color: var(--text-secondary);
}

.page-home .home-download-meta {
  margin: 0;
  display: grid;
  gap: 0.6rem;
  padding: 1rem 1.2rem;
  background: rgba(21, 28, 43, 0.7);
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
}

.page-home .download-meta-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  font-size: 0.86rem;
}

.page-home .download-meta-key {
  color: var(--text-secondary);
}

.page-home .download-meta-value {
  margin: 0;
  color: var(--text-primary);
  text-align: right;
}

.page-home .btn-download-cta {
  justify-self: start;
}

.page-home .home-download-note {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.page-home .home-download-note a {
  color: var(--accent-blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 229, 255, 0.35);
}

.page-home .home-download-figure {
  margin: 0;
  display: grid;
  gap: 0.7rem;
  justify-items: center;
}

.page-home .home-download-phone-frame {
  position: relative;
  padding: 8px;
  border-radius: 26px;
  background: linear-gradient(150deg, var(--bg-elevation), #0E1524);
  border: 1px solid var(--divider);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
  max-width: 300px;
  width: 100%;
}

.page-home .home-download-phone-frame::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 92%;
  height: 92%;
  transform: translate(-50%, -50%);
  border-radius: 18px;
  border: 1px solid rgba(255, 106, 0, 0.2);
  pointer-events: none;
}

.page-home .home-download-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.page-home .home-download-caption {
  font-family: var(--font-data);
  font-size: 0.72rem;
  color: var(--text-secondary);
  text-align: center;
}

.page-home .home-live {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--divider);
}

.page-home .live-panel {
  background:
    linear-gradient(140deg, rgba(255, 106, 0, 0.05), transparent 50%),
    var(--bg-card);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1rem;
  overflow: hidden;
  position: relative;
}

.page-home .live-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding-bottom: 0.9rem;
  margin-bottom: 0.6rem;
  border-bottom: 1px solid var(--divider);
}

.page-home .live-panel-title {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-primary);
}

.page-home .live-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-orange);
  box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.18);
}

.page-home .live-panel-refresh {
  font-size: 0.72rem;
  color: var(--text-secondary);
}

.page-home .live-track-svg {
  width: 100%;
  height: auto;
  min-height: 200px;
  display: block;
}

.page-home .live-track-axis {
  stroke: var(--divider);
  stroke-width: 1;
  stroke-dasharray: 4 6;
}

.page-home .live-match-text {
  fill: var(--text-primary);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
}

.page-home .live-match-min {
  fill: var(--text-secondary);
  font-family: var(--font-data);
  font-size: 10px;
}

.page-home .live-point-live {
  fill: var(--accent-orange);
}

.page-home .live-point-finished {
  fill: var(--accent-blue);
}

.page-home .live-point-upcoming {
  fill: var(--divider);
  stroke: var(--text-secondary);
  stroke-width: 1.5;
  stroke-dasharray: 2 2;
}

.page-home .live-legend {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 0.8rem;
  border-top: 1px solid var(--divider);
}

.page-home .live-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-data);
  font-size: 0.72rem;
  color: var(--text-secondary);
}

.page-home .live-legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.page-home .live-legend-live {
  background: var(--accent-orange);
}

.page-home .live-legend-finished {
  background: var(--accent-blue);
}

.page-home .live-legend-upcoming {
  background: var(--divider);
  border: 1px solid var(--text-secondary);
}

.page-home .live-legend-more {
  margin-left: auto;
}

.page-home .home-live-footnote {
  margin: 0.9rem 0 0;
  font-size: 0.74rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.page-home .home-bridge {
  background: linear-gradient(180deg, var(--bg-primary) 0%, #0B0F1A 100%);
}

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

.page-home .home-bridge-card {
  display: flex;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  align-items: center;
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.page-home .home-bridge-card:hover {
  border-color: rgba(255, 106, 0, 0.4);
  transform: translateX(3px);
}

.page-home .home-bridge-num {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-orange);
  line-height: 1;
  min-width: 3.6rem;
}

.page-home .home-bridge-body {
  display: grid;
  gap: 0.18rem;
}

.page-home .home-bridge-body b {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.96rem;
  color: var(--text-primary);
}

.page-home .home-bridge-body span {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

.page-home .home-bridge-cta {
  padding: 1.1rem 1.2rem;
  background: var(--bg-elevation);
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  display: grid;
  gap: 0.7rem;
}

.page-home .home-bridge-cta p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.page-home .home-bridge-links {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.page-home .home-bridge-sep {
  color: var(--divider);
}

@media (min-width: 768px) {
  .page-home .container {
    padding-inline: 28px;
  }

  .page-home .home-hero {
    padding-top: calc(var(--header-height) + 40px);
  }

  .page-home .home-hero-inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 3rem;
  }

  .page-home .home-hero h1 {
    font-size: clamp(2.4rem, 4vw, 3.1rem);
  }

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

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

  .page-home .home-report-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.6rem;
    align-items: start;
  }

  .page-home .home-help-layout {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .page-home .help-layer-visual {
    padding: 1.8rem;
  }

  .page-home .home-download-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }

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

  .page-home .live-panel {
    padding: 1.6rem 1.4rem;
  }
}

@media (min-width: 1024px) {
  .page-home .container {
    padding-inline: 32px;
  }

  .page-home .home-hero {
    padding-bottom: 5rem;
  }

  .page-home .home-hero-inner {
    gap: 4rem;
  }

  .page-home .home-schedule-grid {
    grid-template-columns: 1fr 1fr 1.25fr;
    align-items: stretch;
  }

  .page-home .schedule-visual-figure {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    margin: 0;
  }

  .page-home .schedule-visual-img {
    height: 100%;
    min-height: 280px;
  }

  .page-home .home-report-card-stats {
    gap: 2.4rem;
  }

  .page-home .help-layer-visual {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    align-items: center;
    gap: 0 1.4rem;
  }

  .page-home .help-layer-stack {
    grid-row: 1 / 1;
  }

  .page-home .help-layer-img {
    grid-row: 1 / 1;
    margin-top: 0;
  }

  .page-home .live-legend {
    gap: 1.4rem;
  }
}
