/* ============================================================================
   LA Sol — Championship banner  ([la_sol_champions_banner])
   Full-bleed celebratory band. Brand: deep navy + ice blue, with a one-time
   championship gold accent and a "sun rising" ray burst (LA Sol = the sun).
   All selectors scoped under .lsc-champ.
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700&display=swap');

.lsc-champ {
    --lsc-navy: #03203E;
    --lsc-deep: #021528;
    --lsc-ice:  #94DFFF;
    --lsc-gold: #F4C04E;
    --lsc-gold-hi: #ffe6a3;
    --lsc-gold-lo: #d99a2b;

    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: clamp(46px, 6.5vw, 92px) 24px clamp(40px, 5.5vw, 76px);
    background:
        radial-gradient(125% 90% at 50% -28%, rgba(244, 192, 78, 0.20), transparent 56%),
        radial-gradient(90% 70% at 50% -4%, rgba(148, 223, 255, 0.12), transparent 62%),
        linear-gradient(180deg, #04284c 0%, var(--lsc-navy) 36%, var(--lsc-deep) 100%);
    color: #fff;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

/* Hairline + gold seam at the very top — signals "this is the special one". */
.lsc-champ::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(244, 192, 78, 0.7) 22%, var(--lsc-gold) 50%, rgba(244, 192, 78, 0.7) 78%, transparent);
    opacity: 0.9;
    z-index: 3;
}

/* Sun rays rising from top-center, masked to fade out into the navy. */
.lsc-champ .lsc-rays {
    position: absolute;
    left: 50%;
    top: -46%;
    width: 170vw;
    height: 150%;
    transform: translateX(-50%);
    background: repeating-conic-gradient(from 0deg at 50% 0%,
        rgba(255, 240, 214, 0.085) 0deg 3.2deg, transparent 3.2deg 11deg);
    -webkit-mask-image: radial-gradient(62% 66% at 50% 0%, #000 0%, transparent 74%);
            mask-image: radial-gradient(62% 66% at 50% 0%, #000 0%, transparent 74%);
    opacity: 0.8;
    pointer-events: none;
    z-index: 0;
}

/* Warm core glow where the "sun" sits, behind the wordmark. */
.lsc-champ .lsc-glow {
    position: absolute;
    left: 50%;
    top: -8%;
    width: min(720px, 92%);
    height: 360px;
    transform: translateX(-50%);
    background: radial-gradient(50% 50% at 50% 50%, rgba(244, 192, 78, 0.16), transparent 70%);
    filter: blur(6px);
    pointer-events: none;
    z-index: 0;
}

.lsc-champ .lsc-inner {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
}

/* ── Eyebrow ── */
.lsc-champ .lsc-eyebrow {
    margin: 0 0 18px;
    font-size: clamp(11px, 1.1vw, 13px);
    font-weight: 600;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--lsc-ice);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.lsc-champ .lsc-spark {
    color: var(--lsc-gold);
    font-size: 0.9em;
    transform: translateY(-1px);
}

/* ── Title ── */
.lsc-champ .lsc-title {
    margin: 0;
    line-height: 0.84;
    text-transform: uppercase;
}
.lsc-champ .lsc-pre {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: clamp(22px, 3.2vw, 40px);
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 0.06em;
}
.lsc-champ .lsc-main {
    display: block;
    font-family: 'ROG LyonsType', 'Bebas Neue', sans-serif;
    font-weight: 400;
    /* Sized to fit the wide LyonsType wordmark within the band without clipping. */
    font-size: clamp(40px, 10vw, 118px);
    white-space: nowrap;
    letter-spacing: 0.01em;
    background: linear-gradient(178deg, var(--lsc-gold-hi) 0%, var(--lsc-gold) 52%, var(--lsc-gold-lo) 100%);
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
    filter: drop-shadow(0 6px 26px rgba(244, 192, 78, 0.28));
}

/* One-time gold shimmer sweep across the wordmark on reveal. */
.lsc-champ .lsc-main {
    position: relative;
}
.lsc-champ .lsc-main::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.55) 50%, transparent 62%);
    -webkit-mask-image: linear-gradient(#000, #000);
    transform: translateX(-120%);
    pointer-events: none;
}
.lsc-champ.is-visible .lsc-main::after {
    animation: lsc-shimmer 1.1s ease-out 0.5s 1;
}
@keyframes lsc-shimmer {
    to { transform: translateX(120%); }
}

/* ── Perfect-run pip strip (the signature) ── */
.lsc-champ .lsc-run {
    margin: clamp(22px, 3vw, 34px) auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.lsc-champ .lsc-pips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px;
    max-width: 460px;
}
.lsc-champ .lsc-pip {
    width: 13px;
    height: 13px;
    border-radius: 3px;
    background: linear-gradient(160deg, var(--lsc-gold-hi), var(--lsc-gold) 60%, var(--lsc-gold-lo));
    transform: rotate(45deg) scale(0.35);
    opacity: 0.16;
    box-shadow: 0 0 0 rgba(244, 192, 78, 0);
    transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.2, 0.9, 0.3, 1.3), box-shadow 0.5s ease;
    transition-delay: 0ms;
}
.lsc-champ.is-visible .lsc-pip {
    opacity: 1;
    transform: rotate(45deg) scale(1);
    box-shadow: 0 0 13px rgba(244, 192, 78, 0.55);
    transition-delay: calc(var(--i) * 55ms);
}
.lsc-champ .lsc-run-label {
    font-size: clamp(10px, 1vw, 12px);
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}
.lsc-champ .lsc-record {
    color: var(--lsc-gold);
    margin-left: 6px;
    letter-spacing: 0.12em;
}

/* ── Narrative subline ── */
.lsc-champ .lsc-sub {
    max-width: 640px;
    margin: clamp(24px, 3vw, 34px) auto 0;
    font-size: clamp(15px, 1.5vw, 18px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
}
.lsc-champ .lsc-sub strong {
    color: #fff;
    font-weight: 700;
    white-space: nowrap;
}

/* ── Stat band (rule-separated, not boxed) ── */
.lsc-champ .lsc-stats {
    list-style: none;
    margin: clamp(30px, 3.6vw, 44px) auto 0;
    padding: clamp(22px, 2.6vw, 30px) 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(24px, 5vw, 64px);
}
.lsc-champ .lsc-stats li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 92px;
}
.lsc-champ .lsc-stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(38px, 5.2vw, 58px);
    line-height: 1;
    letter-spacing: 0.02em;
    color: #fff;
}
.lsc-champ .lsc-stats li:last-child .lsc-stat-num {
    color: var(--lsc-ice);
}
.lsc-champ .lsc-stat-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}
.lsc-champ .lsc-next-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: transform 0.18s ease;
}
.lsc-champ .lsc-next-link:hover { transform: translateY(-2px); }
.lsc-champ .lsc-next-link:hover .lsc-stat-label { color: var(--lsc-ice); }

/* ── Mobile ── */
@media (max-width: 600px) {
    .lsc-champ { text-align: center; }
    .lsc-champ .lsc-pips { gap: 7px; max-width: 320px; }
    .lsc-champ .lsc-pip { width: 11px; height: 11px; }
    /* 3 equal columns so the wider "Next · Nationals" label can't force a 2+1 wrap */
    .lsc-champ .lsc-stats { gap: 14px; flex-wrap: nowrap; }
    .lsc-champ .lsc-stats li { min-width: 0; flex: 1 1 0; }
    .lsc-champ .lsc-stat-num { font-size: clamp(32px, 11vw, 46px); }
    .lsc-champ .lsc-stat-label { letter-spacing: 0.1em; }
}

/* ── Reduced motion: everything visible, no sweep / no stagger ── */
@media (prefers-reduced-motion: reduce) {
    .lsc-champ .lsc-pip {
        opacity: 1 !important;
        transform: rotate(45deg) scale(1) !important;
        transition: none !important;
        box-shadow: 0 0 10px rgba(244, 192, 78, 0.4);
    }
    .lsc-champ .lsc-main::after { display: none; }
}
