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

:root {
    --primary: #0b1335;
    --text-main: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.6);
    --accent: #4f46e5;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

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

/* --- Advanced Moving Background --- */
.viewport-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: 
        radial-gradient(circle at top right, rgba(79, 70, 229, 0.15) 0%, transparent 50%),
        radial-gradient(at 100% 100%, #111e54 0, transparent 50%),
        var(--primary);
    animation: atmosphericPulse 20s infinite alternate linear;
}

.weaving-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.3;
}

.line-v, .line-h {
    position: absolute;
    background: linear-gradient(to bottom, transparent, rgba(6, 182, 212, 0.3), transparent);
}

.line-v {
    width: 1px;
    height: 100%;
    animation: driftLineV 15s infinite alternate ease-in-out;
}

.line-h {
    height: 1px;
    width: 100%;
    background: linear-gradient(to right, transparent, rgba(6, 182, 212, 0.3), transparent);
    animation: driftLineH 12s infinite alternate ease-in-out;
}

@keyframes driftLineV { from { transform: translateX(-20px); } to { transform: translateX(20px); } }
@keyframes driftLineH { from { transform: translateY(-20px); } to { transform: translateY(20px); } }
@keyframes atmosphericPulse {
    0% { transform: scale(1); filter: hue-rotate(0deg); }
    100% { transform: scale(1.1); filter: hue-rotate(15deg); }
}

.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(60px);
    transition: transform 0.1s ease-out;
}

.container {
    max-width: 700px;
    width: 100%;
    padding: 2.5rem;
    animation: fadeIn 1.2s ease-out;
    position: relative;
    z-index: 10;
}

.badge {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    display: block;
}

h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 10vw, 5.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
    line-height: 1;
}

p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.status-label {
    display: inline-block;
    padding: 1rem 3rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-main);
    letter-spacing: 0.1em;
    backdrop-filter: blur(10px);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

footer {
    position: absolute;
    bottom: 3rem;
    width: 100%;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
}
