.page-home {
  --home-gap: 2.5rem;
  --home-radius-sm: 0.5rem;
  --home-radius-md: 1rem;
  --home-transition: all 0.3s ease;
  --home-color-hero-overlay: rgba(26, 26, 46, 0.7);
  --home-color-card-bg: #f5f0eb;
  --home-color-card-hover: #ede7e0;
  --home-color-orange: #ff6f00;
  --home-color-blue: #1a237e;
  --home-color-dark: #1a1a2e;
  --home-color-white: #ffffff;
  --home-color-gray-light: #b0bec5;
  --home-color-border: #d7ccc8;
  --home-font-heading: 'Impact', 'Arial Black', 'Helvetica Neue', sans-serif;
  --home-font-body: 'Georgia', 'Times New Roman', 'Songti SC', serif;
  --home-hero-min-height: 85vh;
  background-color: var(--home-color-dark);
}

/* ===== Hero ===== */
.page-home__hero {
  position: relative;
  min-height: var(--home-hero-min-height);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-home__hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-home__hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.page-home__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--home-color-hero-overlay) 40%, rgba(26, 35, 126, 0.5) 100%);
}

.page-home__hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
  max-width: var(--max-width, 1200px);
  padding: 2rem 1.5rem;
}

.page-home__hero-tag {
  display: inline-block;
  background-color: var(--home-color-orange);
  color: var(--home-color-white);
  font-family: var(--home-font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: var(--home-radius-sm);
}

.page-home__hero-title {
  font-family: var(--home-font-heading);
  font-weight: 300;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--home-color-white);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.page-home__hero-sub {
  font-family: var(--home-font-body);
  font-size: 1.1rem;
  color: var(--home-color-gray-light);
  max-width: 36rem;
  margin: 0;
  line-height: 1.6;
}

.page-home__hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 0.8rem;
  flex-wrap: wrap;
}

.page-home__stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.page-home__stat-num {
  font-family: var(--home-font-heading);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--home-color-orange);
  line-height: 1;
}

.page-home__stat-label {
  font-family: var(--home-font-body);
  font-size: 0.8rem;
  color: var(--home-color-gray-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== Section shared ===== */
.page-home .section {
  padding: 4rem 0;
}

.page-home__section-title {
  font-family: var(--home-font-heading);
  font-weight: 300;
  font-size: 2.8rem;
  color: var(--home-color-white);
  margin: 0 0 0.3rem;
  line-height: 1.1;
}

.page-home__section-desc {
  font-family: var(--home-font-body);
  font-size: 0.95rem;
  color: var(--home-color-gray-light);
  margin: 0 0 1.5rem;
}

/* ===== DataViz ===== */
.page-home__dataviz {
  background-color: var(--home-color-dark);
}

.page-home__dataviz-header {
  margin-bottom: 2rem;
}

.page-home__dataviz-canvas {
  position: relative;
  background-color: #0f0f1e;
  border-radius: var(--home-radius-md);
  overflow: hidden;
  border: 1px solid #2a2a40;
  padding: 1rem;
}

.page-home__dataviz-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: var(--home-radius-sm);
}

.page-home__dataviz-labels {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 0.5rem 0.5rem;
  flex-wrap: wrap;
}

.page-home__dataviz-label {
  font-family: var(--home-font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--home-color-white);
  padding: 0.2rem 0.6rem;
  border-left: 3px solid var(--home-color-orange);
}

.page-home__dataviz-label--pts { border-color: #ff6f00; }
.page-home__dataviz-label--reb { border-color: #1a237e; }
.page-home__dataviz-label--ast { border-color: #4caf50; }
.page-home__dataviz-label--shoot { border-color: #f44336; }

/* ===== Quick Links ===== */
.page-home__quicklinks {
  background-color: var(--home-color-dark);
  border-top: 1px solid #2a2a40;
  border-bottom: 1px solid #2a2a40;
}

.page-home__quicklinks-header {
  margin-bottom: 2rem;
}

.page-home__quicklinks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.page-home__quicklink-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background-color: var(--home-color-card-bg);
  border-radius: var(--home-radius-sm);
  text-decoration: none;
  transition: var(--home-transition);
  border: 1px solid transparent;
}

.page-home__quicklink-card:hover {
  background-color: var(--home-color-card-hover);
  border-color: var(--home-color-orange);
  transform: translateY(-2px);
}

.page-home__quicklink-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.page-home__quicklink-label {
  font-family: var(--home-font-heading);
  font-size: 1rem;
  color: var(--home-color-dark);
  flex: 1;
  font-weight: 300;
}

.page-home__quicklink-arrow {
  font-family: var(--home-font-heading);
  font-size: 1.2rem;
  color: var(--home-color-blue);
  transition: transform 0.3s ease;
}

.page-home__quicklink-card:hover .page-home__quicklink-arrow {
  transform: translateX(4px);
  color: var(--home-color-orange);
}

/* ===== Latest ===== */
.page-home__latest {
  background-color: var(--home-color-dark);
}

.page-home__latest-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1.5rem;
  margin-bottom: 2rem;
}

.page-home__latest-more {
  font-family: var(--home-font-heading);
  font-size: 0.85rem;
  color: var(--home-color-orange);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: var(--home-transition);
}

.page-home__latest-more:hover {
  color: var(--home-color-white);
}

.page-home__latest-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.page-home__latest-card {
  display: flex;
  flex-direction: column;
  background-color: var(--home-color-card-bg);
  border-radius: var(--home-radius-sm);
  overflow: hidden;
  transition: var(--home-transition);
  border: 1px solid var(--home-color-border);
}

.page-home__latest-card:hover {
  border-color: var(--home-color-orange);
  box-shadow: 0 4px 20px rgba(255, 111, 0, 0.1);
}

.page-home__latest-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.page-home__latest-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.page-home__latest-card:hover .page-home__latest-card-img img {
  transform: scale(1.03);
}

.page-home__latest-card-body {
  padding: 1rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.page-home__latest-tag {
  display: inline-block;
  background-color: var(--home-color-blue);
  color: var(--home-color-white);
  font-family: var(--home-font-heading);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.15rem 0.6rem;
  border-radius: 0.2rem;
  align-self: flex-start;
}

.page-home__latest-tag--epl {
  background-color: #4caf50;
}

.page-home__latest-card-title {
  font-family: var(--home-font-heading);
  font-weight: 300;
  font-size: 1.15rem;
  color: var(--home-color-dark);
  margin: 0;
  line-height: 1.3;
}

.page-home__latest-card-desc {
  font-family: var(--home-font-body);
  font-size: 0.85rem;
  color: #5d5d6e;
  margin: 0;
  line-height: 1.5;
}

.page-home__latest-card-date {
  font-family: var(--home-font-body);
  font-size: 0.75rem;
  color: var(--home-color-gray-light);
  margin-top: 0.3rem;
}

/* ===== Manifesto ===== */
.page-home__manifesto {
  background: linear-gradient(135deg, #1a1a2e 0%, #0d0d1a 100%);
  border-top: 1px solid #2a2a40;
}

.page-home__manifesto-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}

.page-home__manifesto-text {
  flex: 1;
}

.page-home__manifesto-title {
  font-family: var(--home-font-heading);
  font-weight: 300;
  font-size: 2.4rem;
  color: var(--home-color-white);
  margin: 0 0 1rem;
}

.page-home__manifesto-body {
  font-family: var(--home-font-body);
  font-size: 1rem;
  color: var(--home-color-gray-light);
  line-height: 1.8;
  margin: 0 0 1.5rem;
  max-width: 36rem;
}

.page-home__manifesto-link {
  display: inline-block;
  font-family: var(--home-font-heading);
  font-size: 0.9rem;
  color: var(--home-color-orange);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: var(--home-transition);
}

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

.page-home__manifesto-visual {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.page-home__manifesto-deco {
  font-family: var(--home-font-heading);
  font-weight: 300;
  font-size: 3.5rem;
  color: rgba(255, 111, 0, 0.12);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  user-select: none;
}

.page-home__manifesto-deco--alt {
  color: rgba(26, 35, 126, 0.25);
  font-size: 4.2rem;
}

/* ===== Trust ===== */
.page-home__trust {
  padding: 2rem 0;
  background-color: var(--home-color-dark);
  border-top: 1px solid #2a2a40;
}

.page-home__trust-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.page-home__trust-badge {
  font-family: var(--home-font-heading);
  font-size: 0.7rem;
  color: var(--home-color-gray-light);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.2rem 0.8rem;
  border: 1px solid #33334d;
  border-radius: 2rem;
}

.page-home__trust-text {
  font-family: var(--home-font-body);
  font-size: 0.8rem;
  color: #5d5d7a;
}

/* ===== Responsive ===== */
@media (min-width: 640px) {
  .page-home__hero-title {
    font-size: 6rem;
  }

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

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

  .page-home__manifesto-deco {
    font-size: 5rem;
  }

  .page-home__manifesto-deco--alt {
    font-size: 6rem;
  }
}

@media (min-width: 1024px) {
  .page-home__hero-title {
    font-size: 8rem;
  }

  .page-home__hero-sub {
    font-size: 1.25rem;
  }

  .page-home__hero-stats {
    gap: 4rem;
  }

  .page-home__stat-num {
    font-size: 3.6rem;
  }

  .page-home__section-title {
    font-size: 3.6rem;
  }

  .page-home__dataviz-canvas {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
  }

  .page-home__dataviz-labels {
    justify-content: flex-end;
    padding-right: 1rem;
  }

  .page-home__manifesto-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .page-home__manifesto-title {
    font-size: 3rem;
  }

  .page-home__manifesto-body {
    font-size: 1.05rem;
  }

  .page-home__manifesto-deco {
    font-size: 7rem;
  }

  .page-home__manifesto-deco--alt {
    font-size: 8.5rem;
  }

  .page-home__trust-inner {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }
}

@media (min-width: 1200px) {
  .page-home__hero-title {
    font-size: 9rem;
  }

  .page-home__hero-content {
    padding-left: 0;
  }

  .page-home .container {
    max-width: var(--max-width, 1200px);
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
