* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: #111;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;

    background:
            linear-gradient(
                    rgba(255,255,255,0.78),
                    rgba(255,255,255,0.78)
            ),
            url('//dlbf54swf3l6o.cloudfront.net/images/backgrounds/abstract-wavy-background-with-pink-blue-hues.jpg')
            center/cover no-repeat fixed;

    background-image:
            linear-gradient(
                    rgba(255,255,255,0.78),
                    rgba(255,255,255,0.78)
            ),
            -webkit-image-set(
                    url('//dlbf54swf3l6o.cloudfront.net/images/backgrounds/abstract-wavy-background-with-pink-blue-hues.webp') type('image/webp'),
                    url('//dlbf54swf3l6o.cloudfront.net/images/backgrounds/abstract-wavy-background-with-pink-blue-hues.jpg') type('image/jpeg')
            );

    background-image:
            linear-gradient(
                    rgba(255,255,255,0.78),
                    rgba(255,255,255,0.78)
            ),
            image-set(
                    url('//dlbf54swf3l6o.cloudfront.net/images/backgrounds/abstract-wavy-background-with-pink-blue-hues.webp') type('image/webp'),
                    url('//dlbf54swf3l6o.cloudfront.net/images/backgrounds/abstract-wavy-background-with-pink-blue-hues.jpg') type('image/jpeg')
            );
}

.urgency-bar {
    background: #cc1f00;
    color: #fff;
    text-align: center;
    padding: 11px 20px;
    font-size: 14px;
    font-weight: 600 !important;
    letter-spacing: 0.02em;
}

.urgency-bar .live {
    background: #fff;
    color: #cc1f00;
    font-weight: 800 !important;
    padding: 1px 8px;
    border-radius: 3px;
    margin: 0 4px;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: blink 1.2s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero {
    max-width: 1060px;
    margin: 0 auto;
    padding: 36px 24px 24px;
    text-align: center;
}

.pre {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 16px;
}

.headline {
    font-family: "Merriweather", Georgia, serif;
    font-weight: 900 !important;
    font-size: clamp(32px, 4.4vw, 54px);
    line-height: 1.15;
    color: #111;
    letter-spacing: -0.02em;
    margin: 0 0 20px;
}

.headline .red {
    color: #cc1f00;
    white-space: nowrap;
}

.sub {
    font-family: "Merriweather", Georgia, serif;
    font-style: italic;
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
    color: #444;
    max-width: 820px;
    margin: 0 auto 20px;
}

.sub strong {
    font-style: normal;
    font-weight: 700 !important;
    color: #111;
}

.trust-strip {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600 !important;
    color: #555;
    padding: 0 14px;
}

.trust-item + .trust-item {
    border-left: 1px solid #ddd;
}

.check {
    width: 16px;
    height: 16px;
    background: #1a7a3f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: #fff;
    font-weight: 900 !important;
    flex-shrink: 0;
}

.video-section {
    max-width: 860px;
    margin: 22px auto 0;
    padding: 0 24px 8px;
}

.watch-prompt {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 700 !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #999;
    text-align: center;
}

.watch-prompt::before,
.watch-prompt::after {
    content: "";
    flex: 1;
    max-width: 80px;
    height: 1px;
    background: #ddd;
}

.play-arrow {
    display: inline-block !important;
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.play-arrow-right {
    border-top: 6px solid transparent !important;
    border-bottom: 6px solid transparent !important;
    border-left: 9px solid #cc1f00 !important;
}

.play-arrow-left {
    border-top: 6px solid transparent !important;
    border-bottom: 6px solid transparent !important;
    border-right: 9px solid #cc1f00 !important;
}

.video-wrap {
    background: #000;
    border-radius: 3px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    box-shadow: 0 0 0 4px #cc1f00, 0 8px 48px rgba(0, 0, 0, 0.22);
    padding: 0;
}

.video-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.video-note {
    text-align: center;
    margin-top: 10px;
    font-size: 12px;
    color: #777;
    font-style: italic;
}

.cta-section {
    max-width: 860px;
    margin: 24px auto 0;
    padding: 28px 24px 60px;
    text-align: center;
}

.cta-section.hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
}

.cta-section.show {
    opacity: 1;
    visibility: visible;
}

.cta-label {
    font-size: 12px;
    font-weight: 700 !important;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #777;
    margin-bottom: 12px;
}

.cta-btn {
    display: inline-block;
    width: min(100%, 680px);
    background: linear-gradient(180deg, #42b964 0%, #2e8f4e 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    padding: 20px 34px;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800 !important;
    line-height: 1.1;
    box-shadow: 0 14px 28px rgba(66, 185, 100, 0.3);
    border: 1px solid #267c42;
}

.cta-btn:hover,
.cta-btn:focus {
    background: linear-gradient(180deg, #379b54 0%, #267c42 100%);
}

.btn-sub {
    display: block;
    margin-top: 8px;
    font-size: 15px;
    font-weight: 600 !important;
    opacity: 0.95;
}

.risk {
    margin-top: 14px;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.fade-up {
    opacity: 0;
    transform: translateY(12px);
    animation: fadeUp 0.55s ease forwards;
}

.d1 { animation-delay: 0.05s; }
.d2 { animation-delay: 0.15s; }
.d3 { animation-delay: 0.25s; }
.d4 { animation-delay: 0.35s; }
.d5 { animation-delay: 0.45s; }

footer {
    background: #f7f7f7;
    border-top: 1px solid #eee;
    padding: 24px 0;
    text-align: center;
    font-size: 13px;
    color: #aaa;
    line-height: 1.0;
}

footer a,
footer a:link,
footer a:visited,
footer a:hover,
footer a:focus,
footer a:active {
    color: #aaa !important;
    text-decoration-line: underline !important;
    text-decoration-style: solid !important;
    text-decoration-thickness: 1px !important;
    text-underline-offset: 2px !important;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 700px) {
    .hero {
        padding: 28px 18px 18px;
    }

    .headline {
        font-size: clamp(26px, 8vw, 38px);
    }

    .sub {
        font-size: 16px;
    }

    .trust-strip {
        gap: 8px;
    }

    .trust-item {
        width: 100%;
        justify-content: center;
        padding: 0;
    }

    .trust-item + .trust-item {
        border-left: none;
    }

    .video-section {
        padding: 0 16px 8px;
    }

    .watch-prompt::before,
    .watch-prompt::after {
        max-width: 35px;
    }

    .cta-section {
        padding: 24px 16px 48px;
    }

    .cta-btn {
        font-size: 20px;
        padding: 18px 22px;
    }

    .btn-sub {
        font-size: 13px;
    }
}
