.page-home {
  background:
    linear-gradient(180deg, rgba(41, 244, 154, 0.05) 0%, rgba(10, 25, 41, 0) 380px),
    var(--c-navy);
  color: var(--c-text);
  font-family: var(--font-body);
}

.page-home .ph-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-family: var(--font-num);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-green);
}

.page-home .ph-kicker__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-green);
  box-shadow: var(--shadow-green);
}

.page-home h1,
.page-home h2,
.page-home h3 {
  font-family: var(--font-head);
  color: var(--c-white);
  margin: 0;
}

.page-home .ph-hero {
  padding: 72px 20px 48px;
  background:
    radial-gradient(circle at 88% 18%, rgba(41, 244, 154, 0.16), transparent 44%),
    radial-gradient(circle at 8% 90%, rgba(255, 77, 109, 0.12), transparent 36%),
    var(--c-navy);
}

.page-home .ph-hero__inner {
  display: grid;
  gap: 44px;
  max-width: var(--container-w);
  margin-inline: auto;
}

.page-home .ph-hero h1 {
  font-size: clamp(40px, 7.4vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin-bottom: 20px;
}

.page-home .ph-hero__lead {
  margin: 0 0 28px;
  max-width: 560px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--c-dim);
}

.page-home .ph-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.page-home .ph-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  color: var(--c-dim);
  font-size: 14px;
}

.page-home .ph-hero__meta b {
  color: var(--c-green);
  font-family: var(--font-num);
  font-size: 15px;
}

.page-home .ph-hero__ticker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-home .ph-hero__ticker span {
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  background: rgba(41, 244, 154, 0.08);
  border: 1px solid rgba(41, 244, 154, 0.22);
  color: var(--c-green);
  font-size: 13px;
  font-weight: 600;
}

.page-home .ph-hero__panel {
  position: relative;
  height: 300px;
  border-radius: var(--radius-lg);
  background: var(--c-navy-2);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 34px, 100% 52%, 94% 100%, 0 100%);
}

.page-home .ph-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.45;
}

.page-home .ph-hero__panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 25, 41, 0.24), rgba(10, 25, 41, 0.86));
  pointer-events: none;
}

.page-home .ph-hero__svg {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 190px;
  height: 190px;
  z-index: 2;
  animation: ph-spin 28s linear infinite;
}

.page-home .ph-svg__circle {
  fill: none;
  stroke: var(--c-green);
  stroke-width: 2;
  stroke-dasharray: 18 12;
}

.page-home .ph-svg__core {
  fill: var(--c-green);
}

.page-home .ph-svg__line {
  fill: none;
  stroke: var(--c-green);
  stroke-width: 3;
  stroke-linecap: round;
}

.page-home .ph-hero__badge {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  background: rgba(10, 25, 41, 0.88);
  border: 1px solid rgba(41, 244, 154, 0.45);
  color: var(--c-green);
  font-size: 13px;
  font-weight: 600;
}

.page-home .ph-hero__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-green);
  animation: ph-pulse 1.6s ease-out infinite;
}

@keyframes ph-spin {
  to { transform: rotate(360deg); }
}

@keyframes ph-pulse {
  0% { box-shadow: 0 0 0 0 rgba(41, 244, 154, 0.65); }
  70% { box-shadow: 0 0 0 9px rgba(41, 244, 154, 0); }
  100% { box-shadow: 0 0 0 rgba(41, 244, 154, 0); }
}

.page-home .ph-data {
  border-block: 1px solid var(--c-border);
  background: var(--c-navy-2);
}

.page-home .ph-data__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: var(--container-w);
  margin-inline: auto;
}

.page-home .ph-data__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 26px 20px;
  border-right: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.page-home .ph-data__item:nth-child(2n) {
  border-right: 0;
}

.page-home .ph-data__item:nth-last-child(-n+2) {
  border-bottom: 0;
}

.page-home .ph-data__item .stat-number {
  color: var(--c-green);
  font-size: 30px;
  font-family: var(--font-num);
  font-weight: 700;
  line-height: 1;
}

.page-home .ph-data__item .stat-label {
  color: var(--c-dim);
  font-size: 13px;
}

.page-home .ph-match {
  max-width: var(--container-w);
  margin-inline: auto;
  padding: 84px 20px 56px;
}

.page-home .ph-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.page-home .ph-section-head h2 {
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.15;
  font-weight: 800;
}

.page-home .ph-more {
  flex-shrink: 0;
  color: var(--c-green);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: text-shadow 0.2s var(--ease);
}

.page-home .ph-more:hover {
  text-shadow: var(--shadow-green);
}

.page-home .ph-match__layout {
  display: grid;
  gap: 18px;
}

.page-home .ph-match__main {
  display: grid;
  background: var(--c-navy-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.page-home .ph-match__media {
  position: relative;
  min-height: 240px;
}

.page-home .ph-match__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-home .ph-match__media .badge {
  position: absolute;
  top: 16px;
  left: 16px;
}

.page-home .ph-match__body {
  padding: 28px;
}

.page-home .ph-match__teams {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.page-home .ph-match__team {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.page-home .ph-match__team:last-child {
  text-align: right;
}

.page-home .ph-match__team > span {
  font-size: 12px;
  color: var(--c-dim);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.page-home .ph-match__team strong {
  font-family: var(--font-head);
  color: var(--c-white);
  font-size: 22px;
  font-weight: 800;
}

.page-home .ph-match__vs {
  font-family: var(--font-num);
  color: var(--c-green);
  font-size: 28px;
  font-weight: 800;
}

.page-home .ph-match__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  padding-bottom: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--c-border);
  font-size: 13px;
  color: var(--c-dim);
}

.page-home .ph-match__count {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 18px;
}

.page-home .ph-match__count > span {
  font-size: 14px;
  color: var(--c-dim);
}

.page-home .ph-match__count b {
  font-family: var(--font-num);
  font-size: 42px;
  color: var(--c-white);
  line-height: 1;
}

.page-home .ph-count__colon {
  font-style: normal;
  color: var(--c-green);
  font-family: var(--font-num);
  font-size: 28px;
  animation: ph-blink 1.2s step-end infinite;
}

@keyframes ph-blink {
  50% { opacity: 0; }
}

.page-home .ph-match__note {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--c-text);
}

.page-home .ph-match__side {
  display: grid;
  gap: 14px;
}

.page-home .ph-match__feature {
  padding: 22px 24px 22px 26px;
  background: var(--c-navy-2);
  border-left: 3px solid var(--c-green);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  transition: background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.page-home .ph-match__feature:hover {
  background: rgba(41, 244, 154, 0.07);
  box-shadow: var(--shadow-green);
}

.page-home .ph-feature__num {
  display: inline-block;
  margin-bottom: 6px;
  font-family: var(--font-num);
  font-size: 13px;
  color: var(--c-green);
  font-weight: 700;
}

.page-home .ph-match__feature h3 {
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 700;
}

.page-home .ph-match__feature p {
  margin: 0;
  color: var(--c-dim);
  font-size: 14px;
  line-height: 1.65;
}

.page-home .ph-team {
  padding: 84px 20px;
  background:
    linear-gradient(140deg, rgba(41, 244, 154, 0.07), transparent 46%),
    var(--c-navy);
  border-block: 1px solid var(--c-border);
}

.page-home .ph-team__grid {
  display: grid;
  gap: 40px;
  max-width: var(--container-w);
  margin-inline: auto;
}

.page-home .ph-team__intro h2 {
  font-size: clamp(28px, 4.6vw, 44px);
  line-height: 1.12;
  font-weight: 800;
  margin-bottom: 16px;
}

.page-home .ph-team__intro p {
  margin: 0 0 26px;
  color: var(--c-dim);
  line-height: 1.8;
}

.page-home .ph-team__cards {
  display: grid;
  gap: 18px;
}

.page-home .ph-team__card {
  position: relative;
  background: var(--c-navy-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--c-border);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.page-home .ph-team__card:hover {
  border-color: rgba(41, 244, 154, 0.5);
  transform: translateY(-4px);
}

.page-home .ph-team__card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.page-home .ph-team__card-body {
  padding: 24px;
}

.page-home .ph-team__card-body h3 {
  margin: 12px 0 8px;
  font-size: 20px;
  font-weight: 800;
}

.page-home .ph-team__card-body p {
  margin: 0 0 16px;
  color: var(--c-dim);
  font-size: 14px;
  line-height: 1.7;
}

.page-home .ph-team__link {
  color: var(--c-green);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s var(--ease);
}

.page-home .ph-team__link:hover {
  opacity: 0.8;
}

.page-home .ph-mobile {
  padding: 84px 20px;
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 77, 109, 0.1), transparent 42%),
    radial-gradient(circle at 92% 80%, rgba(41, 244, 154, 0.1), transparent 36%),
    var(--c-navy-2);
  border-bottom: 1px solid var(--c-border);
}

.page-home .ph-mobile__inner {
  display: grid;
  gap: 36px;
  max-width: var(--container-w);
  margin-inline: auto;
}

.page-home .ph-mobile__copy h2 {
  font-size: clamp(28px, 4.6vw, 44px);
  line-height: 1.12;
  font-weight: 800;
  margin-bottom: 16px;
}

.page-home .ph-mobile__copy > p {
  margin: 0 0 22px;
  color: var(--c-dim);
  line-height: 1.8;
}

.page-home .ph-mobile__points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.page-home .ph-point {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: rgba(41, 244, 154, 0.07);
  border: 1px solid rgba(41, 244, 154, 0.18);
  color: var(--c-text);
  font-size: 14px;
  font-weight: 600;
}

.page-home .ph-point i {
  font-family: var(--font-num);
  font-style: normal;
  color: var(--c-green);
  font-weight: 700;
}

.page-home .ph-mobile__visual {
  position: relative;
  min-height: 240px;
}

.page-home .ph-mobile__visual img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-card);
}

.page-home .ph-mobile__sync {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: rgba(10, 25, 41, 0.86);
  border: 1px solid rgba(41, 244, 154, 0.4);
  color: var(--c-white);
  font-size: 12px;
  font-weight: 600;
}

.page-home .ph-mobile__sync i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-green);
  animation: ph-pulse 1.6s ease-out infinite;
}

.page-home .ph-docs {
  max-width: var(--container-w);
  margin-inline: auto;
  padding: 84px 20px 48px;
}

.page-home .ph-docs__grid {
  display: grid;
  gap: 28px;
}

.page-home .ph-docs__main h2 {
  font-size: clamp(28px, 4.6vw, 44px);
  line-height: 1.12;
  font-weight: 800;
  margin-bottom: 16px;
}

.page-home .ph-docs__main > p {
  margin: 0 0 24px;
  color: var(--c-dim);
  line-height: 1.8;
}

.page-home .ph-docs__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .ph-doc-card {
  padding: 30px;
  background: var(--c-navy-2);
  border: 1px solid rgba(41, 244, 154, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 0 100%);
}

.page-home .ph-doc-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.page-home .ph-doc-list li {
  position: relative;
  padding-left: 22px;
  color: var(--c-text);
  font-size: 14px;
  line-height: 1.6;
}

.page-home .ph-doc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-green);
  box-shadow: var(--shadow-green);
}

.page-home .ph-paths {
  max-width: var(--container-w);
  margin-inline: auto;
  padding: 32px 20px 90px;
}

.page-home .ph-paths__inner {
  padding: 32px 24px;
  background: var(--c-navy-2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.page-home .ph-paths__title h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  margin-bottom: 24px;
}

.page-home .ph-paths__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.page-home .ph-paths__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 16px 18px;
  background: var(--c-navy);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  color: var(--c-text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.page-home .ph-paths__links a:hover {
  background: rgba(41, 244, 154, 0.09);
  border-color: rgba(41, 244, 154, 0.45);
  box-shadow: var(--shadow-green);
  color: var(--c-green);
}

.page-home .ph-paths__links b {
  color: var(--c-green);
  font-size: 20px;
  font-family: var(--font-num);
}

@media (min-width: 640px) {
  .page-home .ph-data__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-home .ph-mobile__visual {
    min-height: 300px;
  }

  .page-home .ph-mobile__visual img {
    height: 300px;
  }
}

@media (min-width: 960px) {
  .page-home .ph-hero {
    padding: 100px 32px 64px;
  }

  .page-home .ph-hero__inner {
    grid-template-columns: 1.05fr 0.9fr;
    align-items: center;
    gap: 60px;
  }

  .page-home .ph-hero__panel {
    height: 460px;
  }

  .page-home .ph-hero__svg {
    width: 240px;
    height: 240px;
    top: 40px;
    right: 40px;
  }

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

  .page-home .ph-data__item {
    border-right: 1px solid var(--c-border);
    border-bottom: 0;
  }

  .page-home .ph-data__item:nth-child(2n) {
    border-right: 1px solid var(--c-border);
  }

  .page-home .ph-data__item:last-child {
    border-right: 0;
  }

  .page-home .ph-match {
    padding: 110px 32px 80px;
  }

  .page-home .ph-match__layout {
    grid-template-columns: 1.45fr 0.85fr;
    gap: 24px;
  }

  .page-home .ph-match__main {
    grid-template-columns: 1fr 1fr;
  }

  .page-home .ph-match__media {
    min-height: 100%;
  }

  .page-home .ph-match__body {
    padding: 34px;
  }

  .page-home .ph-team {
    padding: 110px 32px;
  }

  .page-home .ph-team__grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: center;
  }

  .page-home .ph-team__cards {
    grid-template-columns: 1fr 1fr;
  }

  .page-home .ph-mobile {
    padding: 110px 32px;
  }

  .page-home .ph-mobile__inner {
    grid-template-columns: 1fr 0.85fr;
    gap: 70px;
    align-items: center;
  }

  .page-home .ph-mobile__visual {
    min-height: 320px;
  }

  .page-home .ph-mobile__visual img {
    height: 320px;
  }

  .page-home .ph-docs {
    padding: 110px 32px 80px;
  }

  .page-home .ph-docs__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    align-items: center;
  }

  .page-home .ph-doc-card {
    padding: 38px;
  }

  .page-home .ph-paths {
    padding: 40px 32px 110px;
  }

  .page-home .ph-paths__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 44px 50px;
  }

  .page-home .ph-paths__title {
    flex-shrink: 0;
  }

  .page-home .ph-paths__title h2 {
    margin-bottom: 0;
  }

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