/* LigaPlus landing â€” VictoryClub identical hero + infinite green marquee */
.lp-body-root {
  margin: 0;
  font-family: "Montserrat", system-ui, sans-serif;
  background: #070B12;
  color: #fff;
  overflow-x: clip;
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

.lp-root {
  --vc-ink: #070B12;
  --vc-navy: #0E1624;
  --vc-surface: #0A1018;
  --vc-lime: #2aaf3d;
  --vc-lime-2: #229634;
  --vc-lime-bright: #34c048;
  --vc-gold: #E2B93B;
  --vc-gold-2: #c99620;
  --vc-text: #FFFFFF;
  --vc-muted: rgba(255,255,255,0.72);
  --vc-muted-solid: #B8C0CC;
  --vc-line: rgba(255,255,255,0.1);
  --vc-on-accent: #0B1220;
  --vc-on-gold: #1a1404;
  background: var(--vc-ink);
  color: var(--vc-text);
}

.lp-container {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.lp-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 100;
  background: rgba(255,255,255,0.08);
}
.lp-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--vc-lime), var(--vc-gold));
}

/* ===== NAV ===== */
.lp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  transition: background 0.25s ease, backdrop-filter 0.25s ease;
}
.lp-nav.is-solid {
  background: rgba(7, 11, 18, 0.88);
  backdrop-filter: blur(14px);
}
.lp-nav-inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.lp-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: #fff;
}
.lp-logo-img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.12);
  flex-shrink: 0;
}
.lp-logo-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
}
.lp-logo-text {
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 1.05rem;
}
.lp-nav-links {
  display: none;
  gap: 1.25rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.lp-nav-links a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
}
.lp-nav-links a.is-active,
.lp-nav-links a:hover { color: var(--vc-gold); }
.lp-nav-cta,
.lp-btn-lime {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--vc-lime);
  color: var(--vc-on-accent);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 0.78rem 1.15rem;
  border-radius: 4px;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.lp-nav-cta:hover,
.lp-btn-lime:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.lp-btn-ghost-gold {
  display: inline-flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 0.78rem 1.15rem;
  border: 1.5px solid var(--vc-gold);
  border-radius: 4px;
  background: transparent;
  transition: background 0.2s ease;
}
.lp-btn-ghost-gold:hover { background: rgba(226,185,59,0.12); }
.lp-nav-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--vc-line);
  border-radius: 12px;
  color: #fff;
  padding: 0;
  cursor: pointer;
}
.lp-burger-lines {
  display: grid;
  gap: 5px;
  width: 18px;
}
.lp-burger-lines i {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.lp-nav.is-menu-open .lp-burger-lines i:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.lp-nav.is-menu-open .lp-burger-lines i:nth-child(2) { opacity: 0; }
.lp-nav.is-menu-open .lp-burger-lines i:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (min-width: 980px) {
  .lp-nav-links { display: flex; }
  .lp-nav-burger { display: none; }
  .lp-dock,
  .lp-app-sheet { display: none !important; }
}

/* ===== APP SHEET (mobile/tablet) ===== */
.lp-app-sheet {
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none;
}
.lp-app-sheet.is-open { pointer-events: auto; }
.lp-app-sheet-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(3, 6, 12, 0.62);
  opacity: 0;
  transition: opacity 0.28s ease;
  cursor: pointer;
}
.lp-app-sheet.is-open .lp-app-sheet-backdrop { opacity: 1; }
.lp-app-sheet-panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: min(88dvh, 720px);
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(42,175,61,0.14), transparent 55%),
    #0b121c;
  border-radius: 22px 22px 0 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-bottom: 0;
  padding: 0.55rem 1.1rem calc(1.2rem + env(safe-area-inset-bottom));
  transform: translateY(110%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 -20px 50px rgba(0,0,0,0.45);
  overflow: auto;
}
.lp-app-sheet.is-open .lp-app-sheet-panel { transform: translateY(0); }
.lp-app-sheet-handle {
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.22);
  margin: 0.25rem auto 0.85rem;
}
.lp-app-sheet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.lp-app-sheet-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #fff;
}
.lp-app-sheet-brand strong {
  display: block;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}
.lp-app-sheet-brand span {
  display: block;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}
.lp-app-sheet-x {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}
.lp-app-sheet-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}
.lp-app-sheet-nav a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 0.8rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 700;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.lp-app-sheet-nav a.is-active,
.lp-app-sheet-nav a:active {
  background: rgba(42,175,61,0.14);
  border-color: rgba(42,175,61,0.4);
}
.lp-app-ico {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(42,175,61,0.12);
  color: var(--vc-lime);
  flex-shrink: 0;
}
.lp-app-sheet-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  background: var(--vc-lime);
  color: var(--vc-on-accent);
  text-decoration: none;
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  border-radius: 14px;
  padding: 0.95rem 1rem;
}
body.lp-menu-lock { overflow: hidden; }

/* ===== BOTTOM DOCK ===== */
.lp-dock {
  position: fixed;
  left: 50%;
  bottom: calc(0.7rem + env(safe-area-inset-bottom));
  transform: translateX(-50%);
  z-index: 95;
  width: min(440px, calc(100% - 1.2rem));
  display: none;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.15rem;
  padding: 0.45rem 0.4rem;
  border-radius: 18px;
  background: #070b12;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 12px 32px rgba(0,0,0,0.45);
}
.lp-dock-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  min-height: 52px;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 12px;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
  font-family: inherit;
}
.lp-dock-item svg { display: block; }
.lp-dock-item.is-active,
.lp-dock-item:active {
  color: var(--vc-lime);
  background: rgba(42,175,61,0.12);
}

/* ===== HERO ===== */
.lp-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding-bottom: 0;
}
.lp-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.lp-hero-img {
  position: absolute;
  inset: 0;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center center;
  transform: scale(1.02);
}
.lp-hero-parallax {
  position: absolute;
  inset: -8% 0 -8% 0;
  background-image: var(--parallax-img);
  background-size: cover;
  background-position: center center;
  opacity: 0.45;
  mix-blend-mode: soft-light;
  pointer-events: none;
  will-change: transform;
}
.lp-hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,11,18,0.72) 0%, rgba(7,11,18,0.28) 45%, rgba(7,11,18,0.18) 100%),
    linear-gradient(to top, rgba(7,11,18,0.88) 0%, rgba(7,11,18,0.25) 45%, rgba(7,11,18,0.15) 100%);
}

.lp-hero-main {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 7.5rem 0 1.5rem;
  flex: 1;
  display: flex;
  align-items: center;
}
.lp-hero-copy { max-width: 40rem; }

.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.1rem;
  color: var(--vc-gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.lp-eyebrow span {
  width: 34px;
  height: 2px;
  background: var(--vc-gold);
  display: inline-block;
}

.lp-headline {
  margin: 0;
  font-weight: 900;
  font-size: clamp(2.8rem, 8vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.lp-line { display: block; }
.lp-line-white { color: #fff; }
.lp-line-gradient {
  background: linear-gradient(90deg, var(--vc-lime) 0%, var(--vc-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lp-lead {
  margin: 1.2rem 0 0;
  max-width: 32rem;
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 500;
}
.lp-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}
.lp-hero-pills {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  color: rgba(255,255,255,0.86);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.lp-hero-pills li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.lp-hero-pills li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vc-gold);
  box-shadow: 0 0 0 2px rgba(226,185,59,0.25);
}

/* Stats glass overlay */
.lp-stats-glass {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto 0.85rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  background: rgba(10, 16, 28, 0.55);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 1.15rem 0.75rem 1.25rem;
}
@media (min-width: 800px) {
  .lp-stats-glass {
    grid-template-columns: repeat(4, 1fr);
    padding: 1.35rem 0.5rem 1.5rem;
  }
}
.lp-stats-item {
  text-align: center;
  padding: 0.35rem 0.5rem;
}
.lp-stats-ico {
  display: block;
  color: var(--vc-gold);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  filter: grayscale(0.2) brightness(1.1);
}
.lp-stats-item strong {
  display: block;
  font-size: clamp(1.7rem, 3.5vw, 2.35rem);
  font-weight: 900;
  line-height: 1;
  color: #fff;
}
.lp-stats-item span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.65);
}

/* ===== INFINITE GREEN MARQUEE ===== */
.lp-marquee {
  position: relative;
  z-index: 4;
  background: var(--vc-lime);
  color: var(--vc-on-accent);
  overflow: hidden;
  white-space: nowrap;
  height: 46px;
  display: flex;
  align-items: center;
}
.lp-marquee-track {
  display: flex;
  width: max-content;
  animation: lp-marquee 28s linear infinite;
  will-change: transform;
}
.lp-marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.lp-marquee-item {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0 0.35rem;
  text-transform: uppercase;
}
.lp-marquee-star {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  font-size: 0.85rem;
  opacity: 0.9;
}
@keyframes lp-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.lp-marquee:hover .lp-marquee-track {
  animation-play-state: paused;
}

.anim-lp {
  opacity: 0;
  transform: translateY(22px);
  animation: lp-rise 0.8s cubic-bezier(0.22,1,0.36,1) forwards;
}
.anim-lp.delay-1 { animation-delay: 0.1s; }
.anim-lp.delay-2 { animation-delay: 0.2s; }
.anim-lp.delay-3 { animation-delay: 0.3s; }
.anim-lp.delay-4 { animation-delay: 0.4s; }
@keyframes lp-rise { to { opacity: 1; transform: none; } }

/* ===== LOWER SECTIONS ===== */
.lp-section { padding: 5rem 0; background: var(--vc-ink); }
.lp-section-head { margin-bottom: 2rem; max-width: 40rem; }
.lp-section-eyebrow {
  margin: 0 0 0.65rem;
  color: var(--vc-gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.lp-h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
}
.lp-kicker { margin: 0.75rem 0 0; color: var(--vc-lime); font-weight: 700; }
.lp-body { margin: 1rem 0 0; color: var(--vc-muted); line-height: 1.65; max-width: 36rem; }

.lp-story { background: var(--vc-surface, #0A1018); }
.lp-story-grid { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 900px) {
  .lp-story-grid { grid-template-columns: 1fr 1.05fr; gap: 3rem; }
}
.lp-media-frame {
  min-height: 46vh;
  background-image: var(--media);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--vc-line);
}

/* ===== ABOUT / STORY (VictoryClub style) ===== */
.lp-about {
  background: #070B12;
  padding: 5.5rem 0 6rem;
}
.lp-about-grid {
  display: grid;
  gap: 2.25rem;
  align-items: center;
}
@media (min-width: 960px) {
  .lp-about-grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 3.5rem;
  }
}
.lp-about-media {
  position: relative;
}
.lp-about-photo {
  min-height: min(52vh, 420px);
  border-radius: 18px;
  background-image: var(--media);
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.lp-about-badge {
  position: absolute;
  right: 1rem;
  bottom: -1.1rem;
  background: rgba(226, 185, 59, 0.92);
  color: var(--vc-on-accent);
  border-radius: 12px;
  padding: 0.85rem 1.15rem;
  min-width: 7.5rem;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}
.lp-about-badge strong {
  display: block;
  font-size: 1.85rem;
  font-weight: 900;
  line-height: 1;
}
.lp-about-badge span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.lp-about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1rem;
  color: var(--vc-gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.lp-about-eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--vc-gold);
}
.lp-about-title {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.lp-about-title-white {
  display: block;
  color: #fff;
}
.lp-about-title-green {
  display: block;
  color: var(--vc-lime);
}
.lp-about-body {
  margin: 1.15rem 0 0;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
  font-size: 0.95rem;
  max-width: 34rem;
}
.lp-about-cards {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}
@media (min-width: 640px) {
  .lp-about-cards { grid-template-columns: 1fr 1fr; }
}
.lp-about-card {
  background: rgba(16, 24, 36, 0.9);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 1rem 1.05rem 1.1rem;
}
.lp-about-card h3 {
  margin: 0;
  color: var(--vc-gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.lp-about-card p {
  margin: 0.45rem 0 0;
  color: rgba(255,255,255,0.88);
  font-size: 0.86rem;
  line-height: 1.55;
}
.lp-about-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  background: linear-gradient(135deg, var(--vc-lime-bright), var(--vc-lime));
  color: var(--vc-on-accent);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 0.85rem 1.25rem;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(42, 175, 61, 0.35);
  transition: transform 0.2s ease, filter 0.2s ease;
}
.lp-about-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.lp-about-btn span {
  font-size: 1.1rem;
  line-height: 1;
}

/* ===== STAR PLAYERS ===== */
.lp-stars { background: #080c14; padding-top: 5rem; }
.lp-stars-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}
.lp-split-title {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
}
.lp-split-title em {
  font-style: normal;
  color: var(--vc-lime);
}
.lp-link-gold {
  color: var(--vc-gold);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}
.lp-link-gold:hover { filter: brightness(1.1); }
.lp-stars-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 900px) {
  .lp-stars-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}
.lp-star-card {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  min-height: 220px;
  max-height: 260px;
  text-decoration: none;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.25s ease;
}
@media (min-width: 900px) {
  .lp-star-card {
    min-height: 240px;
    max-height: 280px;
  }
}
.lp-star-card:hover { transform: translateY(-4px); }
.lp-star-card:hover .lp-star-club {
  transform: translateY(0) scale(1.04);
  border-color: rgba(226, 185, 59, 0.45);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(42, 175, 61, 0.25);
}
.lp-star-photo {
  position: absolute;
  inset: 0;
  background-image: var(--photo);
  background-size: cover;
  background-position: center top;
}
.lp-star-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,11,18,0.92) 0%, rgba(7,11,18,0.15) 55%, transparent 100%);
}
.lp-star-club {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  max-width: calc(100% - 1.4rem);
  padding: 0.28rem 0.55rem 0.28rem 0.28rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(7, 11, 18, 0.72);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  transform: translateY(0);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.lp-star-club-logo {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(226, 185, 59, 0.35);
  flex-shrink: 0;
}
.lp-star-club-fallback {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: linear-gradient(145deg, #2aaf3d, #0e1624);
  border: 1px solid rgba(226, 185, 59, 0.4);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.lp-star-club-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.1;
  padding-right: 0.15rem;
}
@media (max-width: 640px) {
  .lp-star-club-name {
    max-width: 5.5rem;
  }
}
.lp-star-meta {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.85rem;
  z-index: 2;
}
.lp-star-meta span {
  display: block;
  color: var(--vc-gold);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 0.2rem;
}
.lp-star-meta strong {
  display: block;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.lp-star-score {
  display: inline-block;
  margin-top: 0.35rem;
  color: rgba(226,185,59,0.95);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.06em;
}

body.lp-star-modal-open { overflow: hidden; }
.lp-star-modal[hidden] { display: none !important; }
.lp-star-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.lp-star-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(3, 8, 16, 0.78);
  backdrop-filter: blur(8px);
}
.lp-star-modal-panel {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: min(86vh, 640px);
  overflow: auto;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  background:
    radial-gradient(ellipse 60% 40% at 20% 0%, rgba(42,175,61,0.16), transparent 55%),
    linear-gradient(160deg, #0d1522 0%, #070b12 100%);
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
}
.lp-star-modal-x {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  z-index: 3;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}
.lp-star-modal-layout {
  display: grid;
  gap: 0;
}
@media (min-width: 900px) {
  .lp-star-modal-layout {
    grid-template-columns: 0.95fr 1.05fr;
    min-height: 0;
    height: min(78vh, 520px);
  }
}
.lp-star-modal-stage {
  position: relative;
  min-height: 240px;
  height: 260px;
  background: radial-gradient(circle at 50% 40%, rgba(42,175,61,0.12), transparent 55%), #05080e;
  overflow: hidden;
}
@media (min-width: 900px) {
  .lp-star-modal-stage {
    height: 100%;
    min-height: 0;
  }
}
#lp-star-3d-canvas {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 240px;
}
@media (min-width: 900px) {
  #lp-star-3d-canvas {
    height: 100%;
    min-height: 0;
  }
}
.lp-star-modal-club {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(7, 11, 18, 0.75);
  border: 1px solid rgba(226, 185, 59, 0.45);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(42, 175, 61, 0.2);
  backdrop-filter: blur(8px);
  overflow: hidden;
  pointer-events: none;
}
.lp-star-modal-club img {
  width: 78%;
  height: 78%;
  object-fit: contain;
}
.lp-star-modal-club span {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.lp-star-modal-stage-meta {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 2.1rem;
  z-index: 2;
  pointer-events: none;
}
.lp-star-modal-stage-meta span {
  display: block;
  color: var(--vc-gold, #E2B93B);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.lp-star-modal-stage-meta strong {
  display: block;
  margin-top: 0.2rem;
  color: #fff;
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-weight: 900;
  letter-spacing: 0.02em;
}
.lp-star-modal-stage-meta em {
  display: block;
  margin-top: 0.15rem;
  color: rgba(255,255,255,0.55);
  font-style: normal;
  font-size: 0.85rem;
}
.lp-star-modal-hint {
  position: absolute;
  left: 1rem;
  bottom: 0.75rem;
  margin: 0;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  z-index: 2;
}
.lp-star-modal-analytics {
  padding: 1.15rem 1.15rem 1.4rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: grid;
  gap: 1rem;
}
@media (min-width: 900px) {
  .lp-star-modal-analytics {
    border-top: 0;
    border-left: 1px solid rgba(255,255,255,0.08);
    overflow: auto;
    max-height: none;
    height: 100%;
  }
}
.lp-star-modal-score {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.lp-star-modal-score span {
  color: rgba(255,255,255,0.45);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.lp-star-modal-score strong {
  color: #2aaf3d;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.lp-star-modal-score em {
  color: rgba(226,185,59,0.9);
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 700;
}
.lp-star-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
}
.lp-star-kpis div {
  padding: 0.55rem 0.45rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.lp-star-kpis span {
  display: block;
  color: rgba(255,255,255,0.45);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.lp-star-kpis strong {
  display: block;
  margin-top: 0.15rem;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
}
.lp-star-radar-wrap {
  display: grid;
  place-items: center;
}
.lp-star-meter { margin-bottom: 0.55rem; }
.lp-star-meter-top {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
}
.lp-star-meter-top b { color: #fff; }
.lp-star-meter-track {
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}
.lp-star-meter-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2aaf3d, #E2B93B);
}
.lp-star-cap h4,
.lp-star-bio h4,
.lp-star-hist h4 {
  margin: 0 0 0.55rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.lp-star-bio p,
.lp-star-empty {
  margin: 0;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  line-height: 1.45;
}
.lp-star-hist-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}
.lp-star-hist-row b { color: #2aaf3d; }

/* ===== UPCOMING MATCHES ===== */
.lp-matches {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(42,175,61,0.08), transparent 55%),
    #0a1018;
}
.lp-matches-lead {
  margin: 0.85rem auto 0;
  max-width: 34rem;
  color: rgba(255,255,255,0.62);
  font-size: 0.95rem;
  line-height: 1.55;
}
.lp-match-block {
  margin-top: 0.35rem;
}
.lp-match-block--results {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(226, 185, 59, 0.18);
}
.lp-match-block-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem 0.85rem;
  max-width: 980px;
  margin: 0 auto 0.95rem;
}
.lp-match-block-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0b1220;
  background: var(--vc-lime, #2aaf3d);
}
.lp-match-block-kicker--gold {
  background: linear-gradient(135deg, var(--vc-gold, #E2B93B), #c9982a);
  color: #0b1220;
  box-shadow: 0 0 0 1px rgba(226, 185, 59, 0.35), 0 8px 22px rgba(226, 185, 59, 0.18);
}
.lp-match-block-head strong {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.lp-match-block-head em {
  color: rgba(255,255,255,0.45);
  font-style: normal;
  font-size: 0.78rem;
}
.lp-section-center {
  text-align: center;
  margin-bottom: 2.25rem;
}
.lp-section-center .lp-about-eyebrow { justify-content: center; }
.lp-match-list {
  display: grid;
  gap: 1rem;
  max-width: 980px;
  margin: 0 auto;
}
.lp-match-list--results .lp-match-card.is-result {
  background: linear-gradient(90deg, rgba(226, 185, 59, 0.1), rgba(10, 18, 32, 0.78) 30%);
}
.lp-match-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: stretch;
  background: linear-gradient(145deg, rgba(18,26,40,0.95), rgba(10,14,22,0.98));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 1rem 1.1rem 1rem 0.9rem;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.lp-match-card:hover {
  transform: translateY(-3px);
  border-color: rgba(42,175,61,0.35);
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}
.lp-match-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--vc-lime), var(--vc-gold));
}
.lp-match-datebox {
  width: 72px;
  border-radius: 14px;
  background: rgba(42,175,61,0.1);
  border: 1px solid rgba(42,175,61,0.22);
  text-align: center;
  padding: 0.7rem 0.35rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.1rem;
}
.lp-match-day {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
}
.lp-match-datebox strong {
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
}
.lp-match-mon {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--vc-gold);
  letter-spacing: 0.06em;
}
.lp-match-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}
.lp-match-teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.65rem;
  align-items: center;
}
.lp-match-team {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}
.lp-match-team--right {
  justify-content: flex-end;
  text-align: right;
}
.lp-match-crest {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 900;
  color: var(--vc-on-accent);
  background: linear-gradient(145deg, var(--vc-lime-bright), var(--vc-lime));
  box-shadow: 0 0 0 3px rgba(42,175,61,0.15);
}
.lp-match-crest--img {
  object-fit: cover;
  background: rgba(255,255,255,0.08);
  padding: 0;
  border: 1px solid rgba(255,255,255,0.12);
}
.lp-match-crest--alt {
  background: linear-gradient(145deg, var(--vc-gold), var(--vc-gold-2));
  color: var(--vc-on-gold);
  box-shadow: 0 0 0 3px rgba(226,185,59,0.15);
}
.lp-match-score {
  font-size: 1.15rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1;
}
.lp-match-scoreboard {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-width: 5.6rem;
  padding: 0.38rem 0.75rem;
  border-radius: 12px;
  background: rgba(7, 11, 18, 0.88);
  border: 1px solid rgba(226, 185, 59, 0.55);
  box-shadow: 0 0 0 1px rgba(42, 175, 61, 0.12), 0 10px 24px rgba(0, 0, 0, 0.35);
}
.lp-match-scoreboard b {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.lp-match-scoreboard span {
  color: var(--vc-gold, #E2B93B);
  font-weight: 800;
  font-size: 1rem;
}
.lp-match-vs--ft {
  color: var(--vc-gold, #E2B93B) !important;
  letter-spacing: 0.14em;
  font-size: 0.62rem !important;
}
.lp-match-tag--result {
  background: rgba(226, 185, 59, 0.16);
  border-color: rgba(226, 185, 59, 0.4);
  color: var(--vc-gold, #E2B93B);
}
.lp-match-vs--live {
  color: #ff6b6b !important;
  letter-spacing: 0.08em;
}
.lp-match-card.is-result .lp-match-accent {
  background: linear-gradient(180deg, rgba(226,185,59,0.85), rgba(226,185,59,0.15));
}
.lp-match-card.is-live .lp-match-accent {
  background: linear-gradient(180deg, rgba(255,107,107,0.9), rgba(255,107,107,0.15));
}
.lp-match-name {
  font-weight: 800;
  font-size: 0.92rem;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lp-match-mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.lp-match-time {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--vc-gold);
}
.lp-match-vs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.2rem;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  background: rgba(42,175,61,0.15);
  border: 1px solid rgba(42,175,61,0.35);
  color: var(--vc-lime);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}
.lp-match-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  padding-top: 0.15rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.lp-match-venue {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.62);
  font-size: 0.82rem;
  font-weight: 600;
}
.lp-match-venue svg { color: var(--vc-lime); flex: 0 0 auto; }
.lp-match-tag {
  background: rgba(226,185,59,0.95);
  color: var(--vc-on-accent);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
}
@media (max-width: 640px) {
  .lp-match-card {
    grid-template-columns: 1fr;
    padding-left: 1rem;
  }
  .lp-match-datebox {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.55rem;
  }
  .lp-match-teams { grid-template-columns: 1fr; gap: 0.75rem; }
  .lp-match-team--right { justify-content: flex-start; text-align: left; }
  .lp-match-mid { flex-direction: row; justify-content: flex-start; gap: 0.65rem; }
}

/* ===== TRAINING PROGRAMS ===== */
.lp-programs {
  background:
    radial-gradient(ellipse 60% 45% at 80% 20%, rgba(226,185,59,0.07), transparent 50%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(42,175,61,0.08), transparent 50%),
    #080c14;
}
.lp-program-grid {
  display: grid;
  gap: 1.1rem;
}
@media (min-width: 700px) {
  .lp-program-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .lp-program-grid { grid-template-columns: repeat(4, 1fr); }
}
.lp-program-card {
  position: relative;
  background: linear-gradient(165deg, rgba(20,28,42,0.98), rgba(10,14,22,0.98));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 1.35rem 1.2rem 1.25rem;
  display: flex;
  flex-direction: column;
  min-height: 250px;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.lp-program-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--vc-lime), var(--vc-gold));
  opacity: 0.85;
}
.lp-program-card:hover {
  transform: translateY(-5px);
  border-color: rgba(42,175,61,0.4);
  box-shadow: 0 20px 44px rgba(0,0,0,0.3);
}
.lp-program-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}
.lp-program-ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(42,175,61,0.22), rgba(42,175,61,0.08));
  border: 1px solid rgba(42,175,61,0.28);
  color: var(--vc-lime);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.lp-program-meta {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vc-gold);
  background: rgba(226,185,59,0.1);
  border: 1px solid rgba(226,185,59,0.22);
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
}
.lp-program-card h3 {
  margin: 0;
  color: #fff;
  font-size: 1.12rem;
  font-weight: 800;
}
.lp-program-card p {
  margin: 0.6rem 0 0;
  color: rgba(255,255,255,0.62);
  font-size: 0.9rem;
  line-height: 1.55;
}
.lp-program-card a {
  margin-top: auto;
  padding-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--vc-lime);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.88rem;
}
.lp-program-card a:hover { color: var(--vc-gold); }
.lp-program-card a svg { transition: transform 0.2s ease; }
.lp-program-card a:hover svg { transform: translateX(3px); }

/* ===== MATCH MOMENTS ===== */
.lp-moments { background: #080c14; }
.lp-moments-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 900px) {
  .lp-moments-grid { grid-template-columns: repeat(4, 1fr); }
}
.lp-moment {
  position: relative;
  margin: 0;
  min-height: 180px;
  border-radius: 14px;
  overflow: hidden;
  background-image: var(--photo);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,0.08);
  width: 100%;
  padding: 0;
  cursor: pointer;
  display: block;
  text-align: left;
  color: inherit;
  font: inherit;
  transition: transform 0.22s ease, border-color 0.22s ease;
}
.lp-moment:hover {
  transform: translateY(-3px);
  border-color: rgba(226, 185, 59, 0.4);
}
@media (min-width: 900px) {
  .lp-moment { min-height: 220px; }
}
.lp-moment::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,11,18,0.75), transparent 55%);
}
.lp-moment span {
  position: absolute;
  left: 0.85rem;
  bottom: 0.75rem;
  z-index: 1;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

button.lp-link-gold {
  background: none;
  border: 0;
  font: inherit;
  cursor: pointer;
  padding: 0;
}

/* Gallery modal */
html.lp-gallery-lock,
html.lp-gallery-lock body {
  overflow: hidden;
}
.lp-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: max(0.65rem, env(safe-area-inset-top, 0px))
    max(0.65rem, env(safe-area-inset-right, 0px))
    max(0.65rem, env(safe-area-inset-bottom, 0px))
    max(0.65rem, env(safe-area-inset-left, 0px));
  box-sizing: border-box;
}
.lp-gallery-modal[hidden] { display: none !important; }
.lp-gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(3, 6, 12, 0.82);
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.lp-gallery-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  max-height: min(92dvh, 900px);
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 1rem 1.1rem;
  border-radius: 20px;
  border: 1px solid rgba(226, 185, 59, 0.28);
  background: linear-gradient(165deg, rgba(14, 22, 36, 0.98), rgba(7, 11, 18, 0.98));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  transform: translateY(12px) scale(0.98);
  opacity: 0;
  transition: transform 0.22s ease, opacity 0.22s ease;
  overflow: hidden;
  box-sizing: border-box;
}
.lp-gallery-modal.is-open .lp-gallery-modal-panel {
  transform: none;
  opacity: 1;
}
.lp-gallery-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  flex-shrink: 0;
  min-width: 0;
}
.lp-gallery-modal-head > div {
  min-width: 0;
  flex: 1;
  padding-right: 0.25rem;
}
.lp-gallery-modal-kicker {
  margin: 0;
  color: var(--vc-gold, #E2B93B);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.lp-gallery-modal-head h2 {
  margin: 0.2rem 0 0;
  color: #fff;
  font-size: clamp(1.05rem, 2.8vw, 1.25rem);
  line-height: 1.25;
  word-break: break-word;
}
.lp-gallery-modal-x {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}
.lp-gallery-modal-stage {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.55rem;
  align-items: center;
  min-height: 0;
  flex: 1 1 auto;
}
.lp-gallery-modal-figure {
  margin: 0;
  min-width: 0;
  min-height: 0;
  width: 100%;
  max-height: min(58dvh, 560px);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: #05080f;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  position: relative;
}
.lp-gallery-modal-figure img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  background: #05080f;
  display: block;
}
.lp-gallery-modal-figure figcaption {
  position: absolute;
  left: 0.65rem;
  right: 0.65rem;
  bottom: 0.65rem;
  width: fit-content;
  max-width: calc(100% - 1.3rem);
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: rgba(7, 11, 18, 0.72);
  border: 1px solid rgba(226, 185, 59, 0.3);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
}
.lp-gallery-nav {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.lp-gallery-nav:hover {
  border-color: rgba(226, 185, 59, 0.45);
  color: var(--vc-gold, #E2B93B);
}
.lp-gallery-thumbs {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(64px, 1fr);
  gap: 0.45rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 0.15rem;
  flex-shrink: 0;
  max-width: 100%;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.lp-gallery-thumb {
  height: 58px;
  min-width: 64px;
  border-radius: 10px;
  border: 2px solid transparent;
  background-image: var(--photo);
  background-size: cover;
  background-position: center;
  cursor: pointer;
  opacity: 0.7;
  scroll-snap-align: start;
  -webkit-tap-highlight-color: transparent;
}
.lp-gallery-thumb.is-active,
.lp-gallery-thumb:hover {
  opacity: 1;
  border-color: var(--vc-gold, #E2B93B);
}
.lp-gallery-modal-count {
  margin: 0;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .lp-gallery-modal-panel {
    width: 100%;
    max-height: min(94dvh, 100%);
  }
  .lp-gallery-modal-figure {
    max-height: min(52dvh, 480px);
  }
}

@media (max-width: 720px) {
  .lp-gallery-modal {
    padding: 0;
    place-items: stretch;
  }
  .lp-gallery-modal-panel {
    width: 100%;
    height: 100%;
    max-height: 100dvh;
    max-height: 100svh;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    padding:
      max(0.85rem, env(safe-area-inset-top, 0px))
      max(0.75rem, env(safe-area-inset-right, 0px))
      max(0.85rem, env(safe-area-inset-bottom, 0px))
      max(0.75rem, env(safe-area-inset-left, 0px));
    gap: 0.65rem;
  }
  .lp-gallery-modal-head h2 {
    font-size: 1.1rem;
  }
  .lp-gallery-modal-x {
    width: 2.6rem;
    height: 2.6rem;
  }
  .lp-gallery-modal-stage {
    grid-template-columns: 1fr;
    flex: 1 1 auto;
    min-height: 0;
  }
  .lp-gallery-modal-figure {
    aspect-ratio: auto;
    height: 100%;
    max-height: none;
    min-height: min(42dvh, 320px);
    border-radius: 14px;
  }
  .lp-gallery-modal-figure figcaption {
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
    max-width: calc(100% - 1rem);
    font-size: 0.68rem;
    padding: 0.24rem 0.5rem;
  }
  .lp-gallery-nav {
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    width: 2.75rem;
    height: 2.75rem;
    background: rgba(7, 11, 18, 0.72);
    border-color: rgba(255,255,255,0.22);
    backdrop-filter: blur(4px);
  }
  .lp-gallery-nav--prev { left: 0.45rem; }
  .lp-gallery-nav--next { right: 0.45rem; }
  .lp-gallery-thumbs {
    grid-auto-columns: 72px;
    gap: 0.4rem;
    padding-bottom: 0.25rem;
  }
  .lp-gallery-thumb {
    height: 56px;
    min-width: 72px;
  }
}

@media (max-width: 420px) {
  .lp-gallery-modal-panel {
    gap: 0.55rem;
  }
  .lp-gallery-modal-kicker {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }
  .lp-gallery-modal-figure {
    min-height: min(38dvh, 260px);
    border-radius: 12px;
  }
  .lp-gallery-nav {
    width: 2.45rem;
    height: 2.45rem;
    font-size: 1.35rem;
  }
  .lp-gallery-nav--prev { left: 0.3rem; }
  .lp-gallery-nav--next { right: 0.3rem; }
  .lp-gallery-thumbs {
    grid-auto-columns: 60px;
  }
  .lp-gallery-thumb {
    height: 48px;
    min-width: 60px;
    border-radius: 8px;
  }
  .lp-gallery-modal-count {
    font-size: 0.72rem;
  }
}

@media (max-height: 640px) and (orientation: landscape) {
  .lp-gallery-modal {
    padding: 0.35rem;
    place-items: center;
  }
  .lp-gallery-modal-panel {
    height: auto;
    max-height: 96dvh;
    border-radius: 14px;
    padding: 0.65rem 0.75rem 0.7rem;
    gap: 0.45rem;
  }
  .lp-gallery-modal-stage {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }
  .lp-gallery-modal-figure {
    aspect-ratio: 16 / 9;
    height: auto;
    max-height: min(58dvh, 320px);
    min-height: 0;
  }
  .lp-gallery-nav {
    position: static;
    transform: none;
    width: 2.2rem;
    height: 2.2rem;
  }
  .lp-gallery-thumbs {
    grid-auto-columns: 52px;
  }
  .lp-gallery-thumb {
    height: 40px;
    min-width: 52px;
  }
  .lp-gallery-modal-figure figcaption {
    display: none;
  }
}

/* ===== VOICES / INFINITE CAROUSEL ===== */
.lp-voices {
  position: relative;
  overflow: hidden;
  padding-bottom: 4.5rem;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(42,175,61,0.12), transparent 60%),
    repeating-linear-gradient(
      -45deg,
      rgba(255,255,255,0.015) 0,
      rgba(255,255,255,0.015) 1px,
      transparent 1px,
      transparent 10px
    ),
    #0a1018;
}
.lp-voices-glow {
  position: absolute;
  left: 50%;
  top: 42%;
  width: min(70vw, 640px);
  height: 280px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(226,185,59,0.08), transparent 70%);
  pointer-events: none;
}
.lp-voices-sub {
  margin: 0.85rem auto 0;
  max-width: 28rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  line-height: 1.5;
}
.lp-voice-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin: 1.35rem auto 0;
  padding: 0.85rem 1.15rem 0.85rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(226, 185, 59, 0.55);
  background: linear-gradient(120deg, rgba(42, 175, 61, 0.95), rgba(226, 185, 59, 0.92));
  color: #0b1220;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(42, 175, 61, 0.28), 0 0 0 1px rgba(255,255,255,0.08) inset;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.lp-voice-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 40px rgba(226, 185, 59, 0.32);
}
.lp-voice-cta-glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 40%, rgba(255,255,255,0.35), transparent 55%);
  animation: lpVoiceCtaShine 3.2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes lpVoiceCtaShine {
  0%, 100% { transform: translateX(-12%) rotate(8deg); opacity: 0.55; }
  50% { transform: translateX(18%) rotate(8deg); opacity: 0.9; }
}
.lp-voice-cta-ico {
  position: relative;
  z-index: 1;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(11, 18, 32, 0.18);
  font-size: 1.15rem;
  color: #0b1220;
}
.lp-voice-cta-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0.1rem;
}
.lp-voice-cta-copy strong {
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.lp-voice-cta-copy em {
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0.75;
}
.lp-voice-cta-arrow {
  position: relative;
  z-index: 1;
  font-size: 1.2rem;
  font-weight: 900;
  margin-left: 0.15rem;
}
html.lp-voice-lock,
html.lp-voice-lock body {
  overflow: hidden;
}
.lp-voice-modal {
  position: fixed;
  inset: 0;
  z-index: 1210;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.lp-voice-modal[hidden] { display: none !important; }
.lp-voice-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(3, 6, 12, 0.82);
  backdrop-filter: blur(10px);
  cursor: pointer;
}
.lp-voice-modal-panel {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  max-height: min(92vh, 820px);
  overflow: auto;
  padding: 0.35rem;
  border-radius: 22px;
  border: 1px solid rgba(226, 185, 59, 0.35);
  background: linear-gradient(160deg, rgba(18, 28, 44, 0.98), rgba(7, 11, 18, 0.99));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  transform: translateY(14px) scale(0.97);
  opacity: 0;
  transition: transform 0.24s ease, opacity 0.24s ease;
}
.lp-voice-modal.is-open .lp-voice-modal-panel {
  transform: none;
  opacity: 1;
}
.lp-voice-modal-x {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}
.lp-voice-form {
  margin: 0;
  max-width: none;
  padding: 1.5rem 1.25rem 1.4rem;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.lp-voice-form--modal {
  padding-top: 1.75rem;
}
.lp-voice-form-head {
  margin-bottom: 1.1rem;
  text-align: center;
}
.lp-voice-form-kicker {
  margin: 0;
  color: var(--vc-gold, #E2B93B);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.lp-voice-form-head h3 {
  margin: 0.35rem 0 0.4rem;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 900;
}
.lp-voice-form-head p {
  margin: 0;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.45;
}
.lp-voice-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}
@media (min-width: 720px) {
  .lp-voice-form-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.lp-voice-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.lp-voice-field--full { grid-column: 1 / -1; }
.lp-voice-field input,
.lp-voice-field textarea {
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: #fff;
  background: #0b1220;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
}
.lp-voice-field textarea { resize: vertical; min-height: 110px; line-height: 1.45; }
.lp-voice-rating legend {
  padding: 0;
  margin-bottom: 0.45rem;
}
.lp-star-picker {
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 0.2rem;
}
.lp-star-picker input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.lp-star-picker label {
  cursor: pointer;
  font-size: 1.85rem;
  line-height: 1;
  color: rgba(255,255,255,0.22);
  transition: color 0.15s ease, transform 0.15s ease;
}
.lp-star-picker label:hover,
.lp-star-picker label:hover ~ label,
.lp-star-picker input:checked ~ label {
  color: var(--vc-gold, #E2B93B);
}
.lp-star-picker label:hover { transform: scale(1.08); }
.lp-voice-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}
.lp-voice-form .lp-btn-lime {
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
}
.lp-voices-rail {
  position: relative;
  margin-top: 2.4rem;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.lp-voices-track {
  display: flex;
  width: max-content;
  animation: lp-voices-scroll 42s linear infinite;
  will-change: transform;
}
.lp-voices-rail:hover .lp-voices-track {
  animation-play-state: paused;
}
.lp-voices-group {
  display: flex;
  gap: 0.85rem;
  padding-right: 0.85rem;
}
@keyframes lp-voices-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.lp-voice-card {
  flex: 0 0 min(260px, 72vw);
  width: min(260px, 72vw);
  background: rgba(16, 24, 38, 0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 1rem 0.95rem 0.95rem;
  position: relative;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 10px 24px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.04);
  opacity: 0.72;
  cursor: pointer;
  outline: none;
  transition:
    opacity 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.25s ease,
    box-shadow 0.3s ease,
    backdrop-filter 0.3s ease;
}
.lp-voice-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(42,175,61,0.4), transparent 40%, rgba(226,185,59,0.25));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.55;
  transition: opacity 0.3s ease;
}
.lp-voice-card:hover,
.lp-voice-card:focus,
.lp-voice-card:focus-visible,
.lp-voice-card.is-clear,
.lp-voice-card:active {
  opacity: 1;
  background: rgba(18, 28, 44, 0.88);
  border-color: rgba(42,175,61,0.4);
  transform: translateY(-2px);
  box-shadow:
    0 14px 32px rgba(0,0,0,0.35),
    0 0 0 1px rgba(42,175,61,0.12),
    inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.lp-voice-card:hover::before,
.lp-voice-card:focus::before,
.lp-voice-card.is-clear::before,
.lp-voice-card:active::before {
  opacity: 1;
}
.lp-voice-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
}
.lp-voice-avatar {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--vc-on-accent);
  background: linear-gradient(135deg, var(--vc-lime), #1e8a30);
  box-shadow: 0 0 12px rgba(42,175,61,0.28);
}
.lp-voice-stars {
  color: var(--vc-gold);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  opacity: 0.85;
}
.lp-voice-card p {
  margin: 0.75rem 0 0;
  color: rgba(255,255,255,0.78);
  font-size: 0.82rem;
  line-height: 1.55;
  flex: 1;
  font-style: italic;
  transition: color 0.3s ease;
}
.lp-voice-card:hover p,
.lp-voice-card:focus p,
.lp-voice-card.is-clear p,
.lp-voice-card:active p {
  color: rgba(255,255,255,0.95);
}
.lp-voice-card p::before {
  content: "\201C";
  color: rgba(42,175,61,0.55);
  font-style: normal;
  font-weight: 900;
  font-size: 1.35rem;
  margin-right: 0.15rem;
  line-height: 0;
  vertical-align: -0.05em;
}
.lp-voice-card footer {
  margin-top: 0.85rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.lp-voice-card strong {
  display: block;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}
.lp-voice-card footer span {
  display: block;
  margin-top: 0.15rem;
  color: var(--vc-gold);
  font-size: 0.64rem;
  font-weight: 700;
}

/* ===== STANDINGS / POSICIONES ===== */
.lp-standings {
  position: relative;
  overflow: hidden;
  padding-bottom: 4.5rem;
}
.lp-standings-glow {
  position: absolute;
  inset: 10% auto auto 50%;
  width: min(720px, 90vw);
  height: 280px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(42, 175, 61, 0.16), transparent 70%);
  pointer-events: none;
}
.lp-standings-sub {
  margin: 0.85rem auto 0;
  max-width: 34rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  line-height: 1.5;
}
.lp-standings-scope {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.65rem;
  align-items: center;
  justify-content: center;
  margin: 1rem auto 0;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(226, 185, 59, 0.28);
  background: rgba(226, 185, 59, 0.08);
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  font-weight: 700;
}
.lp-standings-scope em {
  font-style: normal;
  color: var(--vc-gold, #E2B93B);
}
.lp-standings-empty {
  margin: 2rem auto 0;
  max-width: 28rem;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  line-height: 1.5;
}
.lp-standings-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
}

/* ── Comunicados / avisos oficiales ── */
.lp-comunicados {
  position: relative;
  overflow: hidden;
  padding-bottom: 4.5rem;
  background:
    radial-gradient(ellipse 70% 48% at 50% 0%, rgba(42, 175, 61, 0.12), transparent 60%),
    radial-gradient(ellipse 45% 40% at 90% 85%, rgba(226, 185, 59, 0.06), transparent 55%),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.015) 0,
      rgba(255, 255, 255, 0.015) 1px,
      transparent 1px,
      transparent 10px
    ),
    #0a1018;
}
.lp-comunicados-glow {
  position: absolute;
  left: 50%;
  top: 38%;
  width: min(70vw, 640px);
  height: 260px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(226, 185, 59, 0.08), transparent 70%);
  pointer-events: none;
}
.lp-comunicados-grid-bg {
  display: none;
}
.lp-comunicados-empty {
  margin: 2rem auto 0;
  max-width: 28rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  line-height: 1.5;
}
.lp-comunicados-list {
  display: grid;
  gap: 1.1rem;
  max-width: 920px;
  margin: 2.15rem auto 0;
}
@media (min-width: 820px) {
  .lp-comunicados-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
  }
  .lp-comunicado.is-pinned {
    grid-column: 1 / -1;
  }
}

.lp-comunicado {
  --ci-accent: var(--vc-lime, #2aaf3d);
  --ci-accent-soft: rgba(42, 175, 61, 0.18);
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.15rem;
  align-items: start;
  padding: 1.2rem 1.2rem 1.25rem 1.05rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), transparent 38%),
    linear-gradient(180deg, rgba(14, 22, 38, 0.95), rgba(8, 12, 20, 0.98));
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
  isolation: isolate;
  opacity: 0;
  transform: translateY(18px);
  animation: lpComunicadoIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--ci, 0) * 0.07s);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.lp-comunicado:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--ci-accent) 45%, transparent);
  box-shadow:
    0 22px 44px rgba(0, 0, 0, 0.34),
    0 0 0 1px color-mix(in srgb, var(--ci-accent) 18%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
@keyframes lpComunicadoIn {
  to { opacity: 1; transform: none; }
}

.lp-comunicado.is-tag-general,
.lp-comunicado.is-tag-oficial {
  --ci-accent: var(--vc-gold, #E2B93B);
  --ci-accent-soft: rgba(226, 185, 59, 0.18);
}
.lp-comunicado.is-tag-urgente {
  --ci-accent: #ef6b4a;
  --ci-accent-soft: rgba(239, 107, 74, 0.18);
}
.lp-comunicado.is-tag-especifico,
.lp-comunicado.is-tag-espec-fico {
  --ci-accent: var(--vc-lime, #2aaf3d);
  --ci-accent-soft: rgba(42, 175, 61, 0.18);
}

.lp-comunicado-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.07) 48%, transparent 62%);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
  pointer-events: none;
  z-index: 0;
}
.lp-comunicado:hover .lp-comunicado-shine {
  transform: translateX(120%);
}
.lp-comunicado-rail {
  position: absolute;
  left: 0;
  top: 14%;
  bottom: 14%;
  width: 3px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, var(--ci-accent), transparent);
  box-shadow: 0 0 16px var(--ci-accent-soft);
  z-index: 1;
}

.lp-comunicado-date {
  position: relative;
  z-index: 1;
  width: 4.1rem;
  padding: 0.7rem 0.35rem 0.65rem;
  border-radius: 14px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 20%, var(--ci-accent-soft), transparent 70%),
    rgba(255, 255, 255, 0.04);
  border: 1px solid color-mix(in srgb, var(--ci-accent) 35%, transparent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.lp-comunicado-date strong {
  display: block;
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.lp-comunicado-date span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ci-accent);
}
.lp-comunicado-date em {
  display: block;
  margin-top: 0.15rem;
  font-style: normal;
  font-size: 0.62rem;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.4);
}

.lp-comunicado-body {
  position: relative;
  z-index: 1;
  min-width: 0;
}
.lp-comunicado-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.6rem;
  margin-bottom: 0.55rem;
}
.lp-comunicado-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0b1220;
  background: linear-gradient(135deg, var(--ci-accent), color-mix(in srgb, var(--ci-accent) 72%, #fff));
  box-shadow: 0 6px 14px var(--ci-accent-soft);
}
.lp-comunicado-head time {
  font-size: 0.72rem;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.42);
}
.lp-comunicado-pin {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  margin-left: auto;
  font-style: normal;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vc-gold, #E2B93B);
}
.lp-comunicado-pin svg {
  flex: 0 0 auto;
}

.lp-comunicado h3 {
  margin: 0 0 0.45rem;
  font-size: 1.12rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.lp-comunicado p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* Destacado: hero editorial */
.lp-comunicado.is-pinned {
  padding: 1.45rem 1.45rem 1.5rem 1.25rem;
  gap: 1.25rem 1.4rem;
  border-color: rgba(226, 185, 59, 0.45);
  background:
    linear-gradient(120deg, rgba(226, 185, 59, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(42, 175, 61, 0.07), transparent 55%),
    linear-gradient(180deg, rgba(16, 24, 40, 0.96), rgba(8, 12, 20, 0.98));
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.34),
    0 0 40px rgba(226, 185, 59, 0.08),
    inset 0 1px 0 rgba(255, 236, 180, 0.12);
}
.lp-comunicado.is-pinned .lp-comunicado-date {
  width: 4.6rem;
  padding: 0.85rem 0.4rem 0.75rem;
  border-color: rgba(226, 185, 59, 0.5);
  background:
    radial-gradient(circle at 50% 18%, rgba(226, 185, 59, 0.28), transparent 70%),
    rgba(255, 255, 255, 0.05);
}
.lp-comunicado.is-pinned .lp-comunicado-date strong {
  font-size: 1.75rem;
}
.lp-comunicado.is-pinned h3 {
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
}
.lp-comunicado.is-pinned p {
  font-size: 0.95rem;
  max-width: 46rem;
}
@media (min-width: 820px) {
  .lp-comunicado.is-pinned {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
  }
}

@media (max-width: 560px) {
  .lp-comunicado {
    grid-template-columns: 1fr;
    padding-left: 1.15rem;
  }
  .lp-comunicado-date {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    width: auto;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
  }
  .lp-comunicado-date strong {
    font-size: 1rem;
  }
  .lp-comunicado-date span,
  .lp-comunicado-date em {
    margin-top: 0;
    font-size: 0.68rem;
  }
  .lp-comunicado-head time {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-comunicado {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
  .lp-comunicado-shine {
    display: none;
  }
}

/* ── Podio 3D moderno ── */
.lp-podium {
  --pod-gold: var(--vc-gold, #E2B93B);
  --pod-lime: var(--vc-lime, #2aaf3d);
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 1.15rem;
  align-items: end;
  max-width: 920px;
  margin: 2.4rem auto 2rem;
  padding: 1.5rem 0.5rem 0.25rem;
  perspective: 1200px;
  transform-style: preserve-3d;
}
.lp-podium-aura {
  position: absolute;
  left: 50%;
  bottom: 8%;
  width: min(420px, 70%);
  height: 180px;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse at center, rgba(226, 185, 59, 0.28), transparent 68%),
    radial-gradient(ellipse at center, rgba(42, 175, 61, 0.12), transparent 72%);
  filter: blur(18px);
  pointer-events: none;
  z-index: 0;
}

.lp-podium-col {
  --pod-accent: #9aa6bc;
  --pod-plinth-h: 4.2rem;
  --pod-lift: 0px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  min-width: 0;
  opacity: 0;
  transform: translateY(28px) rotateX(8deg);
  transform-origin: center bottom;
  animation: lpPodiumIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--pod-delay, 0s);
}
.lp-podium-col.is-gold {
  --pod-accent: var(--pod-gold);
  --pod-plinth-h: 6.4rem;
  --pod-lift: -18px;
  z-index: 3;
}
.lp-podium-col.is-silver {
  --pod-accent: #c5cedd;
  --pod-plinth-h: 5.1rem;
  z-index: 2;
}
.lp-podium-col.is-bronze {
  --pod-accent: #c48a55;
  --pod-plinth-h: 3.8rem;
}
@keyframes lpPodiumIn {
  to {
    opacity: 1;
    transform: translateY(var(--pod-lift)) rotateX(0deg);
  }
}

.lp-podium-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 1.35rem 0.9rem 1.2rem;
  margin: 0 0.15rem;
  border-radius: 22px;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.1), transparent 42%),
    linear-gradient(180deg, rgba(18, 28, 46, 0.92), rgba(8, 12, 22, 0.96));
  border: 1px solid color-mix(in srgb, var(--pod-accent) 42%, transparent);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  transform: translateZ(24px);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.lp-podium-col:hover .lp-podium-card {
  transform: translateY(-6px) translateZ(32px);
  border-color: color-mix(in srgb, var(--pod-accent) 72%, transparent);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.42),
    0 0 0 1px color-mix(in srgb, var(--pod-accent) 20%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.lp-podium-col.is-gold .lp-podium-card {
  padding-top: 1.55rem;
  background:
    linear-gradient(165deg, rgba(226, 185, 59, 0.22), transparent 46%),
    linear-gradient(180deg, rgba(42, 175, 61, 0.08), transparent 50%),
    linear-gradient(180deg, rgba(20, 28, 44, 0.95), rgba(8, 12, 22, 0.98));
  border-color: rgba(226, 185, 59, 0.55);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.4),
    0 0 36px rgba(226, 185, 59, 0.12),
    inset 0 1px 0 rgba(255, 236, 180, 0.2);
}

.lp-podium-ribbon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.45rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(11, 18, 32, 0.92);
  background: linear-gradient(135deg, var(--pod-accent), color-mix(in srgb, var(--pod-accent) 70%, #fff));
  box-shadow: 0 6px 14px color-mix(in srgb, var(--pod-accent) 28%, transparent);
}
.lp-podium-col.is-gold .lp-podium-ribbon {
  font-size: 0.68rem;
  padding: 0.28rem 0.85rem;
  background: linear-gradient(135deg, #f0d06a, #e2b93b 45%, #b8891a);
}

.lp-podium-crest {
  width: 3.75rem;
  height: 3.75rem;
  margin: 0.35rem 0 0.15rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.18), transparent 45%),
    rgba(255, 255, 255, 0.05);
  border: 2px solid color-mix(in srgb, var(--pod-accent) 55%, transparent);
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}
.lp-podium-crest img {
  width: 72%;
  height: 72%;
  object-fit: contain;
}
.lp-podium-crest span {
  font-size: 0.78rem;
  font-weight: 900;
  color: var(--pod-accent);
}

/* Solo 1.er lugar: medalla girando en Y */
.lp-podium-crest.is-spin {
  width: 5rem;
  height: 5rem;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
  perspective: 800px;
  -webkit-perspective: 800px;
  position: relative;
}
.lp-podium-crest.is-spin::before {
  content: "";
  position: absolute;
  inset: -14%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226, 185, 59, 0.42), transparent 70%);
  filter: blur(7px);
  z-index: 0;
  animation: lpPodiumGlow 3s ease-in-out infinite;
}
.lp-podium-crest-disc {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: lpPodiumSpinY 3s linear infinite;
  will-change: transform;
}
.lp-podium-crest-face {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background:
    radial-gradient(circle at 32% 26%, rgba(255, 255, 255, 0.35), transparent 40%),
    linear-gradient(145deg, rgba(240, 208, 106, 0.55), rgba(12, 18, 30, 0.95) 52%, rgba(226, 185, 59, 0.28));
  border: 2.5px solid rgba(226, 185, 59, 0.9);
  box-shadow:
    0 0 0 4px rgba(226, 185, 59, 0.14),
    0 12px 28px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.lp-podium-crest-face.is-back {
  transform: rotateY(180deg);
}
.lp-podium-crest-face img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.4));
}
.lp-podium-crest-face span {
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--pod-gold);
}

.lp-podium-name {
  max-width: 100%;
  margin-top: 0.15rem;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lp-podium-col.is-gold .lp-podium-name {
  font-size: 1.02rem;
}

.lp-podium-pts {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}
.lp-podium-pts b {
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--pod-accent);
  text-shadow: 0 0 18px color-mix(in srgb, var(--pod-accent) 35%, transparent);
}
.lp-podium-col.is-gold .lp-podium-pts b {
  font-size: 1.85rem;
  color: var(--pod-gold);
}
.lp-podium-pts span {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.42);
  text-transform: lowercase;
}

.lp-podium-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.55rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.68rem;
  font-weight: 650;
}

/* Pedestal 3D */
.lp-podium-plinth {
  position: relative;
  height: var(--pod-plinth-h);
  margin-top: -2px;
  transform-style: preserve-3d;
}
.lp-podium-plinth-top {
  height: 0.55rem;
  margin: 0 0.05rem;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(90deg,
    color-mix(in srgb, var(--pod-accent) 18%, #1a2233),
    color-mix(in srgb, var(--pod-accent) 42%, #2a3348),
    color-mix(in srgb, var(--pod-accent) 18%, #1a2233));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: perspective(400px) rotateX(55deg);
  transform-origin: bottom center;
}
.lp-podium-plinth-front {
  position: absolute;
  inset: 0.35rem 0 0;
  display: grid;
  place-items: center;
  border-radius: 0 0 16px 16px;
  border: 1px solid color-mix(in srgb, var(--pod-accent) 32%, transparent);
  border-top: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 28%),
    linear-gradient(180deg,
      color-mix(in srgb, var(--pod-accent) 16%, #141c2c),
      #0a101a 70%);
  box-shadow:
    inset 8px 0 16px rgba(0, 0, 0, 0.18),
    inset -8px 0 16px rgba(0, 0, 0, 0.18),
    0 14px 28px rgba(0, 0, 0, 0.28);
}
.lp-podium-plinth-front em {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-style: normal;
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: 0.04em;
  line-height: 1;
  color: color-mix(in srgb, var(--pod-accent) 88%, #fff);
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.35);
  opacity: 0.9;
}
.lp-podium-col.is-gold .lp-podium-plinth-front em {
  font-size: clamp(2.4rem, 5vw, 3.25rem);
  opacity: 1;
  color: var(--pod-gold);
  text-shadow:
    0 0 20px rgba(226, 185, 59, 0.35),
    0 2px 0 rgba(0, 0, 0, 0.4);
}

@keyframes lpPodiumSpinY {
  from { transform: rotateY(0deg); }
  to { transform: rotateY(360deg); }
}
@keyframes lpPodiumGlow {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

@media (prefers-reduced-motion: reduce) {
  .lp-podium-col {
    animation: none !important;
    opacity: 1;
    transform: translateY(var(--pod-lift));
  }
  .lp-podium-crest-disc,
  .lp-podium-crest.is-spin::before {
    animation: none !important;
  }
}

@media (max-width: 820px) {
  .lp-podium {
    grid-template-columns: 1fr;
    max-width: 320px;
    gap: 1.1rem;
    perspective: none;
  }
  .lp-podium-col.is-gold { order: -1; }
  .lp-podium-col.is-gold,
  .lp-podium-col.is-silver,
  .lp-podium-col.is-bronze {
    --pod-plinth-h: 3.4rem;
    --pod-lift: 0px;
  }
  .lp-podium-crest.is-spin {
    width: 4.5rem;
    height: 4.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-podium-col {
    animation: none;
    opacity: 1;
    transform: translateY(var(--pod-lift));
  }
}

.lp-stand-board {
  max-width: 980px;
  margin: 0 auto;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(180deg, rgba(14, 22, 36, 0.92), rgba(7, 11, 18, 0.96));
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}
.lp-stand-head,
.lp-stand-row {
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1.8fr) repeat(5, 2.4rem) 3rem minmax(5.5rem, 0.9fr);
  gap: 0.35rem;
  align-items: center;
  padding: 0.7rem 0.9rem;
}
.lp-stand-head {
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.45);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.lp-stand-row {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.78);
  font-size: 0.86rem;
  font-weight: 650;
  transition: background 0.15s ease;
}
.lp-stand-row:last-child { border-bottom: 0; }
.lp-stand-row:hover { background: rgba(42, 175, 61, 0.06); }
.lp-stand-row.is-top {
  background: rgba(226, 185, 59, 0.05);
}
.lp-stand-row.is-top:hover {
  background: rgba(226, 185, 59, 0.09);
}
.lp-stand-pos em {
  display: inline-grid;
  place-items: center;
  min-width: 1.55rem;
  height: 1.55rem;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  font-style: normal;
  font-weight: 900;
  font-size: 0.78rem;
  color: #fff;
}
.lp-stand-row.is-top .lp-stand-pos em {
  background: rgba(226, 185, 59, 0.2);
  color: var(--vc-gold, #E2B93B);
}
.lp-stand-team {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}
.lp-stand-team img,
.lp-stand-fallback {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: contain;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}
.lp-stand-fallback {
  display: grid;
  place-items: center;
  font-size: 0.55rem;
  font-weight: 900;
  color: var(--vc-lime, #2aaf3d);
}
.lp-stand-team strong {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lp-stand-pts {
  color: var(--vc-lime, #2aaf3d);
  font-weight: 900;
}
.lp-stand-row .is-plus { color: #5ad86a; }
.lp-stand-row .is-minus { color: #ff7b7b; }
.lp-stand-form {
  display: inline-flex;
  gap: 0.2rem;
  justify-content: flex-end;
}
.lp-stand-form i {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 4px;
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 0.58rem;
  font-weight: 900;
}
.lp-stand-form i.is-w { background: rgba(42, 175, 61, 0.25); color: #7dff8f; }
.lp-stand-form i.is-d { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }
.lp-stand-form i.is-l { background: rgba(220, 60, 60, 0.25); color: #ff9a9a; }

@media (max-width: 820px) {
  .lp-stand-head,
  .lp-stand-row {
    grid-template-columns: 2rem minmax(0, 1fr) 2.2rem 2.6rem;
    padding: 0.65rem 0.7rem;
  }
  /* Ocultar G E P DG y Forma; dejar # Equipo PJ PTS */
  .lp-stand-head > span:nth-child(4),
  .lp-stand-head > span:nth-child(5),
  .lp-stand-head > span:nth-child(6),
  .lp-stand-head > span:nth-child(7),
  .lp-stand-head > span:nth-child(9),
  .lp-stand-row > span:nth-child(4),
  .lp-stand-row > span:nth-child(5),
  .lp-stand-row > span:nth-child(6),
  .lp-stand-row > span:nth-child(7),
  .lp-stand-row > .lp-stand-form {
    display: none;
  }
}

@media (max-width: 520px) {
  .lp-stand-head,
  .lp-stand-row {
    grid-template-columns: 1.8rem minmax(0, 1fr) 2.5rem;
  }
  .lp-stand-head > span:nth-child(3),
  .lp-stand-row > span:nth-child(3) {
    display: none;
  }
}

/* ===== JOIN CTA ===== */
.lp-join {
  position: relative;
  padding: 5.5rem 0;
  overflow: hidden;
  text-align: center;
}
.lp-join-bg {
  position: absolute;
  inset: 0;
  background-image: var(--join-img);
  background-size: cover;
  background-position: center;
}
.lp-join-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,11,18,0.82), rgba(7,11,18,0.88));
}
.lp-join-inner {
  position: relative;
  z-index: 1;
  max-width: 48rem;
}
.lp-join-inner .lp-about-eyebrow,
.lp-join-inner .lp-cta-row { justify-content: center; }
.lp-join-lead {
  margin: 1rem auto 0;
  max-width: 30rem;
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
}
.lp-join-inner .lp-cta-row { margin-top: 1.6rem; }

/* ===== NEWSLETTER / ALERTS â€” compact ===== */
.lp-alerts {
  background: #080c14;
  padding: 1.25rem 0 2.75rem;
}
.lp-alerts-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem 1.25rem;
  max-width: 920px;
  margin: 0 auto;
  background: rgba(12,18,28,0.92);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  padding: 0.85rem 1rem 0.85rem 1.15rem;
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
  position: relative;
  overflow: hidden;
}
.lp-alerts-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--vc-lime), var(--vc-gold));
}
.lp-alerts-copy { min-width: 0; flex: 1 1 220px; }
.lp-alerts-kicker {
  margin: 0;
  color: var(--vc-gold);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.lp-alerts-title {
  margin: 0.2rem 0 0;
  font-size: clamp(0.92rem, 1.6vw, 1.15rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1.25;
}
.lp-alerts-title em {
  font-style: normal;
  color: var(--vc-lime);
}
.lp-alerts-form {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1 1 260px;
  max-width: 360px;
  position: relative;
}
.lp-alerts-form-row {
  display: flex;
  align-items: stretch;
  gap: 0.4rem;
  background: rgba(7,11,18,0.7);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 0.25rem;
}
.lp-alerts-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.lp-alerts-form input[type="email"] {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #fff;
  border-radius: 8px;
  padding: 0.55rem 0.7rem;
  font: inherit;
  font-size: 0.85rem;
  outline: none;
}
.lp-alerts-form input[type="email"]::placeholder { color: rgba(255,255,255,0.35); }
.lp-alerts-form button {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 0;
  border-radius: 8px;
  background: var(--vc-lime);
  color: var(--vc-on-accent);
  font-weight: 900;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  padding: 0.55rem 0.85rem;
  cursor: pointer;
  white-space: nowrap;
}
.lp-alerts-form button:hover { filter: brightness(1.06); }
.lp-alerts-form button:disabled { opacity: 0.65; cursor: wait; }
.lp-alerts-status {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.35;
}
.lp-alerts-status.is-ok { color: var(--vc-lime, #2aaf3d); }
.lp-alerts-status.is-err { color: #f0a0a0; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ===== FOOTER ===== */
.lp-foot {
  position: relative;
  background:
    radial-gradient(ellipse 50% 40% at 15% 0%, rgba(42,175,61,0.07), transparent 55%),
    repeating-linear-gradient(
      -45deg,
      rgba(255,255,255,0.012) 0,
      rgba(255,255,255,0.012) 1px,
      transparent 1px,
      transparent 10px
    ),
    #060a10;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 3rem;
}
.lp-foot-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--vc-lime) 20%, var(--vc-gold) 50%, var(--vc-lime) 80%, transparent);
  opacity: 0.85;
}
.lp-foot-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2.4rem;
}
@media (min-width: 700px) {
  .lp-foot-grid { grid-template-columns: 1.3fr 0.7fr; }
}
@media (min-width: 1024px) {
  .lp-foot-grid { grid-template-columns: 1.45fr 0.65fr 1.15fr 0.95fr; gap: 2.25rem; }
}
.lp-foot-brand > p {
  margin: 0.9rem 0 0;
  color: rgba(255,255,255,0.58);
  font-size: 0.88rem;
  line-height: 1.55;
  max-width: 22rem;
}
.lp-foot-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.15rem;
}
.lp-foot-badges span {
  border: 1px solid rgba(42,175,61,0.4);
  color: var(--vc-lime);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  padding: 0.32rem 0.55rem;
  border-radius: 999px;
  background: rgba(42,175,61,0.06);
}
.lp-foot-social {
  display: flex;
  gap: 0.45rem;
  margin-top: 1.2rem;
}
.lp-foot-social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.lp-foot-social a:hover {
  background: rgba(42,175,61,0.15);
  border-color: rgba(42,175,61,0.45);
  color: var(--vc-lime);
  transform: translateY(-2px);
}
.lp-foot-col h4 {
  margin: 0 0 1rem;
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  position: relative;
  padding-bottom: 0.55rem;
}
.lp-foot-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--vc-lime), transparent);
  border-radius: 2px;
}
.lp-foot-col a {
  display: block;
  color: rgba(255,255,255,0.58);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: color 0.15s ease, transform 0.15s ease;
}
.lp-foot-col a:hover {
  color: var(--vc-gold);
  transform: translateX(3px);
}
.lp-foot-match {
  background: linear-gradient(160deg, rgba(16,24,38,0.98), rgba(10,14,22,0.95));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 0.95rem;
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}
.lp-foot-match-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 800;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}
.lp-foot-match-top em {
  font-style: normal;
  background: var(--vc-gold);
  color: var(--vc-on-accent);
  padding: 0.18rem 0.45rem;
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 900;
}
.lp-foot-match-vs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin: 0.9rem 0;
}
.lp-foot-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  flex: 1;
  min-width: 0;
  text-align: center;
}
.lp-foot-team strong {
  font-size: 0.68rem;
  letter-spacing: 0.03em;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.lp-foot-crest {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 900;
  color: var(--vc-on-accent);
  background: var(--vc-lime);
  box-shadow: 0 0 16px rgba(42,175,61,0.3);
}
.lp-foot-crest--img {
  object-fit: cover;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: none;
  padding: 0;
}
.lp-foot-crest--gold {
  background: var(--vc-gold);
  color: var(--vc-on-accent);
  box-shadow: 0 0 16px rgba(226,185,59,0.28);
}
.lp-foot-vs {
  color: var(--vc-gold);
  font-weight: 900;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}
.lp-foot-match-bot {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.lp-foot-match-bot span:last-child { color: var(--vc-gold); font-weight: 800; }
.lp-foot-contact {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  margin: 0 0 0.75rem;
  color: rgba(255,255,255,0.62);
  font-size: 0.86rem;
  line-height: 1.4;
}
.lp-foot-contact a {
  color: inherit;
  text-decoration: none;
}
.lp-foot-contact a:hover { color: var(--vc-gold); }
.lp-foot-coords {
  font-variant-numeric: tabular-nums;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.48);
}
.lp-foot-ico {
  color: var(--vc-lime);
  display: grid;
  place-items: center;
  margin-top: 0.1rem;
  flex-shrink: 0;
}
.lp-foot-empty { color: rgba(255,255,255,0.5); font-size: 0.88rem; }
.lp-foot-bar {
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.25);
  padding: 0.95rem 0 1.1rem;
}
.lp-foot-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.42);
  font-weight: 600;
}
.lp-foot-motto {
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.12em;
  font-size: 0.65rem;
}
.lp-foot-legal { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.lp-foot-legal a,
.lp-foot-legal-btn {
  color: rgba(255,255,255,0.42);
  text-decoration: none;
  letter-spacing: 0.04em;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: inherit;
  font-weight: inherit;
  cursor: pointer;
}
.lp-foot-legal a:hover,
.lp-foot-legal-btn:hover { color: var(--vc-gold); }

html.lp-legal-lock { overflow: hidden; }
.lp-legal-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.lp-legal-modal[hidden] { display: none !important; }
.lp-legal-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(4, 8, 14, 0.72);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.lp-legal-modal-panel {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: min(82vh, 860px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(165deg, #121a2a 0%, #0b1220 100%);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  transform: translateY(12px) scale(0.98);
  opacity: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.lp-legal-modal.is-open .lp-legal-modal-panel {
  transform: none;
  opacity: 1;
}
.lp-legal-modal-x {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.2rem;
  height: 2.2rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}
.lp-legal-modal-x:hover { background: rgba(42, 175, 61, 0.22); }
.lp-legal-modal-head {
  padding: 1.35rem 1.4rem 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-right: 3rem;
}
.lp-legal-modal-kicker {
  margin: 0;
  color: var(--vc-gold, #E2B93B);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.lp-legal-modal-head h3 {
  margin: 0.35rem 0 0;
  color: #fff;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.lp-legal-modal-body {
  padding: 1.1rem 1.4rem 1.5rem;
  overflow: auto;
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  line-height: 1.65;
}
.lp-legal-modal-body strong { color: #fff; }

.lp-feature-cards { display: grid; gap: 1rem; }
@media (min-width: 768px) { .lp-feature-cards { grid-template-columns: repeat(2, 1fr); } }
.lp-card {
  background: var(--vc-navy);
  border: 1px solid var(--vc-line);
  padding: 1.35rem;
}
.lp-card-num { color: var(--vc-gold); font-weight: 900; font-size: 1.2rem; }
.lp-card h3 { margin: 0.4rem 0 0; color: #fff; font-size: 1.1rem; }
.lp-card p { margin: 0.5rem 0 0; color: var(--vc-muted); line-height: 1.55; }

.lp-band {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.lp-band-bg {
  position: absolute;
  inset: -15% 0;
  background-image: var(--band-img);
  background-size: cover;
  background-position: center;
}
.lp-band-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,11,18,0.92), rgba(7,11,18,0.35));
}
.lp-band-content { position: relative; z-index: 2; padding: 3.5rem 0 4rem; }

.lp-cta-panel {
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(42,175,61,0.14), transparent 50%),
    var(--vc-navy);
  border: 1px solid var(--vc-line);
  padding: 2.5rem 1.5rem;
}
@media (min-width: 768px) { .lp-cta-panel { padding: 3rem; } }

.lp-fixture-list { display: grid; gap: 0.75rem; }
.lp-fixture {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  background: var(--vc-navy);
  border: 1px solid var(--vc-line);
  padding: 1rem;
}
.lp-fixture-date {
  width: 3.2rem;
  text-align: center;
  border-right: 1px solid var(--vc-line);
  padding-right: 0.85rem;
}
.lp-fixture-date strong {
  display: block;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--vc-gold);
  line-height: 1;
}
.lp-fixture-date span {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--vc-muted);
}
.lp-fixture-teams {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-weight: 800;
}
.lp-fixture-teams em {
  font-style: normal;
  color: var(--vc-lime);
  font-size: 0.75rem;
}
.lp-fixture-meta { color: var(--vc-muted); font-weight: 700; }

.lp-squad-grid { display: grid; gap: 1rem; }
@media (min-width: 700px) { .lp-squad-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .lp-squad-grid { grid-template-columns: repeat(4, 1fr); } }
.lp-player-card {
  background: var(--vc-navy);
  border: 1px solid var(--vc-line);
  padding: 1.2rem;
  min-height: 170px;
  display: flex;
  flex-direction: column;
}
.lp-player-num { font-size: 2rem; font-weight: 900; color: var(--vc-lime); }
.lp-player-card h3 { margin: 0.4rem 0 0; font-size: 1rem; }
.lp-player-card p { margin: 0.3rem 0 0; color: var(--vc-muted); font-size: 0.85rem; }
.lp-player-card a {
  margin-top: auto;
  padding-top: 0.9rem;
  color: var(--vc-gold);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
}

.lp-gallery-grid { display: grid; gap: 0.75rem; }
@media (min-width: 768px) { .lp-gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.lp-gallery-item {
  min-height: 220px;
  background-image: var(--media);
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  border: 1px solid var(--vc-line);
}
.lp-gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,11,18,0.85), transparent 55%);
}
.lp-gallery-item span { position: relative; font-weight: 700; }

.lp-footer {
  border-top: 1px solid var(--vc-line);
  padding: 2.25rem 0 2.75rem;
  background: #05080e;
}
.lp-footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.25rem;
}
.lp-footer p { margin: 0.55rem 0 0; color: var(--vc-muted); max-width: 28rem; font-size: 0.9rem; }
.lp-footer-links { display: flex; gap: 1.15rem; }
.lp-footer-links a { color: rgba(255,255,255,0.75); text-decoration: none; font-weight: 700; font-size: 0.85rem; }
.lp-footer-links a:hover { color: var(--vc-gold); }

/* ===== 3D ELECTRIC BALL — half off-edge ===== */
.lp-fx3d {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 56;
  width: min(74vh, 620px);
  height: min(74vh, 620px);
  max-width: 92vw;
  pointer-events: none;
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 0.45s ease;
  overflow: visible;
  box-sizing: border-box;
}
.lp-fx3d.is-ready { opacity: 0.78; }
.lp-fx3d canvas {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  z-index: 2;
  overflow: visible;
  filter:
    drop-shadow(0 0 22px rgba(42,175,61,0.26))
    drop-shadow(0 14px 32px rgba(0,0,0,0.18));
}
.lp-fx3d-bloom {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  z-index: 1;
  background: radial-gradient(circle at 50% 45%, rgba(42,175,61,0.22), transparent 58%);
  filter: blur(22px);
  animation: lp-aura-pulse 4.5s ease-in-out infinite;
  pointer-events: none;
  opacity: 0.65;
}

@keyframes lp-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes lp-spin-rev {
  from { transform: rotate(0deg) rotateX(62deg); }
  to { transform: rotate(-360deg) rotateX(62deg); }
}
@keyframes lp-aura-pulse {
  0%, 100% { opacity: 0.45; transform: scale(0.97); }
  50% { opacity: 0.8; transform: scale(1.05); }
}
@keyframes lp-scan {
  0% { top: -10%; opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { top: 92%; opacity: 0; }
}

@media (max-width: 979px) {
  html {
    scroll-padding-top: 4.5rem;
    scroll-padding-bottom: 5.5rem;
  }
  .lp-root {
    padding-bottom: calc(5.75rem + env(safe-area-inset-bottom));
  }
  .lp-nav-cta { display: none; }
  .lp-dock {
    display: grid;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    max-width: none;
    border-radius: 18px 18px 0 0;
    background: #070b12;
    border: 1px solid rgba(255,255,255,0.1);
    border-bottom: 0;
    padding: 0.5rem 0.65rem calc(0.55rem + env(safe-area-inset-bottom));
    box-shadow: 0 -10px 32px rgba(0,0,0,0.65);
    position: fixed;
  }
  /* Cubre cualquier contenido que quede detrÃ¡s del menÃº */
  .lp-dock::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -18px;
    height: 18px;
    background: linear-gradient(to top, #070b12, transparent);
    pointer-events: none;
  }
  .lp-dock::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: max(env(safe-area-inset-bottom, 0px), 0px);
    background: #070b12;
  }
  .lp-hero {
    min-height: 100dvh;
    justify-content: flex-start;
  }
  .lp-hero-img {
    background-position: center 18%;
  }
  .lp-hero-veil {
    background:
      linear-gradient(180deg, rgba(7,11,18,0.55) 0%, rgba(7,11,18,0.12) 28%, rgba(7,11,18,0.08) 55%, rgba(7,11,18,0.82) 100%),
      linear-gradient(90deg, rgba(7,11,18,0.45) 0%, rgba(7,11,18,0.12) 55%, rgba(7,11,18,0.2) 100%);
  }
  .lp-hero-main {
    flex: 0 0 auto;
    align-items: flex-start;
    padding: 5.4rem 0 0.5rem;
  }
  .lp-headline { font-size: clamp(2.35rem, 11vw, 3.4rem); }
  .lp-lead {
    margin-top: 0.85rem;
    font-size: 0.92rem;
    max-width: 28rem;
  }
  .lp-cta-row { margin-top: 1.15rem; }
  .lp-hero-pills { margin-top: 1rem; }
  .lp-stats-glass {
    margin-top: auto;
    margin-bottom: 0.55rem;
    padding: 0.75rem 0.55rem 0.85rem;
    border-radius: 14px;
    background: rgba(10, 16, 28, 0.62);
  }
  .lp-stats-item { padding: 0.2rem 0.35rem; }
  .lp-stats-item strong { font-size: clamp(1.25rem, 5.5vw, 1.65rem); }
  .lp-stats-item span { font-size: 0.58rem; margin-top: 0.2rem; }
  .lp-stats-ico { font-size: 0.9rem; margin-bottom: 0.15rem; }
  .lp-app-sheet-panel {
    padding-bottom: calc(1.4rem + env(safe-area-inset-bottom));
  }
}

/* Tablet: menÃº mÃ¡s holgado y centrado */
@media (min-width: 768px) and (max-width: 979px) {
  .lp-fx3d {
    width: min(66vh, 540px);
    height: min(66vh, 540px);
    z-index: 40;
  }
  .lp-dock {
    left: 50%;
    right: auto;
    bottom: 0.85rem;
    transform: translateX(-50%);
    width: min(560px, calc(100% - 2rem));
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.12);
    padding: 0.55rem 0.7rem;
    box-shadow: 0 14px 36px rgba(0,0,0,0.5);
  }
  .lp-dock::before,
  .lp-dock::after { display: none; }
  .lp-dock-item {
    min-height: 58px;
    font-size: 0.62rem;
    gap: 0.28rem;
  }
  .lp-dock-item svg {
    width: 22px;
    height: 22px;
  }
  .lp-root {
    padding-bottom: calc(6.25rem + env(safe-area-inset-bottom));
  }
  .lp-app-sheet-nav {
    grid-template-columns: repeat(3, 1fr);
  }
  .lp-app-sheet-panel {
    left: 50%;
    right: auto;
    width: min(640px, calc(100% - 2rem));
    transform: translate(-50%, 110%);
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 5.5rem;
    max-height: min(78dvh, 640px);
  }
  .lp-app-sheet.is-open .lp-app-sheet-panel {
    transform: translate(-50%, 0);
  }
}

@media (max-width: 767px) {
  .lp-fx3d {
    width: min(68vh, 440px);
    height: min(68vh, 440px);
    z-index: 40;
  }
  .lp-fx3d.is-ready { opacity: 0.74; }
  .lp-fx3d-bloom {
    inset: 10%;
    filter: blur(16px);
  }
  .lp-fx3d canvas {
    filter:
      drop-shadow(0 0 16px rgba(42,175,61,0.28))
      drop-shadow(0 10px 22px rgba(0,0,0,0.18));
  }
  .lp-hero {
    min-height: auto;
  }
  .lp-hero-main {
    order: 1;
    flex: 0 0 auto;
    min-height: calc(100dvh - 42px - 4.85rem - env(safe-area-inset-bottom, 0px));
    padding: 5.2rem 0 1.5rem;
  }
  .lp-marquee {
    order: 2;
    height: 42px;
    flex-shrink: 0;
  }
  .lp-stats-glass {
    order: 3;
    margin: 0;
    width: 100%;
    max-width: none;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: #070b12;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    padding: 1.15rem 1rem 1.35rem;
  }
  .lp-headline { font-size: clamp(2.2rem, 10vw, 3.1rem); }
  .lp-lead {
    margin-top: 0.7rem;
    font-size: 0.88rem;
    line-height: 1.5;
  }
  .lp-cta-row { margin-top: 1rem; gap: 0.65rem; }
  .lp-hero-pills {
    margin-top: 0.85rem;
    gap: 0.3rem 0.85rem;
    font-size: 0.64rem;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
[data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .anim-lp { animation: none; opacity: 1; transform: none; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .lp-marquee-track { animation: none; }
  .lp-voices-track { animation: none; }
  .lp-fx3d { display: none; }
}
