.page-home {
  --home-red: #C8102E;
  --home-blue: #10224A;
  --home-blue-2: #0B1B3A;
  --home-gold: #D4AF37;
  --home-green: #1B7A4A;
  --home-light-gray: #F2F4F8;
  --home-white: #FFFFFF;
  --home-radius: 20px;
  --home-radius-sm: 12px;
}

.page-home a {
  color: inherit;
  text-decoration: none;
}

.page-home .hero-actions .btn:focus-visible,
.page-home .preview-card:focus-visible,
.page-home .btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, .75);
}

.page-home .vert-label {
  writing-mode: vertical-rl;
  font-size: 12px;
  letter-spacing: .18em;
  color: rgba(242, 244, 248, .75);
  text-transform: uppercase;
}

.page-home h1,
.page-home h2,
.page-home h3 {
  font-weight: 900;
  line-height: 1.15;
}

/* ===== Hero ===== */
.page-home .home-hero {
  background: linear-gradient(135deg, #0B1B3A 0%, #10224A 55%, #0B1B3A 100%);
  color: #F2F4F8;
  position: relative;
  overflow: hidden;
}

.page-home .home-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 48px 16px 64px;
}

.page-home .hero-copy {
  position: relative;
  z-index: 3;
}

.page-home .breadcrumb-list {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: rgba(242, 244, 248, .7);
  margin-bottom: 20px;
}

.page-home .breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-home .breadcrumb-list li + li::before {
  content: "/";
  color: rgba(242, 244, 248, .4);
}

.page-home .hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(242, 244, 248, .8);
  margin-bottom: 14px;
  letter-spacing: .08em;
}

.page-home .sync-dot {
  width: 8px;
  height: 8px;
  background: #1B7A4A;
  border-radius: 999px;
  display: inline-block;
  animation: home-pulse 2.4s infinite;
}

@keyframes home-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

.page-home .hero-title {
  font-size: clamp(38px, 7vw, 64px);
  color: #FFFFFF;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  letter-spacing: -.02em;
}

.page-home .hero-title-em {
  display: block;
  color: #D4AF37;
  font-size: .48em;
  letter-spacing: .12em;
  margin-top: 10px;
}

.page-home .hero-lead {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(242, 244, 248, .78);
  max-width: 760px;
  margin-bottom: 28px;
}

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

.page-home .btn-primary {
  background: #C8102E;
  border-radius: 999px;
  padding: 12px 28px;
  font-weight: 700;
  color: #FFFFFF;
  border: 2px solid #C8102E;
  transition: transform .28s ease, box-shadow .28s ease;
}

.page-home .btn-primary:hover {
  background: #E01136;
  border-color: #E01136;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 23, 50, .45);
}

.page-home .btn-outline {
  border: 2px solid #F2F4F8;
  border-radius: 999px;
  padding: 12px 28px;
  font-weight: 700;
  color: #F2F4F8;
  background: transparent;
  transition: background .28s ease, color .28s ease, border-color .28s ease;
}

.page-home .btn-outline:hover {
  background: #F2F4F8;
  color: #0B1B3A;
}

.page-home .hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
  max-width: 520px;
}

.page-home .metric-item {
  border-left: 2px solid rgba(212, 175, 55, .7);
  padding-left: 14px;
}

.page-home .metric-item .data-number {
  display: block;
  font-size: 28px;
  color: #D4AF37;
  font-family: "DIN Alternate", "Bahnschrift", "Oswald", sans-serif;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}

.page-home .metric-label {
  font-size: 13px;
  color: rgba(242, 244, 248, .7);
  letter-spacing: .05em;
}

.page-home .hero-visual {
  position: relative;
  z-index: 2;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(5, 12, 30, .55);
  align-self: end;
}

.page-home .hero-pitch-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: .9;
}

.page-home .hero-pitch-lines svg {
  width: 100%;
  height: 100%;
  display: block;
}

.page-home .hero-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 675px;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.page-home .hero-img-note {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.page-home .hero-img-note .img-note {
  background: rgba(11, 27, 58, .82);
  color: #FFFFFF;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
}

.page-home .hero-corner-index {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 4;
  color: rgba(242, 244, 248, .45);
  font-size: 12px;
  font-family: "DIN Alternate", "Oswald", sans-serif;
  letter-spacing: .16em;
  text-align: right;
  line-height: 1.8;
  pointer-events: none;
}

/* ===== Section head ===== */
.page-home .section-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.page-home .section-num {
  color: #C8102E;
  font-family: "DIN Alternate", "Oswald", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.page-home .section-title {
  font-size: clamp(24px, 4vw, 32px);
  color: #1A1D26;
  letter-spacing: -.01em;
}

.page-home .section-rule {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, rgba(11, 27, 58, .18), transparent);
  min-width: 40px;
}

.page-home .section-intro {
  font-size: 16px;
  color: #3A4049;
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 640px;
}

.page-home .section-more {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* ===== Preview ===== */
.page-home .home-preview {
  padding: 64px 16px 0;
}

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

.page-home .preview-card {
  border-radius: 24px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 180px;
  transition: transform .24s ease, box-shadow .24s ease;
}

.page-home .preview-card:hover {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: 0 14px 30px rgba(11, 27, 58, .2);
}

.page-home .preview-card-red {
  background: linear-gradient(150deg, #C8102E 0%, #8E0F22 100%);
  color: #FFFFFF;
}

.page-home .preview-card-blue {
  background: linear-gradient(150deg, #10224A 0%, #0B1B3A 100%);
  color: #FFFFFF;
}

.page-home .preview-card-gold {
  background: linear-gradient(150deg, #D4AF37 0%, #B08A1D 100%);
  color: #FFFFFF;
}

.page-home .preview-card-red:hover {
  box-shadow: 0 16px 34px rgba(200, 16, 46, .38);
}

.page-home .preview-card-blue:hover {
  box-shadow: 0 16px 34px rgba(11, 27, 58, .4);
}

.page-home .preview-card-gold:hover {
  box-shadow: 0 16px 34px rgba(212, 175, 55, .4);
}

.page-home .preview-index {
  font-size: 40px;
  font-family: "DIN Alternate", "Oswald", sans-serif;
  font-weight: 700;
  opacity: .32;
  line-height: 1;
}

.page-home .preview-title {
  font-size: 24px;
  font-weight: 900;
  margin-top: 16px;
  letter-spacing: -.01em;
}

.page-home .preview-desc {
  font-size: 14px;
  line-height: 1.65;
  margin-top: 8px;
  opacity: .85;
}

.page-home .preview-meta {
  margin-top: auto;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .7;
}

/* ===== Main content wrap ===== */
.page-home .home-content-wrap {
  background: #F2F4F8;
  margin-top: 64px;
  padding: 56px 0 80px;
}

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

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

.page-home .home-section:last-child {
  margin-bottom: 0;
}

.page-home .home-main-column {
  min-width: 0;
}

/* ===== Highlights ===== */
.page-home .highlight-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-home .highlight-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  gap: 20px;
  box-shadow: 0 2px 10px rgba(11, 27, 58, .07);
  transition: transform .24s ease, box-shadow .24s ease;
}

.page-home .highlight-card:hover {
  transform: translateY(-4px) rotate(1deg);
  box-shadow: 0 10px 24px rgba(11, 27, 58, .14);
}

.page-home .highlight-card-main {
  flex: 1;
  min-width: 0;
}

.page-home .highlight-title {
  font-size: 20px;
  color: #1A1D26;
  margin: 12px 0 8px;
}

.page-home .highlight-text {
  font-size: 14px;
  color: #4A5162;
  line-height: 1.6;
}

.page-home .highlight-foot {
  display: flex;
  gap: 16px;
  margin-top: 14px;
}

.page-home .highlight-card-side {
  text-align: center;
  min-width: 75px;
  border-left: 1px solid rgba(11, 27, 58, .12);
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.page-home .highlight-card-side .data-number {
  font-size: 30px;
  color: #C8102E;
  font-family: "DIN Alternate", "Oswald", sans-serif;
}

/* ===== Transfers ===== */
.page-home .transfers-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.page-home .transfers-figure {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 0 4px 16px rgba(11, 27, 58, .1);
}

.page-home .transfers-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.page-home .transfers-figure figcaption {
  padding: 12px 16px;
  font-size: 13px;
}

.page-home .transfer-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-home .transfer-item {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(11, 27, 58, .06);
  transition: transform .22s ease;
}

.page-home .transfer-item:hover {
  transform: translateX(6px);
}

.page-home .transfer-title {
  font-size: 16px;
  font-weight: 700;
  color: #1A1D26;
}

.page-home .transfer-detail {
  font-size: 13px;
  color: #4A5162;
  line-height: 1.55;
}

/* ===== Columns ===== */
.page-home .columns-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.page-home .column-card {
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(11, 27, 58, .06);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .24s ease, box-shadow .24s ease;
}

.page-home .column-card:hover {
  transform: translateY(-5px) rotate(-1deg);
  box-shadow: 0 12px 26px rgba(11, 27, 58, .14);
}

.page-home .column-title {
  font-size: 20px;
  color: #1A1D26;
}

.page-home .column-desc {
  font-size: 14px;
  color: #4A5162;
  line-height: 1.6;
}

.page-home .column-card .btn {
  align-self: flex-start;
  margin-top: 4px;
  font-size: 13px;
  padding: 10px 20px;
}

.page-home .column-card .btn-outline {
  border: 2px solid #10224A;
  color: #10224A;
  border-radius: 999px;
  background: transparent;
  transition: background .24s ease, color .24s ease;
}

.page-home .column-card .btn-outline:hover {
  background: #10224A;
  color: #FFFFFF;
}

.page-home .tag-pill {
  background: #C8102E;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  padding: 5px 14px;
  display: inline-block;
  width: fit-content;
}

.page-home .tag-gold {
  background: #D4AF37;
}

.page-home .tag-green {
  background: #1B7A4A;
}

.page-home .columns-figure {
  margin: 24px 0 0;
  border-radius: 20px;
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 0 4px 16px rgba(11, 27, 58, .1);
}

.page-home .columns-figure-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.page-home .columns-figure figcaption {
  padding: 12px 16px;
  font-size: 13px;
}

/* ===== Side column ===== */
.page-home .home-side-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page-home .club-panel {
  background: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(11, 27, 58, .1);
  border-top: 6px solid #D4AF37;
}

.page-home .club-panel-head {
  padding: 20px;
  background: linear-gradient(170deg, #F2F4F8 0%, #FFFFFF 100%);
}

.page-home .club-panel-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 16px;
}

.page-home .club-panel-title {
  font-size: 22px;
  color: #1A1D26;
  margin-bottom: 8px;
}

.page-home .club-panel-desc {
  font-size: 14px;
  color: #4A5162;
  line-height: 1.65;
}

.page-home .club-panel-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-home .club-stat-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid rgba(11, 27, 58, .1);
  padding-bottom: 10px;
}

.page-home .club-stat-label {
  font-size: 14px;
  color: #3A4049;
}

.page-home .club-stat-row .data-number {
  font-size: 24px;
  color: #D4AF37;
  font-family: "DIN Alternate", "Oswald", sans-serif;
  font-variant-numeric: tabular-nums;
}

.page-home .club-panel-foot {
  padding: 14px 20px;
  background: #F2F4F8;
}

.page-home .side-links {
  padding: 24px;
  border-radius: 20px;
  background: #0B1B3A;
  color: #F2F4F8;
}

.page-home .side-links-title {
  font-size: 18px;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 10px;
}

.page-home .side-links-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 3px;
  background: #D4AF37;
  border-radius: 999px;
}

.page-home .side-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-home .side-links-list a {
  font-size: 14px;
  color: rgba(242, 244, 248, .85);
  display: block;
  padding: 6px 0;
  transition: color .2s ease, padding-left .2s ease;
}

.page-home .side-links-list a:hover {
  color: #D4AF37;
  padding-left: 8px;
}

/* ===== Text note ===== */
.page-home .text-note {
  font-size: 12px;
  color: #7A8299;
}

/* Removed .page-home .vert-label in dark hero */
.page-home .home-hero .vert-label {
  color: rgba(242, 244, 248, .6);
}

/* ===== Responsive ===== */
@media (min-width: 768px) {
  .page-home .home-hero-inner {
    padding-top: 72px;
    padding-bottom: 80px;
  }

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

  .page-home .home-main-grid {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 40px;
  }

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

  .page-home .transfers-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 40px;
  }

  .page-home .hero-visual {
    max-width: 900px;
  }
}

@media (min-width: 1024px) {
  .page-home .home-hero-inner {
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 48px;
  }

  .page-home .hero-metrics {
    margin-top: 48px;
  }

  .page-home .hero-corner-index {
    font-size: 13px;
  }

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

  .page-home .home-side-column {
    position: sticky;
    top: 32px;
    align-self: start;
  }
}

@media (max-width: 767px) {
  .page-home .hero-corner-index {
    display: none;
  }

  .page-home .home-hero-inner {
    padding-left: 14px;
    padding-right: 14px;
  }

  .page-home .hero-title {
    font-size: 36px;
  }

  .page-home .hero-title-em {
    font-size: 18px;
  }

  .page-home .hero-metrics {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .page-home .preview-grid .preview-card {
    min-height: 160px;
  }

  .page-home .highlight-card {
    flex-direction: column;
    gap: 12px;
  }

  .page-home .highlight-card-side {
    flex-direction: row;
    border-left: none;
    border-top: 1px solid rgba(11, 27, 58, .12);
    padding-left: 0;
    padding-top: 12px;
    justify-content: space-between;
    min-width: 0;
  }

  .page-home .section-head {
    align-items: flex-start;
  }

  .page-home .section-rule {
    display: none;
  }
}
