.page-home {
  --ph-navy-deep: #0B1D3A;
  --ph-navy: #1A3A6B;
  --ph-gold: #D4A843;
  --ph-gold-bright: #F0C75E;
  --ph-red: #E63946;
  --ph-white: #FFFFFF;
  --ph-gray: #EAEAEA;
  --ph-slate: #4A5A78;
  --ph-charcoal: #121212;
  --ph-gold-dark: #A87A30;
  --ph-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  background: var(--ph-navy-deep);
  color: var(--ph-white);
  overflow-x: clip;
}

.page-home a {
  color: inherit;
}

.page-home__hero {
  position: relative;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: var(--ph-navy-deep);
}

.page-home__hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.28;
  transform: scale(1.02);
}

.page-home__hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, var(--ph-navy-deep) 20%, rgba(11, 29, 58, 0.88) 55%, rgba(11, 29, 58, 0.45) 100%),
    linear-gradient(to bottom, rgba(11, 29, 58, 0.2) 0%, var(--ph-navy-deep) 100%);
}

.page-home__hero-inner {
  position: relative;
  z-index: 2;
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 24px 20px 36px;
}

.page-home__breadcrumbs {
  margin: 0 0 28px;
}

.page-home__hero-grid {
  display: grid;
  gap: 36px;
  align-items: start;
}

.page-home__hero-copy {
  max-width: 700px;
}

.page-home__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--ph-gold);
  text-transform: uppercase;
}

.page-home__eyebrow-line {
  display: inline-block;
  width: 32px;
  height: 3px;
  background: var(--ph-red);
  transform: skewX(-24deg);
}

.page-home__title {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 13vw, 5.4rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.page-home__title span {
  display: block;
  color: var(--ph-gold);
}

.page-home__hero-lead {
  max-width: 46em;
  margin: 0 0 20px;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.86);
}

.page-home__hero-points {
  display: grid;
  gap: 8px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.page-home__hero-points li {
  position: relative;
  padding-left: 18px;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.page-home__hero-points li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--ph-gold);
  transform: rotate(45deg);
}

.page-home__hero-points a {
  color: var(--ph-gold-bright);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.page-home__hero-points a:hover {
  border-bottom-color: var(--ph-gold-bright);
}

.page-home__hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.page-home__hero-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ph-white);
  text-decoration: none;
  border-bottom: 1px solid var(--ph-slate);
  padding-bottom: 3px;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.page-home__hero-more:hover {
  color: var(--ph-gold-bright);
  border-bottom-color: var(--ph-gold-bright);
}

.page-home__liveboard {
  background:
    linear-gradient(140deg, rgba(26, 58, 107, 0.92), rgba(11, 29, 58, 0.92));
  border: 1px solid rgba(212, 168, 67, 0.45);
  border-left: 4px solid var(--ph-gold);
  box-shadow: var(--ph-shadow);
  padding: 20px;
  max-width: 520px;
  position: relative;
}

.page-home__liveboard::after {
  content: "";
  position: absolute;
  right: -10px;
  top: -10px;
  width: 46px;
  height: 46px;
  background: repeating-linear-gradient(-45deg, var(--ph-red) 0 8px, transparent 8px 16px);
  opacity: 0.85;
}

.page-home__liveboard-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ph-slate);
  font-size: 13px;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--ph-white);
  text-transform: uppercase;
}

.page-home__live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ph-red);
  box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.25);
  animation: page-home-pulse 1.6s ease-in-out infinite;
}

.page-home__liveboard-tag {
  margin-left: auto;
  background: var(--ph-gold);
  color: var(--ph-navy-deep);
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  transform: skewX(-12deg);
}

.page-home__liveboard-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  padding: 18px 0 14px;
}

.page-home__team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.page-home__team-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
  color: var(--ph-white);
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.page-home__team-badge--a {
  background: #6CABDD;
}

.page-home__team-badge--b {
  background: var(--ph-slate);
}

.page-home__team-name {
  font-size: 14px;
  font-weight: 600;
}

.page-home__score-center {
  text-align: center;
}

.page-home__score-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--ph-gold-bright);
  white-space: nowrap;
}

.page-home__score-state {
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

.page-home__mini {
  display: grid;
  gap: 8px;
  border-top: 1px solid var(--ph-slate);
  padding-top: 12px;
}

.page-home__mini-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 2px solid var(--ph-slate);
}

.page-home__mini-row:last-child {
  border-left-color: var(--ph-gold);
}

.page-home__mini-name {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}

.page-home__mini-score {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: var(--ph-gold-bright);
  white-space: nowrap;
}

.page-home__mini-state {
  font-size: 10px;
  padding: 2px 5px;
  background: var(--ph-slate);
  color: var(--ph-white);
  letter-spacing: 0.05em;
}

.page-home__marquee {
  position: relative;
  z-index: 2;
  background: var(--ph-gold);
  transform: skewY(-1.4deg) scale(1.01);
  margin-top: auto;
  border-top: 3px solid var(--ph-gold-bright);
}

.page-home__marquee-track {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 16px;
  transform: skewY(1.4deg);
  white-space: nowrap;
  animation: page-home-marquee 22s linear infinite;
}

.page-home__marquee-track span {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--ph-navy-deep);
}

.page-home__marquee-track b {
  font-size: 16px;
  color: var(--ph-red);
}

.page-home__quick-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: var(--ph-navy-deep);
  border-bottom: 1px solid var(--ph-slate);
}

.page-home__stat {
  padding: 26px 18px;
  border-right: 1px solid rgba(74, 90, 120, 0.4);
  border-bottom: 1px solid rgba(74, 90, 120, 0.4);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-home__stat:nth-child(2n) {
  border-right: none;
}

.page-home__stat:nth-child(n + 3) {
  border-bottom: none;
}

.page-home__stat-num {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--ph-gold-bright);
  line-height: 1;
}

.page-home__stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.66);
  letter-spacing: 0.04em;
}

.page-home__scores {
  position: relative;
  background:
    linear-gradient(165deg, var(--ph-navy-deep) 0%, var(--ph-navy) 100%);
  padding: 72px 20px 80px;
}

.page-home__section-index {
  position: absolute;
  top: 12px;
  right: 16px;
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
  user-select: none;
}

.page-home__feature-grid {
  display: grid;
  gap: 40px;
  align-items: center;
  width: min(100%, 1140px);
  margin: 0 auto;
}

.page-home__feature-copy {
  order: 1;
}

.page-home__feature-media {
  order: 2;
}

.page-home__section-kicker {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--ph-red);
}

.page-home__scores h2,
.page-home__favorites h2,
.page-home__videos h2,
.page-home__update h2,
.page-home__trust h2 {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.page-home__section-lead {
  margin: 0 0 18px;
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.82);
}

.page-home__feature-list {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.page-home__feature-list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}

.page-home__feature-list li::before {
  content: "★";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--ph-gold);
  font-size: 14px;
}

.page-home__text-link {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ph-gold-bright);
  text-decoration: none;
  border-bottom: 1px solid rgba(240, 199, 94, 0.4);
  padding-bottom: 2px;
}

.page-home__text-link:hover {
  border-bottom-color: var(--ph-gold-bright);
}

.page-home__phone {
  position: relative;
  max-width: 340px;
  margin: 0 auto;
  background: var(--ph-charcoal);
  border-radius: 26px;
  border: 3px solid var(--ph-gold);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  padding: 12px;
}

.page-home__phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.3);
  z-index: 3;
}

.page-home__phone-screen {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}

.page-home__phone-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 6px 2px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ph-gold-bright);
}

.page-home__phone-bar .page-home__live-dot {
  width: 6px;
  height: 6px;
}

.page-home__videos {
  position: relative;
  background: var(--ph-gray);
  color: var(--ph-navy-deep);
  padding: 72px 20px 64px;
}

.page-home__videos-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: min(100%, 1140px);
  margin: 0 auto 36px;
}

.page-home__section-kicker--dark {
  color: var(--ph-red);
}

.page-home__videos-intro {
  max-width: 540px;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(11, 29, 58, 0.74);
}

.page-home__video-layout {
  display: grid;
  gap: 22px;
  width: min(100%, 1140px);
  margin: 0 auto 28px;
}

.page-home__video-feature {
  position: relative;
  margin: 0;
  background: var(--ph-navy-deep);
  border: 3px solid var(--ph-navy-deep);
  box-shadow: 0 18px 45px rgba(11, 29, 58, 0.2);
  transform: rotate(-0.6deg);
}

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

.page-home__video-caption {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
}

.page-home__video-badge {
  display: inline-block;
  align-self: flex-start;
  background: var(--ph-red);
  color: var(--ph-white);
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.page-home__video-meta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.page-home__video-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.page-home__video-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  background: var(--ph-white);
  border-left: 4px solid var(--ph-gold);
  padding: 14px 16px;
  box-shadow: 0 6px 20px rgba(11, 29, 58, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-home__video-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(11, 29, 58, 0.14);
}

.page-home__video-list-index {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--ph-gold-dark);
}

.page-home__video-list-title {
  font-weight: 700;
  color: var(--ph-navy-deep);
}

.page-home__video-list-time {
  font-size: 12px;
  color: var(--ph-slate);
}

.page-home__videos-more {
  display: inline-block;
  margin: 0 auto;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ph-navy-deep);
  text-decoration: none;
  border-bottom: 2px solid var(--ph-gold);
  padding-bottom: 4px;
}

.page-home__videos-more:hover {
  color: var(--ph-gold-dark);
  border-bottom-color: var(--ph-red);
}

.page-home__favorites {
  position: relative;
  background: var(--ph-navy-deep);
  padding: 72px 20px 80px;
}

.page-home__favorites .page-home__section-lead {
  color: rgba(255, 255, 255, 0.84);
}

.page-home__steps {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  counter-reset: page-home-steps;
  display: grid;
  gap: 10px;
}

.page-home__steps li {
  counter-increment: page-home-steps;
  padding-left: 44px;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.page-home__steps li::before {
  content: counter(page-home-steps);
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 900;
  color: var(--ph-navy-deep);
  background: var(--ph-gold);
  transform: skewX(-10deg);
}

.page-home__favorites-frame {
  position: relative;
  max-width: 360px;
  margin: 0 auto;
  border: 3px solid var(--ph-gold);
  padding: 8px;
  background: var(--ph-charcoal);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  transform: rotate(1.2deg);
}

.page-home__favorites-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home__favorites-tag {
  position: absolute;
  left: -8px;
  bottom: 22px;
  background: var(--ph-red);
  color: var(--ph-white);
  font-size: 13px;
  font-weight: 800;
  padding: 6px 14px;
  transform: skewX(-10deg);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-home__update {
  background:
    linear-gradient(120deg, var(--ph-gold-dark) 0%, var(--ph-gold) 60%, var(--ph-gold-bright) 100%);
  color: var(--ph-navy-deep);
  padding: 72px 20px 76px;
}

.page-home__update-inner {
  display: grid;
  gap: 28px;
  align-items: center;
  width: min(100%, 1140px);
  margin: 0 auto;
}

.page-home__clock {
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--ph-navy-deep);
  border: 8px solid var(--ph-white);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.page-home__clock-hour,
.page-home__clock-minute {
  position: absolute;
  left: 50%;
  top: 22px;
  transform-origin: 50% 53px;
  background: var(--ph-white);
}

.page-home__clock-hour {
  width: 6px;
  height: 42px;
  transform: translateX(-50%) rotate(50deg);
}

.page-home__clock-minute {
  width: 4px;
  height: 58px;
  background: var(--ph-gold-bright);
  transform: translateX(-50%) rotate(240deg);
}

.page-home__clock-center {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ph-red);
  transform: translate(-50%, -50%);
  border: 2px solid var(--ph-white);
}

.page-home__update-kicker {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: var(--ph-red);
}

.page-home__update h2 {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
}

.page-home__update h2 span {
  color: var(--ph-white);
}

.page-home__update-desc {
  margin: 0 0 22px;
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(11, 29, 58, 0.82);
  max-width: 540px;
}

.page-home__update-btn {
  display: inline-block;
}

.page-home__trust {
  background: var(--ph-gray);
  color: var(--ph-navy-deep);
  padding: 72px 20px 56px;
}

.page-home__trust-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  width: min(100%, 1140px);
  margin: 0 auto 36px;
}

.page-home__trust-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ph-gold-dark);
  text-decoration: none;
  border-bottom: 2px solid var(--ph-gold);
  padding-bottom: 4px;
}

.page-home__trust-link:hover {
  color: var(--ph-navy-deep);
  border-bottom-color: var(--ph-red);
}

.page-home__trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: min(100%, 1140px);
  margin: 0 auto 28px;
}

.page-home__trust-item {
  background: var(--ph-white);
  border-top: 4px solid var(--ph-gold);
  box-shadow: 0 8px 22px rgba(11, 29, 58, 0.08);
  padding: 20px 18px;
  text-align: center;
}

.page-home__trust-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--ph-navy-deep);
  line-height: 1;
  margin-bottom: 8px;
}

.page-home__trust-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ph-slate);
}

.page-home__trust-note {
  width: min(100%, 1140px);
  margin: 0 auto;
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(11, 29, 58, 0.7);
  border-left: 4px solid var(--ph-red);
  padding-left: 14px;
}

.page-home__trust-note strong {
  color: var(--ph-navy-deep);
}

@keyframes page-home-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(230, 57, 70, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(230, 57, 70, 0);
  }
}

@keyframes page-home-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (min-width: 620px) {
  .page-home__hero {
    min-height: 720px;
  }

  .page-home__hero-inner {
    padding: 36px 28px 52px;
  }

  .page-home__title {
    font-size: clamp(3.6rem, 8vw, 6rem);
  }

  .page-home__liveboard {
    padding: 26px;
  }

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

  .page-home__stat {
    border-right: 1px solid rgba(74, 90, 120, 0.4);
    border-bottom: none;
  }

  .page-home__stat:nth-child(2n) {
    border-right: 1px solid rgba(74, 90, 120, 0.4);
  }

  .page-home__stat:last-child {
    border-right: none;
  }

  .page-home__scores,
  .page-home__videos,
  .page-home__favorites,
  .page-home__update,
  .page-home__trust {
    padding: 96px 28px 100px;
  }

  .page-home__video-layout {
    grid-template-columns: 2fr 1.2fr;
    align-items: stretch;
  }

  .page-home__video-list {
    align-content: stretch;
  }

  .page-home__update-inner {
    grid-template-columns: auto 1fr;
  }

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

@media (min-width: 980px) {
  .page-home__hero-inner {
    padding: 48px 40px 64px;
  }

  .page-home__hero-grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 48px;
    align-items: center;
  }

  .page-home__hero-copy {
    padding-top: 10px;
  }

  .page-home__liveboard {
    margin-left: auto;
    width: 100%;
  }

  .page-home__feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .page-home__feature-grid--reverse .page-home__feature-copy {
    order: 2;
  }

  .page-home__feature-grid--reverse .page-home__feature-media {
    order: 1;
  }

  .page-home__videos-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .page-home__videos-head > div {
    flex: 1;
  }

  .page-home__videos-intro {
    max-width: 44%;
  }

  .page-home__section-index {
    font-size: 8rem;
    right: 34px;
    top: 18px;
  }

  .page-home__phone {
    margin: 0 0 0 auto;
  }

  .page-home__favorites .page-home__phone {
    margin: 0 auto 0 0;
  }
}
</main>
