/* ═══════════════════════════════════════════
   TSS LANDING PAGE — Premium Sports Network
═══════════════════════════════════════════ */
#auth-landing {
  --lp-white: #FFFFFF;
  --lp-bg: #FFFFFF;
  --lp-black: #050505;
  --lp-soft-black: #111111;
  --lp-text: #111111;
  --lp-muted: #5F6368;
  --lp-accent: #F5A524;
  --lp-accent-dim: #D9A441;
  --lp-border: #E7E3DA;
  --lp-grid: rgba(17, 17, 17, 0.05);
  --lp-orange-line: rgba(245, 165, 36, 0.35);
  --lp-serif: var(--lp-sans);
  --lp-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --lp-max: 1400px;
  --lp-pad: clamp(1.25rem, 4vw, 2.5rem);
  /* Hero badge positions — orbit around the hero image (top/left %) */
  --badge-coaches-top: 8%;
  --badge-coaches-left: 25%;
  --badge-scouts-top: 5%;
  --badge-scouts-left: 93%;
  --badge-agents-top: 44%;
  --badge-agents-left: 95%;
  --badge-fans-top: 88%;
  --badge-fans-left: 91%;
  --badge-brands-top: 84%;
  --badge-brands-left: 22%;
  font-family: var(--lp-sans);
  color: var(--lp-text);
  background: var(--lp-bg);
}

#auth-landing.auth-page.active {
  display: flex !important;
  flex-direction: column;
  align-items: stretch !important;
  justify-content: flex-start !important;
  padding: 0 !important;
  overflow-x: hidden;
  overflow-y: auto;
  min-height: 100vh;
  background: var(--lp-white);
}

#auth-landing [id] {
  scroll-margin-top: 88px;
}

#auth-landing svg [stroke-width]:not([stroke]) {
  stroke: currentColor;
}

/* ─── Typography (Carta-inspired: confident sans, clear hierarchy) ─── */
.lp-display {
  font-family: var(--lp-sans);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--lp-text);
}
.lp-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-muted);
  margin-bottom: 1rem;
}
.lp-eyebrow--spaced {
  letter-spacing: 0.08em;
}
.lp-body {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--lp-muted);
  font-weight: 400;
}
.lp-accent-text { color: var(--lp-accent); }

/* ─── Buttons ─── */
.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.72rem 1.35rem;
  font-family: var(--lp-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.25;
}
.lp-btn .lp-arrow {
  display: inline-block;
  transition: transform 0.18s ease;
}
.lp-btn:hover .lp-arrow { transform: translateX(3px); }
.lp-btn--primary-dark {
  background: var(--lp-black);
  color: #fff;
}
.lp-btn--primary-dark:hover {
  background: var(--lp-soft-black);
  box-shadow: 0 2px 8px rgba(17, 17, 17, 0.15);
}
.lp-btn--hero-cta {
  background: var(--lp-black);
  color: #fff;
  height: 48px;
  padding: 0 1.5rem;
  border-radius: 6px;
  font-size: 0.9375rem;
  font-weight: 600;
  box-shadow: none;
}
.lp-btn--hero-cta:hover {
  background: var(--lp-soft-black);
  box-shadow: 0 4px 14px rgba(17, 17, 17, 0.14);
}
.lp-arrow--accent { color: var(--lp-accent); }
.lp-btn--nav-cta {
  background: var(--lp-black);
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: none;
}
.lp-btn--nav-cta:hover {
  background: var(--lp-soft-black);
  box-shadow: 0 2px 8px rgba(17, 17, 17, 0.12);
}
.lp-btn--signin {
  background: none;
  border: none;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--lp-soft-black);
  cursor: pointer;
}
.lp-btn--signin:hover {
  color: var(--lp-muted);
}
.lp-btn--watch {
  background: none;
  border: none;
  color: var(--lp-muted);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  gap: 0.55rem;
}
.lp-btn--watch:hover { color: var(--lp-text); }
.lp-btn__play-ring {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--lp-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-text);
  transition: border-color 0.2s;
}
.lp-btn--watch:hover .lp-btn__play-ring {
  border-color: var(--lp-muted);
}
.lp-btn--primary-orange {
  background: var(--lp-accent);
  color: var(--lp-black);
}
.lp-btn--primary-orange:hover {
  background: var(--lp-accent-dim);
  transform: translateY(-1px);
}
.lp-btn--ghost {
  background: transparent;
  color: var(--lp-text);
  border: 1px solid var(--lp-border);
}
.lp-btn--ghost:hover {
  border-color: var(--lp-text);
  background: rgba(0, 0, 0, 0.02);
}
.lp-btn--ghost-light {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.lp-btn--ghost-light:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
}
.lp-btn--text {
  background: none;
  border: none;
  padding: 0.5rem 0.75rem;
  color: var(--lp-text);
  font-weight: 500;
}
.lp-btn--text-light {
  color: rgba(255, 255, 255, 0.75);
}
.lp-btn--text:hover,
.lp-btn--text-light:hover { color: var(--lp-accent); }

/* ─── Header ─── */
#auth-landing .lp-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 500;
  height: 80px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 clamp(48px, 5vw, 64px);
  box-sizing: border-box;
  transition: color 0.25s ease, background 0.25s ease;
}
.lp-header--light {
  background: transparent;
  border: none;
  box-shadow: none;
}
.lp-header--dark {
  background: var(--lp-soft-black);
  border: none;
  box-shadow: none;
}
.lp-header__inner {
  position: relative;
  width: 100%;
  max-width: var(--lp-max);
  margin: 0 auto;
  height: 80px;
}
.lp-header__left {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
}
.lp-header__center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
}
.lp-header__right {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.lp-logo {
  font-family: var(--lp-sans);
  font-size: 1.25rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.02em;
  color: var(--lp-soft-black);
  text-decoration: none;
  cursor: pointer;
  line-height: 1;
  white-space: nowrap;
}
.lp-header--dark .lp-logo { color: #fff; }
.lp-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: clamp(2.25rem, 4.5vw, 4rem);
  list-style: none;
  margin: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}
.lp-nav li {
  flex-shrink: 0;
}
.lp-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--lp-soft-black);
  text-decoration: none;
  transition: color 0.15s;
}
.lp-nav a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--lp-soft-black);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
.lp-nav a:hover::before { transform: scaleX(1); }
.lp-nav-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--lp-accent);
  margin-left: 5px;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.lp-nav a:hover .lp-nav-dot {
  opacity: 1;
  transform: scale(1);
}
.lp-header--dark .lp-nav a { color: rgba(255, 255, 255, 0.72); }
.lp-header--dark .lp-nav a::before { background: #fff; }
.lp-header--dark .lp-nav a:hover { color: #fff; }
.lp-header--dark .lp-btn--signin { color: rgba(255, 255, 255, 0.72); }
.lp-header--dark .lp-btn--signin:hover { color: #fff; }
.lp-nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.4rem;
  cursor: pointer;
  color: var(--lp-text);
  flex-shrink: 0;
}
.lp-header--dark .lp-nav-toggle { color: #fff; }

/* ─── PlaybookBackground ─── */
.playbook-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.playbook-bg svg {
  position: absolute;
  width: 100%;
  height: 100%;
}
.playbook-bg--dots {
  background-image: radial-gradient(circle, var(--lp-grid) 1px, transparent 1px);
  background-size: 16px 16px;
}
.playbook-bg--glow {
  background:
    radial-gradient(ellipse 50% 55% at 78% 48%, rgba(245, 165, 36, 0.12) 0%, transparent 72%),
    radial-gradient(ellipse 35% 30% at 24% 40%, rgba(245, 165, 36, 0.04) 0%, transparent 70%);
}
.playbook-bg--tactics {
  opacity: 0.85;
}
.playbook-marker {
  fill: var(--lp-accent);
  opacity: 0.35;
  font-family: var(--lp-sans);
  font-weight: 600;
}
.playbook-route {
  fill: none;
  stroke: var(--lp-orange-line);
  stroke-width: 1;
  stroke-dasharray: 6 8;
}
.playbook-route--draw {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  transition: stroke-dashoffset 2s ease;
}
.lp-visible .playbook-route--draw { stroke-dashoffset: 0; }
.playbook-dot {
  fill: var(--lp-accent);
  opacity: 0.5;
}

/* ─── Section shell ─── */
.lp-section {
  position: relative;
  padding: clamp(4rem, 8vw, 6.5rem) var(--lp-pad);
  overflow: hidden;
}
.lp-section__inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.lp-section--dark {
  background: var(--lp-black);
  color: #fff;
}
.lp-section--dark .lp-display { color: #fff; }
.lp-section--dark .lp-body { color: rgba(255, 255, 255, 0.58); }
.lp-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

/* ─── Hero ─── */
.lp-hero {
  position: relative;
  min-height: 0;
  padding: 0 clamp(48px, 5vw, 64px);
  padding-bottom: clamp(1.5rem, 3vh, 2.5rem);
  display: flex;
  align-items: stretch;
  background: var(--lp-white);
  overflow: visible;
}
.lp-hero .playbook-route {
  stroke: rgba(245, 165, 36, 0.44);
  stroke-width: 1.15;
}
.lp-hero .playbook-dot {
  opacity: 0.75;
}
.lp-hero__inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  width: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(1rem, 2vw, 2rem);
  align-items: center;
  position: relative;
  z-index: 1;
  padding-top: clamp(1rem, 2vh, 1.5rem);
  padding-bottom: clamp(1rem, 2.5vh, 2rem);
  overflow: visible;
}
.lp-hero__content {
  max-width: 540px;
  padding-right: 1rem;
  align-self: center;
  padding-top: clamp(1.25rem, 2.5vh, 2rem);
  padding-bottom: 0;
}
.lp-hero__visual {
  position: relative;
  align-self: center;
  justify-self: end;
  width: 118%;
  max-width: none;
  height: min(74vh, 600px);
  margin: 0 clamp(-2.5rem, -4vw, -1rem) 0 0;
  padding: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  pointer-events: none;
}
.lp-hero__title {
  font-family: var(--lp-sans);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.15rem;
}
.lp-hero__sub {
  margin-bottom: 1.75rem;
  max-width: 480px;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--lp-muted);
}
.lp-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 0;
}

/* Consistent landing icons — black stroke, orange accent on hover */
.lp-icon-svg {
  width: 100%;
  height: 100%;
  stroke: var(--lp-ink, #0a1628);
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.role-rail__icon .lp-icon-svg,
.connection-orbit__node-icon .lp-icon-svg,
.lp-tool-card__icon .lp-icon-svg {
  stroke-width: 1.75;
}
.lp-tool-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(10, 22, 40, 0.04);
  margin-bottom: 1rem;
}
.lp-tool-card:hover .lp-tool-card__icon {
  background: rgba(245, 165, 36, 0.12);
}
.lp-tool-card:hover .lp-icon-svg {
  stroke: var(--lp-accent, #F5A524);
}

/* ─── ConnectionOrbit ─── */
.connection-orbit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0.5rem 1rem;
  margin: 0;
  overflow: visible;
  box-sizing: border-box;
  pointer-events: none;
}
.connection-orbit__rings {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.connection-orbit__rings--back {
  z-index: 2;
}
.connection-orbit__svg {
  width: 108%;
  max-width: 580px;
  height: auto;
}
.connection-orbit__halo {
  position: absolute;
  top: 46%;
  left: 54%;
  transform: translate(-50%, -50%);
  width: min(88%, 460px);
  height: min(92%, 540px);
  background: radial-gradient(
    ellipse at center,
    rgba(245, 165, 36, 0.32) 0%,
    rgba(245, 165, 36, 0.14) 38%,
    rgba(245, 165, 36, 0.04) 58%,
    transparent 72%
  );
  z-index: 1;
  pointer-events: none;
}
.connection-orbit__spin {
  transform-origin: 300px 320px;
  animation: lp-orbit-spin 28s linear infinite;
}
.connection-orbit--composed .connection-orbit__spin,
.connection-orbit--composed .connection-orbit__nodes {
  animation: none;
}
.connection-orbit--composed .connection-orbit__node-inner {
  animation: lp-node-float 5s ease-in-out infinite;
}
.connection-orbit__spin--reverse {
  animation: lp-orbit-spin-reverse 34s linear infinite;
}
.connection-orbit__marker {
  fill: rgba(245, 165, 36, 0.55);
  font-family: var(--lp-sans);
  font-size: 11px;
  font-weight: 600;
}
@keyframes lp-orbit-spin-reverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}
@keyframes lp-orbit-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes lp-orbit-counter {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}
.connection-orbit__player {
  position: relative;
  z-index: 5;
  display: block;
  height: min(74vh, 600px);
  max-height: 600px;
  width: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center center;
  transform: none;
  transform-origin: center center;
  margin-bottom: 0;
  filter: none;
  pointer-events: none;
  border-radius: 12px;
}
.connection-orbit__nodes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 8;
  pointer-events: none;
}
.connection-orbit__node {
  position: absolute;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  z-index: 8;
}
@keyframes lp-node-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
.connection-orbit__node-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  padding: 0.38rem 0.75rem 0.38rem 0.38rem;
  box-shadow:
    0 4px 18px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(245, 165, 36, 0.22),
    0 0 32px rgba(245, 165, 36, 0.28);
  animation: lp-orbit-counter 28s linear infinite, lp-node-float 5s ease-in-out infinite;
  white-space: nowrap;
}
.connection-orbit__node--coaches .connection-orbit__node-inner { animation-delay: 0s; }
.connection-orbit__node--scouts .connection-orbit__node-inner { animation-delay: 0.5s; }
.connection-orbit__node--agents .connection-orbit__node-inner { animation-delay: 1s; }
.connection-orbit__node--fans .connection-orbit__node-inner { animation-delay: 1.5s; }
.connection-orbit__node--brands .connection-orbit__node-inner { animation-delay: 2s; }
.connection-orbit__node-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(245, 165, 36, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255, 250, 240, 0.95);
}
.connection-orbit__node-icon svg {
  width: 13px;
  height: 13px;
  stroke: #C8840A;
}
.connection-orbit__node-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-soft-black);
  padding-right: 0.15rem;
}

/* ─── Who It's For ─── */
.lp-whofor {
  background: var(--lp-white);
  border-radius: 32px 32px 0 0;
  margin-top: -28px;
  padding: clamp(4rem, 7vw, 5rem) clamp(2.5rem, 6vw, 5.625rem);
  position: relative;
  z-index: 4;
  overflow: hidden;
}
.lp-whofor__accent-curve {
  position: absolute;
  top: clamp(1.25rem, 2.5vw, 2rem);
  left: clamp(1.25rem, 3.5vw, 2.75rem);
  width: clamp(100px, 11vw, 150px);
  z-index: 1;
  pointer-events: none;
}
.lp-whofor__accent-curve svg {
  display: block;
  width: 100%;
  height: auto;
}
.playbook-bg--whofor {
  opacity: 0.55;
}
.playbook-bg--whofor-deco {
  opacity: 1;
}
.lp-whofor__grid {
  grid-template-columns: minmax(260px, 0.4fr) minmax(0, 1.6fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 3.5rem);
}
.lp-whofor__left {
  max-width: 380px;
  padding-top: 0.25rem;
}
.lp-whofor__title {
  font-size: clamp(2.5rem, 4.2vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 0.35rem;
  color: var(--lp-soft-black);
}
.lp-whofor__swoosh-wrap {
  display: block;
  position: relative;
  width: 7.5rem;
  height: 1.85rem;
  margin-top: 0.2rem;
  margin-bottom: 1.1rem;
}
.lp-whofor__swoosh {
  position: absolute;
  left: 0;
  display: block;
  overflow: visible;
}
.lp-whofor__swoosh--primary {
  bottom: 0.35rem;
  width: 7.5rem;
  height: 1.5rem;
}
.lp-whofor__swoosh--secondary {
  bottom: 0;
  width: 5.5rem;
  height: 1.25rem;
  left: 0.35rem;
}
.lp-whofor__body {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 340px;
}
.lp-whofor__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--lp-accent);
  text-decoration: underline;
  text-decoration-color: rgba(245, 165, 36, 0.35);
  text-underline-offset: 4px;
  cursor: pointer;
  transition: color 0.2s ease;
}
.lp-whofor__link:hover { color: #d4920a; }
.lp-whofor__link:hover .lp-arrow { transform: translateX(4px); }

/* ─── RoleRail (line map) ─── */
.role-rail {
  --rr-icon: 76px;
  --rr-dot: 14px;
  --rr-map-h: 20px;
  /* Nudge horizontal rail up/down — increase to move line down */
  --rr-line-offset: 10px;
  position: relative;
  width: 100%;
  min-width: 0;
  padding: 0.65rem 0 0.35rem;
  align-self: center;
}
.role-rail__map {
  position: absolute;
  left: 3%;
  right: 2%;
  top: calc(var(--rr-icon) + var(--rr-dot) - var(--rr-map-h) * 0.5 + var(--rr-line-offset));
  width: 95%;
  height: var(--rr-map-h);
  z-index: 3;
  overflow: visible;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.7s ease 0.2s;
}
.lp-visible .role-rail__map { opacity: 1; }
.role-rail__map-curve {
  stroke: rgba(245, 165, 36, 0.55);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
}
.role-rail__map-base {
  stroke: rgba(17, 17, 17, 0.12);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}
.role-rail__map-seg {
  stroke: rgba(245, 165, 36, 0.55);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}
.role-rail__track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  position: relative;
  z-index: 1;
  width: 100%;
  align-items: stretch;
}
.role-rail__item {
  display: grid;
  grid-template-rows: auto 1fr;
  align-items: stretch;
  min-width: 0;
  padding: 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.lp-visible .role-rail__item {
  opacity: 1;
  transform: translateY(0);
}
.lp-visible .role-rail__item:nth-child(1) { transition-delay: 0.15s; }
.lp-visible .role-rail__item:nth-child(2) { transition-delay: 0.28s; }
.lp-visible .role-rail__item:nth-child(3) { transition-delay: 0.41s; }
.lp-visible .role-rail__item:nth-child(4) { transition-delay: 0.54s; }
.lp-visible .role-rail__item:nth-child(5) { transition-delay: 0.67s; }
.role-rail__station {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 0 1rem 0 1.25rem;
  margin-bottom: 0.35rem;
  position: relative;
  z-index: 2;
}
.role-rail__icon {
  width: var(--rr-icon);
  height: var(--rr-icon);
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(245, 165, 36, 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FDF9F2;
  box-shadow: 0 3px 18px rgba(0, 0, 0, 0.07);
  position: relative;
  z-index: 1;
  transition: box-shadow 0.25s ease;
}
.role-rail__item:hover .role-rail__icon-wrap {
  transform: translateY(-4px);
}
.role-rail__item:hover .role-rail__icon {
  box-shadow: 0 8px 22px rgba(245, 165, 36, 0.14);
}
.role-rail__icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--lp-soft-black);
}
.role-rail__icon-wrap {
  position: relative;
  width: var(--rr-icon);
  flex-shrink: 0;
  overflow: visible;
  transition: transform 0.25s ease;
}
.role-rail__stem {
  position: absolute;
  left: 0;
  top: calc(var(--rr-icon) * 0.5);
  width: 1.5px;
  height: calc(var(--rr-icon) * 0.5 + var(--rr-dot) + 10px);
  margin: 0;
  flex-shrink: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(245, 165, 36, 0.7) 0%,
    rgba(17, 17, 17, 0.14) 38%,
    rgba(17, 17, 17, 0.1) 72%,
    rgba(245, 165, 36, 0.65) 100%
  );
}
.role-rail__dot {
  width: var(--rr-dot);
  height: var(--rr-dot);
  border-radius: 50%;
  background: var(--lp-accent);
  margin-top: 0;
  margin-left: calc(var(--rr-dot) / -2 + 0.5px);
  box-shadow: 0 0 0 3px rgba(245, 165, 36, 0.16);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.lp-visible .role-rail__item:nth-child(1) .role-rail__dot { animation: lp-dot-pulse 0.55s ease 0.95s both; }
.lp-visible .role-rail__item:nth-child(2) .role-rail__dot { animation: lp-dot-pulse 0.55s ease 1.1s both; }
.lp-visible .role-rail__item:nth-child(3) .role-rail__dot { animation: lp-dot-pulse 0.55s ease 1.25s both; }
.lp-visible .role-rail__item:nth-child(4) .role-rail__dot { animation: lp-dot-pulse 0.55s ease 1.4s both; }
.lp-visible .role-rail__item:nth-child(5) .role-rail__dot { animation: lp-dot-pulse 0.55s ease 1.55s both; }
@keyframes lp-dot-pulse {
  0% { transform: scale(0.85); box-shadow: 0 0 0 0 rgba(245, 165, 36, 0.5); }
  50% { transform: scale(1.2); box-shadow: 0 0 0 10px rgba(245, 165, 36, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 3px rgba(245, 165, 36, 0.16); }
}
.role-rail__body {
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: start;
  text-align: left;
  width: 100%;
  min-height: 11.5rem;
  padding: 1.15rem 1rem 0.85rem 1.25rem;
  border-top: none;
  position: relative;
  z-index: 4;
}
.role-rail__item:not(:last-child) .role-rail__body::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background: rgba(17, 17, 17, 0.09);
}
.role-rail__title {
  font-family: var(--lp-sans);
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--lp-soft-black);
  margin-bottom: 0.65rem;
  line-height: 1.25;
  width: 100%;
}
.role-rail__desc {
  font-size: 0.97rem;
  line-height: 1.65;
  color: var(--lp-muted);
  margin: 0;
  padding-bottom: 0.65rem;
  width: 100%;
  max-width: none;
  min-height: 3.4em;
  align-self: start;
}
.role-rail__arrow {
  display: flex;
  align-items: center;
  color: var(--lp-accent);
  font-size: 2rem;
  line-height: 1;
  height: 2rem;
  align-self: start;
  grid-row: 3;
  transition: transform 0.22s ease;
}
.role-rail__item:hover .role-rail__arrow { transform: translateX(5px); }

/* ─── Leagues & Conferences ─── */
.lp-leagues-wrap {
  background: var(--lp-white);
  padding: 0 clamp(1.5rem, 4vw, 3rem) clamp(3.5rem, 7vw, 5rem);
  overflow: visible;
}
.lp-leagues__panel {
  background: #050505;
  border-radius: 24px;
  padding: clamp(3rem, 5vw, 4rem);
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.lp-leagues__panel .playbook-bg--topo {
  opacity: 0.5;
}
.lp-leagues__inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(1.75rem, 3.5vw, 3rem);
  align-items: start;
}
.lp-leagues__copy {
  max-width: 320px;
}
.league-showcase {
  min-width: 0;
  width: 100%;
}
.lp-leagues__title {
  font-size: clamp(2.25rem, 3.8vw, 3.25rem);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1rem;
}
.lp-leagues__body {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 1.75rem;
}
.lp-leagues__cta {
  background: var(--lp-accent);
  color: var(--lp-soft-black);
  font-weight: 600;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  border: none;
  box-shadow: 0 8px 24px rgba(245, 165, 36, 0.22);
}
.lp-leagues__cta:hover {
  background: #e8941a;
  transform: translateY(-1px);
}
.lp-leagues__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.lp-league-pill {
  height: 38px;
  padding: 0 1rem;
  border-radius: 999px;
  font-family: var(--lp-sans);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.lp-league-pill:hover {
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}
.lp-league-pill.active {
  background: var(--lp-accent);
  color: var(--lp-soft-black);
  border-color: var(--lp-accent);
}
.lp-league-cards-wrap {
  position: relative;
}
.lp-league-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.lp-league-cards::-webkit-scrollbar { display: none; }
.lp-league-card {
  flex: 1;
  min-width: 0;
  height: clamp(300px, 32vw, 340px);
  min-height: 300px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  scroll-snap-align: start;
}
.lp-league-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
}
.lp-league-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.lp-league-card:hover img {
  transform: scale(1.06);
}
.lp-league-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.35) 45%, transparent 72%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.35rem;
  pointer-events: none;
}
.lp-league-card__label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.25rem;
}
.lp-league-card__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lp-accent);
  flex-shrink: 0;
}
.lp-league-card__sport {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}
.lp-league-card__count {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  padding-left: 0.95rem;
}
.lp-league-carousel-btn {
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #050505;
  border: 1.5px solid var(--lp-accent);
  color: var(--lp-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  transition: background 0.2s ease, transform 0.2s ease;
}
.lp-league-carousel-btn:hover {
  background: rgba(245, 165, 36, 0.12);
  transform: translateY(-50%) scale(1.05);
}

/* ─── Tools (Everything You Need) ─── */
.lp-tools {
  background: var(--lp-white);
  padding: clamp(3rem, 5vw, 4.5rem) var(--lp-pad);
}
.playbook-bg--tools-deco {
  opacity: 0.05;
  pointer-events: none;
}
.lp-tools__layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.3fr) minmax(0, 0.7fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
.lp-tools__grid-wrap {
  min-width: 0;
  width: 100%;
}
.lp-eyebrow--tools {
  font-size: 12px;
  letter-spacing: 0.2em;
  font-weight: 500;
  margin-bottom: 1.75rem;
}
.lp-tools__intro {
  max-width: 440px;
  padding-top: 0;
}
.lp-tools__title {
  font-size: clamp(3rem, 4.6vw, 3.75rem);
  line-height: 1.05;
  font-weight: 500;
  color: var(--lp-soft-black);
}
.lp-tools__swoosh-wrap {
  display: block;
  position: relative;
  width: 8.5rem;
  height: 2rem;
  margin-top: 0.45rem;
}
.lp-tools__swoosh {
  position: absolute;
  left: 0;
  display: block;
  overflow: visible;
}
.lp-tools__swoosh--primary {
  bottom: 0.35rem;
  width: 8.5rem;
  height: 1.65rem;
}
.lp-tools__swoosh--secondary {
  bottom: 0;
  width: 6.25rem;
  height: 1.35rem;
  left: 0.4rem;
}
.lp-tools__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  width: 100%;
  min-width: 0;
}
.lp-tool-card {
  background: #FFFFFF;
  border: 1px solid #ECE7DF;
  border-radius: 20px;
  padding: 32px 26px 76px;
  width: 100%;
  min-width: 0;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.25s ease;
}
.lp-visible .lp-tool-card {
  opacity: 1;
  transform: translateY(0);
}
.lp-visible .lp-tool-card:nth-child(1) { transition-delay: 0.1s; }
.lp-visible .lp-tool-card:nth-child(2) { transition-delay: 0.2s; }
.lp-visible .lp-tool-card:nth-child(3) { transition-delay: 0.3s; }
.lp-visible .lp-tool-card:nth-child(4) { transition-delay: 0.4s; }
.lp-tool-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}
.lp-visible .lp-tool-card:hover { transform: translateY(-4px); }
.lp-tool-card__icon {
  width: 36px;
  height: 36px;
  margin-bottom: 1.5rem;
  color: var(--lp-soft-black);
  flex-shrink: 0;
}
.lp-tool-card__icon svg {
  width: 36px;
  height: 36px;
  stroke: currentColor;
}
.lp-tool-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--lp-soft-black);
  margin: 0 0 0.75rem;
  line-height: 1.3;
}
.lp-tool-card__desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #6B7280;
  margin: 0;
  max-width: 100%;
  flex: 1;
}
.lp-tool-card__arrow {
  position: absolute;
  bottom: 26px;
  right: 26px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--lp-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-accent);
  font-size: 1rem;
  line-height: 1;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}
.lp-tool-card:hover .lp-tool-card__arrow {
  background: var(--lp-accent);
  color: var(--lp-soft-black);
  transform: translateX(4px);
}

/* ─── Film Room ─── */
.lp-film-wrap {
  position: relative;
  background: var(--lp-white);
  padding: 0 var(--lp-pad) clamp(1rem, 2.5vw, 1.75rem);
}
.playbook-bg--film-outer {
  opacity: 0.35;
  pointer-events: none;
}
.lp-film {
  position: relative;
  width: min(92%, 1280px);
  height: clamp(400px, 42vw, 450px);
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.lp-film__bg {
  position: absolute;
  inset: -4% 0;
  will-change: transform;
}
.lp-film__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}
.lp-film__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.55) 38%, rgba(0, 0, 0, 0.08) 72%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}
.lp-film__playbook {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.2;
}
.lp-film__playbook svg {
  width: 55%;
  height: 100%;
  position: absolute;
  left: 8%;
  top: 0;
}
.lp-film__route {
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
}
.lp-visible .lp-film__route { stroke-dashoffset: 0; }
.lp-film__content {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(2rem, 5vw, 4rem);
}
.lp-film__inner {
  max-width: 38%;
  min-width: 280px;
}
.lp-eyebrow--film {
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 500;
  margin-bottom: 1.25rem;
  color: var(--lp-accent);
}
.lp-film__title {
  color: #fff;
  font-size: clamp(2.75rem, 3.8vw, 3.5rem);
  line-height: 1.05;
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.lp-film__body {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 2rem;
  max-width: 340px;
}
.lp-film__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 48px;
  padding: 0 1.5rem;
  border: none;
  border-radius: 12px;
  background: var(--lp-accent);
  color: var(--lp-soft-black);
  font-family: var(--lp-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.lp-film__cta:hover {
  background: var(--lp-accent-dim);
  transform: translateY(-1px);
}
.lp-film__cta:hover .lp-arrow { transform: translateX(4px); }
.lp-film__cta .lp-arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}
.lp-film__play {
  position: absolute;
  top: 50%;
  left: 56%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.42);
  border: 2px solid var(--lp-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: transform 0.25s ease, background 0.25s ease;
  animation: lp-film-play-pulse 4s ease-in-out infinite;
}
@keyframes lp-film-play-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 165, 36, 0.35); }
  50% { box-shadow: 0 0 0 14px rgba(245, 165, 36, 0); }
}
.lp-film__play:hover {
  transform: translate(-50%, -50%) scale(1.05);
  background: rgba(0, 0, 0, 0.55);
}
.lp-film__play svg {
  width: 26px;
  height: 26px;
  fill: #fff;
  margin-left: 4px;
}

/* ─── Final CTA + Network Visual ─── */
.lp-cta-final {
  position: relative;
  background: #050505;
  padding: clamp(2.5rem, 4vw, 3.25rem) clamp(2rem, 5vw, 6.25rem);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.lp-cta-final__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.lp-cta-final__grid {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
  background-size: 48px 48px;
}
.lp-cta-final__sweep {
  position: absolute;
  right: 0;
  top: 0;
  width: 45%;
  height: 100%;
}
.lp-cta-final__inner {
  position: relative;
  z-index: 1;
  max-width: var(--lp-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr) minmax(280px, 1.15fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  min-height: 0;
}
.lp-cta-final__left {
  position: relative;
  padding-left: 2.5rem;
}
.lp-cta-final__route {
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 52px;
  height: auto;
}
.lp-cta-final__eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lp-accent);
  margin: 0 0 1rem;
}
.lp-cta-final__title {
  font-size: clamp(2.35rem, 3.2vw, 3rem);
  line-height: 1.05;
  font-weight: 500;
  color: #fff;
  margin: 0;
}
.lp-cta-final__center {
  max-width: 340px;
  justify-self: center;
}
.lp-cta-final__body {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 1.25rem;
}
.lp-cta-final__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}
.lp-cta-final__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 48px;
  padding: 0 1.5rem;
  border: none;
  border-radius: 12px;
  background: var(--lp-accent);
  color: var(--lp-soft-black);
  font-family: var(--lp-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 4px 20px rgba(245, 165, 36, 0.2);
}
.lp-cta-final__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 165, 36, 0.28);
  background: var(--lp-accent-dim);
}
.lp-cta-final__btn:hover .lp-arrow { transform: translateX(4px); }
.lp-cta-final__btn .lp-arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}
.lp-cta-final__signin {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--lp-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  transition: color 0.2s ease;
}
.lp-cta-final__signin:hover { color: var(--lp-accent); }
.lp-cta-final__visual {
  justify-self: end;
  width: 100%;
  max-width: 360px;
}
.lp-network-orbit {
  position: relative;
  width: 100%;
  aspect-ratio: 420 / 340;
  max-height: 280px;
}
.lp-network-orbit__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.lp-network-orbit__rings {
  transform-origin: 50% 50%;
  transform-box: fill-box;
  animation: lp-network-spin 28s linear infinite;
}
@keyframes lp-network-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.lp-network-orbit__dot {
  fill: var(--lp-accent);
  opacity: 0.85;
}
.lp-network-orbit__dot--1 { animation: lp-node-pulse 3.2s ease-in-out infinite; }
.lp-network-orbit__dot--2 { animation: lp-node-pulse 4.1s ease-in-out 0.6s infinite; }
.lp-network-orbit__dot--3 { animation: lp-node-pulse 3.6s ease-in-out 1.2s infinite; }
.lp-network-orbit__dot--4 { animation: lp-node-pulse 4.8s ease-in-out 0.3s infinite; }
.lp-network-orbit__dot--5 { animation: lp-node-pulse 3.9s ease-in-out 1.8s infinite; }
@keyframes lp-node-pulse {
  0%, 100% { opacity: 0.5; filter: drop-shadow(0 0 0 rgba(245, 165, 36, 0)); }
  50% { opacity: 1; filter: drop-shadow(0 0 6px rgba(245, 165, 36, 0.8)); }
}
.lp-network-orbit__hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(108px, 11vw, 140px);
  height: clamp(108px, 11vw, 140px);
  border-radius: 50%;
  border: 2px solid var(--lp-accent);
  overflow: hidden;
  z-index: 3;
  box-shadow: 0 0 0 6px rgba(245, 165, 36, 0.08), 0 12px 40px rgba(0, 0, 0, 0.45);
}
.lp-network-orbit__hub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp-network-orbit__sat {
  position: absolute;
  width: clamp(48px, 5vw, 62px);
  height: clamp(48px, 5vw, 62px);
  border-radius: 50%;
  border: 2px solid rgba(245, 165, 36, 0.55);
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  animation: lp-sat-float 5s ease-in-out infinite;
}
.lp-network-orbit__sat img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp-network-orbit__sat--1 {
  top: 8%;
  right: 6%;
  animation-delay: 0s;
}
.lp-network-orbit__sat--2 {
  bottom: 14%;
  right: 12%;
  animation-delay: 1.2s;
}
.lp-network-orbit__sat--3 {
  bottom: 22%;
  left: 4%;
  animation-delay: 2.4s;
}
@keyframes lp-sat-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* ─── Footer ─── */
.lp-footer {
  background: #040404;
  color: rgba(255, 255, 255, 0.55);
  padding: clamp(3.5rem, 6vw, 4.5rem) clamp(2rem, 5vw, 6.25rem) clamp(2.5rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.lp-footer__bg {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  height: 70%;
  pointer-events: none;
  opacity: 0.9;
}
.lp-footer__bg svg {
  width: 100%;
  height: 100%;
}
.lp-footer__inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.lp-footer__top {
  display: grid;
  grid-template-columns: minmax(200px, 1.35fr) repeat(5, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.lp-footer__logo {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}
.lp-footer__tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 1.5rem;
  max-width: 240px;
  line-height: 1.55;
}
.lp-footer__social {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 2rem;
}
.lp-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}
.lp-footer__social a svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}
.lp-footer__social a:hover { color: var(--lp-accent); }
.lp-footer__copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.32);
  margin: 0;
  line-height: 1.5;
}
.lp-footer__col h4 {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 1.1rem;
}
.lp-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.lp-footer__col li { margin-bottom: 0.6rem; }
.lp-footer__col a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.48);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
}
.lp-footer__col a:hover { color: var(--lp-accent); }

/* ─── Mobile nav drawer ─── */
.lp-mobile-nav {
  display: none;
  position: fixed;
  inset: 64px 0 0 0;
  background: #fff;
  z-index: 299;
  padding: 1.5rem var(--lp-pad);
  flex-direction: column;
  gap: 0.25rem;
  border-top: 1px solid var(--lp-border);
}
.lp-mobile-nav.open { display: flex; }
.lp-mobile-nav a {
  padding: 0.85rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--lp-text);
  text-decoration: none;
  border-bottom: 1px solid var(--lp-border);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .lp-hero__inner,
  .lp-split,
  .lp-leagues__inner,
  .lp-whofor__grid,
  .lp-tools__layout { grid-template-columns: 1fr; }
  .lp-tools__intro { max-width: none; }
  .lp-tools__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .lp-tool-card { min-height: 220px; }
  .lp-film__inner { max-width: 52%; min-width: 0; }
  .lp-league-cards {
    display: flex;
    flex-direction: row;
    gap: 0.85rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    grid-template-columns: unset;
  }
  .lp-league-card {
    flex: 0 0 min(70vw, 260px);
    min-width: min(70vw, 260px);
    scroll-snap-align: start;
  }
  .lp-leagues__copy { max-width: none; }
  .lp-hero__visual {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    margin: 0;
    justify-self: center;
    max-width: 480px;
  }
  .lp-hero__content {
    align-self: start;
    padding-bottom: 1rem;
  }
  .connection-orbit { min-height: 0; height: auto; }
  .connection-orbit__player {
    height: min(500px, 60vh);
    max-height: none;
    transform: none;
  }
  .lp-film__play { left: 50%; }
  .lp-cta-final__inner {
    grid-template-columns: 1fr 1fr;
    min-height: 0;
  }
  .lp-cta-final__visual {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 380px;
  }
  .lp-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
  }
  .lp-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 1200px) {
  .lp-tools__layout { align-items: start; }
  .lp-tools__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .lp-tool-card { min-height: 260px; }
}

@media (max-width: 1100px) {
  .lp-nav { gap: 1.35rem; }
  .lp-nav a { font-size: 13px; }
  .lp-btn--nav-cta { padding: 10px 16px; font-size: 13px; }
}

@media (max-width: 768px) {
  #auth-landing {
    /* Mobile badge positions — pushed outside the hero image */
    --badge-coaches-top: 10%;
    --badge-coaches-left: 25%;
    --badge-scouts-top: 8%;
    --badge-scouts-left: 88%;
    --badge-agents-top: 46%;
    --badge-agents-left: 90%;
    --badge-fans-top: 84%;
    --badge-fans-left: 86%;
    --badge-brands-top: 80%;
    --badge-brands-left: 22%;
  }
  #auth-landing .lp-header {
    padding: 0 1rem;
    height: 64px;
    background: rgba(250, 250, 247, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(17, 17, 17, 0.06);
  }
  #auth-landing .lp-header.lp-header--light {
    background: rgba(250, 250, 247, 0.94);
  }
  #auth-landing .lp-header.lp-header--dark {
    background: rgba(17, 17, 17, 0.97);
    border-bottom-color: rgba(255, 255, 255, 0.08);
  }
  .lp-header__inner {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .lp-header__left,
  .lp-header__right {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
  }
  .lp-header__center,
  #auth-landing .lp-header nav.lp-header__center {
    display: none !important;
  }
  .lp-header__right .lp-btn--signin,
  .lp-header__right .lp-btn--nav-cta {
    display: none;
  }
  .lp-header__right {
    gap: 0;
  }
  .lp-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0 -0.35rem 0 0;
    border-radius: 10px;
  }
  .lp-nav-toggle:active {
    background: rgba(17, 17, 17, 0.06);
  }
  .lp-header--dark .lp-nav-toggle:active {
    background: rgba(255, 255, 255, 0.08);
  }
  .lp-logo { font-size: 1.25rem; }
  .lp-mobile-nav {
    inset: 64px 0 0 0;
    z-index: 499;
    padding: 1rem 1.25rem 1.5rem;
    overflow-y: auto;
  }
  .lp-hero {
    padding: 2rem 1.25rem 2rem;
    overflow: hidden;
  }
  .lp-hero__inner {
    gap: 1.5rem;
    padding-top: 0;
    padding-bottom: 0;
  }
  .lp-hero__content {
    max-width: none;
    padding-right: 0;
    padding-top: 0;
  }
  .lp-hero__title { font-size: clamp(2rem, 8.5vw, 2.5rem); line-height: 1.08; }
  .lp-hero__sub { font-size: 1rem; line-height: 1.6; }
  .lp-body { font-size: 1rem; }
  .lp-display { letter-spacing: -0.025em; }
  .lp-hero__visual {
    width: 100%;
    max-width: 360px;
    height: auto;
    min-height: 320px;
    margin: 0 auto;
    justify-self: center;
  }
  .connection-orbit {
    width: 100%;
    min-height: 320px;
    padding: 0;
  }
  .connection-orbit__player {
    height: min(400px, 50vh);
    max-height: none;
    transform: none;
    max-width: 100%;
  }
  .connection-orbit__node-inner {
    padding: 0.3rem 0.55rem 0.3rem 0.3rem;
  }
  .connection-orbit__node-label { font-size: 0.5rem; }
  .connection-orbit__node-icon { width: 22px; height: 22px; }
  .connection-orbit__node-icon svg { width: 11px; height: 11px; }
  .lp-whofor {
    margin-top: -16px;
    border-radius: 24px 24px 0 0;
    padding: 3rem 1.25rem 3.5rem;
  }
  .lp-whofor__grid { grid-template-columns: 1fr; gap: 2rem; }
  .lp-whofor__accent-curve {
    left: 0;
    transform: none;
    top: 1rem;
    width: 100px;
  }
  .lp-whofor__left,
  .lp-tools__intro {
    max-width: none;
    text-align: left;
  }
  .lp-whofor__left .lp-eyebrow,
  .lp-tools__intro .lp-eyebrow {
    text-align: left;
  }
  .lp-whofor__title,
  .lp-tools__title {
    text-align: center;
  }
  .lp-whofor__swoosh-wrap,
  .lp-tools__swoosh-wrap {
    margin-left: auto;
    margin-right: auto;
  }
  .lp-whofor__body,
  .lp-whofor__link {
    text-align: left;
  }
  .lp-tools__intro {
    margin-bottom: 0.25rem;
  }
  .role-rail { padding: 0; }
  .role-rail__map { display: none; }
  .role-rail__track {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .role-rail__item {
    display: grid;
    grid-template-columns: 56px 1fr;
    grid-template-rows: auto auto;
    gap: 0 1rem;
    text-align: left;
    padding: 1.1rem 0;
    border-right: none;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    align-items: start;
  }
  .role-rail__item:last-child { border-bottom: none; }
  .role-rail__station {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin-bottom: 0;
    padding: 0;
    align-self: center;
  }
  .role-rail__stem,
  .role-rail__dot { display: none; }
  .role-rail__icon {
    margin: 0;
    width: 56px;
    height: 56px;
  }
  .role-rail__body {
    grid-column: 2;
    grid-row: 1;
    min-height: 0;
    align-items: flex-start;
    text-align: left;
    padding: 0;
    border: none;
    display: block;
  }
  .role-rail__item:not(:last-child) .role-rail__body::after { display: none; }
  .role-rail__title { font-size: 1.1rem; margin-bottom: 0.35rem; }
  .role-rail__desc { min-height: 0; max-width: none; font-size: 0.9rem; padding-bottom: 0; }
  .role-rail__arrow {
    grid-column: 2;
    grid-row: 2;
    margin-top: 0.35rem;
    font-size: 1.35rem;
    height: auto;
  }
  .lp-leagues-wrap { padding: 0 1rem 3rem; }
  .lp-leagues__panel { padding: 2.25rem 1.25rem; border-radius: 20px; }
  .lp-leagues__inner { gap: 1.75rem; }
  .lp-leagues__copy { max-width: none; }
  .lp-leagues__pills { gap: 0.4rem; }
  .lp-league-pill { height: 34px; padding: 0 0.75rem; font-size: 0.7rem; }
  .lp-league-cards-wrap { overflow: hidden; }
  .lp-league-cards {
    display: flex;
    flex-direction: row;
    gap: 0.85rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.25rem;
    grid-template-columns: unset;
  }
  .lp-league-card {
    flex: 0 0 min(82vw, 280px);
    min-width: min(82vw, 280px);
    height: 240px;
    min-height: 240px;
    scroll-snap-align: start;
  }
  .lp-league-carousel-btn {
    right: 0.25rem;
    width: 40px;
    height: 40px;
  }
  .lp-tools { padding: 3.5rem 1.25rem 4rem; }
  .lp-tools__title { font-size: clamp(2.25rem, 8vw, 2.75rem); }
  .lp-tools__grid { grid-template-columns: 1fr; gap: 14px; }
  .lp-tool-card { min-height: 0; padding: 1.5rem 1.35rem 4.5rem; }
  .lp-film-wrap { padding: 0 1rem 3rem; }
  .lp-film {
    width: 100%;
    height: auto;
    min-height: 360px;
    border-radius: 18px;
  }
  .lp-film__inner {
    max-width: 100%;
    min-width: 0;
  }
  .lp-film__content {
    padding: 2rem 1.25rem;
    align-items: flex-end;
  }
  .lp-film__title { font-size: clamp(2rem, 7vw, 2.5rem); }
  .lp-film__body { font-size: 1rem; max-width: none; }
  .lp-film__play {
    left: 50%;
    top: 38%;
    width: 64px;
    height: 64px;
  }
  .lp-cta-final { padding: 3rem 1.25rem; }
  .lp-cta-final__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: left;
  }
  .lp-cta-final__left { padding-left: 0; }
  .lp-cta-final__route { width: 40px; opacity: 0.7; }
  .lp-cta-final__center {
    justify-self: start;
    max-width: none;
  }
  .lp-cta-final__visual {
    grid-column: auto;
    max-width: 300px;
    margin: 0 auto;
    justify-self: center;
  }
  .lp-footer {
    padding: 2.5rem 1.25rem 2rem;
    overflow: hidden;
  }
  .lp-footer__bg {
    width: 65%;
    height: 50%;
    opacity: 0.45;
  }
  .lp-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem 1.25rem;
  }
  .lp-footer__brand {
    grid-column: 1 / -1;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .lp-footer__tagline { max-width: none; }
  .lp-footer__social { margin-bottom: 1.25rem; }
  .lp-footer__copy {
    margin-top: 0;
    padding-top: 0.25rem;
  }
  .lp-footer__col h4 { margin-bottom: 0.75rem; }
  .lp-footer__col li { margin-bottom: 0.45rem; }
  .lp-hero__ctas { flex-direction: column; align-items: stretch; }
  .lp-hero__ctas .lp-btn { justify-content: center; }
}

@media (max-width: 480px) {
  #auth-landing {
    --badge-coaches-top: 12%;
    --badge-coaches-left: 25%;
    --badge-scouts-top: 10%;
    --badge-scouts-left: 86%;
    --badge-agents-top: 48%;
    --badge-agents-left: 88%;
    --badge-fans-top: 86%;
    --badge-fans-left: 84%;
    --badge-brands-top: 82%;
    --badge-brands-left: 22%;
  }
  .lp-hero { padding-top: 1.5rem; }
  .lp-hero__title { font-size: 2.35rem; }
  .lp-hero__visual { min-height: 280px; max-width: 100%; }
  .connection-orbit { min-height: 280px; }
  .connection-orbit__player { height: min(340px, 46vh); }
  .connection-orbit__node-label { letter-spacing: 0.1em; }
  .lp-league-card {
    flex: 0 0 86vw;
    min-width: 86vw;
    height: 220px;
    min-height: 220px;
  }
  .lp-leagues__panel { padding: 1.75rem 1rem; }
  .lp-film { min-height: 320px; }
  .lp-film__content { padding: 1.5rem 1rem; }
  .lp-cta-final__title { font-size: 2rem; }
  .lp-section { padding-left: 1rem; padding-right: 1rem; }
}
