/* Reset & Core Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
}

body {
    /* Rich, deep, velvet cosmic-black blend */
    background-color: #030712; 
    background-image: 
        radial-gradient(circle at 50% 40%, #0f172a 0%, #030712 70%),
        radial-gradient(circle at 80% 20%, #1e1b4b 0%, transparent 40%);
    color: #f8fafc;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 20px;
    position: relative;
}

/* Ambient Deep Lighting Effect behind content */
.ambient-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.04) 0%, transparent 70%);
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.container {
    text-align: center;
    max-width: 620px;
    z-index: 2;
}

/* 3D Etched Tech Badge */
.logo-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.15); /* Gives edge-lit 3D feel */
    color: #94a3b8;
    font-weight: 600;
    letter-spacing: 3px;
    border-radius: 30px;
    margin-bottom: 30px;
    font-size: 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* High-End Typography */
h1 {
    font-size: 3.8rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 8px;
    color: #ffffff;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.dot {
    color: #38bdf8;
    text-shadow: 0 0 20px rgba(56, 189, 248, 0.4); /* Neon accent core */
}

.tagline {
    font-size: 1.05rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 40px;
    font-weight: 500;
}

.bio {
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 45px;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Premium 3D Glassmorphism Status Box */
.status-box {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.6) 0%, rgba(3, 7, 18, 0.8) 100%);
    padding: 14px 28px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
    gap: 14px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5), 
        inset 0 1px 0 rgba(255, 255, 255, 0.05); /* Inner bevel */
}

.status-text {
    font-size: 0.95rem;
    color: #94a3b8;
    font-weight: 500;
    letter-spacing: 0.2px;
}

/* Neon Pulse Indicator */
.pulse-icon {
    width: 8px;
    height: 8px;
    background-color: #38bdf8;
    border-radius: 50%;
    box-shadow: 0 0 10px #38bdf8;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.5);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(56, 189, 248, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(56, 189, 248, 0);
    }
}

/* Sleek Social Touch-points */
.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-links a {
    color: #475569;
    font-size: 1.6rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-links a:hover {
    color: #38bdf8;
    transform: translateY(-4px);
    text-shadow: 0 0 15px rgba(56, 189, 248, 0.3);
}

/* Subtle Minimalist Footer */
footer {
    position: absolute;
    bottom: 25px;
    color: #334155;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Precision Mobile Responsiveness */
@media (max-width: 480px) {
    h1 { font-size: 2.6rem; }
    .tagline { font-size: 0.9rem; letter-spacing: 3px; }
    .bio { font-size: 0.95rem; padding: 0 10px; }
    .status-box { padding: 12px 20px; }
    .status-text { font-size: 0.85rem; }
}