/* Minimal Splash Landing Page CSS */

:root {
    --bg-dark: #090a0f;
    --bg-card: rgba(18, 20, 29, 0.75);
    --border-main: rgba(255, 255, 255, 0.1);
    
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    --accent-cyan: #06b6d4;
    --accent-blue: #3b82f6;

    --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-main);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

/* Ambient Glow Background */
.ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

.bg-glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #06b6d4, #3b82f6);
    top: -100px;
    left: -100px;
}

.bg-glow-2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, #8b5cf6, #06b6d4);
    bottom: -100px;
    right: -100px;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 36px 36px;
    pointer-events: none;
    z-index: 0;
}

.splash-container {
    position: relative;
    z-index: 1;
    padding: 24px;
    width: 100%;
    max-width: 540px;
}

.splash-card {
    background: var(--bg-card);
    border: 1px solid var(--border-main);
    border-radius: 24px;
    padding: 48px 36px;
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(6, 182, 212, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.brand-badge {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    margin-bottom: 24px;
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.5);
}

.splash-title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.splash-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.5;
}

.btn-visit-website {
    width: 100%;
    padding: 16px 28px;
    border-radius: 14px;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 25px rgba(6, 182, 212, 0.4);
    border: none;
}

.btn-visit-website:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.65);
}

.splash-footer {
    margin-top: 24px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.splash-footer strong {
    color: var(--accent-cyan);
}

.seo-highlights {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border-main);
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    text-align: left;
}

.seo-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.seo-item i {
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.seo-item strong {
    color: var(--text-primary);
}
