/* =========================
   ORDENAHORA - LANZAMIENTO
   ========================= */

:root{
    --bg: #0a0a0f;
    --card: rgba(255,255,255,0.08);
    --card-border: rgba(255,255,255,0.14);
    --text: #ffffff;
    --muted: rgba(255,255,255,0.78);
    --soft: rgba(255,255,255,0.58);
    --accent: #25D366;
    --accent-dark: #1faa52;
    --secondary: rgba(255,255,255,0.10);
    --shadow: 0 20px 60px rgba(0,0,0,0.45);
    --radius-xl: 28px;
    --radius-lg: 18px;
    --radius-md: 14px;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(37,211,102,0.10), transparent 30%),
        radial-gradient(circle at bottom right, rgba(255,255,255,0.06), transparent 25%),
        linear-gradient(135deg, #09090d 0%, #12121a 45%, #0a0a0f 100%);
    color: var(--text);
    overflow-x: hidden;
    position: relative;
}

/* Fondo decorativo */
.bg-glow{
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .45;
    pointer-events: none;
    z-index: 0;
}

.glow-1{
    width: 240px;
    height: 240px;
    background: rgba(37,211,102,0.25);
    top: 8%;
    left: 6%;
}

.glow-2{
    width: 280px;
    height: 280px;
    background: rgba(255,255,255,0.10);
    right: 4%;
    bottom: 8%;
}

.launch-wrap{
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}

.launch-card{
    width: 100%;
    max-width: 760px;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 34px 28px;
    text-align: center;
    animation: fadeUp .9s ease both;
}

.badge{
    display: inline-block;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(37,211,102,0.14);
    border: 1px solid rgba(37,211,102,0.28);
    color: #cffff0;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .3px;
    margin-bottom: 20px;
}

.brand{
    font-size: clamp(2.5rem, 7vw, 5rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -1.8px;
    margin-bottom: 18px;
}

.subtitle{
    max-width: 620px;
    margin: 0 auto 26px;
    font-size: clamp(1rem, 2.5vw, 1.18rem);
    line-height: 1.7;
    color: var(--muted);
}

.info-box{
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--radius-lg);
    padding: 18px 16px;
    margin: 0 auto 24px;
    max-width: 620px;
}

.info-title{
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.info-text{
    color: var(--muted);
    line-height: 1.7;
    font-size: .98rem;
}

.features{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 620px;
    margin: 0 auto 28px;
}

.feature{
    padding: 14px 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--radius-md);
    font-weight: 700;
    color: #f2f2f2;
}

.actions{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 16px;
}

.btn{
    appearance: none;
    border: none;
    outline: none;
    text-decoration: none;
    cursor: pointer;
    padding: 15px 22px;
    border-radius: 999px;
    font-size: .98rem;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
    min-width: 220px;
}

.btn:hover{
    transform: translateY(-2px);
}

.btn-primary{
    background: var(--accent);
    color: #08150c;
    box-shadow: 0 12px 30px rgba(37,211,102,0.28);
}

.btn-primary:hover{
    background: var(--accent-dark);
}

.btn-secondary{
    background: var(--secondary);
    color: var(--text);
    border: 1px solid rgba(255,255,255,0.12);
}

.btn-secondary:hover{
    background: rgba(255,255,255,0.14);
}

.mini-text{
    margin-top: 10px;
    color: var(--soft);
    font-size: .95rem;
    line-height: 1.6;
    min-height: 24px;
}

/* Animaciones */
@keyframes fadeUp{
    from{
        opacity: 0;
        transform: translateY(24px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 640px){
    .launch-card{
        padding: 28px 18px;
    }

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

    .btn{
        width: 100%;
        min-width: auto;
    }

    .subtitle{
        font-size: 1rem;
    }
}