/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Main container */
.homepage-container {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background-color: #ffffff;
}

/* Auth links */
.auth-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 50;
    padding: 1.5rem;
}

.auth-nav nav {
    display: flex;
    gap: 1rem;
}

.auth-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    transition: color 0.2s ease;
}

.auth-link:hover {
    color: #111827;
}

/* Geometric shapes */
.shape {
    position: absolute;
}

.shape-circle-primary-large {
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    background-color: #2A9941;
    opacity: 0.15;
    top: -10%;
    left: -10%;
    z-index: 0;
}

.shape-rectangle-secondary-large {
    width: 16rem;
    height: 20rem;
    background-color: #E83A8E;
    opacity: 0.12;
    bottom: -15%;
    right: -5%;
    z-index: 0;
}

.shape-rectangle-primary-small {
    width: 8rem;
    height: 12rem;
    background-color: #2A9941;
    opacity: 0.2;
    top: 15%;
    right: 10%;
    z-index: 0;
}

.shape-circle-secondary-medium {
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    background-color: #E83A8E;
    opacity: 0.18;
    bottom: 10%;
    left: 5%;
    z-index: 0;
}

/* Center content */
.content-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 0 1.5rem;
}

.logo-container {
    margin-bottom: 2rem;
}

.logo {
    width: 12rem;
    height: auto;
}

.slogan {
    font-size: 1.25rem;
    font-weight: 500;
    color: #1f2937;
    text-align: center;
    max-width: 28rem;
    line-height: 1.6;
}

/* Logo animation */
@keyframes logo-float {
    0% {
        opacity: 1;
        transform: translateY(10px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.logo-animate {
    animation: logo-float 3s ease-out;
    animation-fill-mode: forwards;
}

.slogan-animate {
    animation: logo-float 3s ease-out;
    animation-fill-mode: forwards;
    animation-delay: 0.3s;
}

/* Responsive design */
@media (min-width: 64rem) {
    .shape-circle-primary-large {
        width: 37.5rem;
        height: 37.5rem;
    }

    .shape-rectangle-secondary-large {
        width: 24rem;
        height: 31.25rem;
    }

    .shape-rectangle-primary-small {
        width: 12rem;
        height: 16rem;
    }

    .shape-circle-secondary-medium {
        width: 20rem;
        height: 20rem;
    }

    .logo {
        width: 16rem;
    }

    .slogan {
        font-size: 1.5rem;
    }
}
