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

body {
    font-family: 'Inter', sans-serif;
    background-color: #E8E3D8;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

.copyright {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    font-size: 0.75rem;
    color: #4A4A4A;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    z-index: 100;
}

.container {
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-container {
    position: relative;
    width: 80vw;
    max-width: 1400px;
    perspective: 1000px;
    z-index: 1;
}

.logo-3d {
    width: 100%;
    height: auto;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.pill {
    position: fixed;
    background-color: #F5B8B8;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1.5rem;
    color: #2A2A2A;
    white-space: nowrap;
    z-index: 10;
    transition: transform 0.3s ease-out;
}

.pill.small {
    font-size: 1.2rem;
    padding: 0.6rem 1.2rem;
}
/* CTA */
.cta-container {
    position: fixed;
    bottom: 10vh;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
}
.cta-button {
    color: #2a2a2a;
    cursor: pointer;
    display: inline-block;
    letter-spacing: 0.075em;
    padding: 0.8em 1em;
    margin: auto 2em;
    position: relative;
    align-self: center;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    border: 3px #3EB1C8 solid;
    border-image: linear-gradient(45deg, #3EB1C8 0%, #F5B8B8 100%) 1;
    box-shadow: -0.5em 0.5em 0 rgba(42, 42, 42, 0);
    transform-origin: left bottom;
    transition: all 200ms ease-in-out;
    z-index: 1;
}

.cta-button:hover {
    background-color: white;
    background-size: 90%;
    transform: translate(0.5em, -0.5em);
    box-shadow: -1em 1em 0.15em rgba(42, 42, 42, 0.1);
}
/* Side panels */
.cta-button::before,
.cta-button::after{
    border: 3px #3EB1C8 solid;
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
}
/* left */
.cta-button::before {
    border-image: linear-gradient(45deg, #4ECDC4 0%, #3EB1C8 100%);
    border-image-slice: 1 0 0 1;
    left: -12px;
    top: 0px;
    width: 6px;
    height: calc(100% + 3px);
    transform: skewY(-45deg);
}

/* Bottom panel */
.cta-button::after {
    border-image: linear-gradient(45deg, #4ECDC4 0%, #F5B8B8 100%);
    border-image-slice: 0 1 1 0;
    bottom: -12px;
    right: 0px;
    width: calc(100% + 3px);
    height: 6px;
    transform: skewX(-45deg);
}

.cta-button span {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .logo-container {
        width: 90vw;
    }

    .pill {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }

    .pill.small {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }

    .small-logo {
        width: 80px;
        top: 1rem;
        left: 1rem;
    }

    .copyright {
        bottom: 1rem;
        right: 1rem;
        font-size: 0.65rem;
    }

    .cta-button {
        font-size: 0.9rem;
        padding: 0.85rem 2rem;
    }
}