:root {
    --bg: #000000;
    --accent: #bc13fe;
    --accent-glow: rgba(188, 19, 254, 0.4);
    --secondary: #00f2ff;
    --text-main: #ffffff;
    --text-dim: #999999;
    --glass: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
    background-color: var(--bg);
    /* Atmospheric Gradients for Depth */
    background-image:
        radial-gradient(circle at 50% 30%, rgba(188, 19, 254, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(0, 242, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 20% 50%, rgba(188, 19, 254, 0.03) 0%, transparent 40%);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

.background-noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)" opacity="0.05"/></svg>');
    pointer-events: none;
    z-index: 100;
    opacity: 0.15;
}

/* Animations for scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

header {
    padding: 30px 10%;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 20;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lang-switcher {
    display: flex;
    gap: 15px;
}

.lang-link {
    text-decoration: none;
    color: var(--text-dim);
    font-size: 0.8rem;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.lang-link.active {
    color: var(--accent);
    text-shadow: 0 0 8px var(--accent-glow);
}

.lang-link:hover {
    color: #fff;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 5px;
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent-glow);
    opacity: 0.8;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 50px;
}

.hero-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.main-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    letter-spacing: -1px;
    font-weight: 700;
    text-shadow: 0 2px 0 rgba(188, 19, 254, 0.5);
}

.hero-subtext {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-top: 30px;
    max-width: 400px;
}

/* --- Scramble Color Layers --- */
.dud-vibrant {
    color: var(--accent);
    text-shadow: 0 0 8px var(--accent-glow);
    opacity: 0.9;
}

.dud-cyan {
    color: var(--secondary);
    text-shadow: 0 0 8px rgba(0, 242, 255, 0.4);
    opacity: 0.7;
}

.dud-ghost {
    color: var(--accent);
    opacity: 0.25;
    filter: blur(0.5px);
}

.dud-spark {
    color: #fff;
    text-shadow: 0 0 12px #fff;
    opacity: 1;
    font-weight: 700;
}

.orb-center {
    position: relative;
    width: 450px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mouse Spotlight Effect */
.mouse-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(188, 19, 254, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
}

#neural-atom {
    width: 100%;
    height: 100%;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    padding: 0 10% 100px;
}

.card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    cursor: default;
    position: relative;
    z-index: 2;
}

.card:hover {
    border-color: var(--accent);
    background: rgba(188, 19, 254, 0.05);
    transform: translateY(-5px) scale(1.02);
}

.security-report {
    padding: 100px 10%;
    background: linear-gradient(to bottom, transparent, rgba(188, 19, 254, 0.03));
}

.report-header {
    text-align: center;
    margin-bottom: 60px;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid var(--accent);
    border-radius: 100px;
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 15px;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px;
}

.sec-item h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    margin-bottom: 8px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sec-item p {
    color: var(--text-dim);
    font-size: 0.85rem;
}

footer {
    padding: 60px 10%;
    border-top: 1px solid var(--glass-border);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    color: var(--text-dim);
    font-size: 0.8rem;
}

.privacy-link {
    color: var(--text-dim);
    text-decoration: none;
}

.privacy-link:hover {
    color: var(--accent);
}

@media (max-width: 900px) {
    .main-title {
        font-size: 2.5rem;
    }

    .bento-grid,
    .security-grid {
        grid-template-columns: 1fr;
    }
}