/* ============================================
   IMMEDIACY LANDING PAGE
   Cinematic • Futuristic • Pure
   ============================================ */

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

:root {
    --color-bg: #000000;
    --color-text: #ffffff;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
}

html,
body {
    height: 100%;
    overflow: hidden;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-serif);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   MAIN LAYOUT
   ============================================ */

.landing {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ============================================
   CANVAS - LOTUS ANIMATION
   ============================================ */

#lotus-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* ============================================
   LOGO
   ============================================ */

.logo {
    position: relative;
    z-index: 10;
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    letter-spacing: 0.4em;
    text-transform: lowercase;
    margin-top: 140px;
    opacity: 0;
    transition: opacity 1.5s ease-out;
}

.logo.visible {
    opacity: 1;
}

/* ============================================
   TAGLINES
   ============================================ */

.taglines {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-top: 2.5rem;
    opacity: 0;
    transition: opacity 1.5s ease-out 0.5s;
}

.taglines.visible {
    opacity: 1;
}

.tagline-primary {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 500;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

/* Cadenced word reveal */
.tagline-primary .word,
.tagline-primary .dot {
    opacity: 0;
    display: inline;
    transition: opacity 0.8s ease-out;
}

.tagline-primary .word.visible,
.tagline-primary .dot.visible {
    opacity: 1;
}

.tagline-primary .dot {
    margin-right: 0.5em;
}

.tagline-secondary {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.8;
    opacity: 0;
    letter-spacing: 0.05em;
    transition: opacity 1s ease-out;
}

.tagline-secondary.visible {
    opacity: 0.85;
}

/* ============================================
   WHITE SUNRISE GLOW EFFECT - ANIMATED
   ============================================ */

.sunset-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background:
        /* Core intense glow */
        radial-gradient(ellipse 120% 60% at 50% 100%,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.7) 10%,
            rgba(255, 255, 255, 0.4) 25%,
            rgba(255, 255, 255, 0.15) 45%,
            transparent 70%),
        /* Wide ambient halo */
        radial-gradient(ellipse 200% 80% at 50% 100%,
            rgba(255, 255, 255, 0.3) 0%,
            rgba(255, 255, 255, 0.1) 30%,
            transparent 60%);
    pointer-events: none;
    z-index: 5;

    /* Start hidden below viewport */
    opacity: 0;
    transform: translateY(100%);
    transition:
        opacity 2.5s cubic-bezier(0.16, 1, 0.3, 1),
        transform 3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sunset-glow.rising {
    opacity: 1;
    transform: translateY(0%);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 2rem 2.5rem;
    z-index: 20;
}

.copyright {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    opacity: 0.7;
}

.coming-soon {
    display: inline-block;
    background-color: var(--color-text);
    color: var(--color-bg);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 0.6rem 1.4rem;
    border-radius: 2rem;
    text-transform: uppercase;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .logo {
        margin-top: 60px;
        letter-spacing: 0.25em;
    }

    .taglines {
        padding: 0 1.5rem;
    }

    .footer {
        padding: 1.5rem;
    }

    .coming-soon {
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
    }
}