:root {
    --bg-color: #f8f5f2;
    --text-color: #000000;
    --accent-blue: #082AB7;
    --font-main: 'Halyard Text', 'Outfit', sans-serif;
}

body,
html {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    font-family: var(--font-main);
    background-color: var(--bg-color);
}

/* --- Video Section --- */
#video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: var(--bg-color);
    /* Match main bg */
    transition: opacity 1.5s ease-out;
}

#hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Transition Element --- */
#transition-logo {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 353px;
    /* 471 * 0.75 = 353.25 */
    height: auto;
    z-index: 15;
    opacity: 0;
    pointer-events: none;
    transition: all 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- Main Layout --- */
#main-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in;
    z-index: 5;
}

/* 2. Logo */
#final-logo {
    position: absolute;
    width: 18.4vw;
    /* 24.5 * 0.75 = 18.375 */
    height: auto;
    top: 22vh;
    left: 25.5vw;
    /* 24.7vw + ~0.8vw */
}

/* 3. Vertical Divider */
#vertical-divider {
    position: absolute;
    width: 1px;
    height: 124px;
    /* 165 * 0.75 = 123.75 */
    background-color: #000000;
    top: 25.1vh;
    left: 49.7vw;
}

/* 4. Tagline */
#tagline {
    position: absolute;
    top: 28.5vh;
    left: 54.9vw;
    width: 17.8vw;
    /* 23.75 * 0.75 = 17.81 */
    font-family: 'Halyard Text', sans-serif;
    font-weight: 500;
    font-size: 19px;
    /* 25 * 0.75 = 18.75 */
    line-height: 1.57;
    letter-spacing: 0.23em;
    color: #000000;
    text-align: left;
}

/* 5. Section Title (Launching Soon) */
#launch-text {
    position: absolute;
    top: 57.7vh;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    white-space: nowrap;
    /* 31 * 0.75 = 23.25 */
    font-family: 'Halyard Text', sans-serif;
    font-weight: 500;
    font-size: 19px;
    /* 25 * 0.75 = 18.75 */
    line-height: 1.57;
    letter-spacing: 0.23em;
    color: #000000;
    text-align: center;
}

/* 6. Contact Text */
#contact-text {
    position: absolute;
    top: 63.15vh;
    left: 50%;
    transform: translateX(-50%);
    width: 44.1vw;
    /* 58.8 * 0.75 = 44.1 */
    font-family: 'Halyard Text', sans-serif;
    font-weight: 400;
    font-size: 19px;
    /* 25 * 0.75 = 18.75 */
    line-height: 1.57;
    letter-spacing: 0.04em;
    color: #000000;
    text-align: center;
}

#contact-text strong {
    font-weight: 600;
}

/* 7. Bottom Banner */
#ticker-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 62px;
    /* 83 * 0.75 = 62.25 */
    background-color: var(--accent-blue);
    overflow: hidden;
    z-index: 20;
    display: flex;
    align-items: center;
}

/* 8. Banner Text */
.ticker-wrap {
    width: 100%;
}

.ticker-move {
    display: inline-block;
    white-space: nowrap;
    animation: ticker 25s linear infinite;
    opacity: 0.89;
}

.ticker-item {
    display: inline-block;
    padding: 0 1.5rem;
    font-family: 'Halyard Text', sans-serif;
    font-weight: 400;
    font-size: 18px;
    /* 24 * 0.75 = 18 */
    line-height: 100%;
    letter-spacing: 0.12em;
    color: #F6F3EF;
}

@keyframes ticker {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* Entrance Animations - Simple fade in for now, relies on #main-content fade */
#tagline,
#launch-text,
#contact-text,
#vertical-divider {
    /* Can add staggering if desired later */
}