/* ===== LANDING SCREEN ===== */
.landing {
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 28px;
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Sticker / logo */
.landing__logo {
    position: relative;
    width: 120px;
    height: 120px;
    animation: slideUp 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.landing__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: float 5s ease-in-out infinite;
    filter: drop-shadow(0 12px 30px rgba(155, 115, 255, 0.5));
}

.landing__logo-ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1.5px solid transparent;
    background: linear-gradient(var(--bg-deep), var(--bg-deep)) padding-box,
                linear-gradient(135deg, var(--primary), var(--accent), var(--primary)) border-box;
    animation: spin 6s linear infinite;
    opacity: 0.6;
}

.landing__title {
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -0.8px;
    line-height: 1.2;
    animation: slideUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
}

.landing__title span {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing__desc {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.75;
    max-width: 340px;
    animation: slideUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.landing__features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 360px;
    animation: slideUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: default;
}

.feature-item:hover { color: var(--text); }

.feature-item__icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    border: 1px solid var(--glass-border);
}

.feature-item__icon--purple {
    background: rgba(155, 115, 255, 0.15);
    box-shadow: 0 0 16px rgba(155, 115, 255, 0.2);
}
.feature-item__icon--pink {
    background: rgba(244, 120, 184, 0.15);
    box-shadow: 0 0 16px rgba(244, 120, 184, 0.2);
}
.feature-item__icon--green {
    background: rgba(74, 222, 128, 0.12);
    box-shadow: 0 0 16px rgba(74, 222, 128, 0.15);
}

/* Author pill */
.landing__author {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    animation: slideUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.35s both;
}

.landing__author-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 1.5px solid rgba(155, 115, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.landing__author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing__author a {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition);
}
.landing__author a:hover { color: var(--accent-light); }

/* ===== DISCLAIMER ===== */
.disclaimer {
    text-align: center;
    padding: 12px 0 28px;
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.6;
}

.disclaimer a { color: var(--primary-light); text-decoration: none; }
.disclaimer a:hover { text-decoration: underline; }

/* ===== DIVIDER ===== */
.divider {
    height: 1px;
    background: var(--glass-border);
    margin: 4px 0;
}
