:root {
    --wb-blue: #009FDA;
    --wb-navy: #002244;
}

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

html, body {
    height: 100%;
    width: 100%;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../assets/fonts/OpenSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../assets/fonts/OpenSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    color: white;
}

/* ── FULL-BLEED BACKGROUND ── */
.landing-page {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/background/h-background-corporate-02.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.background-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 34, 68, 0.65);
    z-index: 1;
}

/* ── CONTENT: full-bleed, no white card ── */
.landing-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 680px;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

/* ── WB WORDMARK ── */
.wb-wordmark {
    width: 140px;
    height: auto;
    display: block;
    margin-bottom: 8px;
}

/* ── HEADER ── */
.landing-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.landing-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.landing-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

/* ── BODY TEXT ── */
.landing-description {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* ── CTA BUTTON ── */
.landing-footer {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.enter-button {
    background: var(--wb-blue);
    color: white;
    border: none;
    padding: 14px 40px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
    font-family: 'Open Sans', Arial, sans-serif;
    letter-spacing: 0.3px;
}

.enter-button:hover {
    background: #007fb5;
}

.enter-button:active {
    transform: scale(0.98);
}

.enter-button:focus-visible {
    outline: 2px solid white;
    outline-offset: 3px;
}

/* ── DISCLAIMER ── */
.disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 16px;
    width: 100%;
}

.disclaimer p {
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    font-style: italic;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .landing-content {
        padding: 40px 32px;
        max-width: 100%;
    }

    .landing-title {
        font-size: 20px;
    }

    .wb-wordmark {
        width: 120px;
    }
}

@media (max-width: 480px) {
    .landing-content {
        padding: 32px 24px;
    }

    .background-overlay {
        background-attachment: scroll;
    }

    .landing-title {
        font-size: 18px;
    }

    .enter-button {
        padding: 12px 32px;
        width: 100%;
    }
}
