
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
    height: 100%;
    background: #080808;
    font-family: 'Outfit', sans-serif;
    overflow: hidden;
}

.bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
    animation: drift linear infinite;
}

.blob-1 {
    width: 600px; height: 600px;
    background: #1a6fff;
    top: -200px; left: -100px;
    animation-duration: 28s;
}
.blob-2 {
    width: 500px; height: 500px;
    background: #7b2fff;
    bottom: -150px; right: -100px;
    animation-duration: 22s;
    animation-direction: reverse;
}

.blob-3 {
    width: 350px; height: 350px;
    background: #00c2ff;
    top: 40%; left: 55%;
    animation-duration: 18s;
    animation-delay: -8s;
}

@keyframes drift {
    0%   { transform: translate(0, 0) scale(1); }
    33%  { transform: translate(40px, -30px) scale(1.05); }
    66%  { transform: translate(-25px, 40px) scale(0.97); }
    100% { transform: translate(0, 0) scale(1); }
}

.noise {
    position: fixed;
    inset: 0;
    z-index: 1;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 180px 180px;
    pointer-events: none;
}

.wrapper {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

img {
    width: clamp(150px, 22vw, 280px);
    height: auto;
}

.contact {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 32px;
    white-space: nowrap;
}

.contact a, .contact span {
    font-weight: 200;
    font-size: 12px;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.2s;
}

.contact a:hover {
    color: rgba(255,255,255,0.75);
}

.sep {
    width: 1px;
    height: 12px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .contact {
        flex-direction: column;
        gap: 12px;
        bottom: 32px;
    }
    .sep { display: none; }
}