/* --- KU16 Landing Page Theme Styles --- */
:root {
    --bg-main: #0a0812;
    --bg-card: #151024;
    --accent-purple: #9333ea;
    --accent-glow: rgba(147, 51, 234, 0.4);
    --text-main: #ffffff;
    --text-muted: #a1a1aa;
}

body.landing-body {
    background-color: var(--bg-main);
    color: var(--text-main);
}

.landing-container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    background: var(--bg-main);
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.brand-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.logo-bubble {
    background: linear-gradient(135deg, #1f1435 0%, #120b22 100%);
    border: 1px solid rgba(147, 51, 234, 0.3);
    padding: 12px 18px;
    border-radius: 20px;
    box-shadow: 0 0 20px var(--accent-glow);
}

.logo-bubble h1 {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #fff, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-bubble span {
    font-size: 0.55rem;
    letter-spacing: 2px;
    color: #c084fc;
    font-weight: 600;
    text-transform: uppercase;
}

.verified-badge {
    background: rgba(20, 16, 36, 0.8);
    border: 1px solid rgba(147, 51, 234, 0.4);
    padding: 8px 12px;
    border-radius: 12px;
    text-align: center;
}

.verified-badge small {
    display: block;
    font-size: 0.5rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.verified-badge span {
    font-size: 0.65rem;
    font-weight: 700;
    color: #4ade80;
}

.hero-headline {
    margin-bottom: 30px;
}

.hero-headline h2 {
    font-size: 2rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 15px;
}

.hero-headline h2 span {
    background: linear-gradient(90deg, #c084fc, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-headline p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-headline p strong {
    color: #fff;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-card);
    padding: 12px 15px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #9333ea, #6b21a8);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px var(--accent-glow);
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.feature-text p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.cta-block {
    text-align: center;
    margin-bottom: 10px;
}

.cta-block h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.cta-block h3 span {
    color: #c084fc;
}

.btn-primary-glow {
    display: block;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #a855f7, #7e22ce);
    color: #fff;
    text-align: center;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px var(--accent-glow);
}
