/* Synqus Splash Screen - Minimal CSS */

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

:root {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    color: #fff;
}

body {
    min-height: 100vh;
    margin: 0;
}

.splash-screen {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.95) saturate(1.05);
}

.hero-soften {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.25));
    z-index: 1;
}

.splash-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    gap: 3rem;
    padding-top: 12vh;
}

.tagline {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: clamp(1.9rem, 6vw, 3.4rem);
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    text-shadow: 0 18px 30px rgba(0, 0, 0, 0.4);
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
    line-height: 1.15;
    padding-inline: 1.5rem;
    max-width: 480px;
}

.tagline span {
    display: block;
    margin-bottom: 0.35em;
}

.logo-container {
    width: 130px;
    margin-top: auto;
    padding-bottom: 6vh;
}

.logo {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}
