.page-home {
  --pg-deep: var(--c-deep);
  --pg-primary: var(--c-primary);
  --pg-accent: var(--c-accent);
  --pg-orange: var(--c-orange);
  --pg-rock: var(--c-rock);
  --pg-cream: var(--c-cream);
  --pg-moss: var(--c-moss);
  --pg-terra: var(--c-terra);
  --pg-line: rgba(198, 255, 0, .18);
  --pg-gap: clamp(3rem, 7vw, 5.5rem);
  background: var(--pg-deep);
  overflow-x: clip;
}

.page-home .pg-section-sub {
  font-family: var(--font-data);
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--pg-accent);
  margin: 0 0 .6rem;
}

.page-home h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: .01em;
  color: var(--pg-cream);
  margin: 0 0 .6rem;
}

.page-home h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--pg-cream);
  margin: 0 0 .4rem;
}

.page-home .pg-hero {
  position: relative;
  background:
    radial-gradient(900px 480px at 88% -12%, rgba(198, 255, 0, .12), transparent 60%),
    linear-gradient(130deg, var(--pg-primary) 0%, var(--pg-deep) 72%);
  padding: calc(var(--header-h) + 2.25rem) 0 4.5rem;
  overflow: hidden;
}

.page-home .pg-hero__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.page-home .pg-hero__crumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-data);
  font-size: .78rem;
  color: #9AA7BC;
  margin-bottom: 1.4rem;
}

.page-home .pg-hero__crumb-item--on {
  color: var(--pg-accent);
}

.page-home .pg-hero__kicker {
  font-family: var(--font-data);
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--pg-terra);
  margin: 0 0 .65rem;
}

.page-home .pg-hero__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: .96;
  letter-spacing: .01em;
  color: var(--pg-cream);
  margin: 0 0 1.1rem;
  text-shadow: 6px 6px 0 rgba(198, 255, 0, .08);
}

.page-home .pg-hero__lead {
  font-family: var(--font-body);
  font-size: .98rem;
  line-height: 1.75;
  color: #C6D0E0;
  max-width: 46rem;
  margin: 0 0 1.5rem;
}

.page-home .pg-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin: 0 0 2.2rem;
}

.page-home .pg-hero__metrics {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .4rem 1.2rem;
  max-width: 34rem;
}

.page-home .pg-hero__metric {
  margin: 0;
  padding: .8rem 0 .65rem;
  border-top: 1px solid var(--pg-line);
}

.page-home .pg-hero__metric dt {
  font-family: var(--font-body);
  font-size: .78rem;
  color: #9AA7BC;
  margin: 0 0 .2rem;
}

.page-home .pg-hero__metric dd {
  font-family: var(--font-data);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pg-accent);
  margin: 0;
}

.page-home .pg-hero__visual {
  position: relative;
}

.page-home .pg-hero__figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.page-home .pg-hero__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-home .pg-hero__pitch {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .5;
  mix-blend-mode: screen;
  padding: 6%;
  box-sizing: border-box;
}

.page-home .pg-hero__pitch-line {
  fill: none;
  stroke: rgba(198, 255, 0, .55);
  stroke-width: 2;
  stroke-dasharray: 6 10;
  animation: pg-field 24s linear infinite;
}

.page-home .pg-hero__pitch-spot {
  fill: var(--pg-accent);
  animation: pg-pulse 1.8s ease-in-out infinite;
}

.page-home .pg-scoreboard {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  background: rgba(13, 21, 38, .72);
  border: 1px solid var(--pg-line);
  border-left: 3px solid var(--pg-accent);
  padding: .7rem .9rem .8rem;
  backdrop-filter: blur(6px);
}

.page-home .pg-scoreboard__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .5rem;
}

.page-home .pg-scoreboard__live {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-data);
  font-size: .72rem;
  letter-spacing: .12em;
  color: var(--pg-accent);
}

.page-home .pg-scoreboard__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pg-accent);
  animation: pg-pulse 1.2s ease-in-out infinite;
}

.page-home .pg-scoreboard__demo {
  font-size: .68rem;
}

.page-home .pg-scoreboard__match {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  margin-bottom: .45rem;
}

.page-home .pg-scoreboard__team {
  display: flex;
  align-items: baseline;
  gap: .55rem;
  flex: 1;
}

.page-home .pg-scoreboard__team--right {
  justify-content: flex-end;
}

.page-home .pg-scoreboard__name {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--pg-cream);
}

.page-home .pg-scoreboard__score {
  font-family: var(--font-data);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--pg-orange);
  line-height: 1;
  animation: pg-scoreflash 1.6s steps(2, end) infinite;
}

.page-home .pg-scoreboard__sep {
  font-family: var(--font-data);
  font-size: 1.2rem;
  color: var(--pg-accent);
  line-height: 1;
}

.page-home .pg-scoreboard__meta {
  display: flex;
  justify-content: space-between;
  gap: .6rem;
  font-family: var(--font-data);
  font-size: .7rem;
  color: #9AA7BC;
}

.page-home .pg-hero__note {
  position: absolute;
  left: 1rem;
  bottom: .55rem;
  font-family: var(--font-data);
  font-size: .68rem;
  color: rgba(245, 247, 250, .7);
  z-index: 2;
}

.page-home .pg-hero__slant {
  position: absolute;
  right: -10%;
  bottom: -1px;
  width: 62%;
  height: 76px;
  background: var(--pg-deep);
  transform: skewX(-12deg);
}

.page-home .pg-compare {
  position: relative;
  background:
    linear-gradient(rgba(58, 74, 99, .25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58, 74, 99, .25) 1px, transparent 1px),
    radial-gradient(800px 420px at 12% 0%, rgba(198, 255, 0, .06), transparent 60%),
    var(--pg-deep);
  background-size: 34px 34px, 34px 34px, auto, auto;
  padding: var(--pg-gap) 0;
}

.page-home .pg-compare__head {
  display: grid;
  gap: 1.2rem;
  margin-bottom: 2.4rem;
}

.page-home .pg-compare__lead {
  font-family: var(--font-body);
  font-size: .98rem;
  line-height: 1.7;
  color: #C6D0E0;
  margin: 0;
  max-width: 38rem;
}

.page-home .pg-compare__stage {
  position: relative;
  display: grid;
  gap: 1.8rem;
}

.page-home .pg-compare__col {
  padding: 1.1rem;
  background: rgba(27, 42, 74, .5);
  border: 1px solid var(--pg-rock);
  border-radius: var(--radius);
}

.page-home .pg-compare__tag {
  display: inline-block;
  padding: .32rem .8rem;
  margin-bottom: .85rem;
  border: 1px solid var(--pg-rock);
  background: rgba(58, 74, 99, .42);
  font-family: var(--font-data);
  font-size: .75rem;
  letter-spacing: .1em;
  color: #A9B6CA;
}

.page-home .pg-compare__tag--new {
  border-color: var(--pg-accent);
  background: rgba(198, 255, 0, .1);
  color: var(--pg-accent);
}

.page-home .pg-compare__pic {
  margin: 0 0 1rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.page-home .pg-compare__pic img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-home .pg-compare__col--old .pg-compare__pic img {
  filter: grayscale(.55) contrast(.82) brightness(.94);
}

.page-home .pg-compare__col--new {
  border-color: rgba(198, 255, 0, .5);
}

.page-home .pg-compare__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .5rem;
}

.page-home .pg-compare__list li {
  position: relative;
  padding-left: 1.1rem;
  font-family: var(--font-body);
  font-size: .9rem;
  line-height: 1.55;
  color: #C6D0E0;
}

.page-home .pg-compare__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .5em;
  width: 6px;
  height: 6px;
  background: var(--pg-rock);
  transform: rotate(45deg);
}

.page-home .pg-compare__col--new .pg-compare__list li::before {
  background: var(--pg-accent);
}

.page-home .pg-compare__slider {
  display: none;
}

.page-home .pg-compare__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
}

.page-home .pg-compare__link {
  font-family: var(--font-data);
  font-size: .86rem;
  color: var(--pg-accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(198, 255, 0, .4);
}

.page-home .pg-compare__link:hover {
  border-bottom-color: var(--pg-accent);
}

.page-home .pg-steps {
  position: relative;
  background: linear-gradient(180deg, var(--pg-deep) 0%, var(--pg-primary) 100%);
  padding: var(--pg-gap) 0;
}

.page-home .pg-steps::before {
  content: "";
  display: block;
  width: 28%;
  height: 3px;
  margin-bottom: 2rem;
  background: linear-gradient(90deg, var(--pg-accent), transparent 90%);
}

.page-home .pg-steps__head {
  margin-bottom: 2.4rem;
}

.page-home .pg-steps__lead {
  font-family: var(--font-body);
  font-size: .98rem;
  line-height: 1.7;
  color: #C6D0E0;
  max-width: 40rem;
  margin: .8rem 0 0;
}

.page-home .pg-steps__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.page-home .pg-step {
  position: relative;
  padding: 1.5rem 0 1.85rem;
  border-top: 1px solid var(--pg-rock);
}

.page-home .pg-step__num {
  display: block;
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  line-height: .95;
  color: var(--pg-accent);
  opacity: .9;
  margin-bottom: .7rem;
}

.page-home .pg-step p {
  font-family: var(--font-body);
  font-size: .9rem;
  line-height: 1.65;
  color: #B8C3D6;
  margin: 0 0 .7rem;
}

.page-home .pg-step__link {
  font-family: var(--font-data);
  font-size: .8rem;
  color: var(--pg-accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(198, 255, 0, .35);
}

.page-home .pg-data {
  position: relative;
  background: radial-gradient(720px 380px at 82% 18%, rgba(255, 107, 53, .1), transparent 65%), var(--pg-deep);
  padding: calc(var(--pg-gap) + 3rem) 0 calc(var(--pg-gap) + 4rem);
  clip-path: polygon(0 2.5rem, 100% 0, 100% 100%, 0 calc(100% - 2.5rem));
}

.page-home .pg-data__top {
  display: grid;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.page-home .pg-data__intro {
  font-family: var(--font-body);
  font-size: .97rem;
  line-height: 1.7;
  color: #C6D0E0;
  margin: 0;
  max-width: 42rem;
}

.page-home .pg-data__board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
  margin-bottom: 2rem;
}

.page-home .pg-data__stat {
  position: relative;
  padding: 1.15rem 1rem 1.25rem;
  background: rgba(27, 42, 74, .55);
  border: 1px solid var(--pg-rock);
  border-left: 3px solid var(--pg-rock);
  overflow: hidden;
}

.page-home .pg-data__stat::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 34%;
  height: 2px;
  background: var(--pg-terra);
}

.page-home .pg-data__num {
  display: block;
  font-family: var(--font-data);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1;
  color: var(--pg-orange);
  margin-bottom: .4rem;
}

.page-home .pg-data__label {
  font-family: var(--font-body);
  font-size: .78rem;
  color: #9AA7BC;
}

.page-home .pg-data__stat--accent {
  border-left-color: var(--pg-accent);
}

.page-home .pg-data__stat--accent .pg-data__num {
  color: var(--pg-accent);
}

.page-home .pg-data__stat--orange {
  border-left-color: var(--pg-orange);
}

.page-home .pg-data__visual {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.page-home .pg-data__visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-home .pg-data__visual figcaption {
  position: absolute;
  left: .8rem;
  bottom: .8rem;
  padding: .35rem .8rem;
  background: rgba(13, 21, 38, .62);
  font-family: var(--font-data);
  font-size: .72rem;
  color: var(--pg-cream);
}

.page-home .pg-services {
  position: relative;
  background:
    linear-gradient(120deg, rgba(198, 255, 0, .06) 0%, transparent 32%),
    var(--pg-primary);
  padding: calc(var(--pg-gap) + 3.5rem) 0 calc(var(--pg-gap) + 4.5rem);
  clip-path: polygon(0 0, 100% 2.5rem, 100% 100%, 0 calc(100% - 2.5rem));
}

.page-home .pg-services__head {
  margin-bottom: 2.2rem;
}

.page-home .pg-services__lead {
  font-family: var(--font-body);
  font-size: .98rem;
  line-height: 1.7;
  color: #C6D0E0;
  max-width: 40rem;
  margin: .8rem 0 0;
}

.page-home .pg-services__grid {
  display: grid;
  gap: 2.4rem;
}

.page-home .pg-services__app {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.page-home .pg-services__app img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-home .pg-services__cards {
  display: grid;
  gap: 1rem;
}

.page-home .pg-service-card {
  position: relative;
  padding: 1.15rem 1.2rem 1.2rem;
  background: rgba(13, 21, 38, .48);
  border-left: 3px solid var(--pg-rock);
}

.page-home .pg-service-card p {
  font-family: var(--font-body);
  font-size: .9rem;
  line-height: 1.6;
  color: #B8C3D6;
  margin: 0 0 .6rem;
}

.page-home .pg-service-card a {
  font-family: var(--font-data);
  font-size: .8rem;
  color: var(--pg-accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(198, 255, 0, .35);
}

.page-home .pg-services__note {
  margin-top: 2.4rem;
  padding: .75rem 1rem;
  border: 1px dashed var(--pg-rock);
  font-family: var(--font-data);
  font-size: .78rem;
  text-align: center;
  color: #A9B6CA;
}

.page-home .pg-trust {
  background: linear-gradient(135deg, var(--pg-deep) 28%, var(--pg-primary) 100%);
  padding: var(--pg-gap) 0;
}

.page-home .pg-trust__grid {
  display: grid;
  gap: 2.2rem;
}

.page-home .pg-trust__text p {
  font-family: var(--font-body);
  font-size: .97rem;
  line-height: 1.75;
  color: #C6D0E0;
  max-width: 44rem;
  margin: 0 0 1.6rem;
}

.page-home .pg-trust__links {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.page-home .pg-trust__panel {
  position: relative;
  padding: 1.6rem 1.4rem;
  background: rgba(13, 21, 38, .55);
  border: 1px solid var(--pg-rock);
  border-left: 3px solid var(--pg-accent);
  align-self: start;
}

.page-home .pg-trust__panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 52px;
  height: 52px;
  border-top: 2px solid var(--pg-orange);
  border-right: 2px solid var(--pg-orange);
}

.page-home .pg-trust__label {
  display: block;
  font-family: var(--font-data);
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #9AA7BC;
  margin-bottom: .45rem;
}

.page-home .pg-trust__code {
  display: block;
  font-family: var(--font-data);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--pg-accent);
  line-height: 1.4;
  margin-bottom: .4rem;
}

.page-home .pg-trust__region {
  font-family: var(--font-body);
  font-size: .82rem;
  color: #9AA7BC;
}

@keyframes pg-pulse {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(198, 255, 0, .6);
  }
  50% {
    opacity: .45;
    box-shadow: 0 0 0 7px rgba(198, 255, 0, 0);
  }
}

@keyframes pg-scoreflash {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: .68;
  }
}

@keyframes pg-field {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -160;
  }
}

@media (min-width: 768px) {
  .page-home .pg-hero__grid {
    grid-template-columns: 1.05fr .95fr;
    gap: 3rem;
  }

  .page-home .pg-hero {
    padding-bottom: 6rem;
  }

  .page-home .pg-hero__metrics {
    grid-template-columns: 1fr 1fr;
  }

  .page-home .pg-hero__img {
    height: 640px;
  }

  .page-home .pg-compare__head {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }

  .page-home .pg-compare__lead {
    justify-self: end;
  }

  .page-home .pg-steps__head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 2rem;
  }

  .page-home .pg-steps__lead {
    justify-self: end;
    margin: 0;
  }

  .page-home .pg-data__top {
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 2rem;
  }

  .page-home .pg-data__intro {
    justify-self: end;
    margin: 0;
  }

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

  .page-home .pg-services__grid {
    grid-template-columns: .8fr 1.2fr;
    gap: 3rem;
    align-items: center;
  }

  .page-home .pg-services__cards {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }

  .page-home .pg-trust__grid {
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
  }
}

@media (min-width: 980px) {
  .page-home .pg-compare__stage {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
  }

  .page-home .pg-compare__col {
    border-radius: 0;
    padding: 1.25rem 1.4rem;
  }

  .page-home .pg-compare__col--old {
    border-right: 0;
  }

  .page-home .pg-compare__col--new {
    border-left: 0;
    margin-left: -1px;
  }

  .page-home .pg-compare__slider {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--pg-accent) 18%, var(--pg-accent) 82%, transparent);
    transform: translateX(-50%);
    z-index: 2;
  }

  .page-home .pg-compare__handle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--pg-accent);
    box-shadow: 0 0 0 6px rgba(198, 255, 0, .18), 0 12px 28px rgba(0, 0, 0, .4);
    transform: translate(-50%, -50%);
    animation: pg-shift 3.4s ease-in-out infinite;
  }

  .page-home .pg-compare__handle::before,
  .page-home .pg-compare__handle::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    border-top: 3px solid var(--pg-deep);
    border-left: 3px solid var(--pg-deep);
  }

  .page-home .pg-compare__handle::before {
    left: 12px;
    transform: translateY(-50%) rotate(-45deg);
  }

  .page-home .pg-compare__handle::after {
    right: 12px;
    transform: translateY(-50%) rotate(135deg);
  }

  .page-home .pg-compare__slider-label {
    position: absolute;
    bottom: 22%;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
    transform-origin: center;
    font-family: var(--font-data);
    font-size: .7rem;
    letter-spacing: .16em;
    color: var(--pg-deep);
    white-space: nowrap;
  }

  .page-home .pg-steps__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem;
  }

  .page-home .pg-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 2.3rem;
    right: -1.1rem;
    width: 2.2rem;
    height: 2px;
    background: var(--pg-accent);
    opacity: .4;
  }
}

@keyframes pg-shift {
  0%, 100% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(-42%, -50%);
  }
}
