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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    position: relative;
    background: #fffcf5;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fffcf5;
    z-index: 0;
}

.particles {
    display: none;
}

.grid-overlay {
    display: none;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    overflow: hidden;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 1rem 0;
    gap: 1.5rem;
    min-height: 0;
}

.logo {
    max-width: clamp(300px, 30vw, 450px);
    width: 100%;
    height: auto;
    display: block;
}

.description {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 18px;
    max-width: clamp(300px, 30vw, 450px);
    width: 100%;
    text-align: left;
    color: #1a1a1a;
    margin-top: 28px;
    line-height: 1.6;
}

.tagline {
    font-size: clamp(0.7rem, 1.2vw, 0.9rem);
    font-weight: 300;
    color: #1a1a1a;
    text-align: center;
    letter-spacing: 0.02em;
    line-height: 1.4;
    white-space: nowrap;
    padding: 0 2rem;
    opacity: 0.9;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }

    .content {
        gap: 1.5rem;
    }

    .logo {
        max-width: clamp(200px, 35vw, 350px);
    }

    .description {
        max-width: clamp(200px, 35vw, 350px);
        font-size: 16px;
    }

    .content {
        gap: 1rem;
        padding: 0.5rem 0;
    }

    .tagline {
        font-size: clamp(0.85rem, 2.5vw, 1.1rem);
        padding: 0 1.5rem;
    }

    .footer-address {
        padding: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }

    .content {
        gap: 1rem;
    }

    .logo {
        max-width: clamp(150px, 40vw, 300px);
    }

    .description {
        max-width: clamp(150px, 40vw, 300px);
        font-size: 15px;
        margin-top: 20px;
    }

    .content {
        gap: 0.75rem;
        padding: 0.5rem 0;
    }

    .tagline {
        font-size: clamp(0.8rem, 3vw, 1rem);
        padding: 0 1rem;
    }

    .footer-address {
        padding: 0;
        font-size: 0.7rem;
    }
}

.footer {
    background: #fffcf5;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    flex-shrink: 0;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: #666666;
    margin-bottom: 1rem;
}

.footer-copyright {
    font-size: clamp(0.75rem, 1.2vw, 0.875rem);
    font-weight: 400;
    color: #666666;
    letter-spacing: 0.02em;
    line-height: 1.5;
    text-align: center;
    padding: 0;
    margin: 0 0 0.5rem 0;
}

.footer-address {
    font-size: clamp(0.75rem, 1.2vw, 0.875rem);
    font-weight: 400;
    color: #666666;
    letter-spacing: 0.02em;
    line-height: 1.5;
    text-align: center;
    padding: 0;
    margin: 0;
}

