@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;700&display=swap');

:root {
    --bg-color: #050914; /* Deeper dark for better contrast */
    --accent-teal: #42f2f2;
    --accent-green: #9dfc52;
    --text-color: #ffffff;
    --text-muted: #a0aec0;
    --glow-teal: rgba(66, 242, 242, 0.4);
    --glow-green: rgba(157, 252, 82, 0.4);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

/* Authentic Seamless Honeycomb Grid matching logo */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Layer 1: Base Dark Gradient (More intense blue center) */
    background: radial-gradient(circle at 50% 40%, #0d1b35 0%, #050914 100%);
    z-index: -3;
}


body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Layer 2: Seamless Honeycomb Grid */
    background-image: 
        url("data:image/svg+xml,%3Csvg width='24' height='41.56' viewBox='0 0 24 41.56' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 0l12 6.92v13.84L12 27.69 0 20.76V6.92L12 0z' fill='none' stroke='%2342f2f2' stroke-width='0.5' stroke-opacity='0.08'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='24' height='41.56' viewBox='0 0 24 41.56' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 0l12 6.92v13.84L12 27.69 0 20.76V6.92L12 0z' fill='none' stroke='%2342f2f2' stroke-width='0.5' stroke-opacity='0.08'/%3E%3C/svg%3E");
    background-size: 24px 41.56px;
    background-position: 0 0, 12px 20.78px;
    z-index: -2;
}

/* Atmospheric Layer for depth */
.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 40%, rgba(0,0,0,0) 20%, rgba(5, 7, 10, 0.8) 100%);
    z-index: -1;
}



/* Atmospheric Glow */
.atmosphere {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 40%, rgba(66, 242, 242, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}


.container {
    text-align: center;
    padding: 2rem;
    max-width: 900px;
    width: 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-wrapper {
    margin-bottom: 2.5rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-wrapper img {
    max-width: 320px;
    height: auto;
    filter: drop-shadow(0 0 30px var(--glow-teal));
    animation: pulse 5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 20px var(--glow-teal)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 45px var(--glow-teal)); }
}

h1 {
    font-size: clamp(3rem, 10vw, 5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
    line-height: 1;
}

.highlight-teal {
    color: var(--accent-teal);
    text-shadow: 0 0 20px var(--glow-teal);
}

.highlight-green {
    color: var(--accent-green);
    text-shadow: 0 0 20px var(--glow-green);
}

.tagline {
    font-size: clamp(1.1rem, 3.5vw, 1.75rem);
    color: var(--text-color);
    margin-bottom: 4rem;
    font-weight: 300;
    opacity: 0.85;
    letter-spacing: 0.02em;
}

.status-badge {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    background: rgba(66, 242, 242, 0.08);
    border: 1px solid rgba(66, 242, 242, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--accent-teal);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 15px rgba(66, 242, 242, 0.1);
}

.footer {
    position: absolute;
    bottom: 2rem;
    width: 100%;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.75rem;
    opacity: 0.6;
}

/* Responsive Adjustments */
@media (max-width: 640px) {
    .container {
        padding: 1.5rem;
    }
    .logo-wrapper img {
        max-width: 240px;
    }
    .tagline {
        margin-bottom: 3rem;
    }
}
