.hub-page {
  --hub-card-min: 420px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hub-hero {
  min-height: calc(100vh - var(--header));
  display: flex;
  align-items: flex-start;
  padding-top: clamp(28px, 5vw, 72px);
}

.hub-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.6vw, 36px);
}

.hub-choice-card {
  position: relative;
  min-height: min(610px, 68vh);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #090a0b;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hub-choice-card::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(3, 3, 4, 0.08), rgba(3, 3, 4, 0.42) 42%, rgba(3, 3, 4, 0.9)),
    radial-gradient(circle at 70% 24%, rgba(209, 255, 0, 0.16), transparent 26%);
  content: "";
}

.hub-choice-card::after {
  position: absolute;
  inset: auto 28px 28px auto;
  z-index: 4;
  width: 42px;
  height: 42px;
  border-right: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
  content: "";
  transform: rotate(-45deg);
  transition: transform 180ms ease;
}

.hub-choice-card:hover::after,
.hub-choice-card:focus-visible::after {
  transform: translateX(8px) rotate(-45deg);
}

.hub-choice-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
}

.hub-choice-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
}

.hub-choice-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  transform: scale(1.03);
  transition: transform 360ms ease;
}

.hub-choice-card:hover img {
  transform: scale(1.08);
}

.hub-choice-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: grid;
  gap: 14px;
  padding: clamp(26px, 3vw, 44px);
}

.hub-choice-content strong {
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 50px);
  font-weight: 800;
  line-height: 1.1;
  text-wrap: balance;
}

.hub-choice-content span:not(.eyebrow):not(.hub-choice-cta) {
  max-width: 620px;
  color: rgba(246, 247, 243, 0.75);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.6;
}

.hub-choice-cta {
  width: fit-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(209, 255, 0, 0.1);
  color: var(--accent);
  padding: 8px 13px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.hub-choice-apparel .hub-choice-media {
  background:
    radial-gradient(circle at 72% 30%, rgba(209, 255, 0, 0.2), transparent 20%),
    radial-gradient(circle at 20% 70%, rgba(64, 158, 255, 0.18), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 44%),
    #101113;
}

.hub-apparel-visual {
  position: absolute;
  inset: 0;
  display: block;
}

.hub-apparel-visual::before {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(209, 255, 0, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(209, 255, 0, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
}

.hub-pad {
  position: absolute;
  top: 22%;
  left: 14%;
  width: 58%;
  height: 26%;
  border-radius: 50% 50% 44% 44% / 54% 54% 40% 40%;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(209, 255, 0, 0.44), transparent 14%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.035));
  filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.5));
  transform: rotate(-9deg);
}

.hub-jersey {
  position: absolute;
  right: 7%;
  bottom: 8%;
  width: 52%;
  height: 52%;
  clip-path: polygon(28% 0, 42% 12%, 50% 28%, 58% 12%, 72% 0, 100% 18%, 82% 40%, 75% 34%, 75% 100%, 25% 100%, 25% 34%, 18% 40%, 0 18%);
  background:
    linear-gradient(135deg, rgba(209, 255, 0, 0.94), rgba(66, 214, 194, 0.42)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.46);
}

@media (max-width: 980px) {
  .hub-choice-grid {
    grid-template-columns: 1fr;
  }

  .hub-choice-card {
    min-height: 520px;
  }
}

@media (max-width: 640px) {
  .hub-hero {
    min-height: calc(100vh - 126px);
    padding-top: 20px;
  }

  .hub-choice-card {
    min-height: 470px;
  }

  .hub-choice-content strong {
    font-size: clamp(28px, 10vw, 38px);
  }
}
