/* Landing — тёмный градиент, карточка по центру (скрин 1) */
:root {
    --gradient-from: #6b2d5c;
    --gradient-to: #1a0a15;
    --card-bg: #111018;
    --pink: #e91e8c;
    --gradient-text-from: #26c6da;
    --gradient-text-to: #7b1fa2;
    --btn-from: #e91e8c;
    --btn-to: #7b1fa2;
    --text: #c4c4c4;
    --text-bright: #e0e0e0;

    /* Blob colors */
    --blob-top-color: #e91e8c;
    --blob-bottom-color: #7b1fa2;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(156deg, #570e45 0%, var(--gradient-to) 25%, var(--gradient-to) 70%, #570e45 100%);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
    position: relative;
}

/* ===== Blobs ===== */
.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
    will-change: transform, opacity;
}

.blob-top {
    top: -10%;
    left: -4%;
    width: 420px;
    height: 420px;
    background: var(--blob-top-color);
    animation: pulse-blob 5s ease-in-out infinite;
}

.blob-bottom {
    bottom: -10%;
    right: -8%;
    width: 480px;
    height: 480px;
    background: var(--blob-bottom-color);
    animation: pulse-blob 5s ease-in-out infinite 1.5s;
}

@keyframes pulse-blob {
    0%, 100% {
        transform: scale(0.7);
        opacity: 0.08;
    }
    50% {
        transform: scale(1.45);
        opacity: 0.38;
    }
}

.page {
    width: 100%;
    max-width: 420px;
    position: relative;
    z-index: 1;
}

.card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 32px 38px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border: 1px solid #2a2a2a;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--pink), var(--gradient-text-to));
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-bright);
    letter-spacing: 0.02em;
}

.title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 12px;
}

.title-white {
    color: #fff;
}

.title-gradient {
    background: linear-gradient(90deg, var(--gradient-text-from), var(--gradient-text-to));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.45;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 12px;
    background: linear-gradient(90deg, var(--btn-from), var(--btn-to));
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    margin-bottom: 20px;
    margin-top: 20px;
    transition: opacity 0.2s, transform 0.15s;
}

.btn:hover {
    opacity: 0.95;
    transform: translateY(-1px);
}

.disclaimer {
    font-size: 16px;
    color: var(--text);
    opacity: 0.85;
}
