:root {
    --bg: #0B0810;
    --accent: #8b5cbf; 
    --text: #E6E6E6;
    --nav-gray: #A0A0A0; 
    --footer-dark: #454545;
}

/* Scrollbar Design */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); }

body {
    margin: 0; padding: 0; background: var(--bg); color: var(--text);
    font-family: 'IBM Plex Sans', sans-serif; overflow-x: hidden;
    display: flex; flex-direction: column; align-items: center;
    width: 100%;
}

/* VAINEXX GRID BACKGROUND */
body::before {
    content: ""; position: fixed; inset: 0;
    background-image: 
        linear-gradient(0deg, rgba(139,92,191,0.22) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139,92,191,0.22) 1px, transparent 1px);
    background-size: 40px 40px; opacity: 0.45; z-index: -1; pointer-events: none;
}

/* SECTION 1: HERO */
.hero {
    min-height: 100vh; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    width: 100%;
    text-align: center;
}

.hero-content {
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center;
    width: 100%;
}

.main-logo { 
    width: clamp(550px, 70vw, 950px); 
    margin-bottom: 5.5rem; 
    filter: none !important; 
}

.glow-line-top { 
    width: 75vw; 
    height: 2px; 
    background: linear-gradient(to right, transparent, var(--accent), transparent); 
    margin-bottom: 3.5rem; 
}

.headlines {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-title { 
    font-family: 'Lexend', sans-serif; 
    font-size: clamp(1.8rem, 4vw, 3.2rem); 
    letter-spacing: 12px; 
    line-height: 1.2; 
    text-transform: uppercase; 
    color: #FFFFFF; 
    margin: 0; 
    font-weight: 600; 
}

.sub-title { 
    font-family: 'Lexend', sans-serif; 
    font-size: clamp(1.1rem, 2vw, 1.6rem); 
    letter-spacing: 5px; 
    color: var(--accent); 
    margin-top: 1.8rem; 
    font-weight: 800; 
}

.action-area { 
    margin-top: 5rem; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
}

.access-btn { 
    display: inline-block; 
    padding: 1.6rem 5.5rem; 
    border: 1px solid rgba(139, 92, 191, 0.3); 
    color: var(--text); 
    text-decoration: none; 
    letter-spacing: 8px; 
    font-family: 'Lexend', sans-serif; 
    background: rgba(22, 18, 31, 0.6); 
    transition: all 0.5s ease; 
    backdrop-filter: blur(5px); 
}

.access-btn:hover { 
    background: rgba(139, 92, 191, 0.2); 
    border-color: var(--accent); 
    box-shadow: 0 0 40px rgba(139, 92, 191, 0.3); 
}

.glow-line-bottom { 
    width: 55vw; 
    height: 2px; 
    background: linear-gradient(to right, transparent, var(--accent), transparent); 
    margin-top: 4.5rem; 
    opacity: 0.7; 
}

/* SECTION 2: EVIDENCE */
.evidence-section { 
    min-height: auto; 
    width: 100%; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    padding: 15vh 0 10vh 0; 
}

.evidence-container { 
    display: flex; 
    align-items: center; 
    gap: 6rem; 
    max-width: 1200px; 
    padding: 0 5%; 
}

.evidence-text { 
    display: flex; 
    flex-direction: column; 
    align-items: flex-start; 
}

.evidence-header-logic { 
    display: flex; 
    align-items: center; 
    margin-bottom: 2rem; 
    height: 60px; 
}

.insta-icon-small { 
    color: var(--accent); 
    width: 32px; 
    height: 32px; 
    min-width: 32px; 
    transition: all 0.3s ease; 
    margin-right: 30px;
}

.insta-icon-small svg { width: 100%; height: 100%; }

/* LOGO - MAXIMALE PRÄSENZ */
.cropped-logo { 
    width: 280px; /* Massive Skalierung für High-End Branding */
    height: auto; 
    opacity: 0.98;
    filter: none !important;
    margin-bottom: -3px; 
}

.core-divider { 
    font-family: 'Lexend', sans-serif; 
    font-size: 2.8rem; 
    color: var(--accent); 
    margin: 0 25px 0 25px;
    line-height: 1;
}

.core-text { 
    font-family: 'IBM Plex Mono', monospace; 
    font-size: 2.5rem; 
    letter-spacing: 4px; 
    color: #fff; 
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 1;
}

.evidence-description { 
    color: var(--nav-gray); 
    line-height: 1.8; 
    margin-bottom: 3rem; 
    max-width: 450px; 
    font-size: 1.1rem;
}

.insta-trigger { 
    font-family: 'Lexend', sans-serif; 
    color: #FFFFFF; 
    text-decoration: none; 
    letter-spacing: 4px; 
    font-weight: 600; 
    transition: all 0.4s ease; 
}

.insta-trigger:hover { 
    color: var(--accent) !important; 
    text-shadow: 0 0 15px var(--accent); 
}

/* IPHONE GHOST EFFECT (8s) */
.iphone-mockup { 
    width: 280px; 
    height: 580px; 
    background: #000; 
    border: 4px solid #1a1a1a; 
    border-radius: 45px; 
    position: relative; 
    box-shadow: 0 0 60px rgba(139, 92, 191, 0.15); 
}

.iphone-screen { 
    position: absolute; 
    inset: 12px; 
    background: #050505; 
    border-radius: 35px; 
    overflow: hidden; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}

.ghost-container { 
    width: 100%; 
    height: 100%; 
    position: relative; 
    display: flex; 
    flex-direction: column; 
    justify-content: flex-start; 
    align-items: center; 
    padding-top: 110px; 
    background: radial-gradient(circle at center, #110d1a 0%, #050505 100%); 
}

.ghost-logo { 
    width: 160px; 
    height: auto; 
    opacity: 0.05; 
    filter: grayscale(1) brightness(0.8); 
    animation: logoBreathe 8s ease-in-out infinite; 
}

.ghost-pulse { 
    position: absolute; 
    bottom: -100%; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: linear-gradient(0deg, transparent, rgba(139, 92, 191, 0.06), transparent); 
    animation: lightSweep 8s ease-in-out infinite; 
    pointer-events: none; 
}

.resonance-status { 
    position: absolute; 
    bottom: 80px; 
    font-family: 'IBM Plex Mono', monospace; 
    font-size: 0.55rem; 
    color: var(--nav-gray); 
    letter-spacing: 2px; 
    opacity: 0.3; 
    display: flex; 
    align-items: center; 
    gap: 8px; 
}

.pulse-dot { 
    width: 4px; 
    height: 4px; 
    background: var(--accent); 
    border-radius: 50%; 
    box-shadow: 0 0 10px var(--accent); 
    animation: dotPulse 2s infinite; 
}

@keyframes logoBreathe { 0%, 100% { opacity: 0.05; transform: scale(0.99); } 50% { opacity: 0.18; transform: scale(1); filter: grayscale(0.5) brightness(1.1); } }
@keyframes lightSweep { 0% { bottom: -100%; opacity: 0; } 40%, 60% { opacity: 1; } 100% { bottom: 100%; opacity: 0; } }
@keyframes dotPulse { 0% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: 0.5; } 100% { transform: scale(1); opacity: 1; } }

/* FOOTER */
footer { 
    width: 100%; 
    padding: 8rem 0 4rem 0; 
    text-align: center; 
}

.footer-links a { 
    font-family: 'Lexend', sans-serif; 
    color: var(--nav-gray); 
    text-decoration: none; 
    font-size: 0.85rem; 
    letter-spacing: 2px; 
    margin: 0 1rem; 
    transition: color 0.3s; 
}

.footer-links a:hover { color: var(--accent); }
.sep { color: var(--accent); margin: 0 0.3rem; font-weight: 800; text-shadow: 0 0 8px var(--accent); }
.copyright { margin-top: 2rem; font-family: 'Lexend', sans-serif; font-size: 0.7rem; color: var(--footer-dark); letter-spacing: 4px; }

@media (max-width: 900px) { 
    .evidence-container { flex-direction: column; text-align: center; gap: 4rem; } 
    .evidence-text { align-items: center; text-align: center; } 
}