.page-home {
  --hero-pad: clamp(1.5rem, 4vw, 3.5rem);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
}

.page-home .home-hero {
  padding: 1rem clamp(0.75rem, 3vw, 2rem);
}

.page-home .hero-frame {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--hero-pad);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.page-home .hero-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(13, 74, 110, 0.16);
  pointer-events: none;
}

.page-home .hero-track {
  position: absolute;
  z-index: 0;
  width: 86px;
  height: 86px;
  pointer-events: none;
}

.page-home .hero-track--tl {
  top: 14px;
  left: 14px;
}

.page-home .hero-track--br {
  right: 14px;
  bottom: 14px;
}

.page-home .hero-track-dash {
  fill: none;
  stroke: var(--green);
  stroke-width: 2;
  stroke-dasharray: 6 9;
}

.page-home .hero-track-glow {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1;
  opacity: 0.55;
}

.page-home .hero-track-mark {
  stroke: var(--green);
  stroke-width: 2;
}

.page-home .hero-track-mark--gold {
  stroke: var(--gold);
  stroke-width: 2;
}

.page-home .hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.page-home .hero-context {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.page-home .hero-context-sep {
  color: var(--green);
  margin: 0 0.4rem;
}

.page-home h1 {
  font-family: var(--font-title);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.98;
  margin: 0 0 0.85rem;
}

.page-home .hero-lead {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.75;
  max-width: 30rem;
  color: var(--gray);
  margin-bottom: 1.25rem;
}

.page-home .hero-media {
  overflow: hidden;
  background: var(--sky);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 2px 2px 36px 2px;
}

.page-home .hero-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .hero-stat-row {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.page-home .hero-stat-row li {
  border-left: 3px solid var(--green);
  background: var(--paper);
  padding: 0.65rem 0.8rem;
}

.page-home .hero-stat-row strong {
  display: block;
  font-family: var(--font-data);
  font-size: 1.35rem;
  color: var(--blue);
  line-height: 1.1;
}

.page-home .hero-stat-row span {
  font-size: 0.75rem;
  color: var(--gray);
}

.page-home .odds-panel {
  position: relative;
  background: linear-gradient(150deg, #0c2538 0%, var(--ink) 80%);
  color: var(--white);
  padding: clamp(1.25rem, 2vw, 2rem);
  box-shadow: var(--shadow);
  border-radius: 2px 2px 42px 2px;
}

.page-home .odds-panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 64px;
  border-top: 3px solid var(--green);
  border-right: 3px solid var(--green);
  opacity: 0.75;
}

.page-home .odds-panel-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.page-home .odds-chip {
  background: var(--green);
  color: var(--ink);
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.55rem;
  white-space: nowrap;
}

.page-home .odds-panel h2 {
  font-family: var(--font-title);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  margin: 0;
  line-height: 1.12;
}

.page-home .odds-table-wrap {
  overflow-x: auto;
}

.page-home .odds-table {
  width: 100%;
  min-width: 360px;
  border-collapse: collapse;
}

.page-home .odds-table th,
.page-home .odds-table td {
  padding: 0.72rem 0.55rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}

.page-home .odds-table thead th {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--green);
  text-transform: uppercase;
}

.page-home .odds-table tbody th {
  font-weight: 700;
  color: var(--gold);
}

.page-home .odds-table tbody td {
  font-family: var(--font-data);
  font-size: 1rem;
  color: var(--white);
}

.page-home .odds-table tbody tr {
  transition: background 0.15s;
}

.page-home .odds-table tbody tr:hover {
  background: rgba(0, 196, 140, 0.14);
  cursor: default;
}

.page-home .odds-note {
  font-size: 0.78rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  margin: 1rem 0 1.25rem;
}

.page-home .odds-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.page-home .odds-link {
  color: var(--green);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  border-bottom: 1px dashed rgba(0, 196, 140, 0.6);
  padding-bottom: 2px;
  transition: border-color 0.15s, color 0.15s;
}

.page-home .odds-link:hover {
  color: var(--white);
  border-color: var(--white);
}

.page-home .home-entry {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.25rem, 4vw, 3.5rem);
  background: linear-gradient(145deg, var(--blue) 0%, #06283e 70%);
  color: var(--white);
}

.page-home .home-entry::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: var(--green);
  clip-path: polygon(0 0, 100% 0, 96% 100%, 4% 100%);
  z-index: 1;
  pointer-events: none;
}

.page-home .home-entry::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 82% 20%, rgba(0, 196, 140, 0.2), transparent 55%);
  z-index: 1;
  pointer-events: none;
}

.page-home .entry-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: var(--max);
  margin-inline: auto;
}

.page-home .home-overline {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.4rem;
}

.page-home .entry-main h2 {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.08;
  margin: 0.35rem 0 0.75rem;
}

.page-home .entry-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  max-width: 34rem;
  margin-bottom: 1.4rem;
}

.page-home .fix-step {
  background: var(--white);
  color: var(--ink);
  margin: 0 0 0.85rem;
  border: 1px solid var(--line);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
}

.page-home .fix-step summary {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  cursor: pointer;
  padding: 0.95rem 1.1rem;
  list-style: none;
  font-weight: 600;
  color: var(--ink);
}

.page-home .fix-step summary::-webkit-details-marker {
  display: none;
}

.page-home .fix-step summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(45deg);
  margin-left: auto;
  transition: transform 0.2s ease;
  flex: none;
}

.page-home .fix-step[open] summary::after {
  transform: rotate(225deg);
}

.page-home .fix-step[open] {
  border-color: var(--green);
}

.page-home .fix-no {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-data);
  font-size: 0.85rem;
  font-weight: 700;
  flex: none;
}

.page-home .fix-step[open] .fix-no {
  background: var(--green);
  color: var(--ink);
}

.page-home .fix-body {
  padding: 0 1.1rem 1.1rem 3.55rem;
}

.page-home .fix-body p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--gray);
}

.page-home .entry-more {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 1.5rem;
}

.page-home .entry-more .btn--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
  background: transparent;
}

.page-home .entry-contact {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
  padding-bottom: 2px;
  transition: color 0.15s, border-color 0.15s;
}

.page-home .entry-contact:hover {
  color: var(--green);
  border-color: var(--green);
}

.page-home .entry-aside {
  display: grid;
  place-items: center;
}

.page-home .entry-media {
  position: relative;
  max-width: 250px;
  overflow: hidden;
  background: var(--white);
  border: 4px solid var(--white);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.page-home .entry-media::before {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  pointer-events: none;
}

.page-home .entry-media img {
  display: block;
  width: 100%;
  height: auto;
}

.page-home .home-cover {
  padding: clamp(3rem, 7vw, 5rem) clamp(1.25rem, 4vw, 3.5rem);
  background: var(--paper);
}

.page-home .cover-grid {
  max-width: var(--max);
  margin-inline: auto;
  display: grid;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.page-home .cover-chart {
  position: relative;
}

.page-home .chart-frame {
  background: var(--white);
  padding: 0.5rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.page-home .chart-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.page-home .cover-copy h2 {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.05;
  margin: 0.35rem 0 0.9rem;
}

.page-home .cover-copy p {
  color: var(--gray);
  line-height: 1.7;
  max-width: 34rem;
}

.page-home .cover-copy .home-overline {
  color: var(--blue);
}

.page-home .cover-copy .btn--ghost {
  color: var(--blue);
  border-color: var(--blue);
  background: transparent;
}

.page-home .cover-copy .btn--ghost:hover {
  background: var(--blue);
  color: var(--white);
}

.page-home .league-tags {
  list-style: none;
  margin: 1.25rem 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.page-home .league-tags li {
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue);
  padding: 0.35rem 0.6rem;
}

.page-home .cover-data {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1.75rem 0;
}

.page-home .cover-data-item {
  background: var(--ink);
  border-top: 3px solid var(--gold);
  color: var(--white);
  padding: 0.9rem 0.8rem;
  box-shadow: var(--shadow);
}

.page-home .cover-data-value {
  display: block;
  font-family: var(--font-data);
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}

.page-home .cover-data-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.72);
}

.page-home .home-news {
  padding: clamp(3rem, 7vw, 5rem) clamp(1.25rem, 4vw, 3.5rem);
  background: var(--sky);
}

.page-home .news-inner {
  max-width: var(--max);
  margin-inline: auto;
}

.page-home .news-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.page-home .news-head h2 {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  text-transform: uppercase;
  margin: 0.3rem 0 0;
}

.page-home .home-news .home-overline {
  color: var(--blue);
}

.page-home .news-all {
  color: var(--blue);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border-bottom: 2px solid var(--green);
  padding-bottom: 2px;
  transition: background 0.15s;
}

.page-home .news-all:hover {
  background: rgba(0, 196, 140, 0.12);
}

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

.page-home .timeline-item {
  background: var(--white);
  border-left: 4px solid var(--green);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  position: relative;
}

.page-home .timeline-item::before {
  content: "";
  position: absolute;
  top: 1.25rem;
  left: -7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.page-home .timeline-tag {
  display: inline-block;
  background: var(--sky);
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.5rem;
  margin-bottom: 0.6rem;
}

.page-home .timeline-item h3 {
  font-family: var(--font-body);
  font-size: 1.04rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--ink);
  line-height: 1.35;
}

.page-home .timeline-item p {
  font-size: 0.86rem;
  line-height: 1.65;
  color: var(--gray);
  margin: 0;
}

.page-home .home-trust {
  background: var(--ink);
  color: var(--white);
}

.page-home .home-trust .trust-statement {
  color: var(--white);
  text-align: center;
  padding: 2rem 1rem 0.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.page-home .home-track-img {
  max-width: var(--max);
  margin-inline: auto;
  overflow: hidden;
}

.page-home .home-track-img img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.92;
}

@media (min-width: 880px) {
  .page-home .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
  }

  .page-home .hero-stat-row {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-home .hero-media {
    margin-right: 0.25rem;
  }

  .page-home .entry-grid {
    grid-template-columns: 1fr 0.45fr;
    align-items: center;
  }

  .page-home .entry-media {
    max-width: 280px;
  }

  .page-home .home-entry::before {
    height: 100%;
    width: 42%;
    right: -12%;
    left: auto;
    background: var(--green);
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  }

  .page-home .cover-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }

  .page-home .home-timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .page-home .timeline-item {
    border-left: 0;
    border-top: 4px solid var(--green);
  }

  .page-home .timeline-item::before {
    top: -7px;
    left: 1.25rem;
  }

  .page-home .home-trust .trust-statement {
    padding-bottom: 1rem;
  }
}
