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

/* =================================================
   BASE
================================================= */
html, body {
    height: 100%;
    height: 100dvh;
    overflow: hidden;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #ffffff;
    background: #1a230f;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* =================================================
   LAYER 1: VIDEO BACKGROUND
================================================= */
.video-container {
    position: fixed;
    inset: 0;
    z-index: 0;
}

#bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =================================================
   LAYER 2: OVERLAY (GRADIENT)
================================================= */
.overlay {
    position: fixed;
    inset: 0;
    z-index: 1;
}

/* soft cinematic gradient */
.overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.15),
        rgba(0,0,0,0.35)
    );
    pointer-events: none;
}

/* =================================================
   LAYER 3: CONTENT
================================================= */
.content {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* =================================================
   CENTER TEXT
================================================= */
.top-section {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

.coming-soon {
    font-size: 0.85rem;
    letter-spacing: 0.10em;
    font-weight: 500;
    text-transform: uppercase;
}

/* =================================================
   FOOTER (DESKTOP)
================================================= */
.footer-row {
    position: absolute;
    bottom: 60px;
    left: 60px;
    right: 60px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.main-logo {
    max-width: 400px;
    height: auto;
    transform: translateY(5px);
}

.tagline,
.email-link {
    font-size: 0.85rem;
    letter-spacing: 0.10em;
    font-weight: 500;
    text-transform: uppercase;
}

.email-link {
    color: #ffffff;
    text-decoration: none;
}

/* =================================================
   MOBILE
================================================= */
@media (max-width: 1024px) {

    .tagline {
        position: absolute;
        top: calc(40px + env(safe-area-inset-top));
        left: 40px;
        font-size: clamp(0.75rem, 2.5vw, 0.85rem);
    }

    .email-link {
        position: absolute;
        top: calc(58px + env(safe-area-inset-top));
        left: 40px;
        font-size: clamp(0.75rem, 2.5vw, 0.85rem);
    }

    .coming-soon {
        font-size: clamp(0.75rem, 2.5vw, 0.85rem);
    }

    .main-logo {
        position: absolute;
        bottom: calc(40px + env(safe-area-inset-bottom));
        left: 40px;
        max-width: 300px;
    }

    .footer-row {
        position: static;
        display: block;
    }
}