/* The Deep Void */
body {
    margin: 0;
    padding: 0;
    background-color: #000000; /* Pure Black Void */
    color: #ffffff;
    font-family: 'Garamond', 'Georgia', serif; /* More ancient, elegant feel */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden; /* Keeps the void focused */
}

/* Floating Container - No borders, just presence */
.container {
    max-width: 900px;
    width: 90%;
    text-align: center;
    z-index: 10;
}

/* Harmonic Sway Animation */
@keyframes primordialSway {
    0% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(0.5deg); }
    66% { transform: translateY(5px) rotate(-0.5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Atmospheric Pulse Animation */
@keyframes breathingVoid {
    0%, 100% { opacity: 0.6; text-shadow: 0 0 10px rgba(255,255,255,0); }
    50% { opacity: 1; text-shadow: 0 0 30px rgba(255,255,255,0.4); }
}

header h1 {
    font-weight: 200;
    letter-spacing: 1rem;
    text-transform: uppercase;
    color: #444; /* Subtle, emerging from dark */
    animation: breathingVoid 8s infinite ease-in-out;
}

.intro h2 {
    font-size: 3.5rem;
    font-weight: 100;
    margin-bottom: 20px;
    letter-spacing: -1px;
    animation: primordialSway 10s infinite ease-in-out;
}

.manifesto {
    font-size: 1.4rem;
    line-height: 2;
    color: #999;
    max-width: 700px;
    margin: 40px auto;
    /* This makes the text feel like it's drifting */
    animation: primordialSway 12s infinite ease-in-out reverse; 
}

/* The Buttons - Floating Sparks */
.cta {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 50px;
}

.btn {
    background: none;
    border: 1px solid #333;
    color: #666;
    padding: 15px 40px;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    text-decoration: none;
    transition: all 1s ease;
    animation: primordialSway 9s infinite ease-in-out;
}

.btn:hover {
    letter-spacing: 0.4rem; /* The word physically expands like a ripple */
    color: #fff;
    border-color: #fff;
    filter: blur(0px);
    transform: scale(1.05);
}

/* The Essence List - Drifting Particles */
.essence ul {
    list-style: none;
    padding: 0;
    margin-top: 80px;
    display: flex;
    justify-content: center;
    gap: 40px;
    opacity: 0.4;
}

.essence li {
    font-size: 0.8rem;
    letter-spacing: 0.1rem;
    /* Each item moves slightly differently to create harmony */
    animation: primordialSway 15s infinite ease-in-out;
}

/* Background "Ghost" element for depth */
body::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
    animation: primordialSway 20s infinite linear;
    z-index: -1;
}