:root {
    --brand-navy: #183554;
    --brand-navy-2: #224a73;
    --brand-blue: #2a5f9e;
    --brand-blue-soft: #d4e2f2;
    --brand-blue-border: #7ea6d6;
    --brand-surface: #e5edf6;
    --brand-surface-2: #edf3f9;
    --brand-text-soft: #4b6784;
    --brand-text-muted: #5e7b98;
}

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

body {
    background-color: #eef3f8;
    color: var(--brand-navy);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-align: center;
    line-height: 1.5;
}

.wrapper {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px 15px;
}

h1 {
    color: var(--brand-navy);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.subheadline {
    font-size: 18px;
    color: var(--brand-text-soft);
    margin-bottom: 25px;
    font-weight: 400;
}

.video-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px auto;
    background: linear-gradient(180deg, #e1eaf4 0%, var(--brand-surface) 100%);
    box-shadow: 0 14px 34px rgba(35, 69, 101, 0.12);
    border-radius: 18px;
    border: 1px solid #c9d8e8;
    overflow: hidden;
}

.continuity-retention {
    display: none;
    max-width: 840px;
    margin: 0 auto 32px;
    padding: 22px 20px 24px;
    border-radius: 22px;
    background: linear-gradient(180deg, #183554 0%, #10263d 100%);
    border: 1px solid #274c73;
    box-shadow: 0 18px 38px rgba(16, 38, 61, 0.28);
}

.continuity-retention[hidden],
.continuity-retention[aria-hidden="true"] {
    display: none !important;
}

.continuity-retention.is-visible {
    display: block !important;
}

.continuity-kicker {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #dbe8f7;
    color: #2d5d8f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.continuity-retention h2 {
    font-size: clamp(22px, 3vw, 30px);
    line-height: 1.2;
    margin-bottom: 12px;
    color: #f4f8fc;
}

.continuity-copy {
    max-width: 580px;
    margin: 0 auto 10px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.6;
}

.continuity-copy strong {
    color: #ffffff;
}

.continuity-copy-soft {
    color: #ffffff;
    font-size: 15px;
}

.pause-offer {
    display: none;
    max-width: 980px;
    margin: 0 auto 40px;
    padding: 28px 22px 32px;
    scroll-margin-top: 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, var(--brand-surface-2) 100%);
    border: 1px solid #c9d8e8;
    box-shadow: 0 18px 48px rgba(24, 53, 84, 0.15);
}

.pause-offer.is-visible {
    display: block;
}

.pause-offer.is-highlighted {
    animation: offerSpotlight 2.2s ease-out 1;
}

.pause-offer-head {
    max-width: 700px;
    margin: 0 auto 24px;
}

.pause-kicker {
    display: inline-block;
    margin-bottom: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--brand-navy);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pause-offer h2 {
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.2;
    margin-bottom: 10px;
}

.pause-copy {
    max-width: 620px;
    margin: 0 auto;
    color: var(--brand-text-soft);
    font-size: 16px;
}

.pause-offer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.pause-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 22px 18px 20px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #cddaea;
    box-shadow: 0 14px 32px rgba(24, 53, 84, 0.11);
    text-decoration: none;
    color: var(--brand-navy);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.pause-card:hover {
    transform: translateY(-6px);
    border-color: var(--brand-blue);
    box-shadow: 0 18px 40px rgba(23, 50, 79, 0.16);
}

.pause-card-featured {
    background: linear-gradient(180deg, var(--brand-navy) 0%, var(--brand-navy-2) 100%);
    color: #ffffff;
    border-color: var(--brand-navy);
    transform: scale(1.03);
}

.pause-card-featured:hover {
    border-color: var(--brand-blue);
}

.pause-card-badge {
    margin-bottom: 10px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--brand-blue);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pause-card img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    margin-bottom: 12px;
}

.pause-card strong {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 6px;
}

.pause-card span {
    display: block;
}

.pause-price {
    margin-top: 12px;
    font-size: 22px;
    font-weight: 700;
}

@keyframes offerSpotlight {
    0% {
        transform: translateY(24px) scale(0.985);
        box-shadow: 0 12px 28px rgba(23, 50, 79, 0.12);
        border-color: #c9d8e8;
    }
    35% {
        transform: translateY(0) scale(1.01);
        box-shadow: 0 24px 56px rgba(47, 128, 237, 0.28);
        border-color: var(--brand-blue-border);
    }
    100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 18px 48px rgba(24, 53, 84, 0.15);
        border-color: #c9d8e8;
    }
}

body.exit-lock {
    overflow: hidden;
}

.exit-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(12, 27, 43, 0.8);
    backdrop-filter: blur(6px);
    z-index: 9999;
}

.exit-overlay.is-visible {
    display: flex;
}

.exit-modal {
    position: relative;
    width: min(960px, 100%);
    max-height: min(90vh, 860px);
    overflow-y: auto;
    padding: 28px 24px 24px;
    border-radius: 26px;
    background: linear-gradient(180deg, #ffffff 0%, var(--brand-surface-2) 100%);
    border: 1px solid rgba(201, 216, 232, 0.95);
    box-shadow: 0 28px 60px rgba(12, 27, 43, 0.34);
}

.exit-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: #dce7f2;
    color: var(--brand-navy);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.exit-kicker {
    display: inline-block;
    margin-bottom: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--brand-navy);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.exit-modal h2 {
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.15;
    margin-bottom: 10px;
}

.exit-copy {
    max-width: 680px;
    margin: 0 auto 26px;
    color: var(--brand-text-soft);
    font-size: 16px;
}

.exit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.exit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 22px 18px 20px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #cddaea;
    box-shadow: 0 14px 32px rgba(24, 53, 84, 0.11);
    text-decoration: none;
    color: var(--brand-navy);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.exit-card:hover {
    transform: translateY(-6px);
    border-color: var(--brand-blue);
    box-shadow: 0 18px 40px rgba(23, 50, 79, 0.16);
}

.exit-card-featured {
    background: linear-gradient(180deg, var(--brand-navy) 0%, var(--brand-navy-2) 100%);
    color: #ffffff;
    border-color: var(--brand-navy);
    transform: scale(1.03);
}

.exit-card img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    margin-bottom: 12px;
}

.exit-card strong {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 6px;
}

.exit-card span {
    display: block;
}

.exit-price {
    margin-top: 12px;
    font-size: 22px;
    font-weight: 700;
}

footer {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #c9d8e8;
    font-size: 11px;
    color: #6b8199;
}

footer p {
    margin-bottom: 10px;
}

footer a {
    color: var(--brand-text-soft);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
    color: var(--brand-navy);
}

.disclaimer-small {
    font-size: 10px;
    opacity: 0.7;
}

@media (max-width: 600px) {
    .wrapper {
        padding: 16px 12px;
    }

    h1 {
        font-size: 20px;
        line-height: 1.25;
    }

    .subheadline {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .video-wrapper {
        margin-bottom: 26px;
        border-radius: 14px;
    }

    .pause-offer {
        margin-bottom: 28px;
        padding: 18px 12px 20px;
        border-radius: 18px;
    }

    .pause-offer-head {
        margin-bottom: 18px;
    }

    .pause-offer h2 {
        font-size: 22px;
    }

    .pause-copy {
        font-size: 14px;
    }

    .pause-offer-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .pause-card,
    .exit-card {
        max-width: 320px;
        width: 100%;
        margin: 0 auto;
        padding: 18px 14px 18px;
        border-radius: 18px;
    }

    .pause-card img,
    .exit-card img {
        width: 132px;
        height: 132px;
        margin-bottom: 10px;
    }

    .pause-card strong,
    .exit-card strong {
        font-size: 24px;
    }

    .pause-price,
    .exit-price {
        font-size: 18px;
        margin-top: 8px;
    }

    .exit-modal {
        width: 100%;
        max-height: min(88vh, 760px);
        padding: 18px 12px 16px;
        border-radius: 20px;
    }

    .exit-close {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
        font-size: 24px;
    }

    .exit-modal h2 {
        font-size: 22px;
    }

    .exit-copy {
        margin-bottom: 18px;
        font-size: 14px;
    }

    .exit-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .pause-card-featured {
        transform: none;
    }

    .exit-card-featured {
        transform: none;
    }
}
