:root {
    --bg-start: #050510;
    --bg-end: #1a1f5c;
    --accent: #4c4de0;
    --border-soft: rgba(140, 143, 240, 0.35);
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    background: linear-gradient(160deg, var(--bg-start) 0%, var(--bg-end) 100%);
    font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 1.5rem;
}

.hero-text {
    width: 100%;
    text-align: center;
    max-width: 600px;
}

.eyebrow {
    margin: 0 auto 0.6rem;
    max-width: 70vw;
    width: max-content;
    font-size: clamp(0.6rem, 3.2vw, 1.05rem);
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
}

.tagline {
    margin: 0 auto;
    max-width: 60vw;
    font-size: clamp(1.1rem, 6vw, 2.3rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    line-height: 1.25;
    overflow-wrap: break-word;
}

.logo {
    height: 40vh;
    max-height: 40vh;
    max-width: 80vw;
    width: auto;
}

.botones {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 320px;
}

.btn-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6em;
    width: 100%;
    padding: 0.9em 1.8em;
    border-radius: 999px;
    background: rgba(76, 77, 224, 0.12);
    border: 1px solid var(--border-soft);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.btn-pill:hover {
    background: rgba(76, 77, 224, 0.22);
    border-color: var(--accent);
    transform: translateY(-1px);
}

.btn-pill.btn-whatsapp {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    padding: 1.2em 2em;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}
.btn-pill.btn-whatsapp:hover {
    background: #1ebe5a;
    border-color: #1ebe5a;
}

@media (max-width: 768px) {
    html, body {
        background:
            linear-gradient(180deg, rgba(5, 5, 16, 0.55) 0%, rgba(5, 5, 16, 0.78) 100%),
            url('/assets/img/bg-mobile.jpg') center center / cover no-repeat;
    }
}
