.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border: 1px solid var(--card-border);
    border-radius: 999px;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    min-width: 0;
}

.brand-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-2), var(--accent));
    box-shadow: 0 0 20px rgba(124,92,255,0.5);
    flex: 0 0 auto;
}

.brand span {
    font-weight: 700;
    letter-spacing: 0.4px;
    color: #e5ebff;
    min-width: 0;
}

.btn-status {
    white-space: nowrap;
}

.hero-left,
.hero-right,
.feature,
.cta-panel {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.hero-left {
    padding: 46px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: #d8e0f7;
    font-size: 0.9rem;
    margin-bottom: 24px;
    flex-wrap: wrap;
    max-width: 100%;
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #71ef9f;
    box-shadow: 0 0 10px rgba(113,239,159,0.8);
    flex: 0 0 auto;
}

.subtitle {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--muted);
    max-width: 700px;
    margin-bottom: 30px;
}

.cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 22px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.22s ease;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.btn-primary {
    color: white;
    background: linear-gradient(135deg, var(--accent-2), var(--accent));
    box-shadow: 0 14px 34px rgba(124,92,255,0.22);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(124,92,255,0.28);
}

.btn-secondary {
    color: #dce4fb;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.07);
    transform: translateY(-2px);
}

.tiny-note {
    color: var(--muted-2);
    font-size: 0.92rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 28px;
}

.stat {
    padding: 18px;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
}

.stat strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.stat span {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.hero-right {
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}

.scene {
    position: relative;
    width: 100%;
    min-height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.planet-glow {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(55,215,255,0.14), rgba(124,92,255,0.14), transparent 70%);
    filter: blur(24px);
}

.planet {
    position: relative;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 32% 28%, #4be8ff, #5a7eff 40%, #1d2e5b 65%, #0a1021 100%);
    box-shadow:
        inset -24px -20px 60px rgba(0,0,0,0.35),
        0 0 50px rgba(55,215,255,0.12),
        0 0 100px rgba(124,92,255,0.12);
    z-index: 2;
}

.planet::before {
    content: "";
    position: absolute;
    inset: 20px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.08);
}

.ring {
    position: absolute;
    width: 330px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid rgba(124,92,255,0.24);
    transform: rotate(-14deg);
    z-index: 1;
}

.orbit {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    border: 1px dashed rgba(255,255,255,0.12);
    animation: spin 20s linear infinite;
}

.ship {
    position: absolute;
    top: 16px;
    left: 50%;
    margin-left: -11px;
    width: 22px;
    height: 22px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(45deg);
    background: linear-gradient(135deg, var(--accent-2), var(--accent));
    box-shadow: 0 0 18px rgba(124,92,255,0.4);
}

.ship::after {
    content: "";
    position: absolute;
    right: -8px;
    bottom: 2px;
    width: 12px;
    height: 6px;
    background: radial-gradient(circle, rgba(55,215,255,0.95), transparent 70%);
    transform: rotate(-45deg);
}

.feature {
    padding: 24px;
    border-radius: 22px;
}

.feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(55,215,255,0.16), rgba(124,92,255,0.2));
    border: 1px solid rgba(255,255,255,0.08);
}

.feature h3 {
    font-size: 1.08rem;
    margin-bottom: 10px;
}

.feature p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.96rem;
}

.cta-panel {
    margin-top: 18px;
    padding: 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    background:
        linear-gradient(135deg, rgba(55,215,255,0.08), rgba(124,92,255,0.10)),
        var(--glass, rgba(17,24,43,0.72));
}

.cta-panel strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.cta-panel p {
    color: var(--muted);
    line-height: 1.7;
    max-width: 760px;
}

.status-actions {
    margin-top: 20px;
}

/* Tablette */
@media (max-width: 900px) {
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 760px) {
    .stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .stat {
        width: 100%;
    }
}

    .brand span {
        text-align: center;
    }

    .btn-status {
        width: 100%;
        white-space: normal;
    }

    .hero-left,
    .hero-right,
    .feature,
    .cta-panel {
        padding: 18px;
        border-radius: 22px;
    }

    .hero-left {
        padding: 20px;
    }

    .eyebrow {
        gap: 8px;
        padding: 8px 12px;
        margin-bottom: 18px;
        font-size: 0.82rem;
        line-height: 1.4;
    }

    .subtitle {
        font-size: 0.98rem;
        line-height: 1.7;
        margin-bottom: 22px;
    }

    .cta-row {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
        min-height: 48px;
        padding: 12px 16px;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .stat {
        padding: 16px;
    }

    .stat strong {
        font-size: 1rem;
    }

    .stat span {
        font-size: 0.92rem;
    }

    .hero-right {
        padding: 18px;
    }

    .scene {
        min-height: 240px;
        max-width: 320px;
        margin: 0 auto;
    }

    .planet-glow {
        width: 240px;
        height: 240px;
        filter: blur(18px);
    }

    .planet {
        width: 160px;
        height: 160px;
    }

    .planet::before {
        inset: 14px;
    }

    .ring {
        width: 230px;
        height: 84px;
    }

    .orbit {
        width: 250px;
        height: 250px;
    }

    .ship {
        top: 10px;
        width: 18px;
        height: 18px;
        margin-left: -9px;
    }

    .ship::after {
        right: -7px;
        bottom: 1px;
        width: 10px;
        height: 5px;
    }

    .feature {
        padding: 18px;
    }

    .feature-icon {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
        margin-bottom: 14px;
    }

    .feature h3 {
        font-size: 1rem;
    }

    .feature p {
        font-size: 0.94rem;
        line-height: 1.65;
    }

    .cta-panel {
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
    }

    .cta-panel strong {
        font-size: 1rem;
    }

    .cta-panel p {
        max-width: none;
        font-size: 0.95rem;
        line-height: 1.65;
    }
}

/* Très petit mobile */
@media (max-width: 420px) {
    .brand {
        gap: 10px;
        padding: 9px 12px;
    }

    .brand span {
        font-size: 0.98rem;
    }

    .hero-left,
    .hero-right,
    .feature,
    .cta-panel {
        padding: 16px;
    }

    .hero-left {
        padding: 18px;
    }

    .subtitle {
        font-size: 0.95rem;
    }

    .scene {
        min-height: 210px;
        max-width: 280px;
    }

    .planet-glow {
        width: 210px;
        height: 210px;
    }

    .planet {
        width: 140px;
        height: 140px;
    }

    .ring {
        width: 205px;
        height: 74px;
    }

    .orbit {
        width: 220px;
        height: 220px;
    }

    .stat,
    .feature,
    .cta-panel {
        border-radius: 18px;
    }
}