/* ============================================
   PROCARTHY — "The Louis Vuitton of Soccer"
   Upper-echelon. Jordan-esque. Not for everyone.
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #050505;
  --dark: #0a0a0a;
  --dark-card: #111111;
  --dark-card-hover: #161616;
  --white: #f0f0f0;
  --pure-white: #ffffff;
  --gray: #555555;
  --light-gray: #b0b0b0;
  --accent: #e6007e;
  --accent-light: #ff1a93;
  --accent-glow: rgba(230, 0, 126, 0.3);
  --font-body: 'Inter', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --nav-height: 72px;
  --container-width: 1400px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior-x: none;
}

/* Film grain */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 48px;
}

::selection { background: var(--accent); color: var(--pure-white); }

/* --- Preloader --- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.6s ease 0.2s, visibility 0s 0.8s;
}

.preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-mark {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pure-white);
  opacity: 0;
  transform: translateY(12px);
  animation: preloaderIn 0.6s var(--ease-out) 0.2s forwards;
}

.preloader-line {
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}

.preloader-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  animation: preloaderLine 1.4s var(--ease-smooth) 0.4s forwards;
  transform: scaleX(0);
  transform-origin: left;
}

@keyframes preloaderIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes preloaderLine {
  to { transform: scaleX(1); }
}

/* --- Typography --- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(4.5rem, 10vw, 10rem); }
h2 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }

h4 {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

p {
  color: var(--light-gray);
  line-height: 1.8;
  font-size: 0.9375rem;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--light-gray);
  display: inline-block;
  margin-bottom: 28px;
}

.hero .eyebrow,
.hero .hero-subtitle,
.hero .hero-cta-row,
.hero .hero-stats .label,
.hero .hero-scroll-hint {
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 0, 0, 0.5);
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: all 0.5s var(--ease-out);
  background: transparent;
  opacity: 0;
  transform: translateY(-10px);
}

.nav.visible {
  opacity: 1;
  transform: translateY(0);
}

.nav.scrolled {
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(40px) saturate(1.8);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-logo .logo-mark {
  display: none;
}

.nav-logo .nav-logo-img {
  height: 180px;
  width: auto;
  margin-left: -24px;
}

.footer-brand .nav-logo .nav-logo-img {
  height: 28px;
}

.preloader-logo {
  width: 200px;
  height: 200px;
  object-fit: contain;
  animation: preloaderIn 0.6s var(--ease-out) 0.2s forwards;
  opacity: 0;
  transform: translateY(12px);
}

@keyframes preloaderSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links a {
  padding: 8px 20px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  color: rgba(255, 255, 255, 0.55);
}

.nav-links a:hover { color: var(--white); }

.nav-links a.active { color: var(--pure-white); }

.nav-cta {
  margin-left: 16px !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  border-radius: 0 !important;
  padding: 10px 24px !important;
  transition: all 0.4s ease !important;
}

.nav-cta:hover {
  border-color: var(--pure-white) !important;
  background: var(--pure-white) !important;
  color: var(--black) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-hamburger span {
  width: 28px;
  height: 1px;
  background: var(--white);
  transition: all 0.4s var(--ease-out);
}

.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* --- Ethereal Shadow Overlay --- */
.ethereal-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.14;
  mix-blend-mode: screen;
}

.ethereal-filtered {
  position: absolute;
  inset: -60px;
}

.ethereal-color {
  width: 100%;
  height: 100%;
  background-color: rgba(230, 0, 126, 0.6);
  -webkit-mask-image: url('https://framerusercontent.com/images/ceBGguIpUU8luwByxuQz79t7To.png');
  mask-image: url('https://framerusercontent.com/images/ceBGguIpUU8luwByxuQz79t7To.png');
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.ethereal-noise {
  position: absolute;
  inset: 0;
  background-image: url("https://framerusercontent.com/images/g0QcWrxr87K0ufOxIUFBakwYA8.png");
  background-size: 240px;
  background-repeat: repeat;
  opacity: 0.03;
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transform: scale(1.1);
  transition: transform 12s ease-out;
}

.hero.loaded .hero-bg img,
.hero.loaded .hero-bg video {
  transform: scale(1);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(5,5,5,0.5) 0%,
      rgba(5,5,5,0.05) 35%,
      rgba(5,5,5,0.4) 65%,
      rgba(5,5,5,1) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 64px;
  width: 100%;
}

/* Clip-path text reveal */
.hero-line {
  overflow: hidden;
}

.hero-line-inner {
  display: block;
  transform: translateY(110%);
  transition: transform 1s var(--ease-smooth);
}

.hero.loaded .hero-line-inner {
  transform: translateY(0);
}

.hero.loaded .hero-line:nth-child(2) .hero-line-inner { transition-delay: 0.12s; }

.hero h1 {
  margin-bottom: 0;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-subtitle {
  max-width: 420px;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 32px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s var(--ease-out) 0.5s;
}

.hero.loaded .hero-subtitle {
  opacity: 1;
  transform: translateY(0);
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s var(--ease-out) 0.65s;
}

.hero.loaded .hero-cta-row {
  opacity: 1;
  transform: translateY(0);
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 80px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  opacity: 0;
  transition: opacity 0.8s ease 0.9s;
}

.hero.loaded .hero-bottom { opacity: 1; }

.hero-stats {
  display: flex;
  gap: 56px;
}

.hero-stat .number {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  color: var(--pure-white);
}

.hero-stat .number sup {
  font-size: 0.875rem;
  color: var(--accent);
  vertical-align: super;
}

.hero-stat .label {
  font-size: 0.5625rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: 8px;
}

.hero-scroll-hint {
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-scroll-hint .scroll-line {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

.hero-scroll-hint .scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  animation: scroll-pulse 2s ease infinite;
}

@keyframes scroll-pulse {
  0% { top: -100%; }
  50% { top: 100%; }
  100% { top: 100%; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.5s var(--ease-out);
  position: relative;
}

.btn-primary {
  background: var(--pure-white);
  color: var(--black);
  text-shadow: none;
}

.btn-primary:hover {
  background: var(--accent);
  color: var(--pure-white);
  text-shadow: none;
}

.btn-ghost {
  background: transparent;
  color: var(--light-gray);
  border: 1px solid rgba(255,255,255,0.12);
}

.btn-ghost:hover {
  border-color: var(--pure-white);
  color: var(--pure-white);
}

.btn .arrow {
  transition: transform 0.4s var(--ease-out);
  font-size: 1rem;
}

.btn:hover .arrow {
  transform: translateX(4px);
}

/* --- Sections --- */
section {
  padding: 160px 0;
  position: relative;
}

section.compact { padding: 80px 0; }
section.flush { padding: 0; }

.section-header {
  margin-bottom: 80px;
  max-width: 700px;
}

.section-header h2 { margin-bottom: 24px; }
.section-header p { font-size: 1rem; }

.section-header.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* --- Marquee --- */
.marquee-section {
  padding: 24px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.marquee-track {
  display: flex;
  gap: 100px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

.marquee-track span {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  flex-shrink: 0;
}

.marquee-track span.accent {
  color: var(--accent);
  opacity: 0.5;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Split Section --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-height: 520px;
  overflow: hidden;
}

.split-media {
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 1.2s var(--ease-out);
}

.split-media:hover img {
  transform: scale(1.02);
}

/* Per-image positioning — desktop */
.split-mathis { max-height: none !important; overflow: visible !important; align-items: stretch; }
.split-mathis .split-media { background: var(--black); display: flex; align-items: center; justify-content: center; }
.split-mathis .split-media img { width: 100% !important; height: auto !important; max-height: 600px; object-fit: contain !important; object-position: center center !important; }
.split-mathis .split-media:hover img { transform: none !important; }
.mathis-caption {
  font-family: var(--font-body);
  font-size: 0.5625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--light-gray);
  grid-column: 1 / -1;
  padding: 5px 0 0 48px;
  margin: 0;
  order: 3;
}
.vincent-img { object-position: center 55% !important; }
.dan-img { object-position: right 40% !important; }

.story-hero-img {
  object-position: center -5% !important;
}

.story-hero-mobile {
  display: none;
}

@media (max-width: 768px) {
  .story-hero-desktop { display: none !important; }
  .story-hero-mobile { display: block !important; object-position: center center; }
}

.split-media-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: var(--font-body);
  font-size: 0.5625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pure-white);
  z-index: 1;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}

.split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 80px;
}

.split-text h2 { margin-bottom: 20px; }

.split-text p {
  margin-bottom: 12px;
  max-width: 420px;
}

.split-text .btn {
  margin-top: 28px;
  align-self: flex-start;
}

/* --- Feature Cards --- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.03);
}

.feature-card {
  padding: 72px 56px;
  background: var(--black);
  position: relative;
  overflow: hidden;
  transition: background 0.6s ease;
}

.feature-card:hover {
  background: var(--dark-card);
}

.feature-card .number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: var(--pure-white);
  opacity: 0.12;
  line-height: 1;
  margin-bottom: 32px;
}

.feature-card h3 {
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.feature-card p {
  font-size: 0.875rem;
  max-width: 360px;
}

/* Accent line on hover */
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.8s var(--ease-out);
}

.feature-card:hover::after { width: 100%; }

/* --- Stats --- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.stat-block {
  padding: 64px 40px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.04);
}

.stat-block:last-child { border-right: none; }

.stat-block .number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--pure-white);
}

.stat-block .number sup {
  font-size: 0.875rem;
  color: var(--accent);
}

.stat-block .label {
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gray);
  margin-top: 12px;
}

/* --- Accent Band --- */
.accent-band {
  background: var(--dark-card);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.accent-band h2 { color: var(--pure-white); }
.accent-band p { color: var(--light-gray); }

/* --- Route Map --- */
.route-map {
  margin-top: 72px;
  position: relative;
  padding: 0 24px;
}

.route-stops {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.route-line {
  position: absolute;
  top: 5px;
  left: 48px;
  right: 48px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 0;
}

.route-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--accent), rgba(230, 0, 126, 0.2) 50%, var(--accent));
  opacity: 0.4;
}

.route-stop {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex: 1;
  cursor: default;
}

.route-node {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  transition: all 0.4s ease;
  position: relative;
}

.route-stop:hover .route-node {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(230, 0, 126, 0.6), 0 0 30px rgba(230, 0, 126, 0.2);
}

.route-stop:hover .route-name {
  color: var(--pure-white);
}

.route-name {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.4s ease;
  text-align: center;
}

@media (max-width: 768px) {
  .route-stops { flex-wrap: wrap; gap: 40px; justify-content: center; }
  .route-stop { flex: 0 0 calc(33.33% - 28px); }
  .route-line { display: none; }
}

@media (max-width: 480px) {
  .route-stop { flex: 0 0 calc(50% - 20px); }
}

/* --- Locations Strip (legacy) --- */
.locations-strip {
  display: flex;
  gap: 0;
}

.location-tag {
  padding: 20px 40px;
  border: 1px solid rgba(255,255,255,0.06);
  border-right: none;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.5s var(--ease-out);
  cursor: pointer;
  color: var(--gray);
}

.location-tag:last-child { border-right: 1px solid rgba(255,255,255,0.06); }

.location-tag:hover { color: var(--white); background: rgba(255,255,255,0.02); }

.location-tag.active {
  background: var(--pure-white);
  border-color: var(--pure-white);
  color: var(--black);
}

/* --- Player Grid --- */
.player-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.player-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--dark-card);
  cursor: pointer;
}

.player-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transform: scale(1.15);
  transition: all 0.8s var(--ease-out);
  filter: grayscale(100%) contrast(1.1);
}

/* Per-player image adjustments — Pro */
.player-card img[alt="Neil Pierre"] { object-position: center 55%; }
.player-card img[alt="Ethan Scally"] { object-position: center 55%; }
.player-card img[alt="Javen Romero"] { object-position: center 0%; }
.player-card img[alt="Grayson Doody"] { object-position: center 30%; transform: scale(1.6); }
.player-card:hover img[alt="Grayson Doody"] { transform: scale(1.6); }
.player-card img[alt="Skylar Kaplan"] { object-position: center 30%; transform: scale(1.6); }
.player-card:hover img[alt="Skylar Kaplan"] { transform: scale(1.6); }

/* Per-player image adjustments — NCAA & Youth */
.player-card img[alt="Grace Murray"] { object-position: center 40%; }
/* Players with custom overrides (no manually-cropped photo yet) */
.player-card img[alt="Stella Barajas"] { object-position: center 10%; }
.player-card img[alt="Sami Ruiz"] { object-position: center 30%; }
.player-card img[alt="Kobe Teofilo"] { object-position: center 15%; }
.player-card img[alt="Izzy Casana"] { object-position: center 45%; }
.player-card img[alt="Nico Shin"] { object-position: center 30%; }
.player-card img[alt="Ella Weil"] { object-position: center 10%; }
.player-card img[alt="Matteo Crisera"] { object-position: center 10%; }
.player-card img[alt="Payton Norman"] { object-position: center 45%; }
.player-card img[alt="Reese Kennel"] { object-position: center 15%; }
.player-card img[alt="Shannon Davidson"] { object-position: center 30%; }
.player-card img[alt="Yaseen Ads"] { object-position: center 30%; }
.player-card img[alt="Aaron Meono"] { object-position: center 40%; transform: scale(1.5); }
.player-card:hover img[alt="Aaron Meono"] { transform: scale(1.5); }
.player-card img[alt="TJ Dilley"] { object-position: center 35%; }
.player-card img[alt="Sophia Smelich"] { object-position: center 30%; }
.player-card img[alt="Ollie Knotek"] { object-position: center 15%; }
.player-card img[alt="Justin Cuevas"] { object-position: center 35%; }
.player-card img[alt="Brazil Crockett"] { object-position: center 25%; transform: scale(1.7); }
.player-card:hover img[alt="Brazil Crockett"] { transform: scale(1.7); }
.player-card img[alt="Ruth Ciko"] { object-position: center 30%; transform: scale(2); }
.player-card:hover img[alt="Ruth Ciko"] { transform: scale(2); }
.player-card img[alt="Mason Dimitrijevic"] { object-position: center 22%; transform: scale(1.7); }
.player-card:hover img[alt="Mason Dimitrijevic"] { transform: scale(1.7); }

.player-card:hover img {
  filter: grayscale(0%) contrast(1);
  transform: scale(1.2);
}

.player-placeholder {
  width: 100%;
  height: 100%;
  background: var(--dark-card);
  display: flex;
  align-items: center;
  justify-content: center;
}

.player-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(5,5,5,0.95));
  opacity: 1;
  transition: opacity 0.6s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.player-card:has(img) .player-card-overlay { opacity: 0; }
.player-card:has(img):hover .player-card-overlay { opacity: 1; }

.player-card-overlay h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.player-card-overlay span {
  font-size: 0.75rem;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

/* --- Process Steps --- */
.process-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.03);
}

.process-card {
  background: var(--black);
  padding: 72px 48px;
  position: relative;
  overflow: hidden;
  transition: background 0.5s ease;
}

.process-card:hover { background: var(--dark-card); }

.process-card .step-num {
  font-family: var(--font-display);
  font-size: 7rem;
  font-weight: 700;
  color: var(--pure-white);
  opacity: 0.12;
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 24px;
}

.process-card h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.process-card p {
  font-size: 0.875rem;
  max-width: 320px;
}

.process-card .step-line {
  width: 32px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 32px;
}

/* --- FAQ --- */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.faq-question:hover { color: var(--pure-white); }

.faq-question .icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.5s var(--ease-out);
  flex-shrink: 0;
  color: var(--gray);
}

.faq-item.open .faq-question .icon {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out);
}

.faq-item.open .faq-answer { max-height: 200px; }

.faq-answer p {
  padding-bottom: 32px;
  font-size: 0.9375rem;
  max-width: 600px;
}

/* --- Image Break --- */
.image-break {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

.image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.image-break::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, var(--black));
}

.image-break-content {
  position: absolute;
  bottom: 64px;
  left: 48px;
  z-index: 1;
  max-width: 600px;
}

.image-break-content h2 { margin-bottom: 16px; }

/* --- Shop --- */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.shop-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.04);
  transition: border-color 0.4s ease, transform 0.4s ease;
}

.shop-card:hover {
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.shop-card-img {
  aspect-ratio: 1 / 1;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.shop-coming-soon {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--light-gray);
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,0.1);
}

.shop-card-info {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.shop-card-info h4 {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--white);
}

.shop-price {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--accent);
}

@media (max-width: 768px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 480px) {
  .shop-grid { grid-template-columns: 1fr; }
}

/* --- CTA Section --- */
.cta-section {
  text-align: center;
  padding: 200px 0;
  position: relative;
}

.cta-section h2 { margin-bottom: 24px; }

.cta-section p {
  max-width: 440px;
  margin: 0 auto 48px;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

/* --- Footer --- */
.footer {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 80px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.footer-brand p {
  font-size: 0.8125rem;
  margin-top: 20px;
  max-width: 280px;
  color: var(--gray);
}

.footer-col h4 {
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gray);
  margin-bottom: 24px;
  font-weight: 600;
}

.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 0.8125rem;
  color: var(--light-gray);
  transition: color 0.3s ease;
}

.footer-col a:hover { color: var(--pure-white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.04);
  font-size: 0.6875rem;
  color: var(--gray);
  letter-spacing: 0.05em;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-gray);
  transition: all 0.4s var(--ease-out);
}

.footer-socials a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-socials a:hover {
  background: var(--pure-white);
  border-color: var(--pure-white);
  color: var(--black);
}

.footer-watermark {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 12rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.08);
  text-align: center;
  margin-top: 48px;
  letter-spacing: -0.04em;
  user-select: none;
}

/* --- Contact Form --- */
.form-field {
  padding: 18px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 0.9375rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.4s ease;
  width: 100%;
  border-radius: 0;
}

.form-field:focus {
  border-color: var(--accent);
}

.form-field::placeholder { color: var(--gray); }
select.form-field { color: var(--gray); }
select.form-field.selected { color: var(--white); }

.form-grid {
  display: grid;
  gap: 24px;
  margin-top: 56px;
}

.form-name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }

/* --- Custom Cursor --- */
.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--pure-white);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: difference;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  transition: all 0.25s ease;
}

.cursor-ring.hover {
  width: 56px;
  height: 56px;
  border-color: rgba(255,255,255,0.4);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  section { padding: 120px 0; }
  .split { grid-template-columns: 1fr; }
  .split-text { padding: 60px 0; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stats-row .stat-block:nth-child(2) { border-right: none; }
  .process-row { grid-template-columns: 1fr; }
  .player-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .locations-strip { flex-wrap: wrap; }
  .location-tag { border-right: 1px solid rgba(255,255,255,0.06); }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  section { padding: 48px 0; }
  section.compact { padding: 32px 0; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100dvh;
    background: var(--black);
    flex-direction: column;
    align-items: flex-start;
    padding: 120px 32px 40px;
    gap: 0;
    transition: right 0.6s var(--ease-out);
    overscroll-behavior: contain;
  }

  .nav-links.open { right: 0; }

  .nav-links a {
    width: 100%;
    padding: 20px 0;
    font-size: 1.5rem;
    text-transform: none;
    letter-spacing: -0.01em;
    font-family: var(--font-display);
    font-weight: 700;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }

  .nav-links .nav-cta {
    border: none !important;
    margin-left: 0 !important;
    padding: 20px 0 !important;
    font-family: var(--font-display) !important;
    font-size: 1.5rem !important;
    color: var(--accent) !important;
    background: none !important;
  }

  .nav-hamburger { display: flex; }

  /* Hero — respects inline min-height on sub-pages */
  .hero { min-height: 100vh; align-items: stretch; }
  .hero[style*="min-height: 60vh"] { min-height: 55vh !important; }
  .hero[style*="min-height: 70vh"] { min-height: 60vh !important; }
  .hero-content { padding-bottom: 16px; padding-top: 80px; display: flex; flex-direction: column; }
  .hero h1 { font-size: clamp(2.5rem, 10vw, 3.5rem); }
  .hero-subtitle { font-size: 0.8125rem; margin-top: auto; max-width: 100%; }
  /* Sub-page heroes: push title block to bottom of hero */
  .hero[style*="min-height"] .hero-content .eyebrow { margin-top: auto; margin-bottom: 12px; }
  .hero[style*="min-height"] .hero-subtitle { margin-top: 16px; }
  .hero-bg img,
  .hero-bg video { object-position: center center !important; }
  .hero-stats { display: flex; flex-wrap: nowrap; gap: 24px; }
  .hero-stat .number { font-size: 1.25rem; }
  .hero-stat .label { font-size: 0.4375rem; letter-spacing: 0.15em; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 16px; margin-top: 32px; padding-top: 0; border-top: none; }
  .hero-scroll-hint { display: none; }
  .hero-cta-row { margin-top: 40px; }
  .hero-cta-row .btn { padding: 10px 20px; font-size: 0.625rem; }

  /* Feature cards - 2 column, compact */
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-card { padding: 24px 16px; }
  .feature-card .number { font-size: 2.5rem; margin-bottom: 12px; }
  .feature-card h3 { font-size: 0.9375rem; margin-bottom: 6px; }
  .feature-card p { font-size: 0.75rem; line-height: 1.5; }

  /* Split sections - proper stacking */
  .split { min-height: auto !important; grid-template-columns: 1fr; }
  .split[style*="direction: rtl"] { direction: ltr !important; }
  .split[style*="direction: rtl"] > * { direction: ltr !important; }
  .split, .split-mathis { max-height: none; overflow: visible; }
  .split-media { height: 70vw; min-height: 240px; max-height: 340px; }
  .split-media img { object-fit: cover !important; object-position: center 45% !important; }
  /* Mathis full-body — needs more height to show head + feet */
  .split-media:has(.mathis-img) { height: auto; max-height: none; min-height: 0; }
  .mathis-img { height: auto !important; width: 100% !important; object-fit: contain !important; object-position: center center !important; display: block; }
  .mathis-caption { order: 2; padding: 6px 20px 0; grid-column: 1; }
  .split-mathis .split-text { order: 3; }
  .vincent-img { object-position: center 45% !important; }
  .dan-img { object-position: right 40% !important; }
  .split-text { padding: 32px 20px; }
  .split-text h2 { font-size: 1.5rem; margin-bottom: 16px; }
  .split-text p { font-size: 0.8125rem; margin-bottom: 10px; }
  .split-text .btn { margin-top: 20px; }
  .split-media-caption { bottom: 10px; left: 12px; font-size: 0.5rem; }

  /* Stats — 2-col grid, compact */
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-block { padding: 24px 12px; }
  .stat-block .number { font-size: clamp(1.5rem, 5vw, 2rem); }
  .stat-block .label { font-size: 0.5rem; }
  /* For 6-item stats (story page locations): use 3-col so rows are even */
  .stats-row:has(.stat-block:nth-child(5)) { grid-template-columns: repeat(3, 1fr); }
  .stats-row:has(.stat-block:nth-child(5)) .stat-block { padding: 20px 8px; }
  .stats-row:has(.stat-block:nth-child(5)) .stat-block .number { font-size: clamp(0.875rem, 3vw, 1.25rem) !important; }

  /* Image break — taller to show more content */
  .image-break { height: 45vh; min-height: 260px; }
  .image-break-content { bottom: 24px; left: 20px; right: 20px; }
  .image-break-content h2 { font-size: 1.5rem; }
  .image-break-content p { font-size: 0.75rem; }

  /* CTA - tighter */
  .cta-section { padding: 64px 0; }
  .cta-section h2 { font-size: 1.75rem; }

  /* Process cards — stacked */
  .process-row { grid-template-columns: 1fr; gap: 0; }

  /* Players grid — 2 column, taller cards so text doesn't clip */
  .player-grid { grid-template-columns: 1fr 1fr; gap: 1px; }
  .player-card { aspect-ratio: 3/4; }
  .player-card-overlay { padding: 14px; }
  .player-card-overlay h4 { font-size: 0.875rem; font-weight: 700; margin-bottom: 3px; }
  .player-card-overlay span { font-size: 0.625rem; font-weight: 600; line-height: 1.4; display: block; }
  /* Force overlay visible on mobile (no hover) */
  .player-card:has(img) .player-card-overlay { opacity: 1 !important; }
  /* Mid-scroll active state — full color reveal */
  .player-card.active img { filter: grayscale(0%) contrast(1) !important; transform: scale(1.18); }

  /* Route map */
  .route-map { margin-top: 32px; }
  .route-stops { flex-wrap: wrap; gap: 28px; justify-content: center; }
  .route-stop { flex: 0 0 calc(33.33% - 20px); gap: 12px; }
  .route-line { display: none; }
  .route-name { font-size: 0.5625rem; }

  /* Locations strip / filter — horizontal scroll on mobile */
  .locations-strip {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .locations-strip::-webkit-scrollbar { display: none; }
  .location-tag { font-size: 0.5625rem; padding: 10px 16px; white-space: nowrap; flex-shrink: 0; }

  /* Section headers */
  .section-header { margin-bottom: 40px; }
  .section-header h2 { font-size: 1.5rem; }
  .section-header p { font-size: 0.8125rem; }
  .eyebrow { font-size: 0.5625rem; margin-bottom: 16px; }

  /* Footer — compact 2-col layout */
  .footer { padding: 40px 0 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 24px; margin-bottom: 32px; }
  .footer-brand { grid-column: 1 / -1; margin-bottom: 4px; }
  .footer-brand p { margin-top: 8px; font-size: 0.75rem; }
  .footer-brand .nav-logo .nav-logo-img { height: 24px; }
  .footer-col h4 { margin-bottom: 12px; }
  .footer-col a { padding: 3px 0; font-size: 0.75rem; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; font-size: 0.625rem; }
  .footer-watermark { font-size: 2rem !important; margin-top: 16px; }

  /* Marquee */
  .marquee-section { padding: 12px 0; }

  /* Accent band */
  .accent-band { padding: 64px 0; }

  /* FAQ */
  .faq-question { padding: 24px 0; }
  .faq-question span:first-child { font-size: 0.875rem; flex: 1; padding-right: 12px; }
  .faq-answer p { font-size: 0.8125rem; }

  /* Process cards — tighter to fit in one screen */
  .process-card { padding: 24px 20px; }
  .process-card .step-num { font-size: 3rem; top: 12px; right: 16px; }
  .process-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
  .process-card p { font-size: 0.8125rem; }
  .process-card .step-line { margin-bottom: 20px; }

  /* Form — name fields side by side, touch-friendly */
  .form-grid { margin-top: 32px; gap: 20px; }
  .form-name-row { grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-field {
    font-size: 1rem;
    padding: 16px 0;
    -webkit-appearance: none;
    border-radius: 0;
  }
  select.form-field {
    padding: 16px 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    background-size: 12px;
    padding-right: 24px;
  }

  /* Hide cursor on touch */
  .cursor-dot, .cursor-ring { display: none; }

  /* Nav logo smaller on mobile */
  .nav-logo .nav-logo-img { height: 100px; margin-left: -8px; }
}

@media (max-width: 480px) {
  .player-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 28px 20px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .route-stop { flex: 0 0 calc(50% - 16px); }
  .hero h1 { font-size: 2.25rem; }

  /* Stats — 6-item rows go 2-col cleanly */
  .stats-row .stat-block:nth-child(even) { border-right: none; }

  /* Player cards — keep 2-col but smaller text */
  .player-card-overlay h4 { font-size: 0.625rem; }
  .player-card-overlay span { font-size: 0.4375rem; }

  /* 6-item stats — 2-col at smallest screens */
  .stats-row:has(.stat-block:nth-child(5)) { grid-template-columns: 1fr 1fr; }
  .stats-row:has(.stat-block:nth-child(5)) .stat-block .number { font-size: 0.875rem !important; }

  /* Image break — ensure readable */
  .image-break { height: 40vh; min-height: 240px; }
}

/* --- Sticky Mobile CTA --- */
.sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  .sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    padding: 12px 20px;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .sticky-cta a {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .footer { padding-bottom: 72px; }
}
