:root {
    --brand-bg: #313bb5;
    /* rgb(49,59,181) */
    --brand-accent: #4cff45;
    /* rgb(76,255,69) */
    --text-color: #ffffff;
}

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

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

.background-overlay {
    display: none;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    opacity: 0.6;
}

.container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.logo-wrapper {
    width: 500px;
    height: 500px;
    margin-bottom: -4rem;
}

.main-logo {
    width: 100%;
    height: 100%;
    display: block;
}

/* Base styles for paths inside SVG */
.draw-me {
    fill: transparent;
    stroke: var(--brand-accent);
    stroke-width: 8px;
    /* Based on SVG internal coordinates */
    stroke-linecap: round;
    stroke-linejoin: round;
}

.text-content {
    position: relative;
    z-index: 10;
}

.text-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.text-content h1 span {
    color: var(--brand-accent);
    position: relative;
    display: inline-block;
}

.text-content h1 span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    background-color: rgba(76, 255, 69, 0.3);
    bottom: 8px;
    left: 0;
    z-index: -1;
    border-radius: 4px;
}

.text-content p {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.progress-container {
    width: 100%;
    max-width: 400px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: var(--brand-accent);
    width: 0%;
    /* Animated via GSAP */
    border-radius: 10px;
    box-shadow: 0 0 10px var(--brand-accent);
}

.stay-tuned {
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.95rem;
    color: var(--brand-accent) !important;
}

/* Responsiveness */
@media (max-width: 768px) {
    .text-content h1 {
        font-size: 2.5rem;
    }

    .logo-wrapper {
        width: 180px;
        height: 180px;
        margin-bottom: -1.5rem;
    }
}