/* --- 1. THE VOID SYSTEM (PRIME THEME) --- */
:root {
    --bg-void: #050505;
    --bg-surface: #0F0F0F;
    --text-primary: #EDEDED;
    --text-muted: #737373;
    --border-dim: #262626;
    --brand-accent: #FFFFFF;
    
    /* Fonts */
    --font-human: 'Inter Tight', sans-serif;
    --font-machine: 'JetBrains Mono', monospace;
}

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

body {
    background-color: var(--bg-void);
    color: var(--text-primary);
    font-family: var(--font-human);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* No scrolling on splash */
}

.container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    opacity: 0; /* Start invisible for fade-in */
    animation: systemBoot 1s ease-out forwards;
    animation-delay: 0.2s;
}

/* --- 2. THE 7 BARS --- */
.bars-wrapper {
    display: flex;
    gap: 6px;
    height: 40px;
    margin-bottom: 8px;
}

.bar {
    width: 12px;
    background-color: var(--brand-accent);
    border-radius: 2px;
    /* Loading Animation logic */
    transform: scaleY(0); 
    transform-origin: bottom;
    animation: barLoad 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.bar.hollow {
    background-color: transparent;
    border: 2px solid var(--text-muted);
}

/* Stagger the bars loading */
.bar:nth-child(1) { animation-delay: 0.1s; }
.bar:nth-child(2) { animation-delay: 0.15s; }
.bar:nth-child(3) { animation-delay: 0.2s; }
.bar:nth-child(4) { animation-delay: 0.25s; }
.bar:nth-child(5) { animation-delay: 0.3s; }
.bar:nth-child(6) { animation-delay: 0.35s; } /* Hollow ones load too */
.bar:nth-child(7) { animation-delay: 0.4s; }

/* --- 3. THE LOGO MARK (Phantom V/II) --- */
.logo-mark {
    font-family: var(--font-machine);
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--brand-accent);
    margin: 0;
}

.logo-mark .phantom {
    color: transparent; /* Invisible Fill */
    -webkit-text-stroke: 1px var(--text-muted); /* The Outline */
}

/* --- 4. THE MANIFESTO --- */
.manifesto {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- 5. THE TERMINAL INPUT --- */
.input-group {
    margin-top: 16px;
    display: flex;
    gap: 12px;
}

input {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-dim);
    padding: 12px 0;
    width: 250px;
    color: var(--text-primary);
    font-family: var(--font-machine);
    font-size: 14px;
    outline: none;
    transition: all 0.2s ease;
    text-transform: uppercase;
}

input:focus {
    border-bottom: 1px solid var(--brand-accent);
}

button {
    background: transparent;
    border: 1px solid var(--border-dim);
    color: var(--text-muted);
    padding: 0 24px;
    font-family: var(--font-machine);
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

button:hover {
    border-color: var(--brand-accent);
    color: var(--brand-accent);
    background: rgba(255,255,255,0.05);
}

/* --- 6. FOOTER & UTILS --- */
.status-line {
    position: fixed;
    bottom: 32px;
    font-family: var(--font-machine);
    font-size: 10px;
    color: var(--border-dim);
    letter-spacing: 2px;
}

.blink {
    color: var(--brand-accent);
    animation: blinker 2s infinite;
}

/* --- ANIMATIONS --- */
@keyframes barLoad {
    to { transform: scaleY(1); }
}

@keyframes systemBoot {
    to { opacity: 1; }
}

@keyframes blinker {
    50% { opacity: 0; }
}

/* MOBILE ADJUSTMENTS */
@media (max-width: 600px) {
    .input-group { flex-direction: column; }
    input { width: 100%; text-align: center; }
    button { padding: 16px; border: 1px solid var(--text-muted); }
}
