#landing-page {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background-color: #09090b;
    background-image: radial-gradient(circle at top right, rgba(139, 92, 246, 0.15), transparent 60%),
                      radial-gradient(circle at bottom left, rgba(56, 189, 248, 0.1), transparent 60%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #f1f5f9;
    font-family: 'Kanit', sans-serif;
    padding: 24px;
    overflow-y: auto;
    overflow-x: hidden;
}

/* The Glass Card Container */
.landing-glass-card {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 32px 24px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .landing-glass-card {
        padding: 48px;
    }
}

/* Mac-style dots */
.visual-header {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    width: 100%;
    justify-content: flex-start;
}

.visual-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.visual-dot.red { background: #ef4444; }
.visual-dot.yellow { background: #eab308; }
.visual-dot.green { background: #22c55e; }

/* Content Inside */
.landing-card-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.landing-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
    color: #fff;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.landing-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #94a3b8;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 450px;
}

.landing-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    width: 100%;
    text-align: left;
}

.landing-feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px 20px;
    border-radius: 12px;
    transition: background 0.2s;
}

.landing-feature-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.landing-feature-icon {
    color: #a78bfa;
    flex-shrink: 0;
    background: rgba(139, 92, 246, 0.1);
    padding: 8px;
    border-radius: 8px;
    width: 20px;
    height: 20px;
}

.landing-feature-text {
    font-size: 15px;
    color: #e2e8f0;
    font-weight: 400;
}

.landing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px -5px rgba(139, 92, 246, 0.4);
    width: 100%;
    max-width: 280px;
}

.landing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(139, 92, 246, 0.6);
}

.landing-btn:active {
    transform: translateY(1px);
}

/* Decoration behind the card */
.visual-decoration {
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(59, 130, 246, 0.4));
    filter: blur(80px);
    border-radius: 50%;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.visual-skeleton-row {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.03);
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 12px;
    width: 100%;
}

.visual-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
