/* =========================================================
   RUIZ BRAVO NEGOCIOS DEPORTIVOS
   EN CONSTRUCCIÓN — MINIMAL LUXURY
   ========================================================= */

:root {
    --navy: #071720;
    --navy-soft: #0b202c;
    --turquoise: #13c8c5;
    --orange: #ff4b00;
    --white: #ffffff;
    --soft-white: rgba(255, 255, 255, .66);
    --muted-white: rgba(255, 255, 255, .38);
    --border: rgba(255, 255, 255, .09);
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
    margin: 0;
}

body {
    min-width: 320px;
    overflow-x: hidden;
    background: var(--navy);
    color: var(--white);
    font-family: 'Montserrat', Arial, sans-serif;
}

a {
    color: inherit;
}

/* =========================================================
   PÁGINA
   ========================================================= */

.launch-page {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    padding: 34px 48px 28px;
    display: grid;
    grid-template-rows: auto 1fr auto;
    isolation: isolate;
    background:
        linear-gradient(
            180deg,
            rgba(4, 16, 24, .78) 0%,
            rgba(5, 19, 28, .83) 52%,
            rgba(4, 15, 22, .90) 100%
        ),
        url('/imagenes/back.png') center center / cover no-repeat fixed,
        var(--navy);
}

.launch-page::before {
    content: "";
    position: absolute;
    z-index: -4;
    inset: 0;
    background:
        linear-gradient(
            rgba(255, 255, 255, .015) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, .015) 1px,
            transparent 1px
        );
    background-size: 72px 72px;
    opacity: .18;
    mask-image:
        radial-gradient(
            circle at center,
            #000 0%,
            transparent 74%
        );
}

.launch-page__ambient {
    position: absolute;
    z-index: -3;
    inset: 0;
    pointer-events: none;
}

.launch-page__glow {
    position: absolute;
    display: block;
    border-radius: 50%;
    filter: blur(34px);
    opacity: .18;
}

.launch-page__glow--one {
    top: -120px;
    left: 18%;
    width: 280px;
    height: 280px;
    background: rgba(19, 200, 197, .12);
}

.launch-page__glow--two {
    right: 10%;
    bottom: -120px;
    width: 260px;
    height: 260px;
    background: rgba(255, 75, 0, .08);
}

.launch-page__line {
    position: absolute;
    display: block;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(19, 200, 197, .28),
            rgba(255, 75, 0, .20),
            transparent
        );
}

.launch-page__line--top {
    top: 15%;
    left: 0;
    width: 26%;
}

.launch-page__line--bottom {
    right: 0;
    bottom: 16%;
    width: 22%;
}

/* =========================================================
   CABECERA
   ========================================================= */

.launch-header {
    width: min(1320px, 100%);
    margin: 0 auto;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.launch-header__status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--muted-white);
    text-transform: uppercase;
    letter-spacing: .17em;
    font-size: 8px;
    font-weight: 600;
}

.launch-header__status > span {
    position: relative;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--turquoise);
    box-shadow: 0 0 0 5px rgba(19, 200, 197, .07);
}

.launch-header__status > span::after {
    content: "";
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(19, 200, 197, .34);
    border-radius: 50%;
    animation: statusPulse 2.4s ease-out infinite;
}

.launch-header__admin {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--muted-white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .11em;
    font-size: 8px;
    font-weight: 600;
    transition:
        color .22s ease,
        transform .22s ease;
}

.launch-header__admin span {
    color: var(--turquoise);
    font-size: 12px;
}

.launch-header__admin:hover {
    color: var(--white);
    transform: translateY(-1px);
}

/* =========================================================
   HERO
   ========================================================= */

.launch-hero {
    width: min(880px, 100%);
    margin: 0 auto;
    padding: 54px 0 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.launch-hero__logo-wrap {
    position: relative;
    width: min(420px, 70vw);
    display: flex;
    justify-content: center;
}

.launch-hero__logo-wrap::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: rgba(19, 200, 197, .045);
    filter: blur(10px);
    transform: translate(-50%, -50%);
}

.launch-hero__logo {
    display: block;
    width: 100%;
    max-height: 210px;
    object-fit: contain;
    object-position: center;
    filter:
        drop-shadow(0 20px 38px rgba(0, 0, 0, .20));
}

.launch-hero__divider {
    width: 112px;
    margin: 36px 0 25px;
    display: flex;
    justify-content: center;
}

.launch-hero__divider span {
    width: 100%;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            var(--turquoise) 0 66%,
            var(--orange) 66% 100%
        );
}

.launch-hero__eyebrow {
    color: var(--turquoise);
    text-transform: uppercase;
    letter-spacing: .23em;
    font-size: 9px;
    font-weight: 700;
}

.launch-hero h1 {
    margin: 18px 0 0;
    color: var(--white);
    font-size: clamp(48px, 6vw, 78px);
    line-height: 1;
    letter-spacing: -.048em;
    font-weight: 500;
}

.launch-hero p {
    max-width: 670px;
    margin: 25px auto 0;
    color: var(--soft-white);
    font-size: clamp(13px, 1.3vw, 15.5px);
    line-height: 1.9;
    font-weight: 400;
}

.launch-hero__signature {
    margin-top: 34px;
    color: rgba(255, 255, 255, .32);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 8px;
    font-weight: 600;
}

/* =========================================================
   FOOTER
   ========================================================= */

.launch-footer {
    width: min(1320px, 100%);
    margin: 0 auto;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: rgba(255, 255, 255, .26);
    text-transform: uppercase;
    letter-spacing: .11em;
    font-size: 7.5px;
    font-weight: 600;
}

/* =========================================================
   ANIMACIONES
   ========================================================= */

@keyframes statusPulse {
    0% {
        opacity: .72;
        transform: scale(.65);
    }

    75%,
    100% {
        opacity: 0;
        transform: scale(1.55);
    }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 720px) {
    .launch-page {
        padding: 24px 22px 22px;
        background-attachment: scroll;
    }

    .launch-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 13px;
    }

    .launch-hero {
        padding: 46px 0 42px;
    }

    .launch-hero__logo-wrap {
        width: min(330px, 78vw);
    }

    .launch-hero__logo {
        max-height: 170px;
    }

    .launch-hero__divider {
        margin-top: 31px;
    }

    .launch-hero h1 {
        font-size: clamp(45px, 15vw, 67px);
    }

    .launch-hero p {
        margin-top: 21px;
        font-size: 13px;
        line-height: 1.78;
    }

    .launch-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 9px;
    }
}

@media (max-width: 420px) {
    .launch-page {
        padding-inline: 17px;
    }

    .launch-hero__logo-wrap {
        width: min(290px, 82vw);
    }

    .launch-hero__logo {
        max-height: 150px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .launch-header__status > span::after {
        animation: none;
    }
}
