:root {
    --bg: radial-gradient(circle at 15% 20%, rgba(72, 255, 182, 0.22), transparent 55%),
           radial-gradient(circle at 85% 15%, rgba(123, 97, 255, 0.2), transparent 50%),
           linear-gradient(140deg, #040b16 0%, #0b1526 55%, #101f35 100%);
    --text-primary: #e8f3ff;
    --text-secondary: rgba(232, 243, 255, 0.82);
    --whatsapp-gradient: linear-gradient(135deg, #6cf290 0%, #2ed97f 55%, #1fb665 100%);
    --whatsapp-border: rgba(255, 255, 255, 0.25);
}

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

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(32px, 5vw, 64px);
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #040b16;
    background-image: var(--bg);
    color: var(--text-primary);
    text-align: center;
}

.page {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(18px, 4vw, 32px);
    padding: clamp(32px, 5vw, 56px);
    border-radius: 28px;
    background: rgba(8, 15, 30, 0.78);
    border: 1px solid rgba(132, 165, 255, 0.22);
    backdrop-filter: blur(14px);
    box-shadow: 0 30px 90px rgba(3, 9, 20, 0.55);
    max-width: 520px;
    width: 100%;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page:hover {
    transform: translateY(-6px);
    box-shadow: 0 40px 120px rgba(3, 9, 20, 0.45);
}

.logo-wrap {
    display: flex;
    justify-content: center;
}

.logo {
    width: clamp(120px, 30vw, 180px);
    height: auto;
    object-fit: contain;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(12px, 3vw, 20px);
}

.headline {
    font-size: clamp(2.1rem, 6vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

.subline {
    font-size: clamp(1.1rem, 3.6vw, 1.35rem);
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.01em;
}

.whatsapp-cta {
    width: 100%;
    display: flex;
    justify-content: center;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 999px;
    background: var(--whatsapp-gradient);
    color: #042d19;
    font-weight: 700;
    font-size: 1.05rem;
    border: 1px solid var(--whatsapp-border);
    box-shadow: 0 16px 32px rgba(35, 181, 99, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 38px rgba(35, 181, 99, 0.45);
}

.whatsapp-btn:focus-visible {
    outline: 3px solid rgba(108, 242, 144, 0.6);
    outline-offset: 4px;
}

.wa-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    color: #075e2e;
}

.wa-icon svg {
    width: 100%;
    height: 100%;
}

.wa-text {
    white-space: nowrap;
}

@media (max-width: 520px) {
    body {
        padding: 24px;
    }

    .page {
        border-radius: 24px;
        padding: 28px;
        gap: 24px;
    }

    .whatsapp-btn {
        width: 100%;
        justify-content: center;
    }

    .wa-text {
        white-space: normal;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
