.page-home {
  background: var(--ax-bg);
  color: var(--ax-ink);
  font-family: var(--ax-font-body);
  overflow-x: clip;
}

.page-home .ax-headline {
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  line-height: 1.18;
  letter-spacing: 0.02em;
  margin: 6px 0 10px;
  color: var(--ax-ink);
}

.page-home .ax-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ax-gold-deep);
  margin: 0 0 6px;
}

.page-home .ph-eyebrow--light {
  color: var(--ax-gold-light);
}

.page-home .ph-headline--light {
  color: #fff;
}

.page-home .ph-btn--light {
  border-color: rgba(212, 175, 55, 0.55);
  color: var(--ax-gold-light);
}

.page-home .ph-btn--light:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--ax-gold);
  color: #fff;
}

.page-home .ph-btn--hero-ghost {
  border-color: rgba(212, 175, 55, 0.5);
  color: var(--ax-text);
}

.page-home .ph-btn--hero-ghost:hover {
  border-color: var(--ax-gold);
  color: var(--ax-gold-light);
  background: rgba(212, 175, 55, 0.1);
}

.page-home .ph-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ax-gold-deep);
  text-decoration: none;
  margin-top: 8px;
  transition: color 0.18s ease;
}

.page-home .ph-link:hover {
  color: var(--ax-gold);
}

.page-home .ph-link--light {
  color: var(--ax-gold-light);
}

.page-home .ph-link--light:hover {
  color: #fff;
}

.ph-breadcrumb {
  background: var(--ax-navy-deep);
  padding: 10px 0;
  font-size: 0.8rem;
}

.ph-breadcrumb .ax-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ph-breadcrumb a,
.ph-breadcrumb .ax-breadcrumb__item {
  color: var(--ax-text-dim);
  text-decoration: none;
}

.ph-breadcrumb a:hover {
  color: var(--ax-gold-light);
}

.ph-crumb-sep {
  color: rgba(160, 176, 195, 0.5);
}

.ph-hero {
  position: relative;
  background: var(--ax-navy);
  background-image:
    radial-gradient(980px 480px at 88% 18%, rgba(212, 175, 55, 0.14), transparent 68%),
    linear-gradient(135deg, rgba(212, 175, 55, 0.06) 0%, transparent 42%);
  color: var(--ax-text);
  overflow: hidden;
  padding: 52px 0 28px;
}

.ph-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 100%;
  background: repeating-linear-gradient(115deg, transparent 0 18px, rgba(212, 175, 55, 0.05) 18px 19px);
  pointer-events: none;
}

.ph-hero::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -120px;
  width: 340px;
  height: 260px;
  background: linear-gradient(145deg, transparent 46%, rgba(212, 175, 55, 0.12) 48%);
  transform: rotate(-12deg);
  pointer-events: none;
}

.ph-hero__grid {
  display: grid;
  gap: 36px;
  position: relative;
  z-index: 1;
}

.ph-hero__content {
  max-width: 640px;
}

.ph-hero__eyebrow {
  color: var(--ax-gold-light);
}

.ph-hero__title {
  font-family: var(--ax-font-heading);
  font-size: clamp(2rem, 5.2vw, 3.85rem);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #fff;
  margin: 14px 0 18px;
}

.ph-hero__lead {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ax-text-dim);
  max-width: 34em;
  margin: 0 0 26px;
}

.ph-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ph-hero__visual {
  position: relative;
  min-height: 260px;
}

.ph-hero__img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: cover;
  display: block;
  clip-path: polygon(0 0, 90% 0, 100% 12%, 100% 100%, 10% 100%, 0 88%);
}

.ph-hero__stat {
  position: absolute;
  background: rgba(5, 13, 31, 0.86);
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: 8px;
  padding: 10px 18px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 26px rgba(5, 13, 31, 0.35);
  animation: ph-rise 0.6s ease both;
}

.ph-hero__stat--users {
  top: 10%;
  left: 4%;
  animation-delay: 0.1s;
}

.ph-hero__stat--leagues {
  bottom: 12%;
  right: 5%;
  animation-delay: 0.2s;
}

.ph-hero__stat-num {
  font-family: var(--ax-font-heading);
  font-size: 1.5rem;
  color: var(--ax-gold-light);
  line-height: 1;
}

.ph-hero__stat-label {
  font-size: 0.78rem;
  color: var(--ax-text-dim);
  margin-top: 4px;
}

.ph-hero__line {
  position: absolute;
  right: -26px;
  bottom: 10%;
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, var(--ax-gold), transparent);
  transform: rotate(-38deg);
  opacity: 0.7;
  border-radius: 2px;
}

.ph-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 30px;
  padding: 18px 16px;
  background: rgba(5, 13, 31, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.16);
  position: relative;
  z-index: 1;
}

.ph-stats__item {
  display: flex;
  flex-direction: column;
  padding: 6px 12px;
  border-left: 2px solid var(--ax-gold);
}

.ph-stats__num {
  font-family: var(--ax-font-heading);
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  color: #fff;
  line-height: 1;
  animation: ph-rise 0.5s ease both;
}

.ph-stats__label {
  font-size: 0.76rem;
  color: var(--ax-text-dim);
  margin-top: 6px;
}

.ph-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
}

.ph-section-head__text {
  max-width: 600px;
}

.ph-section-head__link {
  flex-shrink: 0;
}

.ph-radar {
  padding: 68px 0;
}

.ph-radar__grid {
  display: grid;
  gap: 28px;
}

.ph-radar__feature {
  background: var(--ax-surface);
  border: 1px solid var(--ax-line);
  box-shadow: 0 8px 28px rgba(5, 13, 31, 0.08);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.ph-radar__feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--ax-shadow);
}

.ph-radar__media {
  position: relative;
  overflow: hidden;
}

.ph-radar__media::after {
  content: "";
  position: absolute;
  right: -20px;
  top: -20px;
  width: 80px;
  height: 80px;
  background: linear-gradient(225deg, rgba(212, 175, 55, 0.45), transparent 70%);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.ph-radar__media img,
.ph-transfer__img,
.ph-table__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.ph-radar__feature-body {
  padding: 22px;
}

.ph-radar__feature-title {
  font-family: var(--ax-font-heading);
  font-size: 1.2rem;
  line-height: 1.35;
  margin: 10px 0 8px;
  color: var(--ax-ink);
}

.ph-radar__summary {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ax-muted);
}

.ph-radar__extended {
  display: none;
  margin: 8px 0 0;
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--ax-muted);
}

.ph-radar__feature:hover .ph-radar__extended {
  display: block;
}

.ph-radar__list {
  display: grid;
  gap: 14px;
}

.ph-report {
  background: var(--ax-surface);
  border-left: 3px solid var(--ax-gold);
  padding: 18px 18px 16px;
  box-shadow: 0 2px 12px rgba(5, 13, 31, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.ph-report:hover {
  transform: translateY(-2px);
  box-shadow: var(--ax-shadow);
}

.ph-report__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.ph-report__date {
  font-size: 0.76rem;
  color: var(--ax-muted);
  letter-spacing: 0.03em;
}

.ph-report__title {
  font-size: 1rem;
  line-height: 1.45;
  margin: 0 0 8px;
}

.ph-report__title a {
  color: var(--ax-ink);
  text-decoration: none;
  transition: color 0.18s ease;
}

.ph-report__title a:hover {
  color: var(--ax-gold-deep);
}

.ph-report__summary {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--ax-muted);
}

.ph-transfer {
  position: relative;
  background: var(--ax-navy-deep);
  background-image: radial-gradient(760px 380px at 90% 10%, rgba(212, 175, 55, 0.14), transparent 70%);
  color: var(--ax-text);
  padding: 68px 0;
  overflow: hidden;
}

.ph-transfer::before {
  content: "";
  position: absolute;
  right: -70px;
  top: 60px;
  width: 220px;
  height: 220px;
  background: repeating-linear-gradient(115deg, transparent 0 14px, rgba(212, 175, 55, 0.09) 14px 15px);
  transform: rotate(12deg);
  pointer-events: none;
}

.ph-transfer__inner {
  position: relative;
  z-index: 1;
}

.ph-section-head--light {
  margin-bottom: 26px;
}

.ph-transfer__card {
  display: grid;
  gap: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.22);
  padding: 18px;
}

.ph-transfer__img {
  clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%, 4% 76%);
}

.ph-transfer__card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
}

.ph-transfer__card-body h3 {
  font-family: var(--ax-font-heading);
  font-size: 1.3rem;
  line-height: 1.35;
  color: #fff;
  margin: 0;
}

.ph-transfer__card-body p {
  margin: 0 0 6px;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--ax-text-dim);
}

.ph-transfer__rail {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.ph-transfer__item {
  display: flex;
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.ph-transfer__item:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.35);
}

.ph-transfer__item-num {
  font-family: var(--ax-font-heading);
  color: var(--ax-gold);
  font-size: 1.3rem;
  line-height: 1;
}

.ph-transfer__item h4 {
  margin: 0 0 6px;
  font-size: 0.96rem;
  color: #fff;
}

.ph-transfer__item p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--ax-text-dim);
}

.ph-rules {
  padding: 68px 0;
  background: var(--ax-surface);
}

.ph-rules__intro {
  max-width: 660px;
  margin-bottom: 30px;
}

.ph-rules__intro > p:last-child {
  color: var(--ax-muted);
  line-height: 1.7;
  margin: 0;
}

.ph-rules__steps {
  display: grid;
  gap: 14px;
}

.ph-step {
  position: relative;
  background: var(--ax-bg);
  border: 1px solid var(--ax-line);
  padding: 22px;
  overflow: hidden;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.ph-step:hover {
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
}

.ph-step::after {
  content: "";
  position: absolute;
  right: -12px;
  bottom: -12px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, transparent 48%, rgba(212, 175, 55, 0.18) 50%);
  pointer-events: none;
}

.ph-step__num {
  display: block;
  font-family: var(--ax-font-heading);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--ax-gold-deep);
  margin-bottom: 12px;
}

.ph-step__body h3 {
  font-size: 1.08rem;
  margin: 0 0 8px;
  color: var(--ax-ink);
}

.ph-step__body p {
  font-size: 0.87rem;
  line-height: 1.65;
  color: var(--ax-muted);
  margin: 0;
}

.ph-step__arrow {
  display: none;
}

.ph-rules__more {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.ph-guide {
  padding: 68px 0;
  background: var(--ax-bg);
}

.ph-guide__grid {
  display: grid;
  gap: 32px;
}

.ph-guide__intro p {
  color: var(--ax-muted);
  line-height: 1.75;
  margin: 0;
}

.ph-guide__note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 10px 14px;
  background: var(--ax-surface);
  border-left: 3px solid var(--ax-gold);
  font-size: 0.85rem;
  color: var(--ax-ink);
  box-shadow: 0 2px 10px rgba(5, 13, 31, 0.05);
}

.ph-guide__note-icon {
  color: var(--ax-gold);
}

.ph-guide__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.ph-guide__feature {
  position: relative;
  background: var(--ax-surface);
  border: 1px solid var(--ax-line);
  padding: 20px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.ph-guide__feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--ax-gold);
  opacity: 0.7;
}

.ph-guide__feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--ax-shadow);
}

.ph-guide__feature h3 {
  font-size: 1.02rem;
  margin: 0 0 8px;
  color: var(--ax-ink);
}

.ph-guide__feature p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--ax-muted);
}

.ph-table {
  padding: 68px 0;
  background: var(--ax-surface);
}

.ph-table__grid {
  display: grid;
  gap: 26px;
}

.ph-standings,
.ph-h2h {
  background: var(--ax-bg);
  border: 1px solid var(--ax-line);
  padding: 20px;
}

.ph-standings__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.ph-standings__header h3 {
  margin: 0;
  font-size: 1.02rem;
  color: var(--ax-ink);
  line-height: 1.35;
}

.ph-standings__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}

.ph-standings__table th {
  text-align: left;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ax-muted);
  padding: 8px 6px;
  border-bottom: 1px solid var(--ax-line);
}

.ph-standings__table td {
  padding: 10px 6px;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(227, 232, 239, 0.65);
  color: var(--ax-ink);
}

.ph-standings__table tbody tr:hover {
  background: rgba(212, 175, 55, 0.07);
}

.ph-standings__points {
  font-family: var(--ax-font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ax-gold-deep);
}

.ph-standings__chart {
  margin-top: 6px;
}

.ph-chart {
  width: 100%;
  height: auto;
  display: block;
}

.ph-h2h__list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}

.ph-h2h__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 4px;
  border-bottom: 1px dashed var(--ax-line);
  font-size: 0.9rem;
  color: var(--ax-ink);
}

.ph-h2h__teams b {
  font-weight: 600;
}

.ph-h2h__result {
  flex-shrink: 0;
  min-width: 30px;
  text-align: center;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.74rem;
  font-weight: 600;
}

.ph-h2h__result--win {
  background: rgba(45, 181, 138, 0.14);
  color: #1f8f68;
}

.ph-h2h__result--draw {
  background: rgba(107, 122, 144, 0.14);
  color: var(--ax-muted);
}

.ph-h2h__result--loss {
  background: rgba(229, 72, 77, 0.12);
  color: var(--ax-red);
}

.ph-h2h__summary {
  display: flex;
  gap: 20px;
  padding-top: 4px;
}

.ph-h2h__summary > div {
  font-size: 0.82rem;
  color: var(--ax-muted);
}

.ph-h2h__summary span {
  font-family: var(--ax-font-heading);
  font-size: 1.45rem;
  color: var(--ax-navy);
  margin-right: 3px;
}

.ph-h2h__tip {
  margin: 16px 0 0;
  padding-left: 14px;
  border-left: 2px solid var(--ax-gold);
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--ax-muted);
}

.ph-table__media {
  margin-top: 26px;
  background: var(--ax-bg);
  border: 1px solid var(--ax-line);
  padding: 12px;
  display: grid;
  gap: 12px;
}

.ph-table__media img {
  border-radius: 6px;
}

.ph-table__media figcaption {
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--ax-muted);
}

.ph-cta {
  padding: 68px 0;
  background: var(--ax-navy);
  background-image: linear-gradient(120deg, rgba(212, 175, 55, 0.08), transparent 55%);
  color: var(--ax-text);
}

.ph-cta__inner {
  display: grid;
  gap: 24px;
}

.ph-cta h2 {
  margin: 8px 0 12px;
  color: #fff;
}

.ph-cta p {
  max-width: 620px;
  margin: 0;
  color: var(--ax-text-dim);
  line-height: 1.75;
}

.ph-cta__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@keyframes ph-rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 719px) {
  .ph-hero__visual {
    order: -1;
  }

  .ph-transfer__rail {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-bottom: 10px;
    scrollbar-width: thin;
  }

  .ph-transfer__item {
    flex: 0 0 84%;
    scroll-snap-align: start;
  }
}

@media (min-width: 720px) {
  .ph-stats {
    grid-template-columns: repeat(4, 1fr);
    padding: 20px 24px;
    gap: 18px;
  }

  .ph-transfer__rail {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 22px;
  }

  .ph-guide__features {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .ph-table__media {
    grid-template-columns: 2fr 1fr;
    align-items: center;
    gap: 16px;
  }
}

@media (min-width: 960px) {
  .ph-hero {
    padding-top: 68px;
    padding-bottom: 36px;
  }

  .ph-hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 56px;
  }

  .ph-radar__grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
    gap: 32px;
  }

  .ph-transfer__card {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 28px;
    padding: 24px;
  }

  .ph-rules__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .ph-step {
    padding: 26px 24px 28px;
  }

  .ph-step__arrow {
    display: block;
    position: absolute;
    right: 18px;
    top: 26px;
    color: var(--ax-gold);
    font-size: 1.4rem;
    line-height: 1;
  }

  .ph-guide__grid {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 56px;
  }

  .ph-table__grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
    gap: 24px;
  }

  .ph-cta__inner {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ph-hero__stat,
  .ph-stats__num {
    animation: none;
  }

  .ph-radar__feature,
  .ph-report,
  .ph-step,
  .ph-guide__feature {
    transition: none;
  }
}
