.landing-page .home-hero {
    justify-content: center;
    max-width: 1280px;
    min-height: clamp(610px, 84svh, 700px);
    padding: 90px 20px 16px;
}

.landing-page .home-hero .logo {
    margin-bottom: 10px;
    width: clamp(98px, 10vw, 124px);
}

.landing-page .launch-badge {
    font-size: .78rem;
    margin-bottom: 32px;
    padding: 8px 14px;
}

.landing-page .hero-title {
    font-size: clamp(3.6rem, 7vw, 5.9rem);
    letter-spacing: 0;
    line-height: .82;
    margin: 0;
}

.landing-page .hero-title span {
    font-size: .68em;
    margin-top: 12px;
}

.landing-page .hero-tagline {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    letter-spacing: 0;
    margin: 18px 0 8px;
}

.landing-page .hero-description {
    font-size: .96rem;
    line-height: 1.65;
    margin: 0 auto 18px;
    max-width: 660px;
}

.landing-page .hero-actions {
    margin: 0;
}

.landing-page .hero-actions .btn-gold {
    min-height: 50px;
    padding: 14px 24px;
}

.hero-signals {
    align-items: center;
    color: rgba(255, 255, 255, .5);
    display: flex;
    flex-wrap: wrap;
    font-size: .72rem;
    font-weight: 800;
    gap: 10px 22px;
    justify-content: center;
    margin-top: 16px;
    text-transform: uppercase;
}

.hero-signals span {
    align-items: center;
    display: inline-flex;
    gap: 8px;
}

.hero-signals span::before {
    background: #d4af37;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(212, 175, 55, .32);
    content: "";
    height: 5px;
    width: 5px;
}

.landing-page #concept {
    max-width: 1240px;
    padding: 66px 20px 48px;
}

.landing-page .section-heading {
    margin-bottom: 38px;
}

.landing-page .section-heading h2 {
    letter-spacing: 0;
}

.landing-page .steps {
    gap: 12px;
}

.landing-page .step {
    background: rgba(24, 28, 35, .68);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    min-height: 220px;
    padding: 26px;
    text-align: left;
}

.landing-page .step span {
    border-radius: 8px;
    height: 40px;
    margin-bottom: 24px;
    width: 40px;
}

.landing-page .step h3 {
    font-size: 1.18rem;
    margin-bottom: 10px;
}

.landing-page .step p {
    color: rgba(255, 255, 255, .62);
    font-size: .9rem;
    line-height: 1.65;
}

.landing-page .landing-universes,
.landing-page .landing-modules {
    max-width: 1240px;
    padding: 58px 20px;
}

.landing-page .landing-universes {
    padding-top: 48px;
}

.landing-universe-strip {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    margin-bottom: 0;
}

.landing-universe-item {
    align-items: center;
    background: rgba(24, 28, 35, .62);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    min-height: 132px;
    padding: 14px 10px 12px;
    position: relative;
}

.landing-universe-item::before {
    background: var(--universe-color, #d4af37);
    content: "";
    height: 2px;
    inset: -1px 12px auto;
    opacity: .75;
    position: absolute;
}

.landing-universe-item img {
    background: transparent;
    border: 0;
    border-radius: 0;
    height: 78px;
    object-fit: contain;
    padding: 0;
    width: 78px;
}

.landing-universe-item span {
    color: rgba(255, 255, 255, .72);
    font-size: .72rem;
    font-weight: 900;
}

.landing-universe-item.cyclisme { --universe-color: #d4af37; }
.landing-universe-item.rugby { --universe-color: #9ed24a; }
.landing-universe-item.football { --universe-color: #20c46b; }
.landing-universe-item.meca { --universe-color: #d84040; }
.landing-universe-item.tennis { --universe-color: #38a978; }
.landing-universe-item.biathlon { --universe-color: #8ed8ff; }
.landing-universe-item.saveurs { --universe-color: #cc4248; }

.landing-page .btn-gold.landing-dashboard-link {
    margin-top: 28px;
    min-height: 48px;
    padding: 13px 22px;
}

.landing-page .landing-modules {
    max-width: 1320px;
    padding-top: 48px;
}

.landing-page .landing-modules .section-heading {
    max-width: 920px;
}

.landing-page .landing-modules .section-heading h2 {
    font-size: clamp(2.2rem, 4vw, 3.25rem);
}

.landing-preview-tabs {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0 auto 14px;
    max-width: 1200px;
}

.landing-preview-tab {
    --tab-accent: #d4af37;
    align-items: center;
    background: rgba(24, 28, 35, .62);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    display: flex;
    font: inherit;
    gap: 12px;
    min-height: 72px;
    padding: 10px 14px;
    text-align: left;
    transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.landing-preview-tab:nth-child(2) {
    --tab-accent: #9ed24a;
}

.landing-preview-tab:nth-child(3) {
    --tab-accent: #20c46b;
}

.landing-preview-tab:nth-child(4) {
    --tab-accent: #d84040;
}

.landing-preview-tab:hover,
.landing-preview-tab:focus-visible {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .18);
    outline: none;
    transform: translateY(-2px);
}

.landing-preview-tab.is-active {
    background: color-mix(in srgb, var(--tab-accent) 12%, transparent);
    border-color: color-mix(in srgb, var(--tab-accent) 62%, rgba(255, 255, 255, .1));
}

.landing-preview-tab img {
    flex: 0 0 48px;
    height: 48px;
    object-fit: contain;
    width: 48px;
}

.landing-preview-tab span,
.landing-preview-tab strong,
.landing-preview-tab small {
    display: block;
    min-width: 0;
}

.landing-preview-tab strong {
    font-size: .86rem;
}

.landing-preview-tab small {
    color: rgba(255, 255, 255, .48);
    font-size: .68rem;
    margin-top: 4px;
}

.landing-preview-stage {
    margin: 0 auto;
    max-width: 1200px;
}

.landing-preview-panel {
    align-items: center;
    background: rgba(18, 22, 29, .78);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 8px;
    display: grid;
    gap: clamp(28px, 4vw, 58px);
    grid-template-columns: minmax(0, 1.38fr) minmax(290px, .62fr);
    min-height: 540px;
    overflow: hidden;
    padding: clamp(18px, 2.5vw, 32px);
    position: relative;
}

.landing-preview-panel[hidden] {
    display: none;
}

.landing-preview-panel::before {
    background: var(--preview-accent, #d4af37);
    content: "";
    height: 3px;
    inset: 0 0 auto;
    opacity: .8;
    position: absolute;
}

.landing-preview-panel.cyclisme { --preview-accent: #d4af37; }
.landing-preview-panel.rugby { --preview-accent: #9ed24a; }
.landing-preview-panel.football { --preview-accent: #20c46b; }
.landing-preview-panel.meca { --preview-accent: #d84040; }

.landing-preview-visual {
    background: #080b10;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    box-shadow: 0 24px 55px rgba(0, 0, 0, .32);
    min-width: 0;
    overflow: hidden;
}

.landing-preview-windowbar {
    align-items: center;
    background: #171b23;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    gap: 6px;
    height: 38px;
    padding: 0 12px;
}

.landing-preview-windowbar > span {
    background: rgba(255, 255, 255, .2);
    border-radius: 50%;
    height: 7px;
    width: 7px;
}

.landing-preview-windowbar > span:first-child { background: #e85d5d; }
.landing-preview-windowbar > span:nth-child(2) { background: #d8ab42; }
.landing-preview-windowbar > span:nth-child(3) { background: #49aa68; }

.landing-preview-windowbar strong {
    color: rgba(255, 255, 255, .52);
    font-size: .66rem;
    margin-left: 6px;
}

.landing-preview-screen {
    aspect-ratio: 1.48 / 1;
    background: #0d1118;
    min-height: 0;
    overflow: hidden;
    position: relative;
}

.landing-preview-screen > img {
    display: block;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    width: 100%;
}

.landing-preview-panel.rugby .landing-preview-screen > img {
    object-position: center;
}

.landing-preview-panel.meca .landing-preview-screen > img {
    object-fit: contain;
}

.landing-preview-copy {
    min-width: 0;
}

.landing-preview-code {
    color: var(--preview-accent, #d4af37);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin: 0 0 14px;
    text-transform: uppercase;
}

.landing-preview-copy h3 {
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    line-height: 1.05;
    margin: 0 0 18px;
}

.landing-preview-copy > p:not(.landing-preview-code) {
    color: rgba(255, 255, 255, .62);
    font-size: .94rem;
    line-height: 1.65;
    margin: 0;
}

.landing-preview-copy dl {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin: 28px 0 0;
}

.landing-preview-copy dl > div {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    display: grid;
    gap: 14px;
    grid-template-columns: 92px minmax(0, 1fr);
    padding: 13px 0;
}

.landing-preview-copy dt {
    color: rgba(255, 255, 255, .38);
    font-size: .66rem;
    font-weight: 900;
    text-transform: uppercase;
}

.landing-preview-copy dd {
    color: rgba(255, 255, 255, .82);
    font-size: .78rem;
    font-weight: 750;
    margin: 0;
}

.landing-foot-demo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(18px, 3vw, 32px);
}

.landing-foot-heading {
    align-items: center;
    color: rgba(255, 255, 255, .46);
    display: flex;
    font-size: .68rem;
    justify-content: space-between;
    margin-bottom: 18px;
}

.landing-foot-heading strong {
    color: #20c46b;
    font-size: .66rem;
    text-transform: uppercase;
}

.landing-foot-match {
    align-items: center;
    display: grid;
    gap: 18px;
    grid-template-columns: 1fr auto 1fr;
    margin-bottom: 22px;
}

.landing-foot-match > div {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.landing-foot-match img {
    height: clamp(54px, 7vw, 76px);
    object-fit: contain;
    width: clamp(54px, 7vw, 76px);
}

.landing-foot-match strong {
    font-size: clamp(.9rem, 1.8vw, 1.2rem);
}

.landing-foot-match > span {
    color: rgba(255, 255, 255, .32);
    font-size: .72rem;
    font-weight: 900;
}

.landing-foot-outcomes {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(3, 1fr);
}

.landing-foot-outcomes > div {
    align-items: center;
    background: rgba(255, 255, 255, .035);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    min-height: 48px;
    padding: 10px 12px;
}

.landing-foot-outcomes > div.is-picked {
    background: rgba(32, 196, 107, .12);
    border-color: rgba(32, 196, 107, .55);
}

.landing-foot-outcomes span {
    color: #20c46b;
    font-size: .72rem;
    font-weight: 950;
}

.landing-foot-outcomes strong {
    font-size: .82rem;
}

.landing-foot-score {
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, .08);
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr auto 1fr;
    margin-top: 18px;
    padding-top: 18px;
}

.landing-foot-score > span,
.landing-foot-score small {
    color: rgba(255, 255, 255, .45);
    font-size: .68rem;
    font-weight: 800;
}

.landing-foot-score small {
    text-align: right;
}

.landing-foot-score > div {
    align-items: center;
    display: flex;
    gap: 8px;
}

.landing-foot-score strong {
    align-items: center;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    display: flex;
    height: 40px;
    justify-content: center;
    width: 40px;
}

.landing-foot-score em {
    color: rgba(255, 255, 255, .34);
    font-style: normal;
}

.landing-foot-lock {
    align-items: center;
    color: rgba(255, 255, 255, .4);
    display: flex;
    font-size: .64rem;
    font-weight: 850;
    gap: 7px;
    margin-top: 17px;
    text-transform: uppercase;
}

.landing-foot-lock span {
    background: #d8ab42;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(216, 171, 66, .35);
    height: 6px;
    width: 6px;
}

.landing-page footer {
    margin-top: 34px;
}

@media (max-width: 980px) {
    .landing-universe-strip {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .landing-preview-panel {
        gap: 30px;
        grid-template-columns: 1fr;
    }

    .landing-preview-copy {
        padding: 4px 4px 8px;
    }
}

@media (max-width: 700px) {
    .landing-page .home-hero {
        min-height: 0;
        padding: var(--nav-clearance) 18px 50px;
    }

    .landing-page .home-hero .logo {
        width: 104px;
    }

    .landing-page .hero-title {
        font-size: clamp(3.4rem, 17vw, 4.8rem);
    }

    .hero-signals {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 26px;
    }

    .landing-page #concept,
    .landing-page .landing-universes,
    .landing-page .landing-modules {
        padding-left: 14px;
        padding-right: 14px;
    }

    .landing-page .steps {
        grid-template-columns: 1fr;
    }

    .landing-page .step {
        min-height: 0;
    }

    .landing-universe-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-universe-item {
        min-height: 116px;
    }

    .landing-universe-item img {
        height: 66px;
        width: 66px;
    }

    .landing-preview-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-preview-tab {
        min-height: 64px;
        padding: 8px 10px;
    }

    .landing-preview-tab img {
        flex-basis: 40px;
        height: 40px;
        width: 40px;
    }

    .landing-preview-panel {
        min-height: 0;
        padding: 12px;
    }

    .landing-preview-screen {
        aspect-ratio: 1 / 1;
    }

    .landing-preview-copy h3 {
        font-size: 1.8rem;
    }

    .landing-preview-copy dl > div {
        grid-template-columns: 82px minmax(0, 1fr);
    }

    .landing-foot-demo {
        padding: 14px;
    }

    .landing-foot-outcomes > div {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
        padding: 9px;
    }

    .landing-foot-score {
        grid-template-columns: 1fr auto;
    }

    .landing-foot-score small {
        grid-column: 1 / -1;
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    .landing-preview-tab,
    .landing-page .home-hero .logo {
        transition: none;
    }
}
