:root {
    --bg-color: #000b14;
    --navy-deep: #001D3D;
    --blue-accent: #1E88E5;
    --text-main: #FFFFFF;

    --font-main: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

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

/* Canvas Background */
#plexus-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: radial-gradient(circle at center, #001D3D 0%, var(--bg-color) 80%);
}

/* Overlay Content */
.overlay {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Typography */
h1 {
    font-size: 5vw;
    font-weight: 800;
    letter-spacing: -2px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
}

.gradient-text {
    background: linear-gradient(135deg, #FFFFFF 0%, #1E88E5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 8vw; /* Increased responsiveness, was fixed rem before or large vw */
        padding: 0 1rem; /* Ensure padding so it doesn't touch edges */
        word-break: break-all; /* Fallback */
    }
}