/* Coming Soon Page Styles */

/* Inherit core .hero centering from base/layout if possible, 
   but specific tweaks here for simplicity */

.coming-soon-hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

#tsparticles {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.content-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.logo-img {
    max-width: 480px;
    width: 100%;
    height: auto;
    filter: brightness(0) invert(85%);
    /* Responsive sizing */
    width: clamp(280px, 60vw, 480px);
}

h1 {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 300;
    margin: 0;
    letter-spacing: 0.05em;
}

/* Footer fixed at bottom or just part of flow */
.simple-footer {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-faint);
    z-index: 2;
}