/* ═══════════════════════════════════
   PLAYER LANDING — page-specific styles
   Shared base: u21-common.css
   ═══════════════════════════════════ */

section {
    padding: 2rem;
}

section h2 {
    color: white;
}
/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 5% 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, #1a0000 0%, var(--night) 40%, var(--night) 100%),
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(204, 0, 0, .03) 2px, rgba(204, 0, 0, .03) 4px);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 50%, rgba(204, 0, 0, .08) 0%, transparent 50%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-content {
    max-width: 560px;
}

.hero-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp .5s .1s forwards;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(52px, 7vw, 90px);
    line-height: .92;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp .5s .25s forwards;
}

.hero-title .accent {
    color: var(--red);
}

.hero-sub {
    font-size: 17px;
    color: #CCCCCC;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 500px;
    opacity: 0;
    animation: fadeUp .5s .4s forwards;
}

.hero-sub strong {
    color: var(--white);
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp .5s .55s forwards;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    opacity: 0;
    animation: fadeUp .5s .7s forwards;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: var(--red);
    line-height: 1;
}

.stat-label {
    font-size: 10px;
    color: var(--muted);
    font-weight: 500;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-top: 4px;
}

/* Hero visual — player cards */
.hero-visual {
    position: relative;
}

.hero-card-stack {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
    opacity: 0;
    animation: fadeUp .5s .4s forwards;
}

.notification-pill {
    background: var(--card2);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--white);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    animation: slideIn .5s ease;
}

.notif-dot {
    width: 7px;
    height: 7px;
    background: #00C851;
    border-radius: 50%;
    flex-shrink: 0;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── TRUST BAR ── */
.trust-bar {
    background: var(--night2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 5%;
    text-align: center;
}

.trust-bar p {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--muted);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.flags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 18px;
    font-size: 1.4rem;
}

/* ── HOW IT WORKS ── */
.steps-section {
    background: var(--night2);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0;
    margin-top: 8px;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.step-card {
    padding: 32px 28px;
    border-right: 1px solid var(--border);
    position: relative;
    transition: background .2s;
}

.step-card:last-child {
    border-right: none;
}

.step-card:hover {
    background: var(--card2);
}

.step-card:focus-visible {
    background: var(--card2);
    outline: 2px solid var(--red);
    outline-offset: 2px;
    border-radius: 0;
}

.step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px;
    color: rgba(204, 0, 0, 0.5);
    line-height: 1;
    margin-bottom: 12px;
    transition: color .2s;
}

.step-card:hover .step-num {
    color: rgba(204, 0, 0, 0.28);
}

.step-icon {
    font-size: 24px;
    margin-bottom: 12px;
}

.step-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

.step-tag {
    display: inline-block;
    margin-top: 12px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: #FF3333;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ── CYCLE NOTATION ── */
.cycle-section {
    background: var(--night);
}

.cycle-wrapper {
    display: flex;
    align-items: stretch;
    gap: 0;
    flex-wrap: wrap;
    margin-top: 8px;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.cycle-step {
    flex: 1;
    min-width: 150px;
    background: var(--card);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    border-right: 1px solid var(--border);
    transition: background .2s;
}

.cycle-step:last-child {
    border-right: none;
}

.cycle-step:hover {
    background: var(--card2);
}

.cycle-step:focus-visible {
    background: var(--card2);
    outline: 2px solid var(--red);
    outline-offset: 2px;
}

.cycle-step::after {
    content: '→';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--red);
    font-size: 18px;
    z-index: 2;
}

.cycle-step:last-child::after {
    display: none;
}

.cycle-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.cycle-step h3 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .5px;
}

.cycle-step p {
    font-size: 12px;
    color: var(--muted);
    margin-top: 6px;
    line-height: 1.5;
}

/* ── AVANTAGES ── */
.avantages-section {
    background: var(--night2);
}

.avantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 8px;
}

.avantage-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: border-color .2s, transform .2s;
}

.avantage-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: var(--red);
    transition: width .3s;
}

.avantage-card:hover {
    border-color: rgba(204, 0, 0, .4);
    transform: translateY(-3px);
}

.avantage-card:focus-visible {
    border-color: rgba(204, 0, 0, .4);
    transform: translateY(-3px);
    outline: 2px solid var(--red);
    outline-offset: 2px;
}

.avantage-card:hover::before {
    width: 100%;
}

.avantage-card:focus-visible::before {
    width: 100%;
}

.avantage-icon {
    font-size: 28px;
    margin-bottom: 16px;
}

.avantage-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.avantage-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

/* ── EQUIPE TYPE ── */
.equipe-section {
    background: var(--night);
}

.equipe-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 8px;
}

.equipe-visual {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.equipe-visual::before {
    content: attr(data-badge);
    position: absolute;
    top: 16px;
    right: -28px;
    background: var(--red);
    color: var(--white);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 11px;
    padding: 5px 36px;
    letter-spacing: 2px;
    transform: rotate(90deg);
    transform-origin: right center;
}

.pitch {
    background: linear-gradient(180deg, #1a3a1a 0%, #163016 50%, #1a3a1a 100%);
    width: 100%;
    aspect-ratio: 3/4;
    max-width: 260px;
    margin: 0 auto;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    display: grid;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    align-items: center;
    justify-items: center;
    padding: 18px 8px;
    gap: 2px;
}

.pitch-row {
    display: flex;
    gap: 14px;
    justify-content: center;
    width: 100%;
}

.player-dot {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 9px;
    color: var(--muted);
    flex-direction: column;
    text-align: center;
    line-height: 1.2;
}

.player-dot.star {
    background: var(--red);
    color: var(--white);
    border-color: var(--red-b);
}

.pitch-line {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
}

.pitch-line.h {
    width: 80%;
    height: 1px;
    left: 10%;
    top: 25%;
}

.pitch-line.h2 {
    width: 80%;
    height: 1px;
    left: 10%;
    top: 50%;
}

.pitch-line.h3 {
    width: 80%;
    height: 1px;
    left: 10%;
    top: 75%;
}

.pitch-line.center {
    width: 36%;
    height: 36%;
    left: 32%;
    top: 32%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: transparent;
    border-radius: 50%;
}

.equipe-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.equipe-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
}

.equipe-benefits li::before {
    content: '▸';
    color: var(--red);
    font-size: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

.equipe-benefits strong {
    color: var(--white);
}

/* ── QUOTE ── */
.quote-block {
    background: linear-gradient(135deg, #1a0000, #0a0000);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 48px 5%;
    text-align: center;
}

.quote-block blockquote {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    letter-spacing: 1px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.2;
    color: var(--white);
}

.quote-block figcaption,
.quote-attribution {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-style: normal;
    font-weight: 600;
    color: var(--red);
    margin-top: 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ── SUCCESS STORIES ── */
.stories-section {
    background: var(--night2);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
    margin-top: 8px;
}

.story-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-top: 3px solid transparent;
    border-radius: 8px;
    padding: 24px 20px;
    transition: border-color .2s, transform .2s;
}

.story-card:hover {
    border-color: rgba(204, 0, 0, .4);
    transform: translateY(-3px);
}

.story-card:focus-visible {
    border-color: rgba(204, 0, 0, .4);
    transform: translateY(-3px);
    outline: 2px solid var(--red);
    outline-offset: 2px;
}

.story-icon {
    font-size: 22px;
    margin-bottom: 10px;
}

.story-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.story-before {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 8px;
}

.story-arrow {
    font-size: 16px;
    color: var(--red);
    margin: 8px 0;
}

.story-after {
    font-weight: 600;
    font-size: 14px;
}

.story-badge {
    display: inline-block;
    margin-top: 10px;
    background: rgba(204, 0, 0, 0.35);
    color: #FFE0E0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    letter-spacing: .5px;
}

/* ── PROFIL PREVIEW ── */
.profil-section {
    background: var(--night);
}

.profil-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-top: 8px;
}

.profil-mockup {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.profil-mockup-header {
    background: linear-gradient(135deg, #1a0000, #2a0a0a);
    padding: 22px;
    display: flex;
    gap: 14px;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.profil-avatar-big {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(204, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: var(--white);
    border: 2px solid rgba(204, 0, 0, 0.4);
    flex-shrink: 0;
}

.profil-mockup-name {
    font-size: 17px;
    font-weight: 700;
}

.profil-mockup-pos {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--red);
    letter-spacing: 1.5px;
    margin-top: 2px;
    text-transform: uppercase;
}

.profil-rating {
    margin-left: auto;
    text-align: center;
}

.rating-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: var(--red);
    line-height: 1;
}

.rating-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.profil-mockup-body {
    padding: 16px 22px;
}

.profil-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
}

.profil-row:last-child {
    border-bottom: none;
}

.profil-row span:first-child {
    color: var(--muted);
}

.profil-row span:last-child {
    font-weight: 600;
}

.profil-videos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 14px 22px;
    background: var(--card2);
}

.video-thumb {
    aspect-ratio: 16/9;
    background: var(--night);
    border: 1px solid var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.profil-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.profil-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: border-color .2s;
}

.profil-feature:hover {
    border-color: rgba(204, 0, 0, .4);
}

.profil-feature:focus-visible {
    border-color: rgba(204, 0, 0, .4);
    outline: 2px solid var(--red);
    outline-offset: 2px;
}

.feat-check {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: var(--red-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.profil-feature h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 3px;
}

.profil-feature p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
}

/* ── CTA FINAL ── */
.cta-section {
    background: var(--night2);
    text-align: center;
    padding: 100px 5%;
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(204, 0, 0, .08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section .sec-title {
    font-size: clamp(40px, 6vw, 80px);
    margin-bottom: 20px;
    position: relative;
}

.cta-section .sec-sub {
    margin: 0 auto 40px;
    text-align: center;
    position: relative;
}

.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .hero {
        padding: 100px 5% 60px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        display: none;
    }

    .hero-title {
        font-size: clamp(40px, 8vw, 64px);
    }

    .hero-sub {
        font-size: 15px;
    }

    .equipe-layout {
        grid-template-columns: 1fr;
    }

    .equipe-visual {
        display: none;
    }

    .profil-layout {
        grid-template-columns: 1fr;
    }

    .profil-mockup {
        display: none;
    }

    .avantages-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stories-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }

    .cta-section .sec-title {
        font-size: clamp(30px, 7vw, 50px);
    }
}

@media (max-width: 600px) {
    section {
        padding: 50px 4%;
    }

    .hero {
        min-height: auto;
        padding: 90px 4% 50px;
    }

    .hero-title {
        font-size: clamp(34px, 12vw, 48px);
        margin-bottom: 16px;
    }

    .hero-sub {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn-red-lg,
    .hero-cta .btn-outline-lg {
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .trust-bar {
        padding: 16px 4%;
    }

    .trust-bar p {
        font-size: 9px;
        letter-spacing: 1px;
    }

    .flags {
        font-size: 1.1rem;
        gap: 4px 10px;
    }

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

    .step-card {
        padding: 22px 16px;
        border-bottom: 1px solid var(--border);
    }

    .step-num {
        font-size: 40px;
    }

    .cycle-wrapper {
        gap: 0;
    }

    .cycle-step {
        flex: 1 1 50%;
        min-width: 140px;
        border-bottom: 1px solid var(--border);
    }

    .cycle-step::after {
        display: none;
    }

    .cycle-step:last-child {
        border-bottom: none;
    }

    .cycle-step {
        padding: 22px 16px;
    }

    .avantages-grid {
        grid-template-columns: 1fr;
    }

    .avantage-card {
        padding: 22px 20px;
    }

    .stories-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .story-card {
        padding: 18px 14px;
    }

    .cta-section {
        padding: 60px 4%;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions .btn-white-lg,
    .cta-actions .btn-outline-lg {
        width: 100%;
        text-align: center;
    }

    .cta-section .sec-sub {
        font-size: 14px;
    }

    .quote-block {
        padding: 36px 5%;
    }

    .quote-block blockquote {
        font-size: clamp(22px, 6vw, 30px);
    }

    .quote-block figcaption {
        font-size: 10px;
    }

    .sec-title {
        font-size: clamp(28px, 8vw, 38px);
    }

    .sec-sub {
        font-size: 14px;
    }

    .eyebrow {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .profil-features {
        gap: 10px;
    }

    .profil-feature {
        flex-direction: column;
        gap: 10px;
        padding: 14px;
    }
}

@media (max-width: 400px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .cycle-step {
        flex: 1 1 100%;
    }

    .stories-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-stats {
        gap: 14px;
    }

    .stat-num {
        font-size: 28px;
    }
}
