:root {
    --bg-black: #000000;
    --bg-darker: #0a0a0c;
    --neon-green: #39FF14;
    --gold: #D4AF37;
    --white: #FFFFFF;
    --grey: #888888;
}

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

body, html {
    width: 100%;
    height: 100%;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-black);
    color: var(--white);
    overflow: hidden; /* Prevent scrolling for this cinematic layout */
}

/* Background Typography */
.bg-typography {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 35vw;
    line-height: 0.8;
    color: rgba(255, 255, 255, 0.02);
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    text-align: center;
}

.split-layout {
    display: flex;
    width: 100vw;
    height: 100vh;
    position: relative;
    z-index: 1;
}

/* Left Side - Visual Focus */
.visual-side {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(10,10,12,0.9) 0%, rgba(0,0,0,1) 100%);
    border-right: 1px solid rgba(57, 255, 20, 0.1);
    overflow: hidden;
}

.accent-slash {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 150%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.03), transparent);
    transform: rotate(30deg);
    pointer-events: none;
}

.visual-content {
    text-align: center;
    z-index: 2;
    padding: 2rem;
}

.hero-logo {
    max-width: 450px;
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.8));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.typographic-logo h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 8rem;
    letter-spacing: 2px;
    line-height: 1;
    text-shadow: 0 10px 30px rgba(0,0,0,1);
}

.typographic-logo .green {
    color: var(--neon-green);
}

.slogan {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    letter-spacing: 2px;
    margin-top: 2rem;
    opacity: 0.9;
}

.slogan .gold {
    color: var(--gold);
}

/* Right Side - Info Focus */
.info-side {
    flex: 1;
    background-color: rgba(5, 5, 7, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
}

.info-content {
    max-width: 500px;
    width: 100%;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4.5rem;
    line-height: 1.1;
    letter-spacing: 1px;
    margin-bottom: 2.5rem;
}

/* Progress Bar */
.progress-container {
    margin-bottom: 2rem;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--neon-green);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.progress-bar-bg {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.progress-bar-fill {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    width: 99%;
    background: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green);
    animation: loadIn 2s cubic-bezier(0.1, 0.7, 1.0, 0.1) forwards;
}

@keyframes loadIn {
    0% { width: 0%; }
    100% { width: 99%; }
}

.sub-text {
    font-size: 1.1rem;
    color: var(--grey);
    line-height: 1.6;
    margin-bottom: 3rem;
}

/* Buttons */
.cta-group {
    display: flex;
    gap: 1.5rem;
}

.btn {
    padding: 1.2rem 2.5rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px); /* Tech/Sporty cut corners */
}

.btn-primary {
    background: var(--neon-green);
    color: var(--bg-black);
    font-weight: bold;
}

.btn-primary:hover {
    background: var(--white);
    transform: scale(1.05);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

/* Responsive */
@media (max-width: 992px) {
    .split-layout {
        flex-direction: column;
        overflow-y: auto;
    }
    
    body, html {
        overflow: auto; /* Allow scrolling on mobile */
    }

    .visual-side, .info-side {
        flex: none;
        width: 100%;
        min-height: 50vh;
    }

    .visual-content {
        padding: 4rem 2rem;
    }

    .typographic-logo h1 {
        font-size: 5rem;
    }

    .slogan {
        font-size: 2.5rem;
    }

    .info-side {
        padding: 3rem 2rem;
    }

    .headline {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
    .bg-typography { display: none; }
    
    .cta-group {
        flex-direction: column;
    }
    
    .btn {
        text-align: center;
    }
}
