/* Ozark GPC product page: scoped collection presentation. */
.gpc-page {
  --gpc-ink: #101722;
  --gpc-muted: #667085;
  --gpc-line: rgba(8, 124, 167, 0.17);
  --gpc-cyan: #087ca7;
  --gpc-cyan-bright: #19a8d1;
  --gpc-metal: #90ddf3;
  --gpc-canvas: #f3fcff;
  --gpc-era: #f12682;
  --gpc-shooters: #009a5b;
  --gpc-aim: #bf3a8e;
  --gpc-shadow: 0 24px 64px rgba(31, 56, 73, 0.12);
  background:
    linear-gradient(rgba(8, 124, 167, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 124, 167, 0.045) 1px, transparent 1px),
    #fafdff;
  background-size: 44px 44px;
  color: var(--gpc-ink);
}

/* GPC access console v2: fixed proportions, layered glass, no stretched media. */
.gpc-page .gpc-hero-v2 {
  width: min(1180px, calc(100% - 40px));
  margin: 42px auto 76px;
  padding: 0;
  display: block;
  overflow: visible;
  background: transparent;
}

.gpc-page .gpc-hero-intro {
  max-width: 800px;
  margin: 0 auto 28px;
  display: grid;
  justify-items: center;
  text-align: center;
  animation: gpcReveal 620ms cubic-bezier(.22, 1, .36, 1) both;
}

.gpc-page .gpc-hero-v2 .hero-breadcrumb {
  margin: 0 0 12px;
  color: #728092;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gpc-page .gpc-hero-v2 .hero-breadcrumb a,
.gpc-page .gpc-hero-v2 .hero-tag,
.gpc-page .gpc-hero-v2 .hero-title .gradient {
  color: var(--gpc-cyan);
}

.gpc-page .gpc-hero-v2 .hero-tag {
  margin: 0 0 14px;
  padding: 7px 10px;
  border: 1px solid rgba(8, 124, 167, .2);
  border-radius: 6px;
  background: rgba(255, 255, 255, .68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .95), 0 8px 24px rgba(31, 76, 96, .06);
  backdrop-filter: blur(16px) saturate(145%);
  -webkit-backdrop-filter: blur(16px) saturate(145%);
}

.gpc-page .gpc-hero-v2 .hero-title {
  margin: 0;
  max-width: 780px;
  color: var(--gpc-ink);
  font-size: clamp(40px, 5vw, 64px);
  line-height: .98;
  letter-spacing: 0;
}

.gpc-page .gpc-hero-v2 .hero-title .gradient {
  display: inline-block;
  margin-top: 8px;
  background: linear-gradient(105deg, #087ca7 8%, #19a8d1 54%, #087ca7 92%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gpc-page .gpc-hero-v2 .hero-sub {
  max-width: 690px;
  margin: 18px 0 16px;
  color: #596779;
  font-size: 15px;
  line-height: 1.65;
}

.gpc-page .gpc-hero-v2 .hero-rating {
  margin: 0;
  padding: 9px 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(8, 124, 167, .14);
  border-radius: 7px;
  background: rgba(255, 255, 255, .7);
  box-shadow: inset 0 1px 0 #fff, 0 10px 24px rgba(31, 76, 96, .06);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
}

.gpc-page .gpc-access-console {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, .65fr);
  gap: 18px;
  align-items: start;
}

.gpc-page .gpc-showcase,
.gpc-page .gpc-purchase-panel {
  min-width: 0;
  animation: gpcReveal 720ms cubic-bezier(.22, 1, .36, 1) both;
}

.gpc-page .gpc-purchase-panel { animation-delay: 90ms; }

.gpc-page .gpc-showcase {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 10px;
  border: 1px solid rgba(8, 124, 167, .18);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .78), rgba(231, 248, 253, .58));
  box-shadow:
    0 28px 68px rgba(31, 76, 96, .12),
    inset 0 1px 0 rgba(255, 255, 255, .98),
    inset 0 -1px 0 rgba(8, 124, 167, .06);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
}

.gpc-page .gpc-showcase::after,
.gpc-page .gpc-purchase-panel .purchase-command::after,
.gpc-page .gpc-manifest::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, .7) 0%, rgba(255, 255, 255, .14) 28%, transparent 46%),
    radial-gradient(circle at 82% 2%, rgba(144, 221, 243, .2), transparent 34%);
  opacity: .72;
  transform: translate3d(0, 0, 0);
  transition: opacity 420ms ease, transform 620ms cubic-bezier(.22, 1, .36, 1);
}

.gpc-page .gpc-showcase:hover::after,
.gpc-page .gpc-purchase-panel .purchase-command:hover::after {
  opacity: .9;
  transform: translate3d(5px, -3px, 0);
}

.gpc-page .gpc-showcase > *,
.gpc-page .gpc-purchase-panel .purchase-command > *,
.gpc-page .gpc-manifest > * {
  position: relative;
  z-index: 1;
}

.gpc-page .gpc-showcase-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .92);
  border-radius: 7px;
  background:
    linear-gradient(rgba(8, 124, 167, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 124, 167, .045) 1px, transparent 1px),
    radial-gradient(circle at 50% 45%, rgba(144, 221, 243, .52), transparent 48%),
    rgba(243, 252, 255, .72);
  background-size: 36px 36px, 36px 36px, auto, auto;
  box-shadow: inset 0 0 0 1px rgba(8, 124, 167, .1), inset 0 18px 42px rgba(255, 255, 255, .68);
}

.gpc-page .gpc-showcase-stage::before {
  content: "";
  position: absolute;
  width: 54%;
  height: 44%;
  left: 23%;
  bottom: 2%;
  border-radius: 50%;
  background: rgba(8, 124, 167, .12);
  filter: blur(28px);
  transform: perspective(300px) rotateX(68deg);
}

.gpc-page .gpc-showcase-stage img {
  position: relative;
  z-index: 1;
  width: min(86%, 650px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 28px rgba(17, 46, 62, .2));
  transform: translate3d(0, 0, 0) scale(.98);
  transition: transform 560ms cubic-bezier(.22, 1, .36, 1), filter 560ms ease;
}

.gpc-page .gpc-showcase:hover .gpc-showcase-stage img {
  transform: translate3d(0, -5px, 0) scale(1.01);
  filter: drop-shadow(0 30px 34px rgba(17, 46, 62, .24));
}

.gpc-page .gpc-stage-status,
.gpc-page .gpc-showcase-stage .hero-badge-tl,
.gpc-page .gpc-stage-caption {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(8, 124, 167, .14);
  border-radius: 6px;
  background: rgba(255, 255, 255, .76);
  box-shadow: inset 0 1px 0 #fff, 0 10px 26px rgba(31, 76, 96, .08);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
}

.gpc-page .gpc-stage-status {
  top: 16px;
  right: 16px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #4e5d6d;
  font-size: 10px;
  font-weight: 760;
}

.gpc-page .gpc-stage-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00ad75;
  box-shadow: 0 0 0 4px rgba(0, 173, 117, .1);
}

.gpc-page .gpc-showcase-stage .hero-badge-tl {
  top: 16px;
  left: 16px;
}

.gpc-page .gpc-stage-caption {
  right: 16px;
  bottom: 16px;
  padding: 9px 11px;
  display: grid;
  gap: 1px;
  text-align: right;
}

.gpc-page .gpc-stage-caption strong { color: var(--gpc-ink); font-size: 12px; }
.gpc-page .gpc-stage-caption span { color: #718093; font-size: 9px; }

.gpc-page .gpc-manifest {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 10px 0 0;
  padding: 12px;
  border: 1px solid rgba(8, 124, 167, .12);
  border-radius: 7px;
  background: rgba(255, 255, 255, .6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .96);
  backdrop-filter: blur(18px) saturate(155%);
  -webkit-backdrop-filter: blur(18px) saturate(155%);
}

.gpc-page .gpc-manifest-head {
  margin: 0 0 9px;
  padding: 0 2px;
}

.gpc-page .gpc-manifest-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
}

.gpc-page .gpc-manifest-grid > span {
  min-height: 68px;
  padding: 9px;
  grid-template-columns: 30px minmax(0, 1fr);
  grid-template-rows: auto auto;
  border-radius: 6px;
  background: rgba(255, 255, 255, .72);
  box-shadow: inset 0 1px 0 #fff;
}

.gpc-page .gpc-manifest-grid i { grid-row: 1 / 3; }
.gpc-page .gpc-manifest-grid b { align-self: end; }
.gpc-page .gpc-manifest-grid em {
  align-self: start;
  overflow: hidden;
  color: #7a8697;
  font-size: 9px;
  font-style: normal;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gpc-page .gpc-purchase-panel {
  position: sticky;
  top: 92px;
}

.gpc-page .gpc-purchase-panel .purchase-command {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(8, 124, 167, .2);
  border-radius: 8px;
  background: linear-gradient(150deg, rgba(255, 255, 255, .86), rgba(232, 249, 254, .66));
  box-shadow:
    0 28px 70px rgba(31, 76, 96, .14),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 1px 0 0 rgba(255, 255, 255, .65);
  backdrop-filter: blur(24px) saturate(170%);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
}

.gpc-page .gpc-access-summary {
  margin: 16px 16px 0;
  padding: 13px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(8, 124, 167, .12);
  border-radius: 7px;
  background: rgba(255, 255, 255, .65);
  box-shadow: inset 0 1px 0 #fff;
}

.gpc-page .gpc-access-mark {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(8, 124, 167, .18);
  border-radius: 7px;
  background: linear-gradient(145deg, #fff, rgba(144, 221, 243, .34));
  color: var(--gpc-cyan);
  font-size: 11px;
  font-weight: 850;
  box-shadow: inset 0 1px 0 #fff, 0 8px 20px rgba(8, 124, 167, .1);
}

.gpc-page .gpc-access-summary div { min-width: 0; display: grid; gap: 2px; }
.gpc-page .gpc-access-summary small { color: #748194; font-size: 9px; text-transform: uppercase; letter-spacing: .06em; }
.gpc-page .gpc-access-summary strong { color: var(--gpc-ink); font-size: 14px; }

.gpc-page .gpc-purchase-panel .hero-checks {
  margin: 0;
  padding: 2px 18px 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.gpc-page .gpc-purchase-panel .hero-check {
  padding: 8px;
  border: 1px solid rgba(8, 124, 167, .1);
  border-radius: 6px;
  background: rgba(255, 255, 255, .56);
}

.gpc-page .gpc-purchase-panel .hero-cta { margin: 0; }
.gpc-page .gpc-purchase-panel .hero-promise {
  grid-template-columns: 1fr auto;
  gap: 6px 12px;
}
.gpc-page .gpc-purchase-panel .hero-promise strong { grid-column: 1; }
.gpc-page .gpc-purchase-panel .hero-promise span { grid-column: 1; font-size: 10px; }
.gpc-page .gpc-purchase-panel .hero-promise a { grid-column: 2; grid-row: 1 / 3; align-self: center; }

@keyframes gpcReveal {
  from { opacity: 0; transform: translate3d(0, 14px, 0) scale(.99); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@media (max-width: 900px) {
  .gpc-page .gpc-hero-v2 { width: min(100% - 28px, 760px); margin-top: 28px; }
  .gpc-page .gpc-access-console { grid-template-columns: 1fr; }
  .gpc-page .gpc-purchase-panel { position: static; }
}

@media (max-width: 620px) {
  .gpc-page .gpc-hero-v2 { width: min(100% - 20px, 560px); margin-bottom: 54px; }
  .gpc-page .gpc-hero-v2 .hero-title { font-size: clamp(34px, 11vw, 46px); }
  .gpc-page .gpc-hero-v2 .hero-rating { width: 100%; flex-wrap: wrap; }
  .gpc-page .gpc-hero-v2 .hero-rating .divider { display: none; }
  .gpc-page .gpc-showcase { padding: 7px; }
  .gpc-page .gpc-showcase-stage { aspect-ratio: 4 / 3; }
  .gpc-page .gpc-showcase-stage img { width: 94%; }
  .gpc-page .gpc-stage-caption { display: none; }
  .gpc-page .gpc-stage-status { top: 10px; right: 10px; }
  .gpc-page .gpc-showcase-stage .hero-badge-tl { top: 10px; left: 10px; }
  .gpc-page .gpc-manifest-head strong { display: none; }
  .gpc-page .gpc-manifest-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  .gpc-page .gpc-hero-intro,
  .gpc-page .gpc-showcase,
  .gpc-page .gpc-purchase-panel { animation: none; }
  .gpc-page .gpc-showcase-stage img,
  .gpc-page .gpc-manifest-grid > span { transition: none; }
}

.gpc-page .site-header {
  border-bottom-color: rgba(8, 124, 167, 0.14);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 34px rgba(31, 56, 73, 0.07);
}

.gpc-page .gpc-hero {
  width: min(1240px, calc(100% - 48px));
  min-height: 0;
  margin: 54px auto 80px;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 30px;
  align-items: stretch;
  background: transparent;
}

.gpc-page .gpc-visual-column,
.gpc-page .hero-info {
  min-width: 0;
}

.gpc-page .gpc-visual-column {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: minmax(410px, 1fr) auto;
  border: 1px solid rgba(8, 124, 167, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 35%, rgba(144, 221, 243, 0.35), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(236, 250, 255, 0.86));
  box-shadow: var(--gpc-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  isolation: isolate;
}

.gpc-page .gpc-visual-column::before,
.gpc-page .gpc-visual-column::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.gpc-page .gpc-visual-column::before {
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 6px;
}

.gpc-page .gpc-visual-column::after {
  width: 280px;
  height: 280px;
  right: -120px;
  top: -130px;
  border: 1px solid rgba(8, 124, 167, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(144, 221, 243, 0.07), 0 0 0 68px rgba(144, 221, 243, 0.04);
}

.gpc-page .hero-media {
  position: relative;
  min-height: 410px;
  padding: 58px 42px 34px;
  display: grid;
  place-items: center;
  overflow: visible;
  background: transparent;
  border: 0;
}

.gpc-page .hero-media::after {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  bottom: 34px;
  height: 28px;
  border-radius: 50%;
  background: rgba(22, 46, 62, 0.16);
  filter: blur(18px);
  transform: perspective(240px) rotateX(66deg);
}

.gpc-page .hero-media img {
  position: relative;
  z-index: 1;
  width: min(100%, 610px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 26px 30px rgba(20, 43, 58, 0.2));
  transform: translateZ(0);
  transition: transform 700ms cubic-bezier(.22, 1, .36, 1), filter 700ms cubic-bezier(.22, 1, .36, 1);
}

.gpc-page .gpc-visual-column:hover .hero-media img {
  transform: translate3d(0, -7px, 0) scale(1.015);
  filter: drop-shadow(0 32px 34px rgba(20, 43, 58, 0.24));
}

.gpc-page .hero-badge-tl {
  top: 20px;
  left: 20px;
  padding: 9px 12px;
  border: 1px solid rgba(8, 124, 167, 0.15);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--gpc-ink);
  box-shadow: 0 10px 24px rgba(31, 56, 73, 0.08), inset 0 1px 0 #fff;
  backdrop-filter: blur(14px) saturate(140%);
}

.gpc-page .hero-badge-tl .pill-dot {
  background: var(--gpc-cyan-bright);
}

.gpc-page .gpc-manifest {
  position: relative;
  margin: 0;
  padding: 20px;
  border: 0;
  border-top: 1px solid rgba(8, 124, 167, 0.14);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.52);
}

.gpc-page .gpc-manifest-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.gpc-page .gpc-manifest-head span {
  color: var(--gpc-cyan);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gpc-page .gpc-manifest-head strong {
  color: var(--gpc-muted);
  font-size: 12px;
  font-weight: 650;
}

.gpc-page .gpc-manifest-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.gpc-page .gpc-manifest-grid > span {
  min-height: 62px;
  padding: 10px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(8, 124, 167, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 1px 0 #fff;
  transition: transform 320ms cubic-bezier(.22, 1, .36, 1), border-color 320ms ease, box-shadow 320ms ease;
}

.gpc-page .gpc-manifest-grid > span:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 22px rgba(31, 56, 73, 0.09), inset 0 1px 0 #fff;
}

.gpc-page .gpc-manifest-grid i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  font-size: 9px;
  font-style: normal;
  font-weight: 850;
}

.gpc-page .gpc-manifest-grid b {
  color: var(--gpc-ink);
  font-size: 11px;
  line-height: 1.25;
}

.gpc-page .gpc-manifest-grid .is-basketball i { color: #c01761; background: #fff0f7; }
.gpc-page .gpc-manifest-grid .is-shooters i { color: #007945; background: #eafaf3; }
.gpc-page .gpc-manifest-grid .is-aim i { color: #9b2c75; background: #fbedf8; }
.gpc-page .gpc-manifest-grid .is-future i { color: var(--gpc-cyan); background: #eaf9fd; }

.gpc-page .hero-info {
  padding: 28px 10px 18px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gpc-page .hero-breadcrumb {
  margin-bottom: 22px;
  color: #7a8496;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.gpc-page .hero-breadcrumb a {
  color: var(--gpc-cyan);
}

.gpc-page .hero-tag {
  width: fit-content;
  margin-bottom: 16px;
  padding: 8px 11px;
  border: 1px solid rgba(8, 124, 167, 0.22);
  border-radius: 5px;
  background: rgba(243, 252, 255, 0.85);
  color: var(--gpc-cyan);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 #fff;
}

.gpc-page .hero-title {
  max-width: 680px;
  margin: 0 0 18px;
  color: var(--gpc-ink);
  font-size: clamp(42px, 4.2vw, 66px);
  line-height: .98;
  letter-spacing: 0;
}

.gpc-page .hero-title .gradient {
  display: inline-block;
  margin-top: 8px;
  color: var(--gpc-cyan);
  background: none;
  -webkit-text-fill-color: currentColor;
}

.gpc-page .hero-sub {
  max-width: 610px;
  margin: 0 0 22px;
  color: #596579;
  font-size: 16px;
  line-height: 1.65;
}

.gpc-page .hero-rating {
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: #667085;
  font-size: 12px;
}

.gpc-page .hero-rating .stars {
  color: #f3a600;
  letter-spacing: 1px;
}

.gpc-page .hero-rating .rating-text strong,
.gpc-page .hero-rating .members {
  color: var(--gpc-ink);
}

.gpc-page .hero-rating .divider {
  width: 1px;
  height: 16px;
  background: rgba(8, 124, 167, 0.2);
}

.gpc-page .purchase-command {
  overflow: hidden;
  border: 1px solid rgba(8, 124, 167, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(243, 252, 255, 0.72));
  box-shadow: 0 18px 46px rgba(31, 56, 73, 0.1), inset 0 1px 0 #fff;
}

.gpc-page .purchase-command-head {
  min-height: 46px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(8, 124, 167, 0.12);
  color: #687386;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.gpc-page .purchase-command-head strong {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #00845e;
}

.gpc-page .purchase-command-head i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00b77a;
  box-shadow: 0 0 0 4px rgba(0, 183, 122, 0.1);
}

.gpc-page .price-block {
  padding: 20px 18px 14px;
}

.gpc-page .price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 9px;
}

.gpc-page .price-now {
  color: var(--gpc-ink);
  font-size: 38px;
  line-height: 1;
  letter-spacing: 0;
}

.gpc-page .price-old {
  color: #858da0;
  font-size: 15px;
}

.gpc-page .price-save {
  padding: 5px 7px;
  border-radius: 4px;
  background: #e7f8f1;
  color: #00845e;
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.gpc-page .price-note {
  margin-top: 8px;
  color: #707a8d;
  font-size: 11px;
}

.gpc-page .compat-line {
  margin-top: 14px;
  padding: 11px 12px;
  border: 1px solid rgba(8, 124, 167, 0.12);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.72);
  color: #556174;
}

.gpc-page .compat-line svg {
  color: var(--gpc-cyan);
}

.gpc-page .compat-line a {
  color: var(--gpc-cyan);
}

.gpc-page .hero-cta {
  padding: 0 18px 16px;
  display: grid;
  gap: 8px;
}

.gpc-page .hero-cta .btn-primary,
.gpc-page .gpc-final-buy .btn-primary {
  min-height: 52px;
  border: 1px solid rgba(0, 91, 126, 0.2);
  border-radius: 6px;
  background: linear-gradient(180deg, #19a8d1, #087ca7);
  color: #fff;
  box-shadow: 0 14px 26px rgba(8, 124, 167, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition: transform 260ms cubic-bezier(.22, 1, .36, 1), box-shadow 260ms ease, filter 260ms ease;
}

.gpc-page .hero-cta .btn-primary:hover,
.gpc-page .gpc-final-buy .btn-primary:hover {
  transform: translateY(-2px);
  filter: saturate(108%);
  box-shadow: 0 18px 32px rgba(8, 124, 167, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.gpc-page .purchase-support-link {
  min-height: 42px;
  border: 1px solid rgba(8, 124, 167, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--gpc-cyan);
  font-weight: 750;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms cubic-bezier(.22, 1, .36, 1);
}

.gpc-page .purchase-support-link:hover {
  transform: translateY(-1px);
  border-color: rgba(8, 124, 167, 0.35);
  background: #fff;
}

.gpc-page .hero-promise {
  margin: 0;
  padding: 14px 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  border: 0;
  border-top: 1px solid rgba(8, 124, 167, 0.12);
  border-radius: 0;
  background: rgba(234, 249, 253, 0.55);
}

.gpc-page .hero-promise strong,
.gpc-page .hero-promise a {
  color: var(--gpc-cyan);
}

.gpc-page .hero-promise span {
  color: #6d7789;
}

.gpc-page .hero-checks {
  margin-top: 16px;
  padding: 0 4px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
}

.gpc-page .hero-check {
  color: #4f5b6e;
  font-size: 12px;
}

.gpc-page .hero-check svg {
  color: #00a873;
}

.gpc-page .gpc-library-section,
.gpc-page .gpc-compare-section,
.gpc-page .gpc-benefits-section {
  padding: 76px 24px;
  border: 0;
  background: rgba(255, 255, 255, 0.74);
}

.gpc-page .gpc-library-section {
  border-top: 1px solid rgba(8, 124, 167, 0.12);
  border-bottom: 1px solid rgba(8, 124, 167, 0.12);
}

.gpc-page .gpc-library-section .wrap,
.gpc-page .gpc-compare-section .wrap,
.gpc-page .gpc-benefits-section .wrap {
  width: min(1160px, 100%);
}

.gpc-page .section-head {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.gpc-page .section-head .kicker {
  color: var(--gpc-cyan);
}

.gpc-page .section-head h2 {
  margin: 8px 0 12px;
  color: var(--gpc-ink);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.gpc-page .section-head p {
  color: var(--gpc-muted);
  font-size: 15px;
  line-height: 1.65;
}

.gpc-page .gpc-library-stats {
  max-width: 740px;
  margin: 0 auto 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(8, 124, 167, 0.14);
  border-radius: 7px;
  background: rgba(243, 252, 255, 0.72);
  box-shadow: inset 0 1px 0 #fff;
}

.gpc-page .gpc-library-stats .stat {
  padding: 17px 14px;
  border: 0;
  border-right: 1px solid rgba(8, 124, 167, 0.12);
  background: transparent;
}

.gpc-page .gpc-library-stats .stat:last-child {
  border-right: 0;
}

.gpc-page .gpc-library-stats .big {
  color: var(--gpc-ink);
  font-size: 20px;
}

.gpc-page .gpc-library-stats .lbl {
  color: #748094;
}

.gpc-page .gpc-library-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.gpc-page .gpc-library-grid .ucard {
  position: relative;
  min-height: 190px;
  padding: 24px 20px;
  overflow: hidden;
  border: 1px solid rgba(8, 124, 167, 0.14);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 15px 34px rgba(31, 56, 73, 0.07), inset 0 1px 0 #fff;
  transition: transform 360ms cubic-bezier(.22, 1, .36, 1), box-shadow 360ms ease;
}

.gpc-page .gpc-library-grid .ucard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--card-accent, var(--gpc-cyan));
}

.gpc-page .gpc-library-grid .ucard:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px rgba(31, 56, 73, 0.11), inset 0 1px 0 #fff;
}

.gpc-page .gpc-library-grid .is-basketball { --card-accent: var(--gpc-era); background: linear-gradient(160deg, rgba(255, 243, 249, .94), rgba(255, 255, 255, .78)); }
.gpc-page .gpc-library-grid .is-shooters { --card-accent: var(--gpc-shooters); background: linear-gradient(160deg, rgba(237, 251, 245, .94), rgba(255, 255, 255, .78)); }
.gpc-page .gpc-library-grid .is-aim { --card-accent: var(--gpc-aim); background: linear-gradient(160deg, rgba(253, 241, 250, .94), rgba(255, 255, 255, .78)); }
.gpc-page .gpc-library-grid .is-future { --card-accent: var(--gpc-cyan); background: linear-gradient(160deg, rgba(239, 251, 255, .94), rgba(255, 255, 255, .78)); }

.gpc-page .gpc-library-grid .tag {
  border-radius: 5px;
  background: #fff;
  color: var(--card-accent, var(--gpc-cyan));
  box-shadow: 0 7px 16px rgba(31, 56, 73, 0.08);
}

.gpc-page .gpc-library-grid h4 {
  margin: 24px 0 10px;
  color: var(--gpc-ink);
  font-size: 19px;
}

.gpc-page .gpc-library-grid p {
  color: #697589;
  line-height: 1.55;
}

.gpc-page .gpc-compare-section {
  background: rgba(243, 252, 255, 0.58);
}

.gpc-page .gpc-compare {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  gap: 0;
  align-items: center;
}

.gpc-page .gpc-compare .compare-col {
  padding: 28px;
  border: 1px solid rgba(8, 124, 167, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 44px rgba(31, 56, 73, 0.08), inset 0 1px 0 #fff;
}

.gpc-page .gpc-compare .compare-col.win {
  border-color: rgba(8, 124, 167, 0.34);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.94), rgba(231, 248, 253, 0.82));
  box-shadow: 0 24px 56px rgba(8, 124, 167, 0.14), inset 0 1px 0 #fff;
}

.gpc-page .gpc-compare .compare-col h4,
.gpc-page .gpc-compare .compare-total {
  color: var(--gpc-ink);
}

.gpc-page .gpc-compare .compare-line,
.gpc-page .gpc-compare .compare-sub {
  color: #697589;
}

.gpc-page .gpc-compare .compare-col.win .v,
.gpc-page .gpc-compare .win-tag {
  color: var(--gpc-cyan);
}

.gpc-page .gpc-compare .win-tag {
  border-color: rgba(8, 124, 167, 0.18);
  border-radius: 5px;
  background: rgba(229, 248, 253, 0.8);
}

.gpc-page .gpc-compare .compare-vs {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  margin: auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(8, 124, 167, 0.2);
  border-radius: 50%;
  background: #fff;
  color: var(--gpc-cyan);
  box-shadow: 0 10px 24px rgba(31, 56, 73, 0.12);
  font-size: 10px;
  font-weight: 850;
}

.gpc-page .gpc-benefits-section {
  padding-top: 32px;
  padding-bottom: 72px;
  background: rgba(255, 255, 255, 0.74);
}

.gpc-page .gpc-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(8, 124, 167, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 38px rgba(31, 56, 73, 0.07), inset 0 1px 0 #fff;
}

.gpc-page .gpc-benefits .step {
  min-height: 136px;
  padding: 24px 20px;
  border: 0;
  border-right: 1px solid rgba(8, 124, 167, 0.12);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.gpc-page .gpc-benefits .step:last-child {
  border-right: 0;
}

.gpc-page .gpc-benefits h4 {
  color: var(--gpc-ink);
}

.gpc-page .gpc-benefits p {
  color: #697589;
}

.gpc-page .gpc-final-cta {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto 80px;
  padding: 30px 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  border: 1px solid rgba(8, 124, 167, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 0%, rgba(144, 221, 243, 0.28), transparent 34%),
    rgba(255, 255, 255, 0.82);
  color: var(--gpc-ink);
  box-shadow: var(--gpc-shadow), inset 0 1px 0 #fff;
}

.gpc-page .gpc-final-copy > span {
  color: var(--gpc-cyan);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.gpc-page .gpc-final-copy h2 {
  margin: 7px 0 8px;
  color: var(--gpc-ink);
  font-size: 30px;
  letter-spacing: 0;
}

.gpc-page .gpc-final-copy p,
.gpc-page .gpc-final-buy .cta-pills {
  color: #697589;
}

.gpc-page .gpc-final-buy {
  min-width: 330px;
}

.gpc-page .gpc-final-buy .btn-primary {
  width: 100%;
}

.gpc-page .product-reviews {
  border-top-color: rgba(8, 124, 167, 0.14);
  background: rgba(243, 252, 255, 0.54);
}

.gpc-page .product-reviews-shell,
.gpc-page .product-review-report,
.gpc-page .product-review-scoreboard {
  border-color: rgba(8, 124, 167, 0.14);
}

.gpc-page .product-review-report {
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 34px rgba(31, 56, 73, 0.07), inset 0 1px 0 #fff;
}

.gpc-page .gpc-hero,
.gpc-page .gpc-library-section .wrap,
.gpc-page .gpc-compare-section .wrap,
.gpc-page .gpc-benefits-section .wrap,
.gpc-page .gpc-final-cta,
.gpc-page .product-reviews-shell {
  animation: gpcReveal 720ms cubic-bezier(.22, 1, .36, 1) both;
}

.gpc-page .gpc-library-section .wrap { animation-delay: 80ms; }
.gpc-page .gpc-compare-section .wrap { animation-delay: 120ms; }
.gpc-page .gpc-benefits-section .wrap { animation-delay: 160ms; }
.gpc-page .gpc-final-cta { animation-delay: 200ms; }

@keyframes gpcReveal {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
  .gpc-page .gpc-hero {
    grid-template-columns: 1fr;
    width: min(760px, calc(100% - 32px));
    margin-top: 32px;
  }

  .gpc-page .hero-info {
    padding: 8px 4px 0;
  }

  .gpc-page .gpc-library-grid,
  .gpc-page .gpc-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gpc-page .gpc-benefits .step:nth-child(2) {
    border-right: 0;
  }

  .gpc-page .gpc-benefits .step:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(8, 124, 167, 0.12);
  }

  .gpc-page .gpc-final-cta {
    grid-template-columns: 1fr;
  }

  .gpc-page .gpc-final-buy {
    min-width: 0;
  }
}

/* Keep the v2 console above legacy product-page rules loaded earlier in this file. */
.gpc-page .gpc-hero-v2 .gpc-manifest {
  margin: 10px 0 0;
  padding: 12px;
  border: 1px solid rgba(8, 124, 167, .12);
  border-radius: 7px;
  background: rgba(255, 255, 255, .6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .96);
}

.gpc-page .gpc-hero-v2 .gpc-manifest-head { margin: 0 0 9px; padding: 0 2px; }
.gpc-page .gpc-hero-v2 .gpc-manifest-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 7px; }
.gpc-page .gpc-hero-v2 .gpc-manifest-grid > span {
  min-height: 68px;
  padding: 9px;
  grid-template-columns: 30px minmax(0, 1fr);
  grid-template-rows: auto auto;
  border-radius: 6px;
  background: rgba(255, 255, 255, .72);
}
.gpc-page .gpc-hero-v2 .gpc-manifest-grid i { grid-row: 1 / 3; }
.gpc-page .gpc-hero-v2 .gpc-manifest-grid em {
  align-self: start;
  overflow: hidden;
  color: #7a8697;
  font-size: 9px;
  font-style: normal;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 620px) {
  .gpc-page .gpc-hero-v2 .gpc-manifest-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .gpc-page .gpc-hero {
    width: calc(100% - 24px);
    margin: 20px auto 56px;
    gap: 24px;
  }

  .gpc-page .gpc-visual-column {
    grid-template-rows: auto auto;
  }

  .gpc-page .hero-media {
    min-height: 290px;
    padding: 54px 18px 24px;
  }

  .gpc-page .hero-media img {
    width: min(100%, 430px);
  }

  .gpc-page .gpc-manifest {
    padding: 14px;
  }

  .gpc-page .gpc-manifest-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .gpc-page .gpc-manifest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gpc-page .hero-title {
    font-size: clamp(38px, 12vw, 50px);
  }

  .gpc-page .hero-rating {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .gpc-page .hero-rating .divider {
    display: none;
  }

  .gpc-page .hero-promise {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .gpc-page .hero-checks,
  .gpc-page .gpc-library-grid,
  .gpc-page .gpc-benefits {
    grid-template-columns: 1fr;
  }

  .gpc-page .gpc-library-section,
  .gpc-page .gpc-compare-section,
  .gpc-page .gpc-benefits-section {
    padding: 54px 12px;
  }

  .gpc-page .gpc-library-stats {
    grid-template-columns: 1fr;
  }

  .gpc-page .gpc-library-stats .stat {
    border-right: 0;
    border-bottom: 1px solid rgba(8, 124, 167, 0.12);
  }

  .gpc-page .gpc-library-stats .stat:last-child {
    border-bottom: 0;
  }

  .gpc-page .gpc-compare {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gpc-page .gpc-compare .compare-vs {
    margin: -2px auto;
  }

  .gpc-page .gpc-benefits .step,
  .gpc-page .gpc-benefits .step:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(8, 124, 167, 0.12);
  }

  .gpc-page .gpc-benefits .step:last-child {
    border-bottom: 0;
  }

  .gpc-page .gpc-final-cta {
    width: calc(100% - 24px);
    padding: 24px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gpc-page .gpc-hero,
  .gpc-page .gpc-library-section .wrap,
  .gpc-page .gpc-compare-section .wrap,
  .gpc-page .gpc-benefits-section .wrap,
  .gpc-page .gpc-final-cta,
  .gpc-page .product-reviews-shell {
    animation: none;
  }

  .gpc-page .hero-media img,
  .gpc-page .gpc-manifest-grid > span,
  .gpc-page .gpc-library-grid .ucard,
  .gpc-page .hero-cta .btn-primary,
  .gpc-page .purchase-support-link {
    transition: none;
  }
}

/* Final v2 precedence guard. */
.gpc-page .gpc-hero-v2 .gpc-manifest {
  margin: 10px 0 0;
  padding: 12px;
  border: 1px solid rgba(8, 124, 167, .12);
  border-radius: 7px;
  background: rgba(255, 255, 255, .6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .96);
}
.gpc-page .gpc-hero-v2 .gpc-manifest-head { margin: 0 0 9px; padding: 0 2px; }
.gpc-page .gpc-hero-v2 .gpc-manifest-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 7px; }
.gpc-page .gpc-hero-v2 .gpc-manifest-grid > span {
  min-height: 68px;
  padding: 9px;
  grid-template-columns: 30px minmax(0, 1fr);
  grid-template-rows: auto auto;
  border-radius: 6px;
  background: rgba(255, 255, 255, .72);
}
.gpc-page .gpc-hero-v2 .gpc-manifest-grid i { grid-row: 1 / 3; }
.gpc-page .gpc-hero-v2 .gpc-manifest-grid em {
  align-self: start;
  overflow: hidden;
  color: #7a8697;
  font-size: 9px;
  font-style: normal;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 620px) {
  .gpc-page .gpc-hero-v2 .gpc-manifest-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
