* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #050506;
    --text: #f5f5f5;
    --muted: #a1a1aa;
    --accent: #4f8cff;
}

body {
    font-family: Inter, system-ui, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow: hidden;
    height: 100vh;
}

/* ===== BACKGROUND GLOWS ===== */
.bg-glow {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(79,140,255,.15), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(120,80,255,.10), transparent 40%);
    animation: drift 35s ease-in-out infinite alternate;
}

@keyframes drift {
    0% { transform: translate(0,0); }
    100% { transform: translate(-2%, 2%); }
}

/* ===== NOISE OVERLAY ===== */
.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
    opacity: 0.05;
}

/* ===== LAYOUT ===== */
.wrap {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    z-index: 2;
}

/* ===== BRAND ===== */
.brand {
    display: flex;
    align-items: center;
    gap: 18px;
    position: absolute;
    top: 40px;
    left: 40px;
}

.logo {
    width: 64px;
    height: 64px;
    transition: transform .4s ease;
}

.logo:hover {
    transform: rotate(-6deg) scale(1.05);
}

.name {
    font-size: 20px;
    letter-spacing: .4px;
    opacity: .9;
}

/* ===== HERO ===== */
.hero {
    max-width: 800px;
}

.title {
    font-size: clamp(42px, 6vw, 84px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1px;
}

.title span {
    display: block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp .8s forwards;
}

.title span:nth-child(1) { animation-delay: .2s; }
.title span:nth-child(2) { animation-delay: .35s; }
.title span:nth-child(3) { animation-delay: .5s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.subtitle {
    margin-top: 28px;
    font-size: 18px;
    color: var(--muted);
    line-height: 1.6;
    opacity: 0;
    animation: fadeUp .8s forwards;
    animation-delay: .75s;
}

/* ===== BACKGROUND IMAGE ===== */
.decor {
    position: fixed;
    top: 20vh;
    right: 0;
    opacity: 0.7;
    pointer-events: none;
}

/* ===== FOOTER ===== */
footer {
    position: fixed;
    bottom: 20px;
    left: 40px;
    font-size: 12px;
    color: #444;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 700px) {
    .wrap {
        padding: 30px;
    }

    .brand {
        top: 20px;
        left: 20px;
    }

    footer {
        left: 20px;
    }

    .decor {
        opacity: 0.5;
    }
}