.page-home {
  --home-shadow: 8px 8px 0 rgba(10, 30, 60, 0.18);
  --home-shadow-soft: 12px 12px 0 rgba(10, 30, 60, 0.12);
}
.page-home section[id] {
  scroll-margin-top: 28px;
}
.page-home .img-frame {
  position: relative;
  overflow: hidden;
}
.page-home .img-frame img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .home-hero {
  position: relative;
  background:
    repeating-linear-gradient(-45deg, rgba(198, 255, 0, 0.06) 0 14px, transparent 14px 28px),
    var(--navy);
  color: var(--cream);
  padding: clamp(28px, 6vw, 68px) 0 clamp(48px, 8vw, 96px);
  clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
}
.page-home .hero-layout {
  display: grid;
  gap: 28px;
  align-items: end;
}
.page-home .home-hero .breadcrumb {
  grid-column: 1 / -1;
  margin: 0;
}
.page-home .home-hero .breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  font-size: 12px;
  color: rgba(247, 243, 232, 0.72);
}
.page-home .home-hero .breadcrumb li + li::before {
  content: "／";
  margin-right: 8px;
  opacity: 0.6;
}
.page-home .hero-intro {
  max-width: 680px;
}
.page-home .hero-kicker {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2.4vw, 26px);
  color: var(--acid);
  margin: 0 0 12px;
}
.page-home .hero-intro h1 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(46px, 8vw, 104px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  margin: 0 0 20px;
}
.page-home .hero-intro .page-desc {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(247, 243, 232, 0.84);
  max-width: 60ch;
}
.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.page-home .hero-cover {
  min-height: 240px;
  border: 3px solid rgba(247, 243, 232, 0.55);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.28);
}
.page-home .home-hero a {
  color: var(--acid);
}

.page-home .home-toc {
  background: var(--cream);
  padding: clamp(24px, 5vw, 64px) 0 44px;
}
.page-home .section-head {
  margin-bottom: 24px;
}
.page-home .toc-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.page-home .toc-grid a {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 176px;
  padding: 20px;
  background: var(--white);
  color: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: var(--home-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.page-home .toc-grid a:hover,
.page-home .toc-grid a:focus-visible {
  transform: translateY(-5px);
  box-shadow: 12px 12px 0 rgba(10, 30, 60, 0.24);
  text-decoration: none;
}
.page-home .toc-no {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 54px;
  line-height: 1;
  color: var(--orange);
}
.page-home .toc-label {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.35;
}
.page-home .toc-note {
  margin-top: auto;
  font-size: 12px;
  color: var(--gray);
}

.page-home .home-live {
  padding: 52px 0;
  background:
    repeating-linear-gradient(45deg, rgba(255, 107, 0, 0.04) 0 16px, transparent 16px 32px),
    var(--cream);
}
.page-home .live-grid {
  display: grid;
  gap: 20px;
  align-items: stretch;
}
.page-home .board-panel {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: var(--home-shadow);
  padding: 20px;
}
.page-home .scoreboard {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}
.page-home .team {
  font-weight: 700;
  font-size: 18px;
}
.page-home .team-home {
  text-align: right;
}
.page-home .team-away {
  text-align: left;
}
.page-home .score-digits {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(52px, 8vw, 96px);
  line-height: 1;
  padding: 10px 18px;
  border: 3px solid var(--ink);
  box-shadow: inset 0 0 0 2px rgba(198, 255, 0, 0.35);
}
.page-home .score-num {
  color: var(--acid);
  animation: home-live-refresh 3s steps(2, start) infinite;
}
.page-home .score-colon {
  color: var(--orange);
}
.page-home .score-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 16px 0;
  font-size: 13px;
  color: var(--gray);
}
.page-home .score-status .status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: home-status-pulse 1.5s ease-out infinite;
}
.page-home .board-panel .img-frame {
  flex: 1;
  min-height: 200px;
  border: 2px solid var(--sand);
}
.page-home .injury-panel {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: var(--home-shadow);
  padding: 20px;
}
.page-home .injury-panel h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  line-height: 1;
  margin: 0 0 16px;
}
.page-home .injury-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.page-home .injury-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: var(--cream);
  border: 1px solid var(--sand);
  font-size: 14px;
  line-height: 1.5;
}
.page-home .injury-tag {
  flex: none;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 24px;
}
.page-home .injury-question {
  background: #fff3cd;
  color: #8a6d00;
}
.page-home .injury-out {
  background: #fdecea;
  color: var(--red);
}
.page-home .injury-return {
  background: var(--acid);
  color: var(--navy);
}
.page-home .injury-footnote {
  margin: 14px 0 0;
  font-size: 12px;
  line-height: 1.6;
  color: var(--gray);
}

.page-home .home-ticket {
  padding: 48px 0 56px;
  background: var(--white);
}
.page-home .ticket-layout {
  display: grid;
  gap: 28px;
  align-items: center;
}
.page-home .ticket-visual {
  min-height: 320px;
  border: 3px solid var(--ink);
  box-shadow: var(--home-shadow-soft);
}
.page-home .ticket-copy {
  max-width: 680px;
}
.page-home .ticket-tip {
  margin: 20px 0;
  padding: 14px 18px;
  background: var(--navy);
  color: var(--cream);
  border-left: 6px solid var(--orange);
  font-size: 15px;
  line-height: 1.7;
}
.page-home .ticket-points {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.page-home .ticket-points li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray);
}
.page-home .ticket-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  background: var(--orange);
  transform: rotate(45deg);
}
.page-home .ticket-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .home-update {
  padding: 56px 0;
  background: var(--navy);
  color: var(--cream);
}
.page-home .update-head .section-desc {
  color: rgba(247, 243, 232, 0.78);
}
.page-home .update-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 28px 0;
}
.page-home .update-stat {
  display: grid;
  gap: 6px;
  padding: 20px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(247, 243, 232, 0.3);
}
.page-home .update-stat strong {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  color: var(--acid);
}
.page-home .update-stat span {
  font-size: 14px;
  color: rgba(247, 243, 232, 0.8);
}
.page-home .table-wrap {
  background: var(--cream);
  color: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: var(--home-shadow);
}
.page-home .table-wrap table {
  width: 100%;
  border-collapse: collapse;
}
.page-home .table-wrap th,
.page-home .table-wrap td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--sand);
  font-size: 14px;
  white-space: nowrap;
}
.page-home .table-wrap th {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  border-bottom: 3px solid var(--orange);
}
.page-home .table-wrap tbody tr:last-child td {
  border-bottom: 0;
}
.page-home .table-wrap tbody tr:hover td {
  background: rgba(255, 107, 0, 0.06);
}
.page-home .table-wrap a {
  color: var(--orange);
  font-weight: 700;
}
.page-home .update-note {
  margin: 20px 0 0;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(247, 243, 232, 0.66);
}

.page-home .home-bonus {
  padding: 56px 0;
  background:
    repeating-linear-gradient(-45deg, rgba(10, 30, 60, 0.03) 0 20px, transparent 20px 40px),
    var(--cream);
}
.page-home .bonus-layout {
  display: grid;
  gap: 28px;
  align-items: center;
}
.page-home .bonus-card {
  background: var(--ink);
  color: var(--cream);
  border: 3px solid var(--orange);
  box-shadow: 12px 12px 0 var(--sand);
  padding: clamp(22px, 4vw, 40px);
}
.page-home .bonus-kicker {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--acid);
}
.page-home .bonus-card h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  margin: 0 0 14px;
}
.page-home .bonus-desc {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(247, 243, 232, 0.84);
}
.page-home .bonus-rule {
  list-style: none;
  margin: 24px 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.page-home .bonus-rule li {
  display: grid;
  gap: 4px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--orange);
  font-size: 13px;
}
.page-home .bonus-rule strong {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  line-height: 1;
  color: var(--acid);
}
.page-home .bonus-visual {
  min-height: 220px;
  border: 3px solid var(--ink);
  box-shadow: var(--home-shadow-soft);
}

.page-home .home-faster {
  padding: 56px 0 64px;
  background: var(--white);
}
.page-home .journey-compare {
  display: grid;
  gap: 20px;
  align-items: center;
}
.page-home .journey-side {
  background: var(--cream);
  border: 2px solid var(--ink);
  box-shadow: var(--home-shadow);
  padding: 20px;
}
.page-home .journey-label {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--orange);
}
.page-home .journey-count {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(44px, 7vw, 72px);
  line-height: 1;
  margin: 8px 0 16px;
}
.page-home .journey-new .journey-count {
  color: var(--orange);
}
.page-home .journey-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.page-home .journey-steps li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.6;
}
.page-home .journey-steps li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--navy);
  transform: rotate(45deg);
}
.page-home .journey-new .journey-steps li::before {
  background: var(--orange);
}
.page-home .journey-verdict {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  color: var(--gray);
}
.page-home .journey-chart {
  background: var(--navy);
  border: 2px solid var(--ink);
  box-shadow: var(--home-shadow);
  padding: 18px;
}
.page-home .journey-chart svg {
  display: block;
  width: 100%;
  height: auto;
}
.page-home .chart-axis line {
  stroke: var(--cream);
  stroke-width: 2;
}
.page-home .chart-grid line {
  stroke: rgba(247, 243, 232, 0.16);
  stroke-width: 1;
}
.page-home .chart-line {
  fill: none;
  stroke: var(--orange);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.page-home .chart-line-new {
  stroke: var(--acid);
  stroke-dasharray: 10 6;
}

.page-home .home-outro {
  padding: 56px 0 72px;
  background: var(--cream);
}
.page-home .outro-grid {
  display: grid;
  gap: 24px;
  align-items: stretch;
}
.page-home .outro-tools,
.page-home .outro-help {
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: var(--home-shadow);
  padding: clamp(22px, 4vw, 36px);
}
.page-home .outro-help {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.page-home .outro-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.page-home .outro-help a {
  color: var(--acid);
}
.page-home .outro-help h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  margin: 0 0 12px;
}
.page-home .outro-help p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(247, 243, 232, 0.82);
}

@keyframes home-live-refresh {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.55;
  }
}
@keyframes home-status-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.45);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(255, 107, 0, 0.1);
  }
}

@media (min-width: 768px) {
  .page-home .toc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-home .update-metrics {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-home .bonus-rule {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .page-home .hero-layout {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 40px;
  }
  .page-home .hero-cover {
    order: 2;
    min-height: 380px;
  }
  .page-home .toc-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .page-home .live-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
  .page-home .ticket-layout {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 48px;
  }
  .page-home .bonus-layout {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
  }
  .page-home .journey-compare {
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 28px;
  }
  .page-home .outro-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .score-num,
  .page-home .score-status .status-dot {
    animation: none;
  }
  .page-home .toc-grid a {
    transition: none;
  }
}
