:root {
    --bg-color: #0B0E14;
    --text-color: #FFFFFF;
    --accent-color: #00D2FF;
    --secondary-text: rgba(255, 255, 255, 0.7);
    --btn-bg: #FFFFFF;
    --btn-text: #0B0E14;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow: hidden; /* Prevent scroll for coming soon page */
}

#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3rem;
    background: radial-gradient(circle at center, transparent 0%, rgba(11, 14, 20, 0.4) 100%);
    pointer-events: none; /* Let clicks pass to 3D background if needed */
}

.content * {
    pointer-events: auto; /* Re-enable for text and buttons */
}

header {
    width: 100%;
}

.logo img {
    height: 40px;
    filter: brightness(0) invert(1); /* Force minimalist white */
}

.hero {
    max-width: 600px;
}

h1 {
    font-size: 4rem;
    font-weight: 600;
    line-height: 0.9;
    letter-spacing: -2px;
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
}

.highlight {
    color: var(--accent-color);
    text-shadow: 0 0 20px rgba(0, 210, 255, 0.5);
}

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

.cta-group {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--btn-bg);
    color: var(--btn-text);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 210, 255, 0.3);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

footer {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Animations */
.reveal-text {
    opacity: 0;
}

@media (max-width: 768px) {
    .content {
        padding: 2rem;
    }
    h1 {
        font-size: 3rem;
    }
    .cta-group {
        flex-direction: column;
    }
}
