/* ════════════════════════════════════════════════════════════
   LANDING — FutWow
   Depends on main.css for :root variables
   ════════════════════════════════════════════════════════════ */

/* ── Reset & Page ─────────────────────────────────────────── */
.lnd-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 0;
}

/* ── Scroll Reveal ────────────────────────────────────────── */
.lnd-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(.22,1,.36,1), transform 0.7s cubic-bezier(.22,1,.36,1);
}
.lnd-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.lnd-timeline__item.lnd-reveal:nth-child(2) { transition-delay: .12s; }
.lnd-timeline__item.lnd-reveal:nth-child(3) { transition-delay: .24s; }
.lnd-grid .lnd-reveal:nth-child(2) { transition-delay: .08s; }
.lnd-grid .lnd-reveal:nth-child(3) { transition-delay: .16s; }
.lnd-grid .lnd-reveal:nth-child(4) { transition-delay: .24s; }
.lnd-mvps .lnd-reveal:nth-child(2) { transition-delay: .07s; }
.lnd-mvps .lnd-reveal:nth-child(3) { transition-delay: .14s; }
.lnd-mvps .lnd-reveal:nth-child(4) { transition-delay: .21s; }
.lnd-mvps .lnd-reveal:nth-child(5) { transition-delay: .28s; }
.lnd-results .lnd-reveal:nth-child(2) { transition-delay: .06s; }
.lnd-results .lnd-reveal:nth-child(3) { transition-delay: .12s; }
.lnd-results .lnd-reveal:nth-child(4) { transition-delay: .18s; }

/* ── Buttons ──────────────────────────────────────────────── */
.lnd-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 14px;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
    cursor: pointer;
    border: none;
}
.lnd-btn:hover { transform: translateY(-2px); }
.lnd-btn--lg { padding: 16px 32px; font-size: 1.05rem; border-radius: 16px; }
.lnd-btn--primary {
    background: linear-gradient(135deg, var(--color-primary), #00cc6a);
    color: #0a0f0d;
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.3), 0 0 0 0 rgba(0, 255, 136, 0);
}
.lnd-btn--primary:hover {
    box-shadow: 0 12px 40px rgba(0, 255, 136, 0.4), 0 0 60px -10px rgba(0, 255, 136, 0.2);
}
.lnd-btn--ghost {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
}
.lnd-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.32);
}
.lnd-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .2s ease;
}
.lnd-link:hover { gap: 10px; }

/* ════════════════════════════════════════════════════════════
   HERO / CINEMATIC
   ════════════════════════════════════════════════════════════ */
.lnd-cinema {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
    background: #060b09;
}
.lnd-cinema__fallback {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(ellipse 120% 80% at 50% 40%, #0f2e1f 0%, #080f0c 60%, #050a08 100%);
}
.lnd-cinema__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.35;
    animation: lnd-orb-float 12s ease-in-out infinite alternate;
}
.lnd-cinema__orb--1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,255,136,.3), transparent 70%);
    top: -10%; left: -8%;
}
.lnd-cinema__orb--2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0,180,255,.2), transparent 70%);
    bottom: -15%; right: -5%;
    animation-delay: -5s;
    animation-duration: 14s;
}
.lnd-cinema__orb--3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(0,255,136,.15), transparent 70%);
    top: 55%; left: 60%;
    animation-delay: -8s;
    animation-duration: 16s;
}
@keyframes lnd-orb-float {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, -30px) scale(1.12); }
}
.lnd-cinema__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.lnd-cinema.is-video-fallback .lnd-cinema__video {
    opacity: 0;
    pointer-events: none;
}
.lnd-cinema__scrim {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(180deg,
            rgba(6,11,9,.85) 0%,
            rgba(6,11,9,.35) 35%,
            rgba(6,11,9,.25) 60%,
            rgba(6,11,9,.7) 100%),
        radial-gradient(ellipse 60% 50% at 50% 45%, transparent 0%, rgba(6,11,9,.4) 100%);
}
.lnd-cinema__inner {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

/* ── Nav ── */
.lnd-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0 16px;
    flex-wrap: wrap;
    gap: 14px;
}
.lnd-nav__logo {
    display: flex;
    align-items: center;
    line-height: 0;
    text-decoration: none;
}
.lnd-nav__logo img {
    height: clamp(38px, 7vw, 50px);
    width: auto;
    max-width: min(200px, 50vw);
    object-fit: contain;
    filter: drop-shadow(0 2px 20px rgba(0,0,0,.6));
}
.lnd-nav__links {
    display: flex;
    gap: clamp(10px, 2.5vw, 16px);
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.lnd-nav__links a {
    color: rgba(255,255,255,.8);
    text-decoration: none;
    font-size: .88rem;
    font-weight: 500;
    text-shadow: 0 1px 6px rgba(0,0,0,.5);
    transition: color .2s;
}
.lnd-nav__links a:hover { color: var(--color-primary); }
.lnd-nav__cta {
    padding: 9px 22px !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, var(--color-primary), #00cc6a) !important;
    color: #0a0f0d !important;
    font-weight: 700 !important;
    text-shadow: none !important;
    box-shadow: 0 4px 24px rgba(0,255,136,.25);
    transition: transform .2s ease, box-shadow .2s ease;
}
.lnd-nav__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 32px rgba(0,255,136,.35);
}

/* ── Hero Content ── */
.lnd-hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 32px 0 20px;
}
.lnd-hero__badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-primary);
    background: rgba(0,255,136,.08);
    border: 1px solid rgba(0,255,136,.2);
    margin-bottom: 24px;
    backdrop-filter: blur(6px);
    animation: lnd-badge-pulse 3s ease-in-out infinite;
}
@keyframes lnd-badge-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0,255,136,.15); }
    50% { box-shadow: 0 0 0 12px rgba(0,255,136,0); }
}
.lnd-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 8vw, 5.5rem);
    letter-spacing: 2px;
    line-height: 1;
    margin: 0 0 20px;
    background: linear-gradient(135deg, #fff 30%, var(--color-primary) 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,.5));
}
.lnd-hero__sub {
    color: rgba(255,255,255,.78);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    max-width: 560px;
    line-height: 1.6;
    margin: 0 0 36px;
    text-shadow: 0 1px 12px rgba(0,0,0,.4);
}
.lnd-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

/* ── Scroll Hint ── */
.lnd-hero__scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 16px 0 24px;
    color: rgba(255,255,255,.45);
    font-size: .75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    animation: lnd-bounce 2.5s ease-in-out infinite;
}
@keyframes lnd-bounce {
    0%, 100% { transform: translateY(0); opacity: .45; }
    50% { transform: translateY(8px); opacity: .8; }
}

/* ════════════════════════════════════════════════════════════
   STATS
   ════════════════════════════════════════════════════════════ */
.lnd-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: -48px 0 64px;
    position: relative;
    z-index: 4;
}
.lnd-stat {
    background: rgba(12,20,16,.85);
    border: 1px solid rgba(0,255,136,.12);
    border-radius: 20px;
    padding: 28px 16px 24px;
    text-align: center;
    backdrop-filter: blur(16px);
    transition: border-color .3s, transform .3s;
}
.lnd-stat:hover {
    border-color: rgba(0,255,136,.35);
    transform: translateY(-4px);
}
.lnd-stat__icon { font-size: 1.6rem; margin-bottom: 10px; }
.lnd-stat__num {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 6px;
}
.lnd-stat__label {
    font-size: .72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

/* ════════════════════════════════════════════════════════════
   SECTIONS
   ════════════════════════════════════════════════════════════ */
.lnd-section {
    margin-bottom: 80px;
}
.lnd-section__head {
    text-align: center;
    margin-bottom: 36px;
}
.lnd-section__tag {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 10px;
}
.lnd-section__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 5vw, 2.6rem);
    letter-spacing: 2px;
    color: #fff;
    margin: 0 0 12px;
}
.lnd-section__desc {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.55;
}
.lnd-section__foot {
    text-align: center;
    margin-top: 24px;
}

/* ════════════════════════════════════════════════════════════
   MAPA
   ════════════════════════════════════════════════════════════ */
.lnd-mapa-frame {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.lnd-mapa {
    width: 100%;
    height: min(480px, 55vh);
    min-height: 300px;
    position: relative;
    z-index: 0;
}
/* Degradado bajo el mapa: se ve a través de las teselas con opacity < 1 (opción Leaflet) */
.lnd-mapa,
.lnd-mapa.leaflet-container {
    background:
        radial-gradient(ellipse at 20% 20%, rgba(0, 255, 136, 0.22) 0%, transparent 52%),
        radial-gradient(ellipse at 80% 80%, rgba(0, 100, 255, 0.2) 0%, transparent 52%),
        linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 50%, #0f0f23 100%) !important;
}
.lnd-mapa.leaflet-container {
    font-family: inherit;
}
.lnd-mapa .leaflet-map-pane,
.lnd-mapa .leaflet-tile-pane {
    background: transparent !important;
}
.lnd-mapa .leaflet-tile-pane > .leaflet-layer.lnd-tiles-carto {
    filter: brightness(0.94) contrast(1.05) saturate(0.7) sepia(0.2) hue-rotate(68deg);
}
.lnd-mapa .leaflet-control-attribution {
    display: none !important;
}
.lnd-mapa__foot { text-align: center; margin-top: 18px; }
.lnd-mapa-popup { font-size: 13px; line-height: 1.5; color: #111; }
.lnd-mapa-popup a { color: #0a8a4e; font-weight: 600; text-decoration: none; }
.lnd-mapa-popup a:hover { text-decoration: underline; }

/* Map pin */
.lnd-map-pin {
    width: 14px; height: 14px;
    background: var(--color-primary);
    border-radius: 50%;
    border: 2.5px solid #fff;
    box-shadow: 0 0 12px rgba(0,255,136,.6);
    position: relative;
}
.lnd-map-pin__ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(0,255,136,.3);
    animation: lnd-pin-ring 2s ease-out infinite;
}
@keyframes lnd-pin-ring {
    0% { transform: scale(.7); opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* ════════════════════════════════════════════════════════════
   TIMELINE (Cómo funciona)
   ════════════════════════════════════════════════════════════ */
.lnd-timeline {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
    padding-left: 48px;
}
.lnd-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, var(--color-primary), rgba(0,255,136,.1));
    border-radius: 2px;
}
.lnd-timeline__item {
    position: relative;
    margin-bottom: 32px;
}
.lnd-timeline__item:last-child { margin-bottom: 0; }
.lnd-timeline__num {
    position: absolute;
    left: -48px;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), #00cc6a);
    color: #0a0f0d;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 24px rgba(0,255,136,.25);
    z-index: 1;
}
.lnd-timeline__card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 24px 28px;
    transition: border-color .3s, background .3s;
}
.lnd-timeline__card:hover {
    border-color: rgba(0,255,136,.2);
    background: rgba(0,255,136,.03);
}
.lnd-timeline__card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}
.lnd-timeline__card p {
    font-size: .92rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin: 0;
}

/* ════════════════════════════════════════════════════════════
   PARTIDO CARDS
   ════════════════════════════════════════════════════════════ */
.lnd-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
}
.lnd-partido {
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 18px;
    background: rgba(255,255,255,.025);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.lnd-partido:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px -15px rgba(0,255,136,.12), 0 8px 24px -8px rgba(0,0,0,.4);
    border-color: rgba(0,255,136,.2);
}
.lnd-partido__accent {
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), #00cc6a, transparent);
}
.lnd-partido__body { padding: 20px 20px 16px; flex: 1; }
.lnd-partido__name {
    font-weight: 700;
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 8px;
}
.lnd-partido__meta {
    font-size: .84rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.lnd-partido__bar-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
}
.lnd-partido__bar {
    flex: 1;
    height: 6px;
    border-radius: 6px;
    background: rgba(255,255,255,.06);
    overflow: hidden;
}
.lnd-partido__bar-fill {
    height: 100%;
    border-radius: 6px;
    background: linear-gradient(90deg, var(--color-primary), #00cc6a);
    transition: width .6s ease;
}
.lnd-partido__bar-fill.hot { background: linear-gradient(90deg, #ff9800, #ff5722); }
.lnd-partido__bar-fill.full { background: linear-gradient(90deg, #f44336, #d32f2f); }
.lnd-partido__plazas {
    font-size: .82rem;
    font-weight: 700;
    color: var(--color-primary);
    white-space: nowrap;
}
.lnd-partido__plazas.full { color: #f44336; }
.lnd-partido__cta {
    display: block;
    padding: 12px 20px;
    text-align: center;
    font-weight: 700;
    font-size: .88rem;
    color: var(--color-primary);
    text-decoration: none;
    border-top: 1px solid rgba(255,255,255,.05);
    transition: background .2s, color .2s;
    letter-spacing: .5px;
}
.lnd-partido__cta:hover {
    background: rgba(0,255,136,.08);
}
.lnd-empty {
    color: var(--text-muted);
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    font-size: .95rem;
}

/* ════════════════════════════════════════════════════════════
   RESULTS
   ════════════════════════════════════════════════════════════ */
.lnd-results {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 720px;
    margin: 0 auto;
}
.lnd-result {
    display: grid;
    grid-template-columns: 1.3fr .7fr 1.8fr;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.06);
    background: rgba(255,255,255,.025);
    transition: border-color .25s, background .25s;
}
.lnd-result:hover {
    border-color: rgba(0,255,136,.2);
    background: rgba(0,255,136,.03);
}
.lnd-result__campo {
    font-weight: 600;
    font-size: .92rem;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lnd-result__fecha {
    font-size: .8rem;
    color: var(--text-muted);
    text-align: center;
}
.lnd-result__score {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}
.lnd-result__team {
    font-size: .75rem;
    color: var(--text-secondary);
    max-width: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
}
.lnd-result__nums {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--color-primary);
    min-width: 56px;
    text-align: center;
}

/* ════════════════════════════════════════════════════════════
   MVPs
   ════════════════════════════════════════════════════════════ */
.lnd-mvps {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
}
.lnd-mvp {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.06);
    background: rgba(255,255,255,.025);
    text-decoration: none;
    color: inherit;
    transition: transform .25s, border-color .25s, box-shadow .25s;
    position: relative;
    overflow: hidden;
}
.lnd-mvp::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    opacity: 0;
    transition: opacity .3s;
}
.lnd-mvp[data-rank="1"]::before { background: linear-gradient(135deg, rgba(255,215,0,.06), transparent); }
.lnd-mvp[data-rank="2"]::before { background: linear-gradient(135deg, rgba(192,192,192,.06), transparent); }
.lnd-mvp[data-rank="3"]::before { background: linear-gradient(135deg, rgba(205,127,50,.06), transparent); }
.lnd-mvp:hover::before { opacity: 1; }
.lnd-mvp:hover {
    transform: translateY(-4px);
    border-color: rgba(0,255,136,.2);
    box-shadow: 0 12px 36px -8px rgba(0,0,0,.35);
}
.lnd-mvp__rank {
    font-size: 1.3rem;
    min-width: 28px;
    text-align: center;
    line-height: 1;
}
.lnd-mvp__avatar-wrap { flex-shrink: 0; }
.lnd-mvp__avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,.1);
}
.lnd-mvp__ph {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a2f24, #2d4a38);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: .88rem;
    color: var(--color-primary);
    border: 2px solid rgba(0,255,136,.15);
}
.lnd-mvp__name { font-weight: 700; color: #fff; font-size: .95rem; }
.lnd-mvp__stats { font-size: .78rem; color: var(--text-muted); margin-top: 2px; }

/* ════════════════════════════════════════════════════════════
   FINAL CTA
   ════════════════════════════════════════════════════════════ */
.lnd-final-cta {
    text-align: center;
    padding: 64px 24px;
    border-radius: 28px;
    border: 1px solid rgba(0,255,136,.12);
    background: rgba(0,255,136,.03);
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}
.lnd-final-cta__glow {
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,255,136,.12), transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(80px);
    pointer-events: none;
}
.lnd-final-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    letter-spacing: 2px;
    color: #fff;
    margin: 0 0 12px;
    position: relative;
}
.lnd-final-cta p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin: 0 0 28px;
    position: relative;
}

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.lnd-footer {
    margin-top: 0;
    padding: 56px 0 32px;
    border-top: 1px solid rgba(255,255,255,.06);
}
.lnd-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 32px 24px;
    align-items: start;
}
.lnd-footer__brand img {
    height: 38px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    margin-bottom: 14px;
    opacity: .9;
}
.lnd-footer__brand a { display: inline-block; line-height: 0; text-decoration: none; }
.lnd-footer__brand p {
    margin: 0;
    font-size: .88rem;
    line-height: 1.55;
    color: var(--text-secondary);
    max-width: 320px;
}
.lnd-footer h4 {
    margin: 0 0 14px;
    font-family: var(--font-display);
    font-size: .9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-primary);
}
.lnd-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.lnd-footer ul a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: .88rem;
    transition: color .2s, padding-left .2s;
}
.lnd-footer ul a:hover {
    color: var(--color-primary);
    padding-left: 4px;
}
.lnd-footer__bottom {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.06);
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    justify-content: space-between;
    font-size: .78rem;
    color: var(--text-muted);
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 720px) {
    .lnd-nav {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 0;
    }
    .lnd-nav__logo {
        justify-content: center;
    }
    .lnd-nav__links {
        display: none;
    }
}
@media (max-width: 768px) {
    .lnd-stats {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -32px;
    }
    .lnd-result {
        grid-template-columns: 1fr;
        gap: 6px;
        text-align: center;
    }
    .lnd-result__score { justify-content: center; }
    .lnd-result__campo { text-align: center; }
    .lnd-result__fecha { text-align: center; }
    .lnd-footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .lnd-timeline { padding-left: 42px; }
    .lnd-timeline::before { left: 16px; }
    .lnd-timeline__num { left: -42px; width: 34px; height: 34px; font-size: 1rem; }
}
@media (max-width: 480px) {
    .lnd-hero__title {
        font-size: clamp(2rem, 10vw, 3rem);
    }
    .lnd-stats {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .lnd-stat { padding: 18px 10px 16px; }
    .lnd-stat__num { font-size: 1.6rem; }
}
@media (prefers-reduced-motion: reduce) {
    .lnd-reveal { opacity: 1; transform: none; transition: none; }
    .lnd-cinema__orb { animation: none; }
    .lnd-hero__scroll-hint { animation: none; }
    .lnd-hero__badge { animation: none; }
    .lnd-map-pin__ring { animation: none; }
    .lnd-cinema__video { display: none; }
}
