:root {
    --bg-dark: #050505;
    --accent: #00f2ff;
    --accent-glow: rgba(0, 242, 255, 0.4);
    --glass: rgba(255, 255, 255, 0.03);
    --text-main: #ffffff;
}

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

body {
    background: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

#canvas-dots {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none;
}

#page-content {
    opacity: 0;
    transition: opacity 2s ease;
    position: relative;
    z-index: 2;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 50% 50%, #0a192f 0%, #050505 100%);
}

.hero-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 3rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.hero-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.image-container {
    position: relative;
    width: 30%;
}

.hero-image {
    width: 100%;
    filter: drop-shadow(0 0 20px var(--accent-glow));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.text-content h1 {
    font-size: 5vw;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
}

.highlight {
    color: var(--accent);
    text-shadow: 0 0 20px var(--accent-glow);
}

.description {
    margin-top: 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 2vw;
    color: #8892b0;
}

.menu-trigger {
    position: fixed;
    top: 40px; right: 40px;
    width: 60px; height: 60px;
    border-radius: 50%;
    border: 1px solid var(--accent);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.menu-trigger:hover {
    background: var(--accent);
    box-shadow: 0 0 30px var(--accent);
}

.menu-trigger:hover .line { background: #000; }

.line {
    width: 25px; height: 2px;
    background: var(--accent);
    margin: 3px;
    transition: 0.3s;
}

#loader-wrapper {
    position: fixed;
    inset: 0;
    background: #050505;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.progress-bar {
    width: 200px; height: 2px;
    background: rgba(255,255,255,0.1);
    margin-top: 10px;
}

#progress-fill {
    height: 100%; width: 0;
    background: var(--accent);
    box-shadow: 0 0 15px var(--accent);
}