.page-home {
  --home-title-size: clamp(2.75rem, 7vw, 5.25rem);
  --home-card-gap: clamp(1.5rem, 3vw, 2.25rem);
  scroll-behavior: smooth;
}

.page-home [id] {
  scroll-margin-top: calc(var(--pg-header-h) + 1rem);
}

.page-home__hero {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: calc(var(--pg-header-h) + 2rem);
  padding-bottom: clamp(2rem, 6vh, 4rem);
  background: var(--pg-primary);
  overflow: hidden;
}

.page-home__hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.page-home__hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
}

.page-home__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    115deg,
    rgba(10, 25, 47, 0.97) 0%,
    rgba(10, 25, 47, 0.88) 48%,
    rgba(15, 27, 45, 0.68) 100%
  );
}

.page-home__hero-inner {
  width: 100%;
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.page-home__hero-copy {
  max-width: 50rem;
}

.page-home__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--pg-text-muted);
  margin-bottom: 1.25rem;
}

.page-home__breadcrumb-sep {
  font-size: 1.125rem;
  color: var(--pg-gold);
  line-height: 1;
}

.page-home__breadcrumb-current {
  color: var(--pg-text);
  font-weight: 500;
}

.page-home__hero-kicker {
  color: var(--pg-gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-home__hero-title {
  font-family: var(--pg-font-display);
  font-weight: 700;
  font-size: var(--home-title-size);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--pg-text);
  margin: 0;
}

.page-home__hero-title-main {
  display: block;
}

.page-home__hero-title-sep {
  color: var(--pg-gold);
}

.page-home__hero-title-sub {
  display: block;
  font-size: 0.42em;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--pg-text-muted);
  margin-top: 0.65rem;
}

.page-home__hero-desc {
  margin: 1.75rem 0 0;
  max-width: 40rem;
  padding-left: 1.25rem;
  border-left: 3px solid var(--pg-gold);
  font-size: clamp(0.95rem, 1.4vw, 1.0625rem);
  line-height: 1.85;
  color: var(--pg-text-muted);
}

.page-home__hero-index {
  max-width: 34rem;
  padding: 1.75rem 1.75rem 1.5rem;
  border: 1px solid rgba(201, 169, 97, 0.22);
  border-radius: var(--pg-radius-md);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

.page-home__hero-index-headline {
  font-family: var(--pg-font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pg-gold);
  margin: 0 0 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.page-home__hero-index-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home__hero-index-item + .page-home__hero-index-item {
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.page-home__hero-index-item a {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.75rem 0;
  color: var(--pg-text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.page-home__hero-index-item a:hover,
.page-home__hero-index-item a.is-active {
  color: var(--pg-gold);
  padding-left: 0.375rem;
}

.page-home__hero-index-num {
  font-family: var(--pg-font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--pg-cyan);
  min-width: 1.6rem;
}

.page-home__hero-index-text {
  font-size: 0.9375rem;
}

.page-home__about {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: var(--pg-bg-light);
  color: var(--pg-text-on-light);
}

.page-home__about-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}

.page-home__about-kicker-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.page-home__about-kicker-col .pg-kicker {
  color: var(--pg-gold);
}

.page-home__about-rule {
  width: 4rem;
  height: 0.25rem;
  border-radius: 999px;
  background: var(--pg-gold);
}

.page-home__about-emblem {
  font-family: var(--pg-font-display);
  font-weight: 700;
  font-size: clamp(4rem, 10vw, 7rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(10, 25, 47, 0.07);
  margin-top: auto;
}

.page-home__about-title {
  font-family: var(--pg-font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.15;
  color: var(--pg-text-on-light);
  margin: 0 0 1.25rem;
}

.page-home__about-lead {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--pg-text-on-light);
  max-width: 56ch;
  margin: 0 0 1rem;
}

.page-home__about-text-col > p:not(.page-home__about-lead) {
  margin: 0;
  color: #41546b;
  line-height: 1.8;
  max-width: 62ch;
}

.page-home__about-text-col .pg-btn {
  margin-top: 1.5rem;
}

.page-home__bento {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: var(--pg-bg-dark);
}

.page-home__bento-grid {
  display: grid;
  gap: var(--home-card-gap);
}

.page-home__bento-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--home-card-gap);
  padding: clamp(1.5rem, 4vw, 2.75rem);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: var(--pg-radius-lg);
  background: var(--pg-primary-light);
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.page-home__bento-item:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 97, 0.4);
  box-shadow: var(--pg-glow);
}

.page-home__card-copy {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  flex: 1;
}

.page-home__card-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.page-home__bento-item .pg-tag {
  background: rgba(77, 208, 225, 0.14);
  color: var(--pg-cyan);
  border: 1px solid rgba(77, 208, 225, 0.28);
}

.page-home__card-index {
  font-family: var(--pg-font-display);
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1;
  color: rgba(201, 169, 97, 0.18);
}

.page-home__bento-title {
  font-family: var(--pg-font-display);
  font-weight: 700;
  font-size: clamp(1.375rem, 3vw, 1.9rem);
  line-height: 1.15;
  color: var(--pg-text);
  margin: 0;
}

.page-home__bento-text {
  margin: 0;
  max-width: 58ch;
  font-size: 0.975rem;
  line-height: 1.75;
  color: var(--pg-text-muted);
}

.page-home__bento-item .pg-btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

.page-home__card-media {
  border-radius: var(--pg-radius-md);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.22);
}

.page-home__card-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.page-home__card-media--small img {
  aspect-ratio: 16 / 9;
}

.page-home__sub-visual {
  display: grid;
  gap: 1.5rem;
}

.page-home__stat-big {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.875rem;
}

.page-home__stat-num {
  font-family: var(--pg-font-display);
  font-weight: 700;
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  line-height: 0.9;
  color: var(--pg-gold);
  text-shadow: 0 0 32px rgba(201, 169, 97, 0.25);
}

.page-home__stat-unit {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--pg-text-muted);
}

.page-home__sub-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.875rem;
}

.page-home__sub-stat {
  padding: 1rem 0.625rem;
  border-radius: var(--pg-radius-sm);
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
}

.page-home__sub-stat-value {
  display: block;
  font-family: var(--pg-font-display);
  font-weight: 700;
  font-size: 1.625rem;
  line-height: 1;
  color: var(--pg-cyan);
}

.page-home__sub-stat-label {
  display: block;
  margin-top: 0.375rem;
  font-size: 0.75rem;
  color: var(--pg-text-muted);
}

.page-home__card-media--sub img {
  aspect-ratio: 16 / 7;
}

.page-home__metrics {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: var(--pg-primary);
  border-top: 1px solid rgba(201, 169, 97, 0.25);
  border-bottom: 1px solid rgba(201, 169, 97, 0.25);
}

.page-home__metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.5rem;
  text-align: center;
}

.page-home__metric {
  padding: 0.5rem 1rem;
}

.page-home__metric-value {
  display: block;
  font-family: var(--pg-font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1;
  color: var(--pg-gold);
}

.page-home__metric-label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--pg-text-muted);
}

.page-home__insights {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: var(--pg-bg-light);
  color: var(--pg-text-on-light);
}

.page-home__insights-head {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.page-home__insights-head .pg-kicker {
  color: var(--pg-gold);
}

.page-home__insights-title {
  font-family: var(--pg-font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.15;
  color: var(--pg-text-on-light);
  margin: 0;
}

.page-home__insights-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.page-home__insights-grid {
  display: grid;
  gap: 1.5rem;
}

.page-home__insight-card {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid rgba(10, 25, 47, 0.08);
  border-radius: var(--pg-radius-md);
  background: #ffffff;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-home__insight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 97, 0.5);
  box-shadow: 0 16px 40px -16px rgba(10, 25, 47, 0.2);
}

.page-home__insight-card .pg-tag {
  background: rgba(10, 25, 47, 0.06);
  color: var(--pg-primary);
  border: 1px solid rgba(10, 25, 47, 0.12);
}

.page-home__insight-card h3 {
  font-family: var(--pg-font-display);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--pg-text-on-light);
  margin: 0;
}

.page-home__insight-card p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #41546b;
}

.page-home__text-link {
  display: inline-block;
  width: max-content;
  margin-top: auto;
  padding-bottom: 0.125rem;
  border-bottom: 2px solid rgba(201, 169, 97, 0.6);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--pg-primary);
  text-decoration: none;
  transition: color 0.25s ease, border-color 0.25s ease;
}

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

.page-home__connect {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: linear-gradient(135deg, var(--pg-primary) 0%, var(--pg-primary-light) 100%);
}

.page-home__connect-inner {
  display: grid;
  gap: 2rem;
}

.page-home__connect-copy {
  max-width: 42rem;
}

.page-home__connect-copy .pg-kicker {
  color: var(--pg-cyan);
}

.page-home__connect-title {
  font-family: var(--pg-font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.15;
  color: var(--pg-text);
  margin: 0 0 1rem;
}

.page-home__connect-text {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--pg-text-muted);
}

.page-home__connect-symbol {
  display: block;
  font-family: var(--pg-font-display);
  font-weight: 700;
  font-size: clamp(4rem, 10vw, 7rem);
  line-height: 1;
  color: var(--pg-gold);
  opacity: 0.35;
  text-align: right;
}

@media (min-width: 768px) {
  .page-home__about-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  }

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

@media (min-width: 992px) {
  .page-home__hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 24rem);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: end;
  }

  .page-home__bento-grid {
    grid-template-columns: repeat(12, 1fr);
    grid-template-areas:
      "aid aid aid aid aid aid aid aid crash crash crash crash"
      "aid aid aid aid aid aid aid aid pc pc pc pc"
      "sub sub sub sub sub sub sub sub sub sub sub sub";
  }

  .page-home__card-aid {
    grid-area: aid;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
  }

  .page-home__card-crash {
    grid-area: crash;
  }

  .page-home__card-pc {
    grid-area: pc;
  }

  .page-home__card-sub {
    grid-area: sub;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(2rem, 4vw, 3rem);
    align-items: center;
  }

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

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

  .page-home__connect-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 20rem);
    align-items: center;
  }
}
<<<PAGE_CSS_END>>>
