:root {
    color-scheme: light;
    --navy: #181a39;
    --teal: #38bec7;
    --blue: #89cff0;
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    background: #fff;
    color: var(--navy);
    font-family: "Montserrat", Arial, sans-serif;
}

.page-container {
    width: min(100% - 32px, 1200px);
    margin: 0 auto;
}

main.page-container {
    flex: 1;
}

.header {
    padding: 24px 0 20px;
    text-align: center;
}

.headline-banner {
    display: block;
    width: 100%;
    max-width: 1233px;
    height: auto;
    margin: 0 auto;
}

.headline {
    max-width: 1100px;
    margin: 0 auto 28px;
    text-align: center;
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 900;
    line-height: 1.18;
}

.headline span {
    color: var(--teal);
}

.vsl-section {
    width: min(100%, 1000px);
    margin: 0 auto;
}

vturb-smartplayer {
    display: block;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.vturb-player-placeholder {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    z-index: 0;
    background: #000;
}

.cta-section {
    padding: 52px 0 72px;
    text-align: center;
}

.cta-button {
    display: inline-flex;
    min-height: 64px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 48px;
    border-radius: 9999px;
    background: var(--blue);
    color: var(--navy);
    box-shadow: 0 10px 15px -3px rgba(137, 207, 240, 0.4);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 900;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover,
.cta-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 14px 20px -5px rgba(137, 207, 240, 0.55);
}

.footer {
    padding: 40px 16px;
    background: #101124;
    color: #fff;
    text-align: center;
}

.footer p {
    margin: 0 0 24px;
    opacity: 0.6;
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 18px;
    opacity: 0.5;
    font-size: 0.75rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
}

@media (max-width: 600px) {
    .page-container {
        width: min(100% - 24px, 1200px);
    }

    .header {
        padding: 14px 0 16px;
    }

    .headline {
        margin-bottom: 22px;
        font-size: clamp(1.3rem, 6.2vw, 1.75rem);
        line-height: 1.2;
    }

    .cta-section {
        padding: 48px 0 56px;
    }

    .cta-button {
        width: 100%;
        min-height: 58px;
        padding: 0 18px;
        font-size: 1rem;
    }

    .footer {
        padding: 32px 12px;
    }
}