/* MindFull Studios: System Architect Framework 
   Vibe: Conscious / Illuminated / Expansive
   Asset: assets/reborn.png
*/

:root {
    --neon-cyan: #00f3ff;
    --neon-pink: #ff00ff;
    --architect-blue: rgba(10, 25, 47, 0.8);
    --font-main: 'JetBrains Mono', monospace;
}

* { box-sizing: border-box; }

body {
    background-color: #020205;
    margin: 0;
    min-height: 100vh;
    font-family: var(--font-main), sans-serif;
    color: #ffffff;
}

/* THE BACKGROUND ENGINE - Mindful illumination */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: 
        linear-gradient(rgba(10, 25, 47, 0.4), rgba(10, 25, 47, 0.4)),
        url('assets/reborn.png') no-repeat center center;
    background-size: cover;
    z-index: -2;
}

/* NAVIGATION - Centered and Transparent */
nav {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem 5vw;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 243, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav a {
    color: var(--neon-cyan);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
}

nav a:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--neon-cyan);
}

/* THE OPEN ARCHITECTURE FRAME - Expansive and Centered */
.cyber-frame {
    margin: 8vh auto; 
    width: 70vw;      
    max-width: 1100px;
    padding: 4rem;
    background: var(--architect-blue); 
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 243, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

/* TYPOGRAPHY - Direct and Unambiguous */
.glitch {
    font-size: 3.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    letter-spacing: -2px;
    border-left: 10px solid var(--neon-cyan);
    padding-left: 25px;
}

.cyber-subtext {
    display: block;
    margin: 1rem 0 3rem 35px;
    color: var(--neon-cyan);
    letter-spacing: 6px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

/* CALL TO ACTION */
.btn-link {
    display: inline-block;
    border: 1px solid var(--neon-cyan);
    padding: 1.2rem 2.5rem;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    background: rgba(0, 243, 255, 0.1);
    transition: 0.4s;
}

.btn-link:hover {
    background: var(--neon-cyan);
    color: #000;
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.4);
}