@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200..800&family=Geist:wght@100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&family=Shadows+Into+Light&display=swap');

* {
    margin: 0;
    padding: 0;
    outline: 0;
    border: 0;
    text-decoration: none;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    background: #131313;
    color: #e7e7e7;
    font-family: 'Montserrat', 'Inter', 'Space Grotesk', 'DM Mono', sans-serif;
    letter-spacing: 0.04em;
    min-height: 100vh;
}

a {
    color: inherit;
}

.shell {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 28px 36px 36px;
}

.social-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social a {
    color: #f5f5f5;
    font-size: 18px;
    transition: opacity 0.2s ease;
}

.social a:hover {
    opacity: 0.7;
}

.hero {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    gap: 32px;
}

.side-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 16px;
    line-height: 1.5;
    justify-self: start;
    align-self: start;
}

.side-links a {
    color: #e7e7e7;
    letter-spacing: 0.08em;
    transition: opacity 0.2s ease;
}

.side-links a:hover {
    opacity: 0.5;
}

.logo-blob {
    display: flex;
    align-items: center;
    justify-content: center;
}

.blob-link {
    display: block;
    cursor: pointer;
}

.blob-shape {
    width: min(520px, 70vw);
    aspect-ratio: 1;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.075), rgba(255,255,255,0.02)), #0c0c0c;
    border-radius: 45% 55% 50% 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 22px 48px rgba(0,0,0,0.45);
    transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.blob-link:hover .blob-shape {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 28px 58px rgba(0,0,0,0.55);
    animation: bubble-float s ease-in-out infinite;
}

@keyframes bubble-float {
    0%, 100% {
        transform: translateY(-12px) scale(1.02);
    }
    50% {
        transform: translateY(-18px) scale(1.02);
    }
}

.blob-img {
    color: #b5b5b5;
    font-size: 40px;
    letter-spacing: 0.12em;
    justify-content: center;
    text-transform: uppercase;
}

.logo {
    width: 100%;
    height: auto;
    justify-content: center;
    border-radius: 12px;
}

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    font-size: 14px;
    letter-spacing: 0.16em;
    color: #cfcfcf;
}

.footer a:hover {
    color:rgb(201, 174, 255);
}

.contact {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.12em;
}

@media (max-width: 900px) {
    .shell {
        padding: 24px;
    }

    .hero {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 28px;
        text-align: center;
    }

    .side-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 16px;
    }
}