.page-home {
  --ph-space: clamp(64px, 9vw, 120px);
  --ph-gap: clamp(24px, 4vw, 48px);
  background: var(--light);
  overflow: clip;
}

.page-home .ph-container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

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

.page-home .ph-section {
  padding: var(--ph-space) 0;
}

.page-home .ph-section-head {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 44px;
}

.page-home .ph-section-head-copy {
  flex: 1;
}

.page-home .ph-section-index {
  font-family: var(--font-headline);
  font-size: clamp(44px, 7vw, 76px);
  line-height: .9;
  color: var(--orange);
  opacity: .35;
  flex-shrink: 0;
  font-weight: 700;
  letter-spacing: .02em;
}

.page-home .ph-section-index--light {
  color: var(--gold);
}

.page-home .ph-section-kicker,
.page-home .section-kicker {
  color: var(--orange);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 13px;
}

.page-home .ph-section-title {
  font-family: var(--font-headline);
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.05;
  color: var(--navy);
  margin: 8px 0 12px;
  letter-spacing: .01em;
}

.page-home .ph-section-desc {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  max-width: 720px;
}

.page-home .ph-hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  padding: calc(var(--header-h) + 36px) 0 110px;
  overflow: hidden;
  isolation: isolate;
}

.page-home .ph-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(255, 107, 53, .16), transparent 38%),
    radial-gradient(circle at 82% 72%, rgba(255, 215, 0, .1), transparent 34%),
    radial-gradient(rgba(255, 255, 255, .22) 1px, transparent 1px),
    radial-gradient(rgba(255, 255, 255, .14) 1px, transparent 1px);
  background-size: auto, auto, 28px 28px, 44px 44px;
  background-position: 0 0, 0 0, 12px 12px, 28px 28px;
}

.page-home .ph-hero-inner {
  display: grid;
  gap: 48px;
  align-items: center;
}

.page-home .ph-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 18px;
}

.page-home .ph-breadcrumb-current {
  color: var(--gold);
  font-weight: 600;
}

.page-home .ph-breadcrumb-sep {
  color: rgba(255, 255, 255, .4);
}

.page-home .ph-hero .section-kicker {
  color: var(--gold);
  font-size: 14px;
}

.page-home .ph-hero-title {
  font-family: var(--font-headline);
  font-size: clamp(42px, 7.2vw, 84px);
  line-height: .98;
  color: #fff;
  margin: 10px 0 22px;
  letter-spacing: .015em;
  text-transform: uppercase;
}

.page-home .ph-hero-desc {
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
  line-height: 1.85;
  max-width: 620px;
  margin-bottom: 30px;
}

.page-home .ph-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 38px;
}

.page-home .ph-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  max-width: 540px;
}

.page-home .ph-hero-stat {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 16px;
}

.page-home .ph-hero-stat-value {
  font-family: var(--font-data);
  font-size: 26px;
  color: var(--orange);
  font-weight: 700;
  line-height: 1;
}

.page-home .ph-hero-stat-label {
  margin-top: 8px;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
}

.page-home .ph-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.page-home .ph-hero-figure {
  position: relative;
  width: 100%;
  max-width: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .36);
}

.page-home .ph-hero-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.page-home .ph-hero-panel {
  position: absolute;
  right: 2%;
  bottom: 10%;
  width: min(78%, 380px);
  border-radius: var(--radius);
  background: rgba(7, 21, 49, .88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .32);
  padding: 12px;
}

.page-home .ph-score-svg {
  width: 100%;
  height: auto;
  display: block;
}

.page-home .ph-score-svg text {
  font-family: var(--font-data);
}

.page-home .ph-hero-note {
  position: absolute;
  left: 4%;
  top: 8%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(7, 21, 49, .78);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--pill);
  padding: 9px 16px;
  color: rgba(255, 255, 255, .88);
  font-size: 13px;
  backdrop-filter: blur(6px);
}

.page-home .ph-hero-note-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: phPulse 1.8s ease-in-out infinite;
}

.page-home .ph-entrance {
  background: var(--light);
}

.page-home .ph-entrance-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.page-home .ph-entrance-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px 22px;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: var(--text);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  overflow: hidden;
}

.page-home .ph-entrance-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--orange), var(--gold));
  opacity: 0;
  transition: opacity .28s ease;
}

.page-home .ph-entrance-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(10, 31, 68, .12);
  border-color: rgba(255, 107, 53, .35);
}

.page-home .ph-entrance-card:hover::before {
  opacity: 1;
}

.page-home .ph-entrance-index {
  font-size: 22px;
  color: var(--muted);
  margin-bottom: 16px;
  font-weight: 700;
}

.page-home .ph-entrance-title {
  font-family: var(--font-headline);
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.25;
}

.page-home .ph-entrance-text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  flex: 1;
  margin-bottom: 18px;
}

.page-home .ph-entrance-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
}

.page-home .ph-trust-strip {
  background: linear-gradient(95deg, var(--orange), #ffae5a 55%, var(--gold));
  clip-path: polygon(0 12%, 100% 0, 100% 88%, 0 100%);
  padding: 52px 0 56px;
  margin: -34px 0 -22px;
}

.page-home .ph-trust-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  align-items: center;
  justify-content: center;
}

.page-home .ph-trust-item {
  font-weight: 600;
  color: #071531;
  font-size: 14px;
  background: rgba(255, 255, 255, .34);
  border-radius: var(--pill);
  padding: 10px 20px;
  backdrop-filter: blur(4px);
}

.page-home .ph-team {
  background: var(--navy);
  color: #fff;
}

.page-home .ph-team .ph-section-title {
  color: #fff;
}

.page-home .ph-team .ph-section-desc {
  color: rgba(255, 255, 255, .7);
}

.page-home .ph-team-grid {
  display: grid;
  gap: 36px;
  align-items: center;
}

.page-home .ph-team-table {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, .04);
}

.page-home .ph-team-row {
  display: grid;
  grid-template-columns: 1.4fr .7fr .7fr .7fr .7fr .8fr;
  padding: 14px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  font-size: 14px;
  gap: 6px;
}

.page-home .ph-team-row:last-child {
  border-bottom: none;
}

.page-home .ph-team-row--head {
  background: rgba(255, 255, 255, .07);
  font-weight: 600;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  letter-spacing: .05em;
}

.page-home .ph-team-row .data {
  color: #fff;
  font-size: 14px;
}

.page-home .ph-team-row--head .data,
.page-home .ph-team-row--head span {
  color: rgba(255, 255, 255, .72);
}

.page-home .ph-team-row--total {
  background: rgba(255, 107, 53, .14);
  border-top: 1px solid rgba(255, 107, 53, .3);
}

.page-home .ph-team-row--total .data {
  color: var(--gold);
  font-weight: 700;
}

.page-home .ph-team-note {
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 18px;
}

.page-home .ph-team-figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .15);
}

.page-home .ph-team-figure img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.page-home .ph-tablet {
  background: var(--light);
}

.page-home .ph-tablet-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

.page-home .ph-tablet-figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.page-home .ph-tablet-figure img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.page-home .ph-tablet-features {
  display: grid;
  gap: 22px;
}

.page-home .ph-tablet-feat {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-card);
  transition: transform .28s ease, box-shadow .28s ease;
}

.page-home .ph-tablet-feat:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(10, 31, 68, .1);
}

.page-home .ph-tablet-feat-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--gold);
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
}

.page-home .ph-tablet-feat-title {
  font-family: var(--font-headline);
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 6px;
}

.page-home .ph-tablet-feat-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.page-home .ph-rank {
  background: linear-gradient(145deg, var(--navy-deep), var(--navy) 70%, #123060);
  color: #fff;
}

.page-home .ph-rank .ph-section-title {
  color: #fff;
}

.page-home .ph-rank .ph-section-desc {
  color: rgba(255, 255, 255, .7);
}

.page-home .ph-rank-grid {
  display: grid;
  gap: 36px;
  align-items: center;
}

.page-home .ph-rank-figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .24);
}

.page-home .ph-rank-figure img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.page-home .ph-rank-tools {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.page-home .ph-rank-tool {
  background: rgba(255, 255, 255, .06);
  border-radius: 18px;
  padding: 18px;
}

.page-home .ph-rank-tool-label {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, .58);
  margin-bottom: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.page-home .ph-rank-tool-value {
  font-family: var(--font-data);
  font-size: 18px;
  color: var(--gold);
  font-weight: 700;
}

.page-home .ph-rank-cta {
  grid-column: 1 / -1;
  justify-content: center;
  margin-top: 6px;
}

.page-home .ph-subscribe {
  background: var(--light);
}

.page-home .ph-sub-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-bottom: 48px;
}

.page-home .ph-sub-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-card);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  position: relative;
  overflow: hidden;
}

.page-home .ph-sub-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  opacity: 0;
  transition: opacity .28s ease;
}

.page-home .ph-sub-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(10, 31, 68, .12);
  border-color: rgba(255, 107, 53, .3);
}

.page-home .ph-sub-card:hover::after {
  opacity: 1;
}

.page-home .ph-sub-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--navy);
  color: var(--gold);
  font-size: 24px;
  margin-bottom: 20px;
}

.page-home .ph-sub-card:nth-child(2) .ph-sub-icon {
  color: var(--orange);
}

.page-home .ph-sub-card-title {
  font-family: var(--font-headline);
  font-size: 23px;
  color: var(--navy);
  margin-bottom: 10px;
}

.page-home .ph-sub-card-text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
}

.page-home .ph-sub-cta {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  background: linear-gradient(95deg, var(--navy), var(--navy-deep));
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 52px);
  color: rgba(255, 255, 255, .85);
  box-shadow: 0 24px 60px rgba(10, 31, 68, .2);
}

.page-home .ph-sub-cta-copy p {
  font-size: 15px;
  line-height: 1.85;
  max-width: 760px;
}

.page-home .ph-sub-cta-copy p + p {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
}

.page-home .ph-sub-cta a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-home .ph-sub-cta .button {
  text-decoration: none;
}

@media (max-width: 639px) {
  .page-home .ph-hero {
    padding-top: calc(var(--header-h) + 20px);
    padding-bottom: 80px;
  }

  .page-home .ph-hero-note {
    top: auto;
    bottom: 4%;
    left: 6%;
    font-size: 12px;
  }

  .page-home .ph-hero-panel {
    bottom: 4%;
    right: 4%;
    width: 82%;
  }

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

  .page-home .ph-rank-cta {
    grid-column: auto;
  }
}

@media (min-width: 700px) {
  .page-home .ph-hero-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .page-home .ph-tablet-grid {
    grid-template-columns: .95fr 1.05fr;
  }

  .page-home .ph-rank-grid {
    grid-template-columns: 1.1fr .9fr;
  }
}

@media (min-width: 992px) {
  .page-home .ph-hero-inner {
    grid-template-columns: 1.05fr .95fr;
    gap: 64px;
  }

  .page-home .ph-hero-visual {
    justify-content: flex-end;
  }

  .page-home .ph-hero-figure {
    max-width: 620px;
  }

  .page-home .ph-trust-inner {
    justify-content: flex-start;
    gap: 14px 32px;
  }

  .page-home .ph-sub-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .page-home .ph-sub-cta .button {
    flex-shrink: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .ph-hero-note-dot {
    animation: none;
  }

  .page-home .ph-entrance-card,
  .page-home .ph-tablet-feat,
  .page-home .ph-sub-card {
    transition: none;
  }
}

@keyframes phPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: .45;
    transform: scale(.8);
  }
}
